/* @group Login */
.trigger input {
  width: 100%;
  text-indent: 10px;
  border-radius: 0; }

/*
.trigger input:focus {
	-webkit-box-shadow: inset 0px 0px 1px 2px rgba(243, 149, 117, .6);
    -moz-box-shadow: inset 0px 0px 1px 2px rgba(243, 149, 117, .6);
    box-shadow: inset 0px 0px 1px 2px rgba(243, 149, 117, .6);
	outline: 1px solid #e4decb;
}
.trigger input[type=submit] {
	text-indent: 0;
	-webkit-appearance: none;
}
*/
.request_layer {
  width: 100%;
  max-width: 350px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24);
  padding: 20px; }
  @media (max-width: 650px) {
    .request_layer {
      width: 100%;
      margin: 0;
      height: auto !important;
      max-width: none;
      box-shadow: none; } }
  .request_layer .title-bar {
    padding: 0;
    height: auto;
    margin-top: -4px;
    margin-bottom: 20px;
    background: transparent; }
    .request_layer .title-bar h2 {
      margin: 0;
      padding: 0;
      font-size: 18px;
      font-weight: 600;
      color: #1188d6;
      text-transform: none;
      vertical-align: middle;
      display: inline-block; }
  .request_layer .app-x {
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 99999;
    width: 22px;
    cursor: pointer; }
  .request_layer form h3 {
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    margin: 25px 0 6px 0;
    color: #9B1633; }
  .request_layer form input {
    height: 45px;
    margin: 0;
    font-size: 15px;
    outline: none;
    border: 0;
    outline: 1px solid #e4decb;
    outline-offset: 0; }
  .request_layer form .drop_line {
    height: 45px !important;
    margin: 0;
    border: 0;
    outline: 1px solid #e4decb; }
    .request_layer form .drop_line select {
      height: 45px;
      font-size: 15px; }
  .request_layer form .half {
    width: 50% !important;
    float: left;
    border: 0;
    outline: 1px solid #e4decb; }
  .request_layer form .half.left {
    border-right: 0 !important; }
  .request_layer form .submitButton {
    background: #1188d6;
    color: #fff;
    text-indent: 0;
    padding: 0;
    margin: 15px 0;
    height: 50px;
    width: 100%;
    font-size: 20px; }
    .request_layer form .submitButton:hover {
      background: #1291e4; }

.modal_background {
  display: none;
  position: fixed;
  background: black;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .65;
  z-index: 9999999; }
  @media (max-width: 650px) {
    .modal_background {
      background: #fff;
      opacity: 1;
      position: fixed;
      width: 100%;
      top: -2200px;
      bottom: 1600px;
      left: 0;
      right: 0;
      display: block; } }

.modal_group {
  position: absolute;
  top: -9999px;
  left: 50%;
  margin-top: 80px;
  margin-left: -175px;
  z-index: 99999999;
  width: 350px; }
  @media (max-width: 650px) {
    .modal_group {
      position: fixed;
      top: -2200px;
      bottom: 1600px;
      left: 0;
      right: 0;
      overflow-y: scroll;
      background: #f2f2f2;
      width: 100%;
      margin: 0; } }

/*
	.noscroll {
		overflow: hidden !important;
		height: 100%;
		width: 100%;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
*/
.item {
  margin: 0 1px;
  position: relative;
  overflow: hidden;
  background: #000; }

.item img {
  width: 100%;
  float: left;
  -webkit-transition: all .6s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out; }

.item:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  /* 	opacity: .5; */ }

a.link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99; }

section p.instructor {
  background: #000;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 400; }

.sidebar .group .recent h2.instruct {
  padding-bottom: 15px; }

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

/**
 * ==========================
 * Animation styles
 * 
 * Notes:
 * 1. We use z-index to position active slides in-front 
 * of non-active slides
 * 2. We set right:0 and left:0 on .slide to provide us with
 * a default positioning on both sides of the slide. This allows 
 * us to trigger JS and CSS3 animations easily
 *
 */
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  opacity: 0; }

.slide.active,
.slide.left,
.slide.right {
  z-index: 2;
  opacity: 1; }

/**
 * ==========================
 * JS animation styles
 * 
 * We use jQuery.animate to control the sliding animations
 * when CSS3 animations are not available. In order for
 * the next slide to slide in from the right, we need
 * to change the left:0 property of the slide to left:auto
 *
 */
.js-reset-left {
  left: auto; }

/**
 * ==========================
 * CSS animation styles
 * 
 * .slide.left and .slide.right set-up
 * the to-be-animated slide so that it can slide
 * into view. For example, a slide that is about 
 * to slide in from the right will:
 * 1. Be positioned to the right of the viewport (right:-100%)
 * 2. Slide in when the style is superseded with a more specific style (right:0%)
 *
 */
.slide.left {
  left: -100%;
  right: 0; }

.slide.right {
  right: -100%;
  left: auto; }

.transition .slide.left {
  left: 0%; }

.transition .slide.right {
  right: 0%; }

/**
 * The following classes slide the previously active
 * slide out of view before positioning behind the 
 * currently active slide
 *
 */
.transition .slide.shift-right {
  right: 100%;
  left: auto; }

.transition .slide.shift-left {
  left: 100%;
  right: auto; }

/**
 * This sets the CSS properties that will animate. We set the
 * transition-duration property dynamically via JS.
 * We use the browser's default transition-timing-function
 * for simplicity's sake
 * 
 * It is important to note that we are using CodePen's inbuilt
 * CSS3 property prefixer. For your own projects, you will need
 * to prefix the transition and transform properties here to ensure
 * reliable support across browsers
 *
 */
.transition .slide {
  transition-property: right, left, margin; }

/**
 * ==========================
 * Indicators
 *
 */
.indicators {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 99;
  padding: 0;
  text-align: center; }

.indicators li {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 5px;
  background: transparent;
  border: 2px solid #e4bb36;
  list-style-type: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease-out; }

.indicators li.active {
  background: #e4bb36; }

.indicators li:hover {
  opacity: .8; }

/**
 * ==========================
 * Arrows 
 *
 */
.arrow {
  width: 48px;
  height: 18px;
  position: absolute;
  top: 50%;
  z-index: 5;
  cursor: pointer;
  opacity: .8;
  margin-top: -24px; }

.arrow:hover {
  opacity: .6; }

.arrow-left {
  left: 20px; }

.arrow-right {
  right: 20px; }

.slide {
  text-align: center;
  /*padding-top:25%;*/
  background-size: cover;
  background-position: center center; }

/* @group Header*/
.fix {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999; }

.logged-in .stick {
  top: 32px !important; }

.main_nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 165px;
  text-align: left;
  background: #000;
  box-shadow: 1px 1px 3px #000;
  z-index: 99;
  padding: 10px;
  transform: inherit !important; }
  @media (max-width: 1100px) {
    .main_nav {
      width: 140px; } }
  @media (max-width: 900px) {
    .main_nav {
      position: absolute;
      bottom: auto;
      width: 100%; } }
  .main_nav .logo {
    display: inline-block;
    float: left;
    position: relative; }
    .main_nav .logo img {
      width: 100%;
      z-index: 3;
      position: relative; }
      @media (max-width: 900px) {
        .main_nav .logo img {
          width: 40px; } }
      .main_nav .logo img.mobile {
        margin: 5px 0 0 4px; }
      .main_nav .logo img.desktop {
        padding: 20px; }
  .main_nav .nav_bar {
    width: 100%;
    margin: 0px 0 0;
    float: left;
    z-index: 1; }
    @media (max-width: 900px) {
      .main_nav .nav_bar {
        display: none; } }
    .main_nav .nav_bar ul.nav {
      margin: 6px 0 0 0;
      padding: 10px;
      width: 100%; }
      @media (max-width: 1250px) {
        .main_nav .nav_bar ul.nav {
          margin-top: 10px; } }
      .main_nav .nav_bar ul.nav > li {
        margin: 0;
        padding: 0;
        list-style: none;
        display: inline-block;
        position: relative;
        width: 100%; }
        .main_nav .nav_bar ul.nav > li a {
          color: #fff;
          font-size: 13px;
          line-height: 15px;
          font-family: 'Paytone One', sans-serif;
          text-decoration: none;
          padding: 5px 10px;
          margin: 5px 0;
          display: inline-block;
          border-radius: 0px;
          text-transform: uppercase;
          border-left: 4px solid transparent; }
          @media (max-width: 1250px) {
            .main_nav .nav_bar ul.nav > li a {
              font-size: 14px; } }
          @media (max-width: 1100px) {
            .main_nav .nav_bar ul.nav > li a {
              font-size: 13px;
              padding: 2px 10px; } }
          .main_nav .nav_bar ul.nav > li a:hover {
            color: #e4bb36; }
        .main_nav .nav_bar ul.nav > li:hover ul {
          display: block !important; }
        .main_nav .nav_bar ul.nav > li.current_page_item a, .main_nav .nav_bar ul.nav > li.current-page-ancestor a {
          color: #e4bb36;
          border-left: 4px solid #e4bb36; }
        .main_nav .nav_bar ul.nav > li:last-child a {
          background: #ab9d64;
          margin-left: 0px;
          margin-top: 10px;
          color: white !important;
          border-radius: 5px;
          padding: 12px 15px;
          border: 0; }
          @media (max-width: 1100px) {
            .main_nav .nav_bar ul.nav > li:last-child a {
              padding: 8px 12px; } }
        .main_nav .nav_bar ul.nav > li ul.sub-menu {
          display: none;
          position: absolute;
          top: 45px;
          left: 10px;
          width: 240px;
          background: white;
          margin: 0;
          padding: 5px;
          text-align: left;
          border-radius: 2px;
          box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.4); }
          .main_nav .nav_bar ul.nav > li ul.sub-menu li {
            list-style: none;
            width: 100%; }
            .main_nav .nav_bar ul.nav > li ul.sub-menu li:hover {
              background: #000;
              color: #fff;
              opacity: 1;
              cursor: pointer; }
              .main_nav .nav_bar ul.nav > li ul.sub-menu li:hover a {
                color: #fff;
                opacity: 1; }
            .main_nav .nav_bar ul.nav > li ul.sub-menu li a {
              color: #000;
              text-transform: none;
              padding: 10px 10px;
              width: 100%;
              display: block;
              font-size: 15px;
              border: 0 !important;
              margin: 0; }
          .main_nav .nav_bar ul.nav > li ul.sub-menu:before {
            content: '';
            position: absolute;
            top: -7px;
            left: 10px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #fff; }
  .main_nav .menu {
    float: right;
    border: 2px solid #d53923;
    color: #d53923;
    padding: 8px 12px 10px;
    margin-top: 0px;
    border-radius: 2px; }
    @media (max-width: 1100px) {
      .main_nav .menu {
        padding: 4px 10px 7px; } }
    @media (max-width: 500px) {
      .main_nav .menu {
        display: none; } }
    .main_nav .menu img {
      margin-right: 5px;
      width: 21px;
      display: inline-block;
      vertical-align: middle; }
      @media (max-width: 1100px) {
        .main_nav .menu img {
          width: 17px; } }
    .main_nav .menu img.b {
      display: none; }
    .main_nav .menu span {
      font-size: 18px;
      display: inline-block;
      font-weight: 600;
      vertical-align: middle; }
      @media (max-width: 900px) {
        .main_nav .menu span {
          font-size: 16px; } }
  .main_nav a.phone {
    float: right;
    display: none; }
    @media (max-width: 900px) {
      .main_nav a.phone {
        display: block; } }
    .main_nav a.phone img {
      width: 29px;
      margin-top: 11px;
      margin-right: 5px; }
      @media (max-width: 350px) {
        .main_nav a.phone img {
          margin-top: 8px; } }
  .main_nav .hamburger {
    display: none;
    width: 43px;
    margin-top: -2px;
    margin-right: 0px;
    float: right; }
    @media (max-width: 900px) {
      .main_nav .hamburger {
        display: block; } }

.no-touch .main_nav .menu:hover {
  background: #d53923;
  color: #fff;
  cursor: pointer; }
  .no-touch .main_nav .menu:hover img.a {
    display: none; }
  .no-touch .main_nav .menu:hover img.b {
    display: inline-block; }
  .no-touch .main_nav .menu:hover img {
    display: inline-block; }

.no-touch .nav-bar a:hover {
  background: #b6311e;
  /*
			img.a {
				display: none;
			}
			img.b {
				display: inline-block;
			}
*/ }

.no-touch .nav-bar a.signup:hover {
  background: #b6311e; }

.spacer {
  height: 95px; }
  @media (max-width: 1100px) {
    .spacer {
      height: 90px; } }
  @media (max-width: 500px) {
    .spacer {
      height: 80px; } }
  @media (max-width: 350px) {
    .spacer {
      height: 80px; } }

/* @end */
/* @group Slide Out Nav*/
.hider {
  background: #000;
  opacity: .8;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none; }

.navi-scroll {
  padding-bottom: 0px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  height: 100%;
  background: black;
  width: 300px;
  float: right; }
  @media (max-width: 768px) {
    .navi-scroll {
      right: -999px;
      width: 80%;
      position: fixed;
      overflow-y: scroll;
      bottom: 0; } }

/*
.logged-in .navi {
	top: 35px !important;
}
*/
.navi {
  position: absolute;
  top: 0;
  right: -999px;
  width: 300px;
  z-index: 1000;
  padding: 0px; }
  @media (max-width: 768px) {
    .navi {
      width: 100%;
      position: fixed;
      bottom: 0; } }
  .navi .x {
    position: absolute;
    top: 0;
    right: 80%;
    width: 54px;
    height: 54px;
    background: black;
    text-align: center;
    z-index: 9999; }
    .navi .x img {
      display: inline-block;
      color: #fff;
      width: 20px;
      margin-top: 15px; }
  .navi ul {
    padding: 0;
    margin: 0; }
    .navi ul li {
      padding: 0px;
      margin: 0;
      list-style: none;
      /*border-bottom: 1px solid lighten($green, 3%);*/
      position: relative; }
      .navi ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        background: black;
        text-decoration: none; }
        .navi ul li a img {
          display: inline-block;
          height: 24px;
          vertical-align: middle; }
        .navi ul li a span, .navi ul li a .material-icons {
          padding-right: 2px;
          display: inline-block;
          vertical-align: middle; }
      .navi ul li ul {
        position: relative;
        z-index: 99;
        background: #0a0a0a;
        padding-bottom: 15px;
        padding-top: 10px;
        display: none; }
        .navi ul li ul li {
          /*border-bottom: 1px solid darken($green, 2%);*/ }
          .navi ul li ul li a {
            background: #0a0a0a;
            /*border-bottom: 1px solid darken($green, 2%);*/
            color: #fff;
            font-size: 16px;
            text-indent: 20px;
            padding: 10px; }
      .navi ul li a .material-icons {
        display: none\0;
        /* IE8, IE9 */ }
      .navi ul li .down {
        border-left: 1px solid #111;
        padding: 10px;
        background: #0a0a0a;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 55px;
        text-align: center; }
        .navi ul li .down.open {
          background: #0a0a0a; }
        .navi ul li .down img {
          width: 30px;
          display: inline-block;
          margin-top: 3px;
          vertical-align: middle; }
      .navi ul li .notice a {
        color: #facd28; }

.no-touch .navi .x:hover {
  background: #0a0a0a;
  cursor: pointer;
  outline: none; }

.no-touch .navi ul li a:hover {
  background: #0a0a0a;
  color: #fff; }

.no-touch .navi ul li .down:hover {
  background: #0a0a0a;
  cursor: pointer; }

.no-touch .navi ul li ul li a:hover {
  color: #d53923; }

.social-group {
  margin-top: 0px;
  margin-bottom: 25px;
  width: 100%;
  text-align: center; }
  .social-group a {
    display: inline-block;
    margin: 3px; }
    .social-group a img {
      height: 40px; }

.mobile-nav {
  display: none; }

/* @end */
/* @group Home */
.carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 600px; }
  @media (max-width: 1100px) {
    .carousel {
      height: 768px; } }
  @media (max-width: 650px) {
    .carousel {
      height: 600px; } }
  .carousel .inner {
    height: 600px; }
  .carousel .filter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    background: #000;
    z-index: 2; }

.vertical {
  display: table;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 11; }
  .vertical .centered {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    margin-top: -10px;
    color: #fff;
    position: relative;
    z-index: 3;
    padding: 15px; }
    .vertical .centered .e {
      width: 120px;
      margin-bottom: 25px; }
      @media (max-width: 1100px) {
        .vertical .centered .e {
          width: 100px; } }
      @media (max-width: 650px) {
        .vertical .centered .e {
          width: 80px;
          margin-top: 25px; } }
    .vertical .centered h2 {
      font-family: 'Paytone One', sans-serif;
      text-transform: uppercase;
      font-size: 70px;
      color: #e4bb36;
      line-height: 55px;
      text-shadow: 0px 1px 4px rgba(31, 30, 30, 0.5);
      padding: 0px;
      font-weight: 600;
      margin: 0 0 15px 0; }
      @media (max-width: 1100px) {
        .vertical .centered h2 {
          font-size: 60px; } }
      @media (max-width: 900px) {
        .vertical .centered h2 {
          font-size: 45px;
          line-height: 45px; } }
      @media (max-width: 500px) {
        .vertical .centered h2 {
          font-size: 28px;
          line-height: 30px;
          magin-bottom: 5px; } }
    .vertical .centered p {
      font-family: 'Paytone One', sans-serif;
      text-transform: uppercase;
      font-size: 34px;
      color: white;
      line-height: 38px;
      text-shadow: 0px 1px 4px rgba(42, 42, 42, 0.5);
      display: inline-block;
      padding: 0px;
      margin: 0;
      font-weight: 400; }
      @media (max-width: 900px) {
        .vertical .centered p {
          font-size: 28px;
          line-height: 34px; } }
      @media (max-width: 500px) {
        .vertical .centered p {
          font-size: 20px;
          line-height: 24px; } }
    .vertical .centered a.home.button {
      background: transparent;
      border-radius: 2px;
      border: 2px solid #e4bb36;
      padding: 25px 35px;
      display: inline-block;
      font-size: 30px;
      text-transform: uppercase;
      font-weight: 600;
      color: #e4bb36;
      text-decoration: none;
      box-shadow: 0px 1px 4px rgba(42, 42, 42, 0.5); }
      @media (max-width: 500px) {
        .vertical .centered a.home.button {
          font-size: 22px;
          padding: 20px 30px; } }
      .vertical .centered a.home.button:hover {
        background: #e4bb36;
        border: 2px solid #e4bb36;
        color: black; }

/* @end */
/* @group Page Header*/
header {
  text-align: center;
  padding: 160px 0 170px;
  background-position: center top;
  background-size: cover;
  position: relative; }
  @media (max-width: 650px) {
    header {
      padding: 125px 0 90px; } }
  header .container {
    max-width: 1100px; }
  header .filter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .7;
    background: #000; }
  header h1 {
    font-weight: 900;
    font-size: 65px;
    line-height: 70px;
    margin: 0 0 7px 0;
    color: #e4bb36;
    font-family: 'Paytone One', sans-serif;
    text-transform: uppercase; }
    @media (max-width: 650px) {
      header h1 {
        font-size: 35px;
        line-height: 40px; } }
  header p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 900;
    font-family: 'Paytone One', sans-serif;
    font-size: 35px; }
    @media (max-width: 650px) {
      header p {
        font-size: 25px;
        line-height: 30px; } }

/* @end */
/* @group Sections */
section {
  width: 100%;
  display: block;
  z-index: 1;
  padding: 75px 0px;
  position: relative; }
  @media (max-width: 1100px) {
    section {
      padding: 80px 0; } }
  @media (max-width: 768px) {
    section {
      padding: 70px 0; } }
  @media (max-width: 650px) {
    section {
      padding: 65px 0; } }
  section.compact {
    padding: 25px 0; }
  section.half {
    padding: 50px 0; }
  section .container {
    max-width: 1400px;
    padding: 0 50px;
    position: relative; }
    @media (max-width: 1100px) {
      section .container {
        padding: 0 20px; } }
    @media (max-width: 650px) {
      section .container {
        padding: 0 20px; } }
    @media (max-width: 350px) {
      section .container {
        padding: 0 15px; } }
  section.center {
    text-align: center; }
    section.center ul {
      margin-left: 0; }
      section.center ul li {
        list-style-position: inside; }
  section.left {
    text-align: left;
    /*
@include breakpoint($phone-l) {
			text-align: center;
		}
*/ }
  section.white {
    background: #fff; }
  section.gray {
    background: #f2f2f2; }
    section.gray .info_block {
      border-bottom: 1px dashed #d5d5d5; }
      section.gray .info_block:last-child {
        border-bottom: 0; }
  section.black {
    background: black; }
    section.black .page_blocks .page_block {
      border: 1px solid #393838; }
    section.black .info_block {
      border-bottom: 1px solid #499CD3; }
      section.black .info_block:last-child {
        border-bottom: 0; }
    section.black p {
      color: #fff;
      font-weight: 400; }
    section.black h1, section.black h2, section.black h3 {
      color: #fff;
      font-weight: 600; }
    section.black .button.orange {
      border: 2px solid #fff; }
    section.black .button.blue {
      border: 2px solid #fff;
      box-shadow: none; }
    section.black.button_only a.button {
      margin-top: 10px; }
  section .filter_back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    z-index: 0; }
  section h1 {
    font-family: 'Paytone One', sans-serif;
    font-size: 35px;
    color: #12181f;
    line-height: 40px;
    font-weight: 300;
    margin: 0 0 20px 0; }
    @media (max-width: 500px) {
      section h1 {
        font-size: 28px;
        line-height: 34px; } }
  section h2 {
    font-family: 'Paytone One', sans-serif;
    font-size: 33px;
    font-weight: 400;
    line-height: 36px;
    margin: 0 0 20px 0;
    color: black; }
    @media (max-width: 1100px) {
      section h2 {
        font-size: 26px;
        line-height: 32px; } }
    @media (max-width: 350px) {
      section h2 {
        font-size: 20px;
        line-height: 25px; } }
  section h3 {
    font-size: 20px;
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 400; }
  section h6 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 300;
    font-style: italic; }
  section p {
    font-size: 19px;
    line-height: 30px;
    font-weight: 300;
    margin: 15px 0; }
    @media (max-width: 1100px) {
      section p {
        font-size: 18px; } }
    @media (max-width: 650px) {
      section p {
        font-size: 17px;
        line-height: 28px; } }
    section p a {
      color: #3690ea;
      font-weight: 400; }
    section p.short {
      max-width: 715px;
      margin: 0 auto 45px; }
    section p:last-child {
      margin-bottom: 0; }
  section strong {
    font-weight: 700; }
  section ol {
    margin: 0;
    padding: 0 0 0 25px; }
  section ul {
    margin: -5px 0 20px 20px;
    padding: 0; }
  section ul li, section ol li {
    font-size: 17px;
    line-height: 30px;
    font-weight: 300;
    padding: 10px 0 10px 0px;
    margin: 0;
    list-style: inherit; }
  section .content_container.on {
    display: inline-block;
    width: 100%; }
    section .content_container.on .placeholder {
      width: 47%;
      margin-bottom: 30px; }
      @media (max-width: 650px) {
        section .content_container.on .placeholder {
          display: none; } }
    section .content_container.on.pie:before {
      width: 53%;
      height: 400px !important; }
      @media (max-width: 1100px) {
        section .content_container.on.pie:before {
          height: 300px !important; } }
    section .content_container.on.right .placeholder {
      float: right; }
    section .content_container.on.left .placeholder {
      float: left; }
  section .image {
    border: 1px solid #e4e4e4;
    padding: 10px;
    background: #fff;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 10px;
    position: relative;
    width: 40%; }
    @media (max-width: 650px) {
      section .image {
        width: 100%;
        margin-top: 20px; } }
    section .image.right, section .image.left {
      position: absolute;
      top: 0; }
      @media (max-width: 650px) {
        section .image.right, section .image.left {
          position: static;
          right: 0 !important;
          left: 0 !important; } }
    section .image.right {
      right: 50px; }
      @media (max-width: 1100px) {
        section .image.right {
          right: 20px; } }
    section .image.left {
      left: 50px; }
      @media (max-width: 1100px) {
        section .image.left {
          left: 20px; } }
    section .image.float_right {
      float: right;
      margin-left: 20px;
      margin-bottom: 20px; }
    section .image .caption {
      text-align: center;
      margin: 10px 0;
      font-size: 15px;
      line-height: 23px;
      font-weight: 400;
      background: rgba(0, 0, 0, 0.67);
      color: #fff;
      z-index: 1;
      position: absolute;
      left: 10px;
      bottom: 2px;
      right: 10px;
      padding: 15px; }
  section img.alignright, section .image-right {
    width: 100%; }
  section.photo-gallery {
    padding: 0; }
    section.photo-gallery .image-block {
      display: block;
      float: left;
      width: 25%;
      margin: 0;
      background: black;
      position: relative;
      display: block;
      overflow: hidden; }
      @media (max-width: 650px) {
        section.photo-gallery .image-block {
          width: 50%; } }
      section.photo-gallery .image-block a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: black;
        opacity: .25;
        z-index: 2; }
        section.photo-gallery .image-block a:hover {
          opacity: 0; }
      section.photo-gallery .image-block img {
        width: 100%;
        margin-bottom: -3px;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        z-index: 1; }
      section.photo-gallery .image-block:hover img {
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2); }
  section .youtube_container {
    overflow: hidden;
    margin-top: 20px;
    width: 100%;
    position: relative;
    z-index: 10; }
    section .youtube_container .youtube {
      width: 48%;
      height: 270px;
      margin-right: 2%; }
      section .youtube_container .youtube:nth-child(2) {
        margin-right: 0; }
  section .testimonial {
    max-width: 1000px;
    display: inline-block;
    text-align: left; }
    section .testimonial img.left {
      float: left;
      border-radius: 125px;
      border: 5px solid #fff;
      margin-right: 4%;
      width: 23%;
      max-width: 175px; }
      @media (max-width: 650px) {
        section .testimonial img.left {
          border: 3px solid white; } }
    section .testimonial .right {
      float: left;
      width: 73%;
      position: relative; }
      section .testimonial .right p {
        margin-top: 0;
        font-size: 18px;
        font-weight: 600;
        line-height: 27px; }
        section .testimonial .right p.name {
          font-family: 'Paytone One', sans-serif;
          font-size: 24px; }
          @media (max-width: 650px) {
            section .testimonial .right p.name {
              font-size: 18px;
              line-height: 26px; } }

.desktop {
  display: inline-block; }
  @media (max-width: 900px) {
    .desktop {
      display: none; } }

.mobile {
  display: none; }
  @media (max-width: 900px) {
    .mobile {
      display: inline-block; } }

/* @end */
/* @group Table*/
.tables {
  width: 100%;
  margin-top: 30px; }
  .tables .left {
    width: 21%;
    float: left; }
    @media (max-width: 650px) {
      .tables .left {
        width: 100%; } }
    .tables .left ul {
      background: white;
      margin: 0;
      padding: 0;
      text-align: left;
      border: 1px solid #ddd;
      border-bottom: 2px solid #ddd; }
      .tables .left ul li {
        padding: 0;
        margin: 0;
        list-style: none; }
        .tables .left ul li a {
          text-decoration: none;
          color: #555;
          padding: 7px 15px;
          font-weight: 500;
          display: block;
          font-size: 14px; }
          .tables .left ul li a:hover {
            background: black;
            color: white; }
        .tables .left ul li.ui-state-active a {
          background: #e4bb36;
          color: black; }
  .tables .right {
    width: 77%;
    float: right; }
    @media (max-width: 650px) {
      .tables .right {
        width: 100%;
        margin-top: 15px; } }

.flat-table {
  margin-top: 0px;
  border-collapse: collapse;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-bottom: 2px solid #ddd;
  float: left; }
  .flat-table.sticky thead.stick {
    position: fixed;
    top: 0;
    display: table; }
  .flat-table.sticky.spacer {
    margin-top: 46px !important; }
  .flat-table.sticky td {
    text-transform: capitalize; }
  .flat-table.half {
    width: 49%; }
  .flat-table.left {
    float: left; }
  .flat-table.right {
    float: right; }
  .flat-table th, .flat-table td {
    border-bottom: 1px solid #f2f2f2;
    text-align: left; }
  .flat-table th {
    font-weight: normal;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    background: #e5e5e5;
    color: #444;
    text-align: left; }
    .flat-table th:last-child {
      padding-right: 25px; }
  .flat-table td {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    text-align: left; }
    .flat-table td.left {
      text-align: left; }
    .flat-table td:last-child {
      padding-right: 25px; }
    .flat-table td span.red:before {
      content: '(';
      display: inline-block; }
    .flat-table td span.red:after {
      content: ')';
      display: inline-block; }
  .flat-table tr {
    color: #555; }
    .flat-table tr:hover {
      background: black;
      color: white; }
      .flat-table tr:hover a {
        color: white; }
      .flat-table tr:hover span {
        color: white !important; }
    .flat-table tr.total td {
      font-size: 17px;
      padding: 13px 15px;
      color: white;
      font-weight: 700;
      background: black; }

/* @end */
/* @group Checklist*/
.list {
  width: 100%;
  margin-top: 45px;
  margin-bottom: 5px;
  max-width: 350px;
  box-shadow: 1.147px 1.638px 8.28px 0.72px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  overflow: hidden;
  display: inline-block; }
  @media (max-width: 650px) {
    .list {
      margin-top: 25px; } }
  .list .item {
    width: 100%;
    float: left;
    background: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 300;
    color: #12181f; }
    .list .item:nth-child(even) {
      background: #f2f2f2; }
    @media (max-width: 500px) {
      .list .item {
        font-size: 16px; } }
    .list .item .left {
      float: none;
      text-align: left;
      width: auto;
      padding: 20px;
      border-right: 0px solid #1188d6; }
      @media (max-width: 500px) {
        .list .item .left {
          padding: 18px;
          width: 83%; } }
    .list .item .right {
      float: left;
      width: 55px;
      padding: 18px;
      text-align: center; }
      @media (max-width: 500px) {
        .list .item .right {
          width: 16%; } }
      @media (max-width: 350px) {
        .list .item .right {
          padding: 18px 10px; } }
      .list .item .right img {
        display: inline-block;
        max-width: 28px;
        vertical-align: middle;
        float: none; }

/* @end */
/* @group Form Wide */
p.disclaimer {
  font-size: 15px;
  line-height: 20px;
  font-style: italic;
  color: white;
  margin: 10px 0 0 0;
  padding: 0;
  float: left;
  width: 100%;
  text-align: center;
  font-weight: 400; }
  @media (max-width: 650px) {
    p.disclaimer {
      font-size: 13px;
      line-height: 18px;
      margin: 15px 0 5px 0; } }

.form_container {
  width: 100%;
  padding: 30px;
  background: black;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 45px;
  text-align: center; }
  @media (max-width: 650px) {
    .form_container {
      padding: 20px; } }
  .form_container h2 {
    color: #e4bb36;
    font-size: 25px;
    line-height: 30px; }
    @media (max-width: 650px) {
      .form_container h2 {
        font-size: 22px;
        line-height: 26px; } }

form.form-full input {
  width: 20%;
  margin: 0;
  border-radius: 0;
  height: 55px;
  font-size: 18px;
  font-weight: 400;
  font-family: inherit;
  border: 0;
  float: left;
  border-right: 1px dashed #ccc;
  border-left: 0;
  text-indent: 15px; }
  @media (max-width: 900px) {
    form.form-full input {
      width: 100%;
      border-right: 0;
      border-bottom: 1px dashed #ccc; } }
  form.form-full input.no-border {
    border-right: 0; }
  form.form-full input.first {
    border-radius: 2px 0 0 2px; }
    @media (max-width: 900px) {
      form.form-full input.first {
        border-radius: 2px 2px 0 0; } }
  form.form-full input.last {
    border-right: 0; }
    @media (max-width: 900px) {
      form.form-full input.last {
        border-radius: 0;
        border-bottom: 0; } }

form.form-full .submitButton {
  border: 0px solid #eeb20f;
  color: #222;
  margin: 0px;
  height: 55px;
  padding-left: 0;
  font-size: 18px;
  width: 20%;
  font-weight: 600;
  text-indent: 0;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  background: #e4bb36;
  font-family: 'Paytone One', sans-serif; }
  @media (max-width: 900px) {
    form.form-full .submitButton {
      width: 100%;
      border-radius: 0 0 2px 2px; } }

/* @end */
/* @group Page Blocks*/
.page_blocks {
  margin-top: 0px; }
  .page_blocks .page_block {
    width: 31.8333333333%;
    margin: .75% .75%;
    float: left;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: black;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    @media (max-width: 1100px) {
      .page_blocks .page_block {
        width: 48.5%; } }
    @media (max-width: 650px) {
      .page_blocks .page_block {
        width: 100%;
        margin: 10px 0;
        max-width: 400px;
        float: none;
        display: inline-block; } }
    @media (min-width: 900px) {
      .page_blocks .page_block:hover {
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3);
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s; } }
  @media (min-width: 900px) and (max-width: 500px) {
    .page_blocks .page_block:hover {
      box-shadow: none; } }
    @media (min-width: 900px) {
        .page_blocks .page_block:hover .button.yellow {
          background: #e4bb36;
          color: black;
          -webkit-transition: all .3s;
          -moz-transition: all .3s;
          -o-transition: all .3s;
          transition: all .3s; }
        .page_blocks .page_block:hover img {
          opacity: 1;
          -webkit-transition: all .3s;
          -moz-transition: all .3s;
          -o-transition: all .3s;
          transition: all .3s; } }
    .page_blocks .page_block a {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 99; }
    .page_blocks .page_block img {
      width: 100%;
      opacity: .8;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
    .page_blocks .page_block h2 {
      font-size: 22px;
      line-height: 24px;
      font-weight: 400;
      color: #e4bb36;
      margin: 0 0 5px 0;
      margin-top: 20px;
      overflow: hidden;
      padding: 0 10px; }
    .page_blocks .page_block p {
      font-size: 15px;
      font-weight: 400;
      padding: 0px 20px 10px;
      line-height: 22px;
      max-height: 65px;
      overflow: hidden;
      color: white; }
    .page_blocks .page_block .button.yellow {
      border: 2px solid #e4bb36;
      background: black;
      color: #e4bb36;
      margin: 5px 0 30px 0;
      padding: 12px 30px 15px;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      font-size: 18px; }
    .page_blocks .page_block .bottom {
      background: #000;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      padding: 15px; }
    .page_blocks .page_block.no_link {
      padding-bottom: 20px; }
      .page_blocks .page_block.no_link:hover {
        box-shadow: none; }
      .page_blocks .page_block.no_link img {
        opacity: 1; }
      .page_blocks .page_block.no_link p {
        font-weight: 400; }
      .page_blocks .page_block.no_link.bold p {
        font-weight: 600;
        font-size: 15px; }
    .page_blocks .page_block.press p {
      min-height: 65px; }
      @media (max-width: 650px) {
        .page_blocks .page_block.press p {
          min-height: 0; } }
  .page_blocks.four .page_block {
    width: 23.5%; }
    @media (max-width: 1100px) {
      .page_blocks.four .page_block {
        width: 48.5%;
        margin: .75%; } }
    @media (max-width: 650px) {
      .page_blocks.four .page_block {
        width: 100%;
        margin: .75% 0; } }
    .page_blocks.four .page_block h2 {
      font-size: 22px;
      line-height: 24px; }
  .page_blocks.inline {
    text-align: center; }
    .page_blocks.inline .page_block {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: 31.6333333333%; }
      @media (max-width: 650px) {
        .page_blocks.inline .page_block {
          width: 100%;
          margin: 10px 0;
          max-width: 400px;
          float: none;
          display: inline-block; } }

/* @end */
/* @group Buttons*/
.button {
  padding: 20px 45px;
  margin: 50px 5px 0px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  line-height: 23px;
  border-radius: 3px;
  border: 0;
  font-family: 'Paytone One', sans-serif; }
  @media (max-width: 350px) {
    .button {
      padding: 15px 30px;
      font-size: 20px;
      line-height: 20px; } }
  .button.black {
    background: black;
    color: #fff; }
    .button.black:hover {
      opacity: .7; }
  .button.white {
    background: transparent;
    color: #000;
    border: 2px solid #000; }
    .button.white:hover {
      background: #000;
      color: #fff; }
  .button.red {
    background: #d53923;
    color: #fff; }
    .button.red:hover {
      background: #a92d1c; }
    .button.red.round {
      width: auto;
      border-radius: 3px;
      padding: 12px 25px 15px;
      margin-top: -50px;
      font-size: 18px;
      position: relative;
      top: -23px; }

.buttons {
  width: 100%;
  text-align: center; }

/* @end */
/* @group Info Block */
.info_block {
  width: 100%;
  float: left;
  padding: 35px 0px 30px;
  position: relative;
  border-bottom: 1px dashed #ddd;
  /* border-top: 1px solid #e5e5e5; */ }
  .info_block:last-child {
    border-bottom: 0;
    padding-bottom: 0; }
  .info_block h3 {
    font-family: 'Paytone One', sans-serif;
    margin-top: 0px; }
    .info_block h3 a {
      font-size: 15px;
      font-style: italic; }
  .info_block .content_container.on {
    display: inline-block;
    width: 100%; }
    .info_block .content_container.on .placeholder {
      content: '';
      width: 27%;
      margin-bottom: 13px; }
      @media (max-width: 650px) {
        .info_block .content_container.on .placeholder {
          display: none; } }
    .info_block .content_container.on.left .placeholder {
      float: left; }
  .info_block .image {
    border: 1px solid #e4e4e4;
    padding: 7px;
    background: #fff;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 10px;
    position: relative;
    width: 25%; }
    @media (max-width: 650px) {
      .info_block .image {
        width: 100%;
        margin-top: 20px; } }
    .info_block .image.left {
      position: absolute;
      top: 35px; }
      @media (max-width: 650px) {
        .info_block .image.left {
          position: static;
          right: 0 !important;
          left: 0 !important; } }
    .info_block .image.left {
      left: 0px; }
      @media (max-width: 1100px) {
        .info_block .image.left {
          left: 0px; } }
  .info_block img.image {
    width: 25%; }
    @media (max-width: 768px) {
      .info_block img.image {
        width: 50%; } }
    @media (max-width: 650px) {
      .info_block img.image {
        width: 100%;
        margin: 20px 0 5px 0;
        padding: 0; } }
  .info_block .budget {
    font-size: 15px;
    line-height: 22px; }
    .info_block .budget span {
      display: inline-block;
      vertical-align: middle;
      font-size: 15px; }
    .info_block .budget img {
      display: inline-block;
      vertical-align: middle;
      height: 17px; }
  .info_block p {
    font-size: 17px; }

/* @end */
/* @group Testimonials Main */
.testimonials-main {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 25px;
  overflow: hidden; }
  .testimonials-main .group {
    width: 100%;
    float: left;
    padding: 50px 0px;
    border-bottom: 1px solid #eee; }
    .testimonials-main .group:last-child {
      margin-bottom: 0;
      border-bottom: 0; }
    .testimonials-main .group img {
      width: 200px;
      border-radius: 50%;
      float: left;
      margin-right: 30px;
      border: 7px solid #f2f2f2; }
      @media (max-width: 650px) {
        .testimonials-main .group img {
          float: none;
          margin-bottom: 15px; } }
    .testimonials-main .group .content {
      text-align: left;
      overflow: hidden; }
      @media (max-width: 650px) {
        .testimonials-main .group .content {
          text-align: center; } }
      .testimonials-main .group .content p {
        font-size: 16px;
        font-style: italic;
        margin-top: 0; }
        .testimonials-main .group .content p.name {
          font-size: 24px;
          color: #1188d6;
          margin-top: 30px;
          font-weight: 400; }
          @media (max-width: 900px) {
            .testimonials-main .group .content p.name {
              margin-top: 15px; } }
          .testimonials-main .group .content p.name span {
            font-size: 18px; }

/* @end */
/* @group Image Group*/
.image_group {
  width: 100%;
  margin-top: 20px; }
  .image_group img {
    display: inline-block;
    margin: 5px 2%;
    width: auto;
    /*max-width: (100%/7);*/
    height: 75px;
    vertical-align: middle; }
    @media (max-width: 900px) {
      .image_group img {
        margin: 5px 4% 25px; } }
    @media (max-width: 650px) {
      .image_group img {
        height: 55px; } }

/* @end */
/* @group Location */
.location {
  padding: 50px 0;
  border-bottom: 1px solid #eee; }
  .location h3 {
    margin-bottom: 5px;
    margin-top: 0; }
  .location .gallery {
    width: 100%;
    margin-top: 0px; }
    .location .gallery img {
      display: inline-block;
      margin: 5px .4%;
      border: 1px solid #e1e1e1;
      padding: 7px;
      width: auto;
      height: 135px;
      vertical-align: middle;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
      .location .gallery img:hover {
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        opacity: .8; }
      @media (max-width: 900px) {
        .location .gallery img {
          margin: 5px 4% 25px; } }
      @media (max-width: 650px) {
        .location .gallery img {
          height: 55px; } }

/* @end */
/* @group Forms*/
form.form-val {
  width: 100%;
  text-align: center; }
  form.form-val.short {
    width: 300px;
    padding: 15px 15px 20px 15px;
    background: #f2f2f2;
    border: 1px solid #e5e5e5;
    border-radius: 2px; }
    @media (max-width: 650px) {
      form.form-val.short {
        width: 100%;
        margin: 25px 0 0px;
        text-align: center; } }
    form.form-val.short.right {
      float: right;
      margin-left: 25px; }
    form.form-val.short.left {
      float: left;
      margin-right: 25px; }
    form.form-val.short h2 {
      font-size: 22px;
      text-align: left;
      margin-bottom: 5px; }
      @media (max-width: 650px) {
        form.form-val.short h2 {
          text-align: center; } }
      @media (max-width: 350px) {
        form.form-val.short h2 {
          font-size: 19px; } }
    form.form-val.short input {
      background: white;
      text-indent: 15px;
      height: 44px;
      width: 100%;
      font-size: 16px;
      font-weight: 400;
      border-radius: 0px;
      border: 1px solid #eee;
      float: left;
      color: #000;
      font-family: inherit;
      margin: 0; }
      form.form-val.short input.submitBtn {
        background: #1188d6;
        text-indent: 0;
        color: #fff;
        border-radius: 0 0 6px 6px;
        height: 55px;
        font-size: 22px;
        font-weight: 700;
        line-height: 55px;
        border-bottom: 4px solid #0f7cc3; }
        form.form-val.short input.submitBtn:hover {
          background: #0f76ba; }
  form.form-val #Country {
    display: none; }
  form.form-val .group {
    width: 100%;
    float: left;
    margin-bottom: 2%;
    padding: 0 1%; }
    form.form-val .group.half {
      width: 50%; }
      @media (max-width: 500px) {
        form.form-val .group.half {
          width: 100%;
          margin-right: 0; } }
      form.form-val .group.half.end {
        margin-right: 0; }
    form.form-val .group.third {
      width: 32.65%;
      margin-right: 1%; }
      @media (max-width: 500px) {
        form.form-val .group.third {
          width: 100%;
          margin-right: 0; } }
      form.form-val .group.third.end {
        margin-right: 0; }
    form.form-val .group label {
      width: 100%;
      font-size: 16px;
      margin: 20px 0 5px;
      float: left;
      color: #000;
      font-weight: 300; }
    form.form-val .group input {
      background: white;
      text-indent: 15px;
      height: 55px;
      width: 100%;
      font-size: 18px;
      font-weight: 400;
      border-radius: 0px;
      border: 1px solid #ccc;
      float: left;
      color: #000;
      font-family: inherit; }
    form.form-val .group textarea {
      background: white;
      padding: 15px 15px;
      height: 200px;
      color: #000;
      width: 100%;
      font-size: 18px;
      line-height: 22px;
      font-weight: 400;
      border-radius: 3px;
      border-bottom: 7px;
      font-family: inherit;
      border-radius: 2px;
      border: 1px solid #ccc;
      float: left;
      resize: none; }
    form.form-val .group .drop_line {
      background: #fff url(../img/drop_arrow.png) no-repeat right;
      height: 55px;
      padding: 0px;
      display: inline-block;
      border-radius: 0px;
      width: 100%;
      margin-bottom: 0px;
      margin-top: 0px;
      float: right;
      border: 1px solid #ccc; }
      form.form-val .group .drop_line span.drop {
        width: 100%;
        display: inline-block; }
        form.form-val .group .drop_line span.drop select {
          font-family: inherit;
          background: none;
          position: relative;
          top: 0px;
          border: 0px solid #ddd;
          border-radius: 0px;
          padding: 0 7px 0 10px;
          height: 55px;
          color: #555;
          text-indent: 0px;
          vertical-align: middle;
          font-size: 16px;
          width: 100%;
          margin: 0;
          outline: none;
          display: inline-block;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          cursor: pointer;
          color: #000; }
  form.form-val input.needsfilled, form.form-val textarea.needsfilled {
    background: #fcebeb !important;
    border: 1px solid #e49f9f !important;
    color: #af0202 !important; }
  form.form-val .button {
    text-align: center;
    margin-top: 10px;
    outline: none; }
  form.form-val .country {
    display: none; }

/* @end */
/* @group FAQ */
.accordion {
  width: 100%;
  overflow: hidden;
  text-align: left;
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc; }
  .accordion .question {
    width: 100%;
    padding: 15px;
    font-size: 17px;
    font-weight: 400;
    background: url(../img/more.svg) no-repeat 12px center #1188d6;
    background-size: 11px !important;
    padding-left: 35px;
    border: 1px solid #128edf;
    margin-bottom: -1px;
    color: #fff;
    float: left;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    .accordion .question:hover {
      background: url(../img/more.svg) no-repeat 12px center #0075C2;
      background-size: 11px !important;
      color: #fff;
      cursor: pointer;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
    .accordion .question.active {
      background: url(../img/less.svg) no-repeat 12px center white;
      color: #000;
      border: 1px solid #ccc;
      border-bottom: 0; }
  .accordion .answer {
    padding: 0px 15px 35px 35px;
    display: none;
    line-height: 23px;
    background: #fff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    float: left; }
    .accordion .answer p {
      font-size: 17px;
      line-height: 24px; }
    .accordion .answer.show {
      display: block; }

.help-bottom {
  margin-top: 30px;
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 40px; }
  @media (max-width: 650px) {
    .help-bottom {
      margin-bottom: 100px; } }
  .help-bottom p {
    font-family: "museo-slab",serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px; }
  .help-bottom .button {
    margin-top: 0; }

/* @end */
/* @group Video */
.videoWrapper {
  position: relative;
  padding-bottom: 0%;
  padding-top: 25px;
  width: 100%;
  max-width: 570px;
  height: 322px; }

.videoWrapper.right {
  float: right;
  margin: 10px 0 25px 25px; }

.videoWrapper.left {
  float: left;
  margin: 10px 25px 25px 0px; }

.videoWrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  height: auto; }

.embed-container.right {
  float: right; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* @end */
/* @group Contact Us*/
.contact_us h1, .contact_us h2 {
  font-size: 25px; }

@media (max-width: 900px) {
  .contact_us h1 {
    font-size: 35px; } }

.contact_us .left {
  float: left;
  width: 65%;
  border-right: 1px solid #ccc;
  padding-right: 50px; }
  .contact_us .left form {
    max-width: none;
    margin-left: -10px; }
    @media (max-width: 900px) {
      .contact_us .left form {
        max-width: 550px;
        display: inline-block;
        margin-left: 0; } }
  @media (max-width: 900px) {
    .contact_us .left {
      width: 100%;
      padding-right: 0;
      border: 0;
      float: none;
      text-align: center; } }

.contact_us .right {
  float: right;
  width: 30%;
  /*
background: #fff;
		padding: 20px;
		border: 1px solid #eee;
*/ }
  @media (max-width: 900px) {
    .contact_us .right {
      width: 100%;
      float: none;
      text-align: center;
      margin-top: 50px; } }

/* @end */
/* @group Maps*/
.maps-cover {
  width: 100%; }
  .maps-cover iframe {
    pointer-events: none;
    width: 100%; }

/* @end */
/* @group Footer */
.footer-top {
  width: 100%;
  background: #000;
  padding: 25px 0px;
  text-align: center; }
  .footer-top p {
    font-size: 22px;
    line-height: 22px;
    margin: 0px;
    font-weight: 300;
    color: #e4bb36;
    display: inline-block;
    font-family: 'Paytone One', sans-serif; }
    .footer-top p a {
      font-weight: 600;
      color: #e4bb36;
      border: 2px solid #e4bb36;
      border-radius: 2px;
      padding: 5px 10px;
      text-decoration: none;
      font-size: 20px;
      margin-left: 10px; }
      .footer-top p a:hover {
        background: #e4bb36;
        color: black; }
      @media (max-width: 650px) {
        .footer-top p a {
          display: block;
          padding: 15px;
          margin-top: 15px; } }

.footer-mid {
  width: 100%;
  background: url(../img/footer-back.jpg) top center #000;
  background-size: cover;
  padding: 50px 0px;
  text-align: center;
  position: relative; }
  @media (max-width: 650px) {
    .footer-mid {
      padding: 15px 0 25px; } }
  .footer-mid .filter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: black;
    opacity: .8; }
  .footer-mid p {
    color: #fff;
    font-size: 23px;
    line-height: 28px;
    position: relative;
    z-index: 2; }
    @media (max-width: 650px) {
      .footer-mid p {
        font-size: 18px;
        line-height: 25px;
        margin: 15px 0 0 0; } }
    .footer-mid p span {
      font-style: italic;
      font-size: 14px; }
    .footer-mid p.created {
      font-weight: 600;
      font-size: 14px; }
      .footer-mid p.created a {
        color: white;
        text-decoration: none; }
  .footer-mid .social a {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    height: 28px;
    margin-top: 20px;
    position: relative;
    z-index: 2; }
    .footer-mid .social a img {
      height: 100%; }

/* @end */
@media (max-width: 1100px) {
  *, *:hover {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -moz-transform: scale(1) !important;
    -o-transform: scale(1) !important; } }

/* @group Blog Homepage */
section .container.wide {
  max-width: 1300px;
  width: 100%; }

section.blog-single {
  padding-top: 80px;
  padding-bottom: 80px; }
  @media (max-width: 1100px) {
    section.blog-single {
      padding-top: 60px; } }
  @media (max-width: 650px) {
    section.blog-single {
      padding-top: 25px; } }

.blog-top {
  padding: 70px 0 40px; }
  .blog-top h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin: 0 0 0px 0;
    color: #000;
    text-transform: uppercase;
    font-family: "museo-slab",serif; }
  .blog-top h2 {
    font-size: 18px;
    line-height: 23px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
    color: #12181f;
    font-family: "museo-slab",serif; }

.blogg {
  width: 100%;
  text-align: left; }
  .blogg.home {
    margin-top: 50px;
    text-align: center; }
    .blogg.home .post {
      min-height: 420px;
      text-align: left; }
      @media (max-width: 650px) {
        .blogg.home .post {
          width: 100%;
          margin: 10px 0;
          max-width: 400px;
          float: none;
          display: inline-block; } }
  .blogg .post {
    float: left;
    vertical-align: top;
    text-align: left;
    border: 1px solid #d8d8d8;
    border-bottom: 0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #000;
    width: 31.8333333333%;
    margin: .75% .75%;
    min-height: 470px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    @media (max-width: 768px) {
      .blogg .post {
        width: 48.5%; } }
    @media (max-width: 650px) {
      .blogg .post {
        width: 47%;
        margin: 1.5%; } }
    @media (max-width: 500px) {
      .blogg .post {
        width: 100%;
        margin: 10px 0; } }
    .blogg .post:hover {
      box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3);
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
      @media (max-width: 500px) {
        .blogg .post:hover {
          box-shadow: none; } }
    .blogg .post a.link {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .blogg .post img.img {
      width: 100%; }
    .blogg .post .padding {
      padding: 20px;
      height: 185px;
      overflow: hidden;
      margin-bottom: 5px; }
    .blogg .post .banner {
      position: absolute;
      top: 0;
      right: 0;
      width: 130px; }
    .blogg .post .date {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.78);
      padding: 5px 10px 7px;
      width: 55px;
      text-align: center; }
      .blogg .post .date span {
        color: #fff;
        display: block; }
        .blogg .post .date span.small {
          font-size: 10px;
          text-transform: uppercase;
          font-weight: 400; }
        .blogg .post .date span.large {
          font-size: 28px;
          line-height: 28px;
          font-weight: 500; }
    .blogg .post h2 {
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
      color: #e4bb36;
      margin: 0;
      height: 46px;
      overflow: hidden; }
    .blogg .post h3 {
      font-size: 18px;
      line-height: 25px;
      font-weight: 400;
      color: white;
      margin: 15px 0px 0px 0px; }
    .blogg .post p {
      color: white;
      font-size: 16px;
      line-height: 22px;
      font-weight: 500;
      margin-top: 10px; }
      .blogg .post p.subhead a {
        color: #4fa0e0;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        margin: 15px 0; }
    .blogg .post .bottom {
      padding: 20px;
      margin-top: 20px;
      overflow: hidden; }
      .blogg .post .bottom .left {
        float: left;
        color: white;
        font-size: 14px; }
      .blogg .post .bottom .right {
        float: right; }
        .blogg .post .bottom .right a img {
          position: relative;
          z-index: 99999;
          width: 25px;
          border: 0; }
    .blogg .post.event p.bold {
      margin-top: 0px;
      margin-bottom: 0px;
      line-height: 23px; }
      .blogg .post.event p.bold strong {
        font-weight: 600; }

/* @end */
/* @group Blog Left & Right */
section .blog-left {
  width: 70%;
  float: left; }
  @media (max-width: 900px) {
    section .blog-left {
      width: 100%; } }
  section .blog-left span.sub {
    font-size: 14px;
    font-style: italic;
    color: #12181f;
    float: left;
    width: 100%;
    margin-bottom: 15px; }
    section .blog-left span.sub a {
      color: #04A4CC; }
  section .blog-left p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 300;
    color: #12181f;
    margin-bottom: 25px; }
    section .blog-left p a {
      font-weight: 400; }
  section .blog-left .entry-content {
    background: #fff;
    border: 1px solid #D8D8D8;
    border-bottom: 2px solid #D8D8D8;
    border-radius: 2px;
    text-align: left;
    position: relative;
    padding: 0;
    margin-bottom: 15px;
    overflow: hidden; }
    section .blog-left .entry-content .featured {
      width: 100%;
      margin: 0 0 15px 0; }
    section .blog-left .entry-content .padding {
      padding: 35px; }
      @media (max-width: 500px) {
        section .blog-left .entry-content .padding {
          padding: 20px; } }
    section .blog-left .entry-content h1 {
      margin: 0 0 15px 0;
      font-weight: 400;
      font-size: 30px;
      line-height: 36px;
      color: #12181f;
      width: 100%;
      text-align: left; }
      @media (max-width: 650px) {
        section .blog-left .entry-content h1 {
          font-size: 24px;
          line-height: 32px; } }
      section .blog-left .entry-content h1 .spacer {
        margin-bottom: 20px; }
    section .blog-left .entry-content h2 {
      font-size: 22px;
      color: #12181f;
      line-height: 24px;
      font-weight: 400;
      margin: 5px 0 5px 0;
      display: block; }
    section .blog-left .entry-content h3.author-title {
      margin: 0px 0 30px 0;
      padding: 0;
      font-size: 16px;
      font-weight: 300;
      width: 100%;
      text-align: left; }
      section .blog-left .entry-content h3.author-title a {
        font-weight: 500; }
    section .blog-left .entry-content p.category {
      margin: 0 0 30px 0;
      font-size: 16px;
      font-weight: 300;
      text-decoration: none; }
      section .blog-left .entry-content p.category a {
        text-decoration: none; }
        section .blog-left .entry-content p.category a:hover {
          text-decoration: underline; }
    section .blog-left .entry-content h3:nth-child(1) {
      margin-top: 0 !important; }
    section .blog-left .entry-content h4, section .blog-left .entry-content h4 b {
      font-size: 17px;
      font-weight: 400;
      margin-bottom: 0px; }
    section .blog-left .entry-content p strong, section .blog-left .entry-content p b, section .blog-left .entry-content li b {
      font-weight: 600; }
    section .blog-left .entry-content table {
      margin: -10px 0 15px; }
    section .blog-left .entry-content tr td {
      font-size: 15px;
      font-weight: 400;
      line-height: 20px;
      padding: 5px 0px; }
    section .blog-left .entry-content pre {
      width: 100%;
      word-break: break-word;
      background: #f2f2f2;
      padding: 20px;
      border: 1px solid #eee;
      margin-bottom: 20px; }
  section .blog-left .entry {
    display: block;
    padding: 35px 0 35px;
    border-top: 1px solid #eee; }
    section .blog-left .entry:after {
      visibility: hidden;
      display: block;
      content: "";
      clear: both;
      height: 0; }
    section .blog-left .entry.off {
      border-top: none;
      padding: 0px 0 30px; }
    section .blog-left .entry:first-child {
      border-top: 0;
      padding-top: 1px; }

section .entry-content iframe {
  max-width: 100%; }

section .blog-right {
  width: 27%;
  float: right; }

/* @end */
/* @group Images */
img.full.featured {
  margin-bottom: 10px; }

.hover.full {
  width: 100%; }

.wp-caption {
  background: #FFF;
  border: 1px solid #eee;
  padding: 6px 6px;
  text-align: center;
  display: table;
  margin-bottom: 30px !important; }
  .wp-caption .right {
    float: right;
    margin: 5px 0 15px 15px; }
  .wp-caption .left {
    float: left;
    margin: 5px 15px 15px 0px; }
  .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto; }
  .wp-caption .wp-caption-text, .wp-caption .gallery-caption {
    font-size: 16px;
    line-height: 25px;
    margin: 0;
    color: #12181f;
    padding: 20px;
    text-align: left; }

.alignnone {
  margin: 5px 20px 0px 0;
  max-width: 100%;
  width: auto !important;
  height: auto !important; }

.alignleft {
  margin: 5px 20px 20px 0;
  width: auto !important;
  height: auto !important;
  max-width: 40%;
  float: left; }

.alignright {
  margin: 5px 0 20px 20px;
  width: auto !important;
  height: auto !important;
  max-width: 40%;
  float: right; }
  @media (max-width: 500px) {
    .alignright {
      max-width: 100%;
      margin-left: 0; } }

.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
  width: auto;
  max-width: 100%;
  height: auto !important; }

/* @end */
/* @group General */
.full {
  width: 100%; }

.author {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 25px;
  position: relative;
  z-index: 1;
  background: #fff;
  margin-top: 15px; }
  .author p {
    margin: 0;
    padding: 0;
    vertical-align: middle; }
  .author .author-image {
    float: left;
    background: #FFF;
    border: 1px solid #eee;
    padding: 6px 6px;
    height: 105px;
    width: 105px;
    margin-right: 10px;
    vertical-align: middle; }

#nav-below {
  float: left;
  width: 100%;
  padding: 40px 0; }

#nav-below a {
  margin: 0 5px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 15px 35px;
  margin: 25px 5px 0px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  border-radius: 4px;
  border: 0;
  background: #000;
  color: #fff;
  font-family: 'Paytone One', sans-serif; }
  #nav-below a:hover {
    background: #000;
    color: #fff; }

body blockquote {
  background: #f2f2f2;
  padding: 20px;
  margin: 10px 0px 25px 0px; }
  body blockquote p {
    margin: 0 !important; }

/* @end*/
/* @group Blog Comments */
.comments-group .comments {
  text-align: left; }
  .comments-group .comments h2 {
    background: url(../img/arrow.png) no-repeat center right #12181f;
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    padding: 15px 30px;
    margin: 25px 0 0;
    cursor: pointer; }
    .comments-group .comments h2.closed {
      background: url(../img/arrow-closed.png) no-repeat center right #12181f; }
  .comments-group .comments h3 {
    width: 100%;
    font-size: 22px;
    margin: 0;
    padding: 0px;
    margin-bottom: 15px;
    font-weight: 400;
    padding-bottom: 3px;
    position: relative;
    line-height: 25px; }
    .comments-group .comments h3 span {
      font-weight: 300;
      color: #12181f; }
  .comments-group .comments ul {
    list-style: none;
    margin: 0px;
    padding: 0; }
    .comments-group .comments ul li.comment {
      background: #fff;
      border: 1px solid #d8d8d8;
      padding: 30px;
      font-size: 12px;
      line-height: 16px;
      list-style: none;
      margin-bottom: 25px; }
      .comments-group .comments ul li.comment.depth-3 {
        margin-bottom: 0; }
      .comments-group .comments ul li.comment.comment-body {
        clear: both;
        padding: 0px; }
      .comments-group .comments ul li.comment ul.children li {
        background: #e8eaea;
        border: 1px solid #c8c8c8;
        margin-top: 25px; }
        .comments-group .comments ul li.comment ul.children li.depth-2 {
          margin-bottom: 0; }
        .comments-group .comments ul li.comment ul.children li ul.children li {
          background: #d7d9d9;
          border: 1px solid #bbbbbb; }
  .comments-group .comments .comment-body p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300; }
  .comments-group .comments .reply {
    margin: -5px 0 0px; }
    .comments-group .comments .reply a {
      font-size: 16px;
      color: #12181f;
      font-weight: 300; }

#respond {
  background: #fff;
  border: 1px solid #d8d8d8;
  padding: 0px;
  font-size: 12px;
  line-height: 16px;
  list-style: none;
  border-radius: 3px;
  margin-top: 25px; }
  #respond h3 {
    background: #000;
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    padding: 15px 30px;
    margin: 0px 0px 0px;
    width: 100%; }
    #respond h3#reply-title small a {
      color: #fff;
      float: right;
      font-size: 18px; }
  #respond form {
    padding: 25px; }
    #respond form p {
      margin: 0; }
  #respond #commentform .comment-form-url input,
  #respond #commentform .comment-form-email input,
  #respond #commentform .comment-form-author input,
  #respond #commentform .comment-form-comment textarea {
    display: block;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    margin: 10px 0; }
  #respond #commentform p input#submit {
    background: #000;
    color: #fff;
    padding: 15px 25px;
    border: none;
    font-size: 18px;
    border-radius: 2px;
    margin-top: 20px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    #respond #commentform p input#submit:hover {
      opacity: .7;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }

/* @end */
/* @group Blog Sidebar */
section .sidebar {
  float: right;
  width: 28%;
  text-align: left; }
  @media (max-width: 900px) {
    section .sidebar {
      width: 100%;
      margin-top: 30px; } }
  section .sidebar h2 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: #12181f;
    text-decoration: none;
    padding: 15px 15px 10px 15px;
    margin: 0; }
  section .sidebar .group {
    border: 1px solid #D8D8D8;
    border-bottom: 2px solid #D8D8D8;
    padding: 20px;
    margin-bottom: 30px; }
    section .sidebar .group.related {
      padding: 0;
      border: 0; }
      section .sidebar .group.related .recent {
        display: block;
        padding: 0px;
        background: #fff;
        position: relative;
        margin: 0px 0 25px;
        border: 1px solid #D8D8D8;
        border-bottom: 2px solid #D8D8D8;
        transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); }
        section .sidebar .group.related .recent:hover {
          -webkit-transition: all .3s;
          -moz-transition: all .3s;
          -o-transition: all .3s;
          transition: all .3s;
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3); }
          @media (max-width: 500px) {
            section .sidebar .group.related .recent:hover {
              box-shadow: none; } }
        section .sidebar .group.related .recent a {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0; }
        section .sidebar .group.related .recent img {
          width: 100%; }
        section .sidebar .group.related .recent span {
          font-size: 15px;
          font-style: italic;
          padding: 0 15px 20px 15px;
          display: block; }
  section .sidebar .share-bar {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    text-align: left;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 0px; }
    section .sidebar .share-bar a {
      width: 15.6666666667%;
      margin-right: .5%;
      margin-left: .5%;
      text-align: center;
      float: left; }
      section .sidebar .share-bar a:hover {
        opacity: .7; }
      section .sidebar .share-bar a img {
        width: 100%;
        max-width: 65px;
        display: inline-block; }

/* @end */
/* @group Blog Sharebar */
/*
.sidebar {
	float: right;
	width: 28%;	
	text-align: left;
}
.sidebar .group {
	margin-bottom: 25px;
}
.sidebar .group.related {
	border-bottom: 0px;
	padding: 0;
	border: 0;
}
.sidebar .group.related.fixed {
	position: fixed;
	max-width: 270px;
}
.sidebar .group > h2 {
	color: $font-dark;
	font-size: 24px;
	font-weight: 400;
	padding: 0px;
	margin-top: 0;
}
.sidebar .group .recent {
	display: block;
	padding: 0px;
	background: #fff;
	border: 1px solid #ddd;
	position: relative;
	margin: 0px 0 25px;
}
.sidebar .group .recent:hover {
	opacity: .7;
}


.sidebar .group .recent span {
	font-size: 15px;
	font-style: italic;
	padding: 0 15px 20px 15px;
	display: block;
}
.side-bar {
	float: right;
	width: 100%;
	border-radius: 3px;
	border: 1px solid #ddd;
	padding: 10px;
	margin-bottom: 10px;
	background: #fff;
}
.side-bar h3 {
	font-weight: 400;
	color: $font-dark;
	font-size: 20px;
	margin: 0 0 10px 0;
}
*/
/*
.share iframe {
	width: 80px !important;
}
.fb_iframe_widget {
	vertical-align: top;
	top: -2px;
	margin-right: 5px;
}
.share-bar {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	text-align: left;
	padding: 15px 0px 15px 15px;
	margin-bottom: 20px;
	margin-top: 0px;
}
.share-bar a {
	float: left;
	margin-right: 1%;
	width: 15%;
}
.share-bar a:hover {
	opacity: .7;
}
.share-bar img {
	width: 100%;
}
.share-bar a.last {
	margin-right: 0;
}
h3 {
	font-size: 16px;
	margin: 5px 0 7px;
}
*/
/* @end */
/* @group Filter*/
.sort {
  width: 100%;
  display: block;
  float: left;
  padding-right: .5%; }
  @media (max-width: 500px) {
    .sort {
      display: none; } }
  .sort .drop_line {
    background: #fff url(../img/drop_arrow.png) no-repeat right;
    height: 37px;
    padding: 0px;
    display: inline-block;
    border-radius: 0px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 2px;
    float: right;
    max-width: 287px;
    border: 1px solid #ddd; }
    .sort .drop_line span.drop {
      width: 100%;
      display: inline-block; }
      .sort .drop_line span.drop select {
        background: none;
        position: relative;
        top: 0px;
        border: 0px solid #ddd;
        border-radius: 0px;
        padding: 0 7px 0 10px;
        height: 37px;
        text-indent: 0px;
        vertical-align: middle;
        font-size: 12px;
        width: 100%;
        margin: 0;
        outline: none;
        display: inline-block;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
        color: #12181f; }

/* @end */
/* @group Request Layer */
.trigger * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

.trigger input {
  width: 100%;
  text-indent: 10px;
  border-radius: 0; }

.trigger input[type=submit] {
  text-indent: 0;
  -webkit-appearance: none; }

.modal_background {
  display: none;
  position: fixed;
  background: black;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .65;
  z-index: 9999999; }

.modal_group {
  position: absolute;
  top: -9999px;
  left: 50%;
  margin-top: 80px;
  margin-left: -140px;
  z-index: 99999999;
  width: 450px; }
  @media (max-width: 900px) {
    .modal_group {
      margin-left: -225px; } }

.modal_content {
  width: 100%;
  max-width: 450px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24);
  padding: 40px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box; }
  .modal_content form label {
    width: 100%;
    margin-bottom: 10px;
    display: block; }
  .modal_content form input {
    height: 45px;
    text-indent: 15px;
    width: 100%;
    margin: 0;
    font-size: 15px;
    outline: none;
    border: 0;
    outline: 1px solid #e4decb;
    outline-offset: 0; }
  .modal_content form .button {
    background: black;
    color: white;
    margin: 0px 0;
    height: 50px;
    line-height: 0px;
    text-indent: 0;
    width: 100%;
    font-size: 20px; }
    .modal_content form .button:hover {
      background: #222; }
  .modal_content .btns {
    width: 100%;
    text-align: left; }
    .modal_content .btns a {
      display: inline-block;
      background: black;
      border-radius: 3px;
      padding: 10px 15px;
      color: white;
      text-decoration: none;
      font-size: 18px;
      margin-right: 5px;
      float: left;
      font-family: 'Paytone One', sans-serif; }

.app-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 99999;
  width: 22px;
  cursor: pointer; }

.title-bar {
  padding: 0;
  height: auto;
  margin-top: -4px;
  margin-bottom: 20px;
  background: transparent; }
  .title-bar h1 {
    color: #000;
    margin: 0;
    padding: 0;
    font-family: 'Paytone One', sans-serif;
    font-size: 24px; }

/* @end */
/* @group MailChimp */
.mc-field-group input.email {
  background: white;
  border: 1px solid #ddd;
  color: black;
  margin-bottom: 10px; }

.mc-field-group label {
  color: black; }

/* @end */
@media only screen and (max-width: 550px) {
  .modal_content {
    width: 100%;
    margin: 0;
    height: auto !important;
    max-width: none;
    box-shadow: none; }
  .noscroll {
    overflow: hidden !important;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .modal_group {
    display: none;
    position: fixed;
    top: 0px !important;
    bottom: 0px !important;
    left: 0;
    right: 0;
    overflow-y: scroll;
    background: #fff;
    width: 100%;
    margin: 0; }
  .modal_background {
    background: #fff;
    opacity: 1;
    position: fixed;
    width: 100%;
    top: -2200px;
    bottom: 1600px;
    left: 0;
    right: 0;
    display: block; } }

/* General Styles */
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

body, html {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #000;
  overflow-x: hidden;
  position: relative; }

.no-touch {
  padding-left: 165px; }
  @media (max-width: 1100px) {
    .no-touch {
      padding-left: 140px; } }
  @media (max-width: 900px) {
    .no-touch {
      padding-left: 0; } }

h1, h2, h3 {
  font-family: 'Lato', sans-serif; }

.clear {
  clear: both; }

a {
  color: #3690ea; }

a, a:hover, input, input:hover, button, button:hover {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

a:focus, input[type=text]:focus, input[type=password]:focus, textarea:focus {
  outline: none; }

input, textarea {
  border-radius: 0;
  -webkit-appearance: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
  /*
	 @include breakpoint($phone-l) {
	 	padding: 0 15px;
	 }
*/ }
  @media (max-width: 1100px) {
    .container {
      padding: 0 25px; } }
  .container:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0; }

p {
  margin: 0 0 20px;
  color: #font-dark;
  font-weight: 300;
  font-size: 19px;
  line-height: 30px; }

ul {
  padding: 0 0 0 20px;
  margin: -5px 0 20px 0; }
  ul li {
    color: #font-dark;
    font-weight: 300;
    font-size: 17px;
    line-height: 24px;
    padding: 0; }
    @media (max-width: 650px) {
      ul li {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 10px; } }

strong {
  font-weight: 600; }

ul li {
  list-style-position: inside; }
