/** Colors */

/** Box Model  */

/** Import everything from autoload */

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/

/* pswp = photoswipe */

.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */

.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  -o-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */

.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -o-transform-origin: left top;
     transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  -o-transition: -o-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -o-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  -o-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/

.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/** Import theme styles */

.news-boxes .fl-post-theme {
  width: 100%;
}

.fl-module-post-grid .fl-post-theme {
  width: 100%;
}

.fl-module-post-grid .items.info-items .fl-post-theme {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fl-module-post-grid .news-boxes {
  margin-top: 23px;
}

.fl-module-post-grid .intro-text .row {
  padding: 60px 30px 25px;
}

.fl-module-post-grid .intro-text .row h3 {
  margin-bottom: 30px;
}

.fl-module-post-grid .intro-text .row p {
  font-size: 18px;
  line-height: 26px;
  color: #005826;
}

.fl-module-post-grid .row-flex.items .fl-post-theme {
  max-width: 100%;
}

.sf_pagerNumeric .prev {
  margin: 26px 12px 0 auto;
}

.single-new_home_build .tab-content h3 {
  font-size: 18px;
  line-height: 23px;
}

.fl-post-grid-empty p {
  padding-top: 35px;
  padding-left: 10px;
  color: #005826;
  margin: 0 0 15px;
  font-size: 27px;
  font-weight: 700;
  line-height: 31px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .fl-post-grid-empty p {
    font-size: 25px;
    line-height: 29px;
  }

  .sf_pagerNumeric.type2 .prev {
    margin: 0 12px 26px auto;
  }

  .single-new_home_build .sidebar {
    margin: 30px 0 0;
  }
}

@media screen and (max-width: 767px), screen and (orientation: landscape) and (max-width: 767px), screen and (orientation: portrait) and (max-width: 767px) {
  .fl-post-grid-empty p {
    font-size: 18px;
    line-height: 22px;
  }

  div.slideshow div.page-title {
    bottom: 5px;
    font-size: 20px;
  }
}

.person-box p a {
  word-wrap: break-word;
}

.video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 10px;
  padding-top: 54.5%;
  position: relative;
  margin: 0 0 21px;
}

.video-box .btn-play {
  z-index: 20;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
  background: none;
  padding: 0;
  overflow: hidden;
  text-indent: -9999px;
  position: absolute;
  width: 48px;
  height: 48px;
  border: 0;
}

.video-box .btn-play::before,
.video-box .btn-play::after {
  content: "";
  top: 0;
  left: 0;
  margin: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 48px 48px;
  position: absolute;
  width: 48px;
  height: 48px;
  border: 0;
}

.video-box .btn-play::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA0NyA0NyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDcgNDc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRUVFRUVFO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTE2LjIsMTMuN3YxOS41bDE4LjQtOS44TDE2LjIsMTMuN3ogTTIzLjUsNDdDMTAuNSw0NywwLDM2LjUsMCwyMy41UzEwLjUsMCwyMy41LDBTNDcsMTAuNSw0NywyMy41CglTMzYuNSw0NywyMy41LDQ3eiIvPgo8L3N2Zz4K);
  z-index: 9;
}

.video-box .btn-play::after {
  opacity: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA0NyA0NyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDcgNDc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTE2LjIsMTMuN3YxOS41bDE4LjQtOS44TDE2LjIsMTMuN3ogTTIzLjUsNDdDMTAuNSw0NywwLDM2LjUsMCwyMy41UzEwLjUsMCwyMy41LDBTNDcsMTAuNSw0NywyMy41CglTMzYuNSw0NywyMy41LDQ3eiIvPgo8L3N2Zz4K);
  z-index: 10;
}

.content .btn {
  white-space: normal;
}

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

.main-form ul {
  list-style: none;
  padding: 0;
}

.main-form .sfFormBox {
  padding: 0 0 21px;
  position: relative;
  display: block;
}

.content .main-form ul.gform_fields > li {
  padding: 0;
}

.content .main-form ul.gform_fields > li::before {
  display: none;
}

.content .main-form ul.gform_fields li::before {
  display: none;
}

.select2-results__options {
  max-height: 320px;
  overflow-y: scroll;
}

.search-panel .tab-pane form .btn {
  width: 100%;
  min-width: auto;
  color: #4d4e49;
}

.gfield_choice_3-col-vertical .gfield_checkbox {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .gfield_choice_3-col-vertical .gfield_checkbox {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

.gfield_choice_3-col-vertical .gfield_checkbox li {
  margin-bottom: 12px;
  padding: 0;
}

.gfield_choice_3-col-vertical .gfield_checkbox li label {
  margin: 0;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */

/** Media alignment */

.alignnone {
  height: auto;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.aligncenter {
  display: block;
  height: auto;
  margin: 1rem auto;
}

.alignleft,
.alignright {
  height: auto;
  margin-bottom: 1rem;
}

@media (min-width: 30rem) {
  .alignleft {
    float: left;
    margin-right: 1rem;
  }

  .alignright {
    float: right;
    margin-left: 1rem;
  }
}

/** Captions */

/** Text meant only for screen readers */

.screen-reader-text {
  background: #fff;
  border: 0;
  clip: rect(0, 0, 0, 0);
  color: #000;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.size-full {
  max-width: 730px;
}

form.propertyhive-ordering {
  display: inline-block;
}

.property-template {
  background-color: #ededed;
}

.property-search-content {
  margin-bottom: 35px;
}

.propertyhive-views {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 7px -4px 0 17px;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.propertyhive-views ul {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.propertyhive-views li {
  display: inline-block;
  vertical-align: top;
  padding: 0 4px 0 3px;
}

.propertyhive-views li a {
  background-color: #8d909a;
  display: inline-block;
  vertical-align: top;
  width: 36px;
  height: 36px;
  color: #fff;
  text-align: center;
}

.propertyhive-views li a::after {
  position: relative;
  top: 5px;
  right: 0;
  width: 30px;
  text-align: center;
  height: 100%;
  color: #fff;
  font-size: 24px !important;
}

.propertyhive-views li.list-view a::after {
  display: inline-block;
  font: normal normal normal 1em/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\F0C9";
}

.propertyhive-views li.map-view a::after {
  display: inline-block;
  font: normal normal normal 1em/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\F041";
}

.propertyhive-views li.active a,
.propertyhive-views li:hover a {
  background-color: #43454b;
}

.contact-block ul.social .at-resp-share-element .at-share-btn {
  border-radius: 5px !important;
}

.filter-bar form .sfFormDropdown {
  width: 282px;
}

.propertyhive-map-canvas-wrapper {
  margin: 0 0 44px;
}

.info-item .price.taylor {
  background-color: rgba(0, 55, 119, 0.7);
}

.info-item .price.signature {
  background-color: rgba(42, 56, 40, 0.85);
}

.info-item a.caption:hover {
  text-decoration: none;
}

.property-sold span.sold_flag {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 0 0 100px;
  border-color: #c4161c transparent;
  line-height: 0;
  _-webkit-filter: progid:dximagetransform.microsoft.chroma(color='#000000');
  _        filter: progid:dximagetransform.microsoft.chroma(color='#000000');
  position: absolute;
  z-index: 5;
  color: #fff;
  right: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .property-sold span.sold_flag {
    right: 0;
  }
}

.property-sold span.sold_flag span.sold {
  position: absolute;
  bottom: 54px;
  display: block;
  line-height: 20px;
  right: 0;
  -webkit-transform: rotate(-313deg);
  -moz-transform: rotate(-313deg);
  -o-transform: rotate(-313deg);
  font-size: 18px;
  width: 70px;
  text-align: center;
  font-weight: 700;
}

.property-sold span.sold_flag span.let_agreed {
  position: absolute;
  bottom: 50px;
  display: block;
  line-height: 20px;
  right: -5px;
  -webkit-transform: rotate(-313deg);
  -moz-transform: rotate(-313deg);
  -o-transform: rotate(-313deg);
  font-size: 18px;
  width: 70px;
  text-align: center;
  font-weight: 700;
}

.property-sold span.sold_flag span.under_offer {
  position: absolute;
  display: block;
  line-height: 20px;
  -webkit-transform: rotate(-313deg);
  -moz-transform: rotate(-313deg);
  -o-transform: rotate(-313deg);
  font-size: 18px;
  width: 70px;
  text-align: center;
  bottom: 48px;
  right: -3px;
  font-weight: 700;
}

.info-item span.sold_flag {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 0 0 100px;
  border-color: #c4161c transparent;
  line-height: 0;
  _-webkit-filter: progid:dximagetransform.microsoft.chroma(color='#000000');
  _        filter: progid:dximagetransform.microsoft.chroma(color='#000000');
  position: absolute;
  z-index: 1;
  color: #fff;
  right: 0;
}

.info-item span.sold_flag span.sold {
  position: absolute;
  bottom: 54px;
  display: block;
  line-height: 20px;
  right: 0;
  -webkit-transform: rotate(-313deg);
  -moz-transform: rotate(-313deg);
  -o-transform: rotate(-313deg);
  font-size: 18px;
  width: 70px;
  text-align: center;
  font-weight: 700;
}

.info-item span.sold_flag span.let_agreed {
  position: absolute;
  bottom: 50px;
  display: block;
  line-height: 20px;
  right: -5px;
  -webkit-transform: rotate(-313deg);
  -moz-transform: rotate(-313deg);
  -o-transform: rotate(-313deg);
  font-size: 18px;
  width: 70px;
  text-align: center;
  font-weight: 700;
}

.info-item span.sold_flag span.under_offer {
  position: absolute;
  display: block;
  line-height: 20px;
  -webkit-transform: rotate(-313deg);
  -moz-transform: rotate(-313deg);
  -o-transform: rotate(-313deg);
  font-size: 18px;
  width: 70px;
  text-align: center;
  bottom: 48px;
  right: -3px;
  font-weight: 700;
}

.type-property .page-header .container .availability {
  border: none;
  font-size: 17px;
  background-color: #c4161c;
  color: #fff;
  line-height: 24px;
  min-width: 136px;
  padding: 11px 10px 12px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin-left: 12px;
  font-weight: 100;
}

.type-property .info-list {
  color: #4a4a4a;
  width: auto;
}

.type-property .info-list li {
  padding-right: 30px;
  width: auto;
}

.type-property .info-list li:last-of-type {
  padding-right: 0;
}

.type-property .second-nav li a:hover,
.type-property .second-nav .active > a:focus,
.type-property .second-nav .active > a {
  color: #4a4a4a;
  font-weight: 700;
}

.type-property .info-box {
  top: 0;
}

.type-property .info-box header {
  position: absolute;
  z-index: 100;
  width: 100%;
  bottom: 100%;
}

.type-property .info-box .contact-block {
  height: 100%;
}

.type-property .info-box .ttl h2 {
  color: #4e4e4e;
}

.type-property .contact-block {
  background-color: #fff;
  padding: 20px 25px 25px;
}

.type-property .contact-block .call-box .profile-img {
  position: absolute;
  width: 47px;
  height: 47px;
  top: 13px;
  left: 0;
  z-index: 100;
  border-radius: 50%;
  background-size: cover;
}

.type-property .contact-block .call-box h3,
.type-property .contact-block .call-box a,
.type-property .contact-block .call-box p {
  color: #4e4e4e;
}

.pp_hoverContainer {
  visibility: hidden;
}

.pp_hoverContainer .pp_next,
.pp_hoverContainer .pp_previous {
  visibility: visible;
  width: 29px;
}

@media screen and (max-width: 767px), screen and (max-width: 767px) and (orientation: landscape), screen and (max-width: 767px) and (orientation: portrait) {
  .type-property .page-header .container {
    margin: 0;
    padding-bottom: 40px;
  }

  .info-item .price.signature .offset-right {
    font-size: 17px;
    line-height: 21px;
  }
}

.department-commercial .info-item li.logo figure {
  margin-top: 4px;
}

.department-commercial .info-item .list .ico {
  display: table-cell;
  vertical-align: top;
  padding: 6px 8px 0 0;
}

.single-event-photos-container {
  position: relative;
}

.single-event-photos-container #single-property-gallery {
  position: absolute;
  left: 25vw;
  z-index: 99;
  margin: 10px;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .single-event-photos-container #single-property-gallery {
    left: 0;
    margin: 5px;
    bottom: 50px;
  }
}

.single-event-photos .download {
  background-color: #97bc33;
  padding: 8px 10px;
  color: #fff;
  font-size: 22px;
  position: absolute;
  bottom: 5px;
  left: 5px;
}

.single-event-photos .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 34px;
  height: 52px;
  margin-top: -18px;
  padding: 0;
  overflow: hidden;
  text-indent: -9999px;
  background: none;
  border: none;
  background-position: 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .single-event-photos .slick-arrow {
    top: 40%;
  }
}

.single-event-photos .slick-arrow:hover {
  opacity: 0.7;
}

.single-event-photos .slick-prev {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzRweCIgaGVpZ2h0PSI1MnB4IiB2aWV3Qm94PSIwIDAgMzQgNTIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU4ICg4NDY2MykgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+Q29tYmluZWQgU2hhcGUgQ29weTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxwYXRoIGQ9Ik01NTIsMjQyIEw1NTIsMjcyIEw1MjIsMjcyIEw1MjIsMjY4IEw1NDgsMjY4IEw1NDgsMjQyIEw1NTIsMjQyIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4KICAgICAgICA8ZmlsdGVyIHg9Ii0yNS4wJSIgeT0iLTE4LjMlIiB3aWR0aD0iMTUwLjAlIiBoZWlnaHQ9IjE1MC4wJSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94IiBpZD0iZmlsdGVyLTIiPgogICAgICAgICAgICA8ZmVNb3JwaG9sb2d5IHJhZGl1cz0iMC41IiBvcGVyYXRvcj0iZGlsYXRlIiBpbj0iU291cmNlQWxwaGEiIHJlc3VsdD0ic2hhZG93U3ByZWFkT3V0ZXIxIj48L2ZlTW9ycGhvbG9neT4KICAgICAgICAgICAgPGZlT2Zmc2V0IGR4PSIwIiBkeT0iMiIgaW49InNoYWRvd1NwcmVhZE91dGVyMSIgcmVzdWx0PSJzaGFkb3dPZmZzZXRPdXRlcjEiPjwvZmVPZmZzZXQ+CiAgICAgICAgICAgIDxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjIiIGluPSJzaGFkb3dPZmZzZXRPdXRlcjEiIHJlc3VsdD0ic2hhZG93Qmx1ck91dGVyMSI+PC9mZUdhdXNzaWFuQmx1cj4KICAgICAgICAgICAgPGZlQ29tcG9zaXRlIGluPSJzaGFkb3dCbHVyT3V0ZXIxIiBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0ib3V0IiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiPjwvZmVDb21wb3NpdGU+CiAgICAgICAgICAgIDxmZUNvbG9yTWF0cml4IHZhbHVlcz0iMCAwIDAgMCAwICAgMCAwIDAgMCAwICAgMCAwIDAgMCAwICAwIDAgMCAwLjUgMCIgdHlwZT0ibWF0cml4IiBpbj0ic2hhZG93Qmx1ck91dGVyMSI+PC9mZUNvbG9yTWF0cml4PgogICAgICAgIDwvZmlsdGVyPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjE2MDBfaW5kaXZpZHVhX3Byb3BlcnR5NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE1LjAwMDAwMCwgLTM3OC4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00OTQuMDAwMDAwLCAxNDYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iQ29tYmluZWQtU2hhcGUtQ29weSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTM3LjAwMDAwMCwgMjU3LjAwMDAwMCkgc2NhbGUoLTEsIDEpIHJvdGF0ZSgtNDUuMDAwMDAwKSB0cmFuc2xhdGUoLTUzNy4wMDAwMDAsIC0yNTcuMDAwMDAwKSAiPgogICAgICAgICAgICAgICAgICAgIDx1c2UgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMSIgZmlsdGVyPSJ1cmwoI2ZpbHRlci0yKSIgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggc3Ryb2tlPSIjRkZGRkZGIiBzdHJva2Utd2lkdGg9IjAuNSIgZD0iTTU0Ny43NSwyNjcuNzUgTDU0Ny43NSwyNDEuNzUgTDU1Mi4yNSwyNDEuNzUgTDU1Mi4yNSwyNzIuMjUgTDUyMS43NSwyNzIuMjUgTDUyMS43NSwyNjcuNzUgTDU0Ny43NSwyNjcuNzUgWiIgZmlsbD0iI0ZGRkZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) no-repeat;
  left: 15px;
}

.single-event-photos .slick-next {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzRweCIgaGVpZ2h0PSI1MnB4IiB2aWV3Qm94PSIwIDAgMzQgNTIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU4ICg4NDY2MykgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+Q29tYmluZWQgU2hhcGUgQ29weSAyPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+CiAgICAgICAgPHBhdGggZD0iTTIwNjgsMjQyIEwyMDY4LDI3MiBMMjAzOCwyNzIgTDIwMzgsMjY4IEwyMDY0LDI2OCBMMjA2NCwyNDIgTDIwNjgsMjQyIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4KICAgICAgICA8ZmlsdGVyIHg9Ii0yNS4wJSIgeT0iLTE4LjMlIiB3aWR0aD0iMTUwLjAlIiBoZWlnaHQ9IjE1MC4wJSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94IiBpZD0iZmlsdGVyLTIiPgogICAgICAgICAgICA8ZmVNb3JwaG9sb2d5IHJhZGl1cz0iMC41IiBvcGVyYXRvcj0iZGlsYXRlIiBpbj0iU291cmNlQWxwaGEiIHJlc3VsdD0ic2hhZG93U3ByZWFkT3V0ZXIxIj48L2ZlTW9ycGhvbG9neT4KICAgICAgICAgICAgPGZlT2Zmc2V0IGR4PSIwIiBkeT0iMiIgaW49InNoYWRvd1NwcmVhZE91dGVyMSIgcmVzdWx0PSJzaGFkb3dPZmZzZXRPdXRlcjEiPjwvZmVPZmZzZXQ+CiAgICAgICAgICAgIDxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjIiIGluPSJzaGFkb3dPZmZzZXRPdXRlcjEiIHJlc3VsdD0ic2hhZG93Qmx1ck91dGVyMSI+PC9mZUdhdXNzaWFuQmx1cj4KICAgICAgICAgICAgPGZlQ29tcG9zaXRlIGluPSJzaGFkb3dCbHVyT3V0ZXIxIiBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0ib3V0IiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiPjwvZmVDb21wb3NpdGU+CiAgICAgICAgICAgIDxmZUNvbG9yTWF0cml4IHZhbHVlcz0iMCAwIDAgMCAwICAgMCAwIDAgMCAwICAgMCAwIDAgMCAwICAwIDAgMCAwLjUgMCIgdHlwZT0ibWF0cml4IiBpbj0ic2hhZG93Qmx1ck91dGVyMSI+PC9mZUNvbG9yTWF0cml4PgogICAgICAgIDwvZmlsdGVyPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjE2MDBfaW5kaXZpZHVhX3Byb3BlcnR5NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE1NTMuMDAwMDAwLCAtMzc4LjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAtOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ5NC4wMDAwMDAsIDE0Ni4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxnIGlkPSJDb21iaW5lZC1TaGFwZS1Db3B5LTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIwNTMuMDAwMDAwLCAyNTcuMDAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0yMDUzLjAwMDAwMCwgLTI1Ny4wMDAwMDApICI+CiAgICAgICAgICAgICAgICAgICAgPHVzZSBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIxIiBmaWx0ZXI9InVybCgjZmlsdGVyLTIpIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBzdHJva2U9IiNGRkZGRkYiIHN0cm9rZS13aWR0aD0iMC41IiBkPSJNMjA2My43NSwyNjcuNzUgTDIwNjMuNzUsMjQxLjc1IEwyMDY4LjI1LDI0MS43NSBMMjA2OC4yNSwyNzIuMjUgTDIwMzcuNzUsMjcyLjI1IEwyMDM3Ljc1LDI2Ny43NSBMMjA2My43NSwyNjcuNzUgWiIgZmlsbD0iI0ZGRkZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) no-repeat;
  right: 15px;
}

.single-event-photos::before,
.single-event-photos::after {
  content: '';
  width: 25vw;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0.5;
  background-color: #000;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .single-event-photos::before,
  .single-event-photos::after {
    display: none;
  }
}

.single-event-photos::before {
  left: 0;
}

.single-event-photos::after {
  right: 0;
}

.single-event-photos .slide {
  position: relative;
  height: auto;
}

@media screen and (min-width: 768px) {
  .single-event-photos .slide {
    max-width: 50vw;
  }
}

.single-event-photos .slide .bg-img {
  width: 100%;
  height: 616px;
  background-position: 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .single-event-photos .slide .bg-img {
    height: 250px;
  }
}

.small-single-event-photos {
  max-width: 600px;
  margin: 0 0 35px;
}

.small-single-event-photos .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 20px;
  height: 32px;
  margin-top: -18px;
  padding: 0;
  overflow: hidden;
  text-indent: -9999px;
  background: none;
  border: none;
  background-position: 50% 50%;
  background-size: cover;
}

.small-single-event-photos .slick-arrow:hover {
  opacity: 0.7;
}

.small-single-event-photos .slick-prev {
  display: none;
}

.small-single-event-photos .slick-next {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzRweCIgaGVpZ2h0PSI1MnB4IiB2aWV3Qm94PSIwIDAgMzQgNTIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU4ICg4NDY2MykgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+Q29tYmluZWQgU2hhcGUgQ29weSAyPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+CiAgICAgICAgPHBhdGggZD0iTTIwNjgsMjQyIEwyMDY4LDI3MiBMMjAzOCwyNzIgTDIwMzgsMjY4IEwyMDY0LDI2OCBMMjA2NCwyNDIgTDIwNjgsMjQyIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4KICAgICAgICA8ZmlsdGVyIHg9Ii0yNS4wJSIgeT0iLTE4LjMlIiB3aWR0aD0iMTUwLjAlIiBoZWlnaHQ9IjE1MC4wJSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94IiBpZD0iZmlsdGVyLTIiPgogICAgICAgICAgICA8ZmVNb3JwaG9sb2d5IHJhZGl1cz0iMC41IiBvcGVyYXRvcj0iZGlsYXRlIiBpbj0iU291cmNlQWxwaGEiIHJlc3VsdD0ic2hhZG93U3ByZWFkT3V0ZXIxIj48L2ZlTW9ycGhvbG9neT4KICAgICAgICAgICAgPGZlT2Zmc2V0IGR4PSIwIiBkeT0iMiIgaW49InNoYWRvd1NwcmVhZE91dGVyMSIgcmVzdWx0PSJzaGFkb3dPZmZzZXRPdXRlcjEiPjwvZmVPZmZzZXQ+CiAgICAgICAgICAgIDxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjIiIGluPSJzaGFkb3dPZmZzZXRPdXRlcjEiIHJlc3VsdD0ic2hhZG93Qmx1ck91dGVyMSI+PC9mZUdhdXNzaWFuQmx1cj4KICAgICAgICAgICAgPGZlQ29tcG9zaXRlIGluPSJzaGFkb3dCbHVyT3V0ZXIxIiBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0ib3V0IiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiPjwvZmVDb21wb3NpdGU+CiAgICAgICAgICAgIDxmZUNvbG9yTWF0cml4IHZhbHVlcz0iMCAwIDAgMCAwICAgMCAwIDAgMCAwICAgMCAwIDAgMCAwICAwIDAgMCAwLjUgMCIgdHlwZT0ibWF0cml4IiBpbj0ic2hhZG93Qmx1ck91dGVyMSI+PC9mZUNvbG9yTWF0cml4PgogICAgICAgIDwvZmlsdGVyPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjE2MDBfaW5kaXZpZHVhX3Byb3BlcnR5NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE1NTMuMDAwMDAwLCAtMzc4LjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAtOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ5NC4wMDAwMDAsIDE0Ni4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxnIGlkPSJDb21iaW5lZC1TaGFwZS1Db3B5LTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIwNTMuMDAwMDAwLCAyNTcuMDAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0yMDUzLjAwMDAwMCwgLTI1Ny4wMDAwMDApICI+CiAgICAgICAgICAgICAgICAgICAgPHVzZSBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIxIiBmaWx0ZXI9InVybCgjZmlsdGVyLTIpIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBzdHJva2U9IiNGRkZGRkYiIHN0cm9rZS13aWR0aD0iMC41IiBkPSJNMjA2My43NSwyNjcuNzUgTDIwNjMuNzUsMjQxLjc1IEwyMDY4LjI1LDI0MS43NSBMMjA2OC4yNSwyNzIuMjUgTDIwMzcuNzUsMjcyLjI1IEwyMDM3Ljc1LDI2Ny43NSBMMjA2My43NSwyNjcuNzUgWiIgZmlsbD0iI0ZGRkZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
  right: -35px;
}

.small-single-event-photos .slide .bg-img {
  height: 89px;
  background-position: 50% 50%;
  background-size: cover;
  margin: 0 3px;
}

.about-gallery .slide {
  height: auto;
}

.about-gallery .slide a:hover {
  text-decoration: none;
}

.fl-post-slider .slide {
  padding: 0 15px;
}

.fl-post-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 32px;
  height: 32px;
  margin-top: -22px;
  padding: 0;
  border: solid #dbdcdb;
  overflow: hidden;
  text-indent: -9999px;
  background: none;
}

@media screen and (max-width: 991px) {
  .fl-post-slider .slick-arrow {
    margin-top: -36px;
    width: 29px;
    height: 29px;
  }
}

@media screen and (max-width: 767px), screen and (orientation: landscape) and (max-width: 767px), screen and (orientation: portrait) and (max-width: 767px) {
  .fl-post-slider .slick-arrow {
    margin-top: -20px;
    width: 28px;
    height: 28px;
  }
}

.fl-post-slider .slick-arrow:hover {
  opacity: 0.7;
}

.fl-post-slider .slick-prev {
  left: 7px;
  border-width: 8px 0 0 8px;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
     transform: rotate(-45deg);
}

@media screen and (max-width: 991px) {
  .fl-post-slider .slick-prev {
    left: 7px;
    border-width: 7px 0 0 7px;
  }
}

@media screen and (max-width: 767px), screen and (orientation: landscape) and (max-width: 767px), screen and (orientation: portrait) and (max-width: 767px) {
  .fl-post-slider .slick-prev {
    left: -5px;
    border-width: 7px 0 0 7px;
  }
}

.fl-post-slider .slick-next {
  right: 7px;
  border-width: 8px 8px 0 0;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .fl-post-slider .slick-next {
    right: 7px;
    border-width: 7px 7px 0 0;
  }
}

@media screen and (max-width: 767px), screen and (orientation: landscape) and (max-width: 767px), screen and (orientation: portrait) and (max-width: 767px) {
  .fl-post-slider .slick-next {
    right: -5px;
    border-width: 7px 7px 0 0;
  }
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/

/*

	1. Buttons

 */

/* <button> css reset */

.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */

.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQgAAABYCAQAAACjBqE3AAAB6klEQVR4Ae3bsWpUQRTG8YkkanwCa7GzVotsI/gEgk9h4Vu4ySLYmMYgbJrc3lrwZbJwC0FMt4j7F6Y4oIZrsXtgxvx/1c0ufEX4cnbmLCmSJEmSJEmSJEmSJP3XCBPvbJU+8doWmDFwyZpLBmYlNJebz0KwzykwsuSYJSNwykEJreV2BaBMaLIQZ2xYcFgqDlmw4ayE/FwL0dDk4Qh4W37DAjgqIT+3HRbigjH+iikVdxgZStgyN0Su2sXIeTwTT+esdpcbIlfNAuZ/TxresG4zV8kYWSZNiKUTokMMSWeIwTNEn4fK2TW3gRNgVkJLuVksROA9G+bEvoATNlBCa7nZXEwdxEZxzpKRKFh+bsv8LmPFmhX1OwfIz81jIRJQ5eeqG9B+riRJkiRJkiRJkiRJkiRJkiRJUkvA/8RQoEpKlJWINFkJ62AlrEP/mNBibnv2yz/A3t7Uq3LcpoxP8COjC1T5vxoAD5VdoEqdDrd5QuW1swtUSaueh3zkiuBiqgtA2OlkeMcP/uDqugsJdbjHF65VdPMKwS0+WQc/MgKvrIOHysB9vgPwk8+85hmPbnQdvHZyDMAFD7L3EOpgMcVdvnHFS0/vlatrXvCVx0U9gt3fxvnA0/hB4nmRJEmSJEmSJEmSJGmHfgFLaDPoMu5xWwAAAABJRU5ErkJggg==) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (-o-min-device-pixel-ratio: 35/32), (min-resolution: 105dpi), (-o-min-device-pixel-ratio: 11/10), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */

  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjY0IiBoZWlnaHQ9Ijg4IiB2aWV3Qm94PSIwIDAgMjY0IDg4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjx0aXRsZT5kZWZhdWx0LXNraW4gMjwvdGl0bGU+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Zz48cGF0aCBkPSJNNjcuMDAyIDU5LjV2My43NjhjLTYuMzA3Ljg0LTkuMTg0IDUuNzUtMTAuMDAyIDkuNzMyIDIuMjItMi44MyA1LjU2NC01LjA5OCAxMC4wMDItNS4wOThWNzEuNUw3MyA2NS41ODUgNjcuMDAyIDU5LjV6IiBpZD0iU2hhcGUiIGZpbGw9IiNmZmYiLz48ZyBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTMgMjl2LTVoMnYzaDN2MmgtNXpNMTMgMTVoNXYyaC0zdjNoLTJ2LTV6TTMxIDE1djVoLTJ2LTNoLTN2LTJoNXpNMzEgMjloLTV2LTJoM3YtM2gydjV6IiBpZD0iU2hhcGUiLz48L2c+PGcgZmlsbD0iI2ZmZiI+PHBhdGggZD0iTTYyIDI0djVoLTJ2LTNoLTN2LTJoNXpNNjIgMjBoLTV2LTJoM3YtM2gydjV6TTcwIDIwdi01aDJ2M2gzdjJoLTV6TTcwIDI0aDV2MmgtM3YzaC0ydi01eiIvPjwvZz48cGF0aCBkPSJNMjAuNTg2IDY2bC01LjY1Ni01LjY1NiAxLjQxNC0xLjQxNEwyMiA2NC41ODZsNS42NTYtNS42NTYgMS40MTQgMS40MTRMMjMuNDE0IDY2bDUuNjU2IDUuNjU2LTEuNDE0IDEuNDE0TDIyIDY3LjQxNGwtNS42NTYgNS42NTYtMS40MTQtMS40MTRMMjAuNTg2IDY2eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xMTEuNzg1IDY1LjAzTDExMCA2My41bDMtMy41aC0xMHYtMmgxMGwtMy0zLjUgMS43ODUtMS40NjhMMTE3IDU5bC01LjIxNSA2LjAzeiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xNTIuMjE1IDY1LjAzTDE1NCA2My41bC0zLTMuNWgxMHYtMmgtMTBsMy0zLjUtMS43ODUtMS40NjhMMTQ3IDU5bDUuMjE1IDYuMDN6IiBmaWxsPSIjZmZmIi8+PGc+PHBhdGggaWQ9IlJlY3RhbmdsZS0xMSIgZmlsbD0iI2ZmZiIgZD0iTTE2MC45NTcgMjguNTQzbC0zLjI1LTMuMjUtMS40MTMgMS40MTQgMy4yNSAzLjI1eiIvPjxwYXRoIGQ9Ik0xNTIuNSAyN2MzLjAzOCAwIDUuNS0yLjQ2MiA1LjUtNS41cy0yLjQ2Mi01LjUtNS41LTUuNS01LjUgMi40NjItNS41IDUuNSAyLjQ2MiA1LjUgNS41IDUuNXoiIGlkPSJPdmFsLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTUwIDIxaDV2MWgtNXoiLz48L2c+PGc+PHBhdGggZD0iTTExNi45NTcgMjguNTQzbC0xLjQxNCAxLjQxNC0zLjI1LTMuMjUgMS40MTQtMS40MTQgMy4yNSAzLjI1eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xMDguNSAyN2MzLjAzOCAwIDUuNS0yLjQ2MiA1LjUtNS41cy0yLjQ2Mi01LjUtNS41LTUuNS01LjUgMi40NjItNS41IDUuNSAyLjQ2MiA1LjUgNS41IDUuNXoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTA2IDIxaDV2MWgtNXoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTA5LjA0MyAxOS4wMDhsLS4wODUgNS0xLS4wMTcuMDg1LTV6Ii8+PC9nPjwvZz48L2c+PC9zdmc+);
  }

  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}

.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */

.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #fff;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -o-transform: translateY(6px);
     transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: -o-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s, -o-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
     transform: translateY(0);
}

/* increase size of share links on touch devices */

.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #fff;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #fff;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a;
}

a.pswp__share--twitter:hover {
  background: #55acee;
  color: #fff;
}

a.pswp__share--pinterest:hover {
  background: #ccc;
  color: #ce272d;
}

a.pswp__share--download:hover {
  background: #ddd;
}

/*

	3. Index indicator ("1 of X" counter)

 */

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #fff;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */

.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #bbb;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #ccc;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */

.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(data:image/gif;base64,R0lGODlhFAAUAPMIAIeHhz8/P1dXVycnJ8/Pz7e3t5+fn29vb////wAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAIACwAAAAAFAAUAEAEUxDJSatFxtwaggWAdIyHJAhXoRYSQUhDPGx0TbmujahbXGWZWqdDAYEsp5NupLPkdDwE7oXwWVasimzWrAE1tKFHErQRK8eL8mMUlRBJVI307uoiACH5BAUHAAgALAEAAQASABIAAAROEMkpS6E4W5upMdUmEQT2feFIltMJYivbvhnZ3R0A4NMwIDodz+cL7nDEn5CH8DGZh8MtEMBEoxkqlXKVIgQCibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpjaE4W5spANUmFQX2feFIltMJYivbvhnZ3d1x4BNBIDodz+cL7nDEn5CH8DGZAsFtMMBEoxkqlXKVIgIBibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpAaA4W5vpOdUmGQb2feFIltMJYivbvhnZ3Z0g4FNRIDodz+cL7nDEn5CH8DGZgcCNQMBEoxkqlXKVIgYDibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpz6E4W5upENUmAQD2feFIltMJYivbvhnZ3V0Q4JNhIDodz+cL7nDEn5CH8DGZg8GtUMBEoxkqlXKVIggEibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkphaA4W5tpCNUmHQf2feFIltMJYivbvhnZ3d0w4BMAIDodz+cL7nDEn5CH8DGZBMLNYMBEoxkqlXKVIgoFibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpQ6A4W5vpGNUmCQL2feFIltMJYivbvhnZ3R1B4NNxIDodz+cL7nDEn5CH8DGZhcINAMBEoxkqlXKVIgwGibbK9YLBYvLtHH5K0J0IACH5BAUHAAcALAEAAQASABIAAANCeLo6wzA6FxkhbaoQ4L3ZxnXLh0EjWZ4RV71VUcCLIByyTNt2PsO8m452sBGJBsNxkUwuD03lAQBASqnUJ7aq5UYSADs=) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  -o-animation: clockwise 500ms linear infinite;
     animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  -o-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
     animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /*
			The idea of animating inner circle is based on Polymer ("material") loading indicator
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-o-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-140deg);
    -o-transform: rotate(-140deg);
       transform: rotate(-140deg);
  }

  100% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
  }
}

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-140deg);
    -o-transform: rotate(-140deg);
       transform: rotate(-140deg);
  }

  100% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
  }
}

/*

	6. Additional styles

 */

/* root element of UI */

.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  -o-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */

.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

@media screen and (min-width: 1220px) {
  .main-nav ul .opener,
  .main-nav ul ul {
    display: none !important;
  }
}

.btn-menu span {
  top: 52px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #005826;
}

@media screen and (max-width: 767px), screen and (max-width: 767px) and (orientation: landscape), screen and (max-width: 767px) and (orientation: portrait) {
  .btn-menu span {
    top: 36px;
    font-size: 13px;
  }
}

.visual-intro h1 {
  font-weight: 700;
  letter-spacing: 0.1px;
}

#footer div.branch-prefix {
  margin-bottom: 60px;
}

@media screen and (max-width: 1219px) {
  #footer div.branch-prefix {
    display: none;
  }
}

#footer div.branch-prefix div.col-sm-12 p {
  font-weight: 700;
  font-size: 18px;
  color: #005826;
}

#footer .footer-250-logo {
  text-align: right;
}

@media screen and (max-width: 1219px) {
  #footer .footer-250-logo {
    display: none;
  }
}

#footer .footer-250-logo img {
  width: 128px;
}

html {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.content a {
  text-decoration: underline;
}

.content .btn {
  text-decoration: none;
}

.content ol ol li::before {
  content: counter(section, lower-alpha) ".";
}

.news-boxes a.news-box,
.testimonials a.review-box:hover {
  text-decoration: none;
}

#catapult-cookie-bar .ctcc-left-side {
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
}

#catapult-cookie-bar .ctcc-left-side a {
  text-decoration: underline;
}

#catapult-cookie-bar button#catapultCookie {
  border-radius: 22px;
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
  min-width: 159px;
  padding: 11px 26px 12px;
}

@media screen and (max-width: 767px), screen and (orientation: landscape) and (max-width: 767px), screen and (orientation: portrait) and (max-width: 767px) {
  .visual-intro .labels {
    display: none;
  }
}

.pswp img {
  width: auto !important;
  margin: 0 auto;
  right: 0;
}

.pswp.centered .pswp__zoom-wrap,
.pswp.centered img {
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
       -o-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

body#tinymce {
  margin: 12px !important;
}

div.product div.product-section .col-sm-5.product-image {
  padding: 0;
}

div.product div.product-section .col-sm-5.product-image .image-label h2 {
  margin: 0;
}

div.product div.product-section .col-sm-5.product-image .images {
  margin: 0;
}

div.product div.product-section div.images {
  width: 100%;
}

div.product div.product-section div.product-block span.price {
  font-size: 30px;
  color: #58595b;
}

div.product div.product-section div.product-block div.quantity {
  margin-top: 15px;
}

div.product div.product-section div.product-block .col-xs-7 {
  padding-left: 0;
}

div.product div.product-section div.product-block button {
  background: #ffc018;
  color: #58595b;
  border-color: #ffc018;
  font-weight: 400;
  vertical-align: top;
  border: solid 3px #ffc018;
  padding: 8px 15px;
  outline: 0 !important;
  white-space: normal;
  text-align: center;
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  border-radius: 9px;
  font-size: 18px;
  line-height: 22px;
  margin-top: 12px;
}

div.product div.product-section div.product-block button:hover {
  background-color: #e6a700;
  color: #58595b;
  border-color: #e6a700;
  text-decoration: none;
}

.product-boxes ul.products li.product a:first-of-type {
  display: block;
  padding-bottom: 44px;
}

.product-boxes ul.products li.product h3 {
  font-size: 24px;
}

.product-boxes ul.products li.product .price {
  display: block;
  margin: 0 0 21px;
  font-size: 30px;
  line-height: 34px;
  color: #58595b;
}

/** Import cutup styles **/

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: 'FontAwesome';
  src: url(/wp-content/themes/fennwright/dist/fonts/fontawesome-webfont.eot);
  src: url(/wp-content/themes/fennwright/dist/fonts/fontawesome-webfont.eot) format("embedded-opentype"), url(/wp-content/themes/fennwright/dist/fonts/fontawesome-webfont.woff2) format("woff2"), url(/wp-content/themes/fennwright/dist/fonts/fontawesome-webfont.woff) format("woff"), url(/wp-content/themes/fennwright/dist/fonts/fontawesome-webfont.ttf) format("truetype"), url(/wp-content/themes/fennwright/dist/fonts/fontawesome-webfont.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  -o-animation: fa-spin 2s infinite linear;
     animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  -o-animation: fa-spin 1s infinite steps(8);
     animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-o-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -o-transform: rotate(359deg);
       transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -o-transform: rotate(359deg);
       transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
     transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
     transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
     transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
     transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -o-transform: scale(1, -1);
     transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}

.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}

.fa-won:before,
.fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-sticky-note-o:before {
  content: "\F24A";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-hourglass-o:before {
  content: "\F250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}

.fa-hand-scissors-o:before {
  content: "\F257";
}

.fa-hand-lizard-o:before {
  content: "\F258";
}

.fa-hand-spock-o:before {
  content: "\F259";
}

.fa-hand-pointer-o:before {
  content: "\F25A";
}

.fa-hand-peace-o:before {
  content: "\F25B";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-safari:before {
  content: "\F267";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-calendar-plus-o:before {
  content: "\F271";
}

.fa-calendar-minus-o:before {
  content: "\F272";
}

.fa-calendar-times-o:before {
  content: "\F273";
}

.fa-calendar-check-o:before {
  content: "\F274";
}

.fa-industry:before {
  content: "\F275";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-map-o:before {
  content: "\F278";
}

.fa-map:before {
  content: "\F279";
}

.fa-commenting:before {
  content: "\F27A";
}

.fa-commenting-o:before {
  content: "\F27B";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-vimeo:before {
  content: "\F27D";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-edge:before {
  content: "\F282";
}

.fa-credit-card-alt:before {
  content: "\F283";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-modx:before {
  content: "\F285";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-usb:before {
  content: "\F287";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-pause-circle-o:before {
  content: "\F28C";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stop-circle-o:before {
  content: "\F28E";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-percent:before {
  content: "\F295";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-envira:before {
  content: "\F299";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-wheelchair-alt:before {
  content: "\F29B";
}

.fa-question-circle-o:before {
  content: "\F29C";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-handshake-o:before {
  content: "\F2B5";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-o:before {
  content: "\F2B7";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-book-o:before {
  content: "\F2BA";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-circle-o:before {
  content: "\F2BE";
}

.fa-user-o:before {
  content: "\F2C0";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-eercast:before {
  content: "\F2DA";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-snowflake-o:before {
  content: "\F2DC";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-meetup:before {
  content: "\F2E0";
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eee));
  background-image: linear-gradient(to bottom, white 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eee 50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eee));
  background-image: linear-gradient(to bottom, white 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eee 50%, white 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(white));
  background-image: linear-gradient(to bottom, #eee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.3/customize/?id=985063653417746cedbfa8f08fd103f8)
 * Config saved to config.json and https://gist.github.com/985063653417746cedbfa8f08fd103f8
 */

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  .label {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(/wp-content/themes/fennwright/dist/fonts/glyphicons-halflings-regular.eot);
  src: url(/wp-content/themes/fennwright/dist/fonts/glyphicons-halflings-regular.eot) format("embedded-opentype"), url(/wp-content/themes/fennwright/dist/fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(/wp-content/themes/fennwright/dist/fonts/glyphicons-halflings-regular.woff) format("woff"), url(/wp-content/themes/fennwright/dist/fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(/wp-content/themes/fennwright/dist/fonts/glyphicons-halflings-regular.svg) format("svg");
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "*";
}

.glyphicon-plus:before {
  content: "+";
}

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20AC";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270F";
}

.glyphicon-glass:before {
  content: "\E001";
}

.glyphicon-music:before {
  content: "\E002";
}

.glyphicon-search:before {
  content: "\E003";
}

.glyphicon-heart:before {
  content: "\E005";
}

.glyphicon-star:before {
  content: "\E006";
}

.glyphicon-star-empty:before {
  content: "\E007";
}

.glyphicon-user:before {
  content: "\E008";
}

.glyphicon-film:before {
  content: "\E009";
}

.glyphicon-th-large:before {
  content: "\E010";
}

.glyphicon-th:before {
  content: "\E011";
}

.glyphicon-th-list:before {
  content: "\E012";
}

.glyphicon-ok:before {
  content: "\E013";
}

.glyphicon-remove:before {
  content: "\E014";
}

.glyphicon-zoom-in:before {
  content: "\E015";
}

.glyphicon-zoom-out:before {
  content: "\E016";
}

.glyphicon-off:before {
  content: "\E017";
}

.glyphicon-signal:before {
  content: "\E018";
}

.glyphicon-cog:before {
  content: "\E019";
}

.glyphicon-trash:before {
  content: "\E020";
}

.glyphicon-home:before {
  content: "\E021";
}

.glyphicon-file:before {
  content: "\E022";
}

.glyphicon-time:before {
  content: "\E023";
}

.glyphicon-road:before {
  content: "\E024";
}

.glyphicon-download-alt:before {
  content: "\E025";
}

.glyphicon-download:before {
  content: "\E026";
}

.glyphicon-upload:before {
  content: "\E027";
}

.glyphicon-inbox:before {
  content: "\E028";
}

.glyphicon-play-circle:before {
  content: "\E029";
}

.glyphicon-repeat:before {
  content: "\E030";
}

.glyphicon-refresh:before {
  content: "\E031";
}

.glyphicon-list-alt:before {
  content: "\E032";
}

.glyphicon-lock:before {
  content: "\E033";
}

.glyphicon-flag:before {
  content: "\E034";
}

.glyphicon-headphones:before {
  content: "\E035";
}

.glyphicon-volume-off:before {
  content: "\E036";
}

.glyphicon-volume-down:before {
  content: "\E037";
}

.glyphicon-volume-up:before {
  content: "\E038";
}

.glyphicon-qrcode:before {
  content: "\E039";
}

.glyphicon-barcode:before {
  content: "\E040";
}

.glyphicon-tag:before {
  content: "\E041";
}

.glyphicon-tags:before {
  content: "\E042";
}

.glyphicon-book:before {
  content: "\E043";
}

.glyphicon-bookmark:before {
  content: "\E044";
}

.glyphicon-print:before {
  content: "\E045";
}

.glyphicon-camera:before {
  content: "\E046";
}

.glyphicon-font:before {
  content: "\E047";
}

.glyphicon-bold:before {
  content: "\E048";
}

.glyphicon-italic:before {
  content: "\E049";
}

.glyphicon-text-height:before {
  content: "\E050";
}

.glyphicon-text-width:before {
  content: "\E051";
}

.glyphicon-align-left:before {
  content: "\E052";
}

.glyphicon-align-center:before {
  content: "\E053";
}

.glyphicon-align-right:before {
  content: "\E054";
}

.glyphicon-align-justify:before {
  content: "\E055";
}

.glyphicon-list:before {
  content: "\E056";
}

.glyphicon-indent-left:before {
  content: "\E057";
}

.glyphicon-indent-right:before {
  content: "\E058";
}

.glyphicon-facetime-video:before {
  content: "\E059";
}

.glyphicon-picture:before {
  content: "\E060";
}

.glyphicon-map-marker:before {
  content: "\E062";
}

.glyphicon-adjust:before {
  content: "\E063";
}

.glyphicon-tint:before {
  content: "\E064";
}

.glyphicon-edit:before {
  content: "\E065";
}

.glyphicon-share:before {
  content: "\E066";
}

.glyphicon-check:before {
  content: "\E067";
}

.glyphicon-move:before {
  content: "\E068";
}

.glyphicon-step-backward:before {
  content: "\E069";
}

.glyphicon-fast-backward:before {
  content: "\E070";
}

.glyphicon-backward:before {
  content: "\E071";
}

.glyphicon-play:before {
  content: "\E072";
}

.glyphicon-pause:before {
  content: "\E073";
}

.glyphicon-stop:before {
  content: "\E074";
}

.glyphicon-forward:before {
  content: "\E075";
}

.glyphicon-fast-forward:before {
  content: "\E076";
}

.glyphicon-step-forward:before {
  content: "\E077";
}

.glyphicon-eject:before {
  content: "\E078";
}

.glyphicon-chevron-left:before {
  content: "\E079";
}

.glyphicon-chevron-right:before {
  content: "\E080";
}

.glyphicon-plus-sign:before {
  content: "\E081";
}

.glyphicon-minus-sign:before {
  content: "\E082";
}

.glyphicon-remove-sign:before {
  content: "\E083";
}

.glyphicon-ok-sign:before {
  content: "\E084";
}

.glyphicon-question-sign:before {
  content: "\E085";
}

.glyphicon-info-sign:before {
  content: "\E086";
}

.glyphicon-screenshot:before {
  content: "\E087";
}

.glyphicon-remove-circle:before {
  content: "\E088";
}

.glyphicon-ok-circle:before {
  content: "\E089";
}

.glyphicon-ban-circle:before {
  content: "\E090";
}

.glyphicon-arrow-left:before {
  content: "\E091";
}

.glyphicon-arrow-right:before {
  content: "\E092";
}

.glyphicon-arrow-up:before {
  content: "\E093";
}

.glyphicon-arrow-down:before {
  content: "\E094";
}

.glyphicon-share-alt:before {
  content: "\E095";
}

.glyphicon-resize-full:before {
  content: "\E096";
}

.glyphicon-resize-small:before {
  content: "\E097";
}

.glyphicon-exclamation-sign:before {
  content: "\E101";
}

.glyphicon-gift:before {
  content: "\E102";
}

.glyphicon-leaf:before {
  content: "\E103";
}

.glyphicon-fire:before {
  content: "\E104";
}

.glyphicon-eye-open:before {
  content: "\E105";
}

.glyphicon-eye-close:before {
  content: "\E106";
}

.glyphicon-warning-sign:before {
  content: "\E107";
}

.glyphicon-plane:before {
  content: "\E108";
}

.glyphicon-calendar:before {
  content: "\E109";
}

.glyphicon-random:before {
  content: "\E110";
}

.glyphicon-comment:before {
  content: "\E111";
}

.glyphicon-magnet:before {
  content: "\E112";
}

.glyphicon-chevron-up:before {
  content: "\E113";
}

.glyphicon-chevron-down:before {
  content: "\E114";
}

.glyphicon-retweet:before {
  content: "\E115";
}

.glyphicon-shopping-cart:before {
  content: "\E116";
}

.glyphicon-folder-close:before {
  content: "\E117";
}

.glyphicon-folder-open:before {
  content: "\E118";
}

.glyphicon-resize-vertical:before {
  content: "\E119";
}

.glyphicon-resize-horizontal:before {
  content: "\E120";
}

.glyphicon-hdd:before {
  content: "\E121";
}

.glyphicon-bullhorn:before {
  content: "\E122";
}

.glyphicon-bell:before {
  content: "\E123";
}

.glyphicon-certificate:before {
  content: "\E124";
}

.glyphicon-thumbs-up:before {
  content: "\E125";
}

.glyphicon-thumbs-down:before {
  content: "\E126";
}

.glyphicon-hand-right:before {
  content: "\E127";
}

.glyphicon-hand-left:before {
  content: "\E128";
}

.glyphicon-hand-up:before {
  content: "\E129";
}

.glyphicon-hand-down:before {
  content: "\E130";
}

.glyphicon-circle-arrow-right:before {
  content: "\E131";
}

.glyphicon-circle-arrow-left:before {
  content: "\E132";
}

.glyphicon-circle-arrow-up:before {
  content: "\E133";
}

.glyphicon-circle-arrow-down:before {
  content: "\E134";
}

.glyphicon-globe:before {
  content: "\E135";
}

.glyphicon-wrench:before {
  content: "\E136";
}

.glyphicon-tasks:before {
  content: "\E137";
}

.glyphicon-filter:before {
  content: "\E138";
}

.glyphicon-briefcase:before {
  content: "\E139";
}

.glyphicon-fullscreen:before {
  content: "\E140";
}

.glyphicon-dashboard:before {
  content: "\E141";
}

.glyphicon-paperclip:before {
  content: "\E142";
}

.glyphicon-heart-empty:before {
  content: "\E143";
}

.glyphicon-link:before {
  content: "\E144";
}

.glyphicon-phone:before {
  content: "\E145";
}

.glyphicon-pushpin:before {
  content: "\E146";
}

.glyphicon-usd:before {
  content: "\E148";
}

.glyphicon-gbp:before {
  content: "\E149";
}

.glyphicon-sort:before {
  content: "\E150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\E151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152";
}

.glyphicon-sort-by-order:before {
  content: "\E153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\E154";
}

.glyphicon-sort-by-attributes:before {
  content: "\E155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\E156";
}

.glyphicon-unchecked:before {
  content: "\E157";
}

.glyphicon-expand:before {
  content: "\E158";
}

.glyphicon-collapse-down:before {
  content: "\E159";
}

.glyphicon-collapse-up:before {
  content: "\E160";
}

.glyphicon-log-in:before {
  content: "\E161";
}

.glyphicon-flash:before {
  content: "\E162";
}

.glyphicon-log-out:before {
  content: "\E163";
}

.glyphicon-new-window:before {
  content: "\E164";
}

.glyphicon-record:before {
  content: "\E165";
}

.glyphicon-save:before {
  content: "\E166";
}

.glyphicon-open:before {
  content: "\E167";
}

.glyphicon-saved:before {
  content: "\E168";
}

.glyphicon-import:before {
  content: "\E169";
}

.glyphicon-export:before {
  content: "\E170";
}

.glyphicon-send:before {
  content: "\E171";
}

.glyphicon-floppy-disk:before {
  content: "\E172";
}

.glyphicon-floppy-saved:before {
  content: "\E173";
}

.glyphicon-floppy-remove:before {
  content: "\E174";
}

.glyphicon-floppy-save:before {
  content: "\E175";
}

.glyphicon-floppy-open:before {
  content: "\E176";
}

.glyphicon-credit-card:before {
  content: "\E177";
}

.glyphicon-transfer:before {
  content: "\E178";
}

.glyphicon-cutlery:before {
  content: "\E179";
}

.glyphicon-header:before {
  content: "\E180";
}

.glyphicon-compressed:before {
  content: "\E181";
}

.glyphicon-earphone:before {
  content: "\E182";
}

.glyphicon-phone-alt:before {
  content: "\E183";
}

.glyphicon-tower:before {
  content: "\E184";
}

.glyphicon-stats:before {
  content: "\E185";
}

.glyphicon-sd-video:before {
  content: "\E186";
}

.glyphicon-hd-video:before {
  content: "\E187";
}

.glyphicon-subtitles:before {
  content: "\E188";
}

.glyphicon-sound-stereo:before {
  content: "\E189";
}

.glyphicon-sound-dolby:before {
  content: "\E190";
}

.glyphicon-sound-5-1:before {
  content: "\E191";
}

.glyphicon-sound-6-1:before {
  content: "\E192";
}

.glyphicon-sound-7-1:before {
  content: "\E193";
}

.glyphicon-copyright-mark:before {
  content: "\E194";
}

.glyphicon-registration-mark:before {
  content: "\E195";
}

.glyphicon-cloud-download:before {
  content: "\E197";
}

.glyphicon-cloud-upload:before {
  content: "\E198";
}

.glyphicon-tree-conifer:before {
  content: "\E199";
}

.glyphicon-tree-deciduous:before {
  content: "\E200";
}

.glyphicon-cd:before {
  content: "\E201";
}

.glyphicon-save-file:before {
  content: "\E202";
}

.glyphicon-open-file:before {
  content: "\E203";
}

.glyphicon-level-up:before {
  content: "\E204";
}

.glyphicon-copy:before {
  content: "\E205";
}

.glyphicon-paste:before {
  content: "\E206";
}

.glyphicon-alert:before {
  content: "\E209";
}

.glyphicon-equalizer:before {
  content: "\E210";
}

.glyphicon-king:before {
  content: "\E211";
}

.glyphicon-queen:before {
  content: "\E212";
}

.glyphicon-pawn:before {
  content: "\E213";
}

.glyphicon-bishop:before {
  content: "\E214";
}

.glyphicon-knight:before {
  content: "\E215";
}

.glyphicon-baby-formula:before {
  content: "\E216";
}

.glyphicon-tent:before {
  content: "\26FA";
}

.glyphicon-blackboard:before {
  content: "\E218";
}

.glyphicon-bed:before {
  content: "\E219";
}

.glyphicon-apple:before {
  content: "\F8FF";
}

.glyphicon-erase:before {
  content: "\E221";
}

.glyphicon-hourglass:before {
  content: "\231B";
}

.glyphicon-lamp:before {
  content: "\E223";
}

.glyphicon-duplicate:before {
  content: "\E224";
}

.glyphicon-piggy-bank:before {
  content: "\E225";
}

.glyphicon-scissors:before {
  content: "\E226";
}

.glyphicon-bitcoin:before {
  content: "\E227";
}

.glyphicon-btc:before {
  content: "\E227";
}

.glyphicon-xbt:before {
  content: "\E227";
}

.glyphicon-yen:before {
  content: "\A5";
}

.glyphicon-jpy:before {
  content: "\A5";
}

.glyphicon-ruble:before {
  content: "\20BD";
}

.glyphicon-rub:before {
  content: "\20BD";
}

.glyphicon-scale:before {
  content: "\E230";
}

.glyphicon-ice-lolly:before {
  content: "\E231";
}

.glyphicon-ice-lolly-tasted:before {
  content: "\E232";
}

.glyphicon-education:before {
  content: "\E233";
}

.glyphicon-option-horizontal:before {
  content: "\E234";
}

.glyphicon-option-vertical:before {
  content: "\E235";
}

.glyphicon-menu-hamburger:before {
  content: "\E236";
}

.glyphicon-modal-window:before {
  content: "\E237";
}

.glyphicon-oil:before {
  content: "\E238";
}

.glyphicon-grain:before {
  content: "\E239";
}

.glyphicon-sunglasses:before {
  content: "\E240";
}

.glyphicon-text-size:before {
  content: "\E241";
}

.glyphicon-text-color:before {
  content: "\E242";
}

.glyphicon-text-background:before {
  content: "\E243";
}

.glyphicon-object-align-top:before {
  content: "\E244";
}

.glyphicon-object-align-bottom:before {
  content: "\E245";
}

.glyphicon-object-align-horizontal:before {
  content: "\E246";
}

.glyphicon-object-align-left:before {
  content: "\E247";
}

.glyphicon-object-align-vertical:before {
  content: "\E248";
}

.glyphicon-object-align-right:before {
  content: "\E249";
}

.glyphicon-triangle-right:before {
  content: "\E250";
}

.glyphicon-triangle-left:before {
  content: "\E251";
}

.glyphicon-triangle-bottom:before {
  content: "\E252";
}

.glyphicon-triangle-top:before {
  content: "\E253";
}

.glyphicon-console:before {
  content: "\E254";
}

.glyphicon-superscript:before {
  content: "\E255";
}

.glyphicon-subscript:before {
  content: "\E256";
}

.glyphicon-menu-left:before {
  content: "\E257";
}

.glyphicon-menu-right:before {
  content: "\E258";
}

.glyphicon-menu-down:before {
  content: "\E259";
}

.glyphicon-menu-up:before {
  content: "\E260";
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: 'Lato',sans-serif;
  font-size: 15px;
  line-height: 1.42857143;
  color: #4a4a4a;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 21px;
  margin-bottom: 21px;
  border: 0;
  border-top: 1px solid #eee;
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role="button"] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 21px;
  margin-bottom: 10.5px;
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
}

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}

h1,
.h1 {
  font-size: 39px;
}

h2,
.h2 {
  font-size: 32px;
}

h3,
.h3 {
  font-size: 26px;
}

h4,
.h4 {
  font-size: 19px;
}

h5,
.h5 {
  font-size: 15px;
}

h6,
.h6 {
  font-size: 13px;
}

p {
  margin: 0 0 10.5px;
}

.lead {
  margin-bottom: 21px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lead {
    font-size: 22.5px;
  }
}

small,
.small {
  font-size: 86%;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}

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

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

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
  background-color: #337ab7;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9.5px;
  margin: 42px 0 21px;
  border-bottom: 1px solid #eee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10.5px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 21px;
}

dt,
dd {
  line-height: 1.42857143;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10.5px 21px;
  margin: 0 0 21px;
  font-size: 18.75px;
  border-left: 5px solid #eee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014   \A0';
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eee;
  border-left: 0;
  text-align: right;
}

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\A0   \2014';
}

address {
  margin-bottom: 21px;
  font-style: normal;
  line-height: 1.42857143;
}

code,
kbd,
pre,
samp {
  font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none;
}

pre {
  display: block;
  padding: 10px;
  margin: 0 0 10.5px;
  font-size: 14px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 980px;
  }
}

@media (min-width: 1220px) {
  .container {
    width: 1190px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 1220px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }
}

table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 21px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15.75px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }

  .table-responsive > .table {
    margin-bottom: 0;
  }

  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }

  .table-responsive > .table-bordered {
    border: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }

  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

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

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 21px;
  font-size: 22.5px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

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

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

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 15px;
  line-height: 1.42857143;
  color: #555;
}

.form-control {
  display: block;
  width: 100%;
  height: 35px;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 35px;
  }

  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 31px;
  }

  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 48px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio label,
.checkbox label {
  min-height: 21px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 36px;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}

.input-sm {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 31px;
  line-height: 31px;
}

textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}

.form-group-sm .form-control {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

.form-group-sm select.form-control {
  height: 31px;
  line-height: 31px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 31px;
  min-height: 34px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.5;
}

.input-lg {
  height: 48px;
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg {
  height: 48px;
  line-height: 48px;
}

textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}

.form-group-lg .form-control {
  height: 48px;
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.form-group-lg select.form-control {
  height: 48px;
  line-height: 48px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 48px;
  min-height: 40px;
  padding: 11px 16px;
  font-size: 19px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 43.75px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 48px;
  height: 48px;
  line-height: 48px;
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 31px;
  height: 31px;
  line-height: 31px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 26px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #8a8a8a;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-static {
    display: inline-block;
  }

  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }

  .form-inline .input-group > .form-control {
    width: 100%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }

  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 28px;
}

.form-horizontal .form-group {
  margin-left: -10px;
  margin-right: -10px;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 10px;
}

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 19px;
  }
}

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 13px;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}

.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}

.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}

.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}

.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 15px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }

  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical > .btn-group > .btn {
  float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}

.btn-group-justified > .btn-group .btn {
  width: 100%;
}

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group .form-control:focus {
  z-index: 3;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 48px;
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 48px;
  line-height: 48px;
}

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 31px;
  line-height: 31px;
}

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 3px;
}

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 19px;
  border-radius: 6px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.nav > li.disabled > a {
  color: #777;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}

.nav .nav-divider {
  height: 1px;
  margin: 9.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 4px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified {
  width: 100%;
}

.nav-justified > li {
  float: none;
}

.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 21px;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}

@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  overflow-x: visible;
  padding-right: 10px;
  padding-left: 10px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }

  .navbar-collapse.in {
    overflow-y: visible;
  }

  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -10px;
  margin-left: -10px;
}

@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  padding: 14.5px 10px;
  font-size: 19px;
  line-height: 21px;
  height: 50px;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -10px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 10px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle:focus {
  outline: 0;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.25px -10px;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 21px;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 21px;
  }

  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }

  .navbar-nav > li {
    float: left;
  }

  .navbar-nav > li > a {
    padding-top: 14.5px;
    padding-bottom: 14.5px;
  }
}

.navbar-form {
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 7.5px;
  margin-bottom: 7.5px;
}

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .navbar-form .form-control-static {
    display: inline-block;
  }

  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }

  .navbar-form .input-group > .form-control {
    width: 100%;
  }

  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }

  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }

  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }

  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 7.5px;
  margin-bottom: 7.5px;
}

.navbar-btn.btn-sm {
  margin-top: 9.5px;
  margin-bottom: 9.5px;
}

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 14.5px;
  margin-bottom: 14.5px;
}

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }

  .navbar-right {
    float: right !important;
    margin-right: -10px;
  }

  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #777;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777;
}

.navbar-default .navbar-nav > li > a {
  color: #777;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-color: #ddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

.navbar-default .navbar-link {
  color: #777;
}

.navbar-default .navbar-link:hover {
  color: #333;
}

.navbar-default .btn-link {
  color: #777;
}

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}

.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: #333;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #fff;
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

.navbar-inverse .navbar-link:hover {
  color: #fff;
}

.navbar-inverse .btn-link {
  color: #9d9d9d;
}

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 21px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  content: "/\A0";
  padding: 0 5px;
  color: #ccc;
}

.breadcrumb > .active {
  color: #777;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 21px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 21px 0;
  list-style: none;
  text-align: center;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  background-color: #fff;
  cursor: not-allowed;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label:empty {
  display: none;
}

.btn .label {
  position: relative;
  top: -1px;
}

.label-default {
  background-color: #777;
}

.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #337ab7;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

.list-group-item > .badge {
  float: right;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}

.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 200;
}

.jumbotron > hr {
  border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 10px;
  padding-right: 10px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }

  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 68px;
  }
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 21px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

.thumbnail .caption {
  padding: 9px;
  color: #4a4a4a;
}

.alert {
  padding: 15px;
  margin-bottom: 21px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  overflow: hidden;
  height: 21px;
  margin-bottom: 21px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 13px;
  line-height: 21px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}

.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

a.list-group-item,
button.list-group-item {
  color: #555;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eee;
  color: #777;
  cursor: not-allowed;
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 21px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 21px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 22.5px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: 'Lato',sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 13px;
  opacity: 0;
  filter: alpha(opacity=0);
}

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: 'Lato',sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 15px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 15px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}

.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}

.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }

  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }

  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203A';
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}

.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1219px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1219px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1219px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1219px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1220px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1220px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1220px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1220px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1219px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1220px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

body {
  min-width: 320px;
  font: 300 15px/23px 'Lato', sans-serif;
  color: #4a4a4a;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: none;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

q:before,
q:after {
  content: '';
}

a {
  color: inherit;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus {
  color: inherit;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 148px;
}

.row-flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row-flex:before,
.row-flex:after {
  display: none;
}

.align-items-end {
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
}

h1,
.h1 {
  margin: 0 0 15px;
  font-size: 48px;
  line-height: 52px;
  font-weight: 300;
  color: #005826;
}

h2,
.h2 {
  margin: 0 0 15px;
  font-size: 40px;
  line-height: 44px;
  font-weight: 300;
  color: #005826;
}

h3,
.h3 {
  margin: 0 0 15px;
  font-size: 27px;
  line-height: 31px;
  font-weight: 700;
  color: #005826;
}

h4,
.h4 {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #005826;
}

h5,
.h5 {
  margin: 0 0 15px;
  font-size: 17px;
  line-height: 21px;
  font-weight: 700;
  color: #005826;
}

.lead {
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  color: #005029;
}

.btn {
  min-width: 159px;
  padding: 11px 12px 12px;
  border: none;
  border-radius: 22px;
  font-size: 17px;
  line-height: 21px;
  font-weight: 700;
}

.btn:active,
.btn.active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary {
  background-color: #97bc33;
  color: #4d4e49;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary.focus:active,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus,
.btn-primary:hover {
  background-color: #005826;
  color: #97bc33;
}

.btn-default.white {
  background-color: #fff;
}

.btn-default {
  background-color: #e0dfde;
  color: #4d4e49;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default,
.btn-default:focus,
.btn-default.focus,
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default.focus:active,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus,
.btn-default:hover {
  background-color: #97bc33;
  color: #005826;
}

.btn-info {
  background-color: #005826;
  color: #97bc33;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info,
.btn-info:focus,
.btn-info.focus,
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info.focus:active,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus,
.btn-info:hover {
  background-color: #97bc33;
  color: #005826;
}

.btn-white {
  background-color: #fff;
  color: #005826;
}

.btn-white:active,
.btn-white.active,
.open > .dropdown-toggle.btn-white,
.btn-white:focus,
.btn-white.focus,
.btn-white:active:hover,
.btn-white.active:hover,
.open > .dropdown-toggle.btn-white:hover,
.btn-white:active:focus,
.btn-white.active:focus,
.open > .dropdown-toggle.btn-white:focus,
.btn-white.focus:active,
.btn-white.active.focus,
.open > .dropdown-toggle.btn-white.focus,
.btn-white:hover {
  background-color: #97bc33;
  color: #005826;
}

.btn-primary-02 {
  background-color: #97bc33;
  color: #005826;
}

.btn-primary-02:active,
.btn-primary-02.active,
.open > .dropdown-toggle.btn-primary-02,
.btn-primary-02:focus,
.btn-primary-02.focus,
.btn-primary-02:active:hover,
.btn-primary-02.active:hover,
.open > .dropdown-toggle.btn-primary-02:hover,
.btn-primary-02:active:focus,
.btn-primary-02.active:focus,
.open > .dropdown-toggle.btn-primary-02:focus,
.btn-primary-02.focus:active,
.btn-primary-02.active.focus,
.open > .dropdown-toggle.btn-primary-02.focus,
.btn-primary-02:hover {
  background-color: #fff;
  color: #005826;
}

.btn-info-02 {
  background-color: #005826;
  color: #97bc33;
}

.btn-info-02:active,
.btn-info-02.active,
.open > .dropdown-toggle.btn-info-02,
.btn-info-02:focus,
.btn-info-02.focus,
.btn-info-02:active:hover,
.btn-info-02.active:hover,
.open > .dropdown-toggle.btn-info-02:hover,
.btn-info-02:active:focus,
.btn-info-02.active:focus,
.open > .dropdown-toggle.btn-info-02:focus,
.btn-info-02.focus:active,
.btn-info-02.active.focus,
.open > .dropdown-toggle.btn-info-02.focus,
.btn-info-02:hover {
  background-color: #fff;
  color: #005826;
}

.btn-info-03 {
  background-color: #005826;
  color: #fff;
}

.btn-info-03:active,
.btn-info-03.active,
.open > .dropdown-toggle.btn-info-03,
.btn-info-03:focus,
.btn-info-03.focus,
.btn-info-03:active:hover,
.btn-info-03.active:hover,
.open > .dropdown-toggle.btn-info-03:hover,
.btn-info-03:active:focus,
.btn-info-03.active:focus,
.open > .dropdown-toggle.btn-info-03:focus,
.btn-info-03.focus:active,
.btn-info-03.active.focus,
.open > .dropdown-toggle.btn-info-03.focus,
.btn-info-03:hover {
  background-color: #97bc33;
  color: #005826;
}

.btn-book {
  display: inline-block;
  vertical-align: middle;
  padding: 11px 42px;
  border-radius: 24px;
  text-align: center;
  background-color: #005826;
  color: #fff;
}

.btn-book:hover,
.btn-book:focus {
  text-decoration: none;
  background-color: #97bc33;
  color: #005826;
}

.btn-contact {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  min-width: 277px;
  padding: 11px 12px 17px;
  border-radius: 0 0 22px 22px;
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  background-color: #005826;
  color: #fff;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
     transform: translateX(-50%);
  -webkit-transition: background 0.3s, color 0.3s;
  -o-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}

.btn-contact:hover,
.btn-contact:focus {
  text-decoration: none;
  background-color: #97bc33;
  color: #005826;
}

.btn-circle {
  display: table;
  table-layout: fixed;
  width: 169px;
  height: 169px;
  border: 8px solid #005826;
  border-radius: 50%;
  background-color: #97bc33;
  color: #005826;
  font: 700 30px/31px 'Caveat', cursive;
  text-align: center;
  -webkit-transform: rotate(-14deg);
  -o-transform: rotate(-14deg);
     transform: rotate(-14deg);
}

.btn-circle:hover,
.btn-circle:focus {
  text-decoration: none;
  background-color: #005826;
  color: #97bc33;
}

.btn-circle span {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 10px 18px;
}

.btn-chat {
  position: fixed;
  top: 284px;
  right: 0;
  z-index: 40;
  padding: 16px 25px 15px;
  border-radius: 6px;
  background-color: #ff098c;
  color: #fff;
  font: 18px/22px 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  -webkit-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
     transform-origin: 100% 100%;
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
     transform: rotate(-90deg);
}

.btn-chat:hover,
.btn-chat:active,
.btn-chat:focus {
  text-decoration: none;
  background-color: #e60073;
  color: #fff;
}

.btn .arrow {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 11px;
}

.btn .arrow:before,
.btn .arrow:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: 14px 11px;
  content: "";
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover .arrow:after,
.btn:active .arrow:after,
.btn:focus .arrow:after {
  opacity: 1;
}

.btn:hover .arrow:before,
.btn:active .arrow:before,
.btn:focus .arrow:before,
.btn .arrow:after {
  opacity: 0;
}

.btn .arrow:before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMy40IDExIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMy40IDExIiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZGVmcz4KCQk8cGF0aCBpZD0iU1ZHSURfMV8iIGQ9Ik0wLjIsNC45bDQuMy00LjZjMC40LTAuNCwwLjktMC40LDEuMy0wLjFjMC40LDAuMywwLjQsMC45LDAuMSwxLjJMMi45LDQuNmg5LjZjMC41LDAsMC45LDAuNCwwLjksMC45CgkJCWMwLDAuNS0wLjQsMC45LTAuOSwwLjlIMi45bDIuOSwzLjJjMC4zLDAuMywwLjMsMC45LTAuMSwxLjJjLTAuNCwwLjMtMSwwLjMtMS4zLTAuMUwwLjIsNi4xQy0wLjEsNS43LTAuMSw1LjMsMC4yLDQuOXoiLz4KCTwvZGVmcz4KCTxjbGlwUGF0aCBpZD0iU1ZHSURfMl8iPgoJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzFfIiAgb3ZlcmZsb3c9InZpc2libGUiLz4KCTwvY2xpcFBhdGg+Cgk8ZyBjbGlwLXBhdGg9InVybCgjU1ZHSURfMl8pIj4KCQk8ZGVmcz4KCQkJPHJlY3QgaWQ9IlNWR0lEXzNfIiB4PSItNTkzLjMiIHk9Ii00NzA0IiB3aWR0aD0iMTYwMCIgaGVpZ2h0PSI5MTMwIi8+CgkJPC9kZWZzPgoJCTxjbGlwUGF0aCBpZD0iU1ZHSURfNF8iPgoJCQk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8zXyIgIG92ZXJmbG93PSJ2aXNpYmxlIi8+CgkJPC9jbGlwUGF0aD4KCQk8cmVjdCB4PSItNSIgeT0iLTUiIGNsaXAtcGF0aD0idXJsKCNTVkdJRF80XykiIGZpbGw9IiM5N0JEMzMiIHdpZHRoPSIyMy40IiBoZWlnaHQ9IjIxIi8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==);
}

.btn .arrow:after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMy40IDExIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMy40IDExIiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZGVmcz4KCQk8cGF0aCBpZD0iU1ZHSURfMV8iIGQ9Ik0wLjIsNC45bDQuMy00LjZjMC40LTAuNCwwLjktMC40LDEuMy0wLjFjMC40LDAuMywwLjQsMC45LDAuMSwxLjJMMi45LDQuNmg5LjZjMC41LDAsMC45LDAuNCwwLjksMC45CgkJCWMwLDAuNS0wLjQsMC45LTAuOSwwLjlIMi45bDIuOSwzLjJjMC4zLDAuMywwLjMsMC45LTAuMSwxLjJjLTAuNCwwLjMtMSwwLjMtMS4zLTAuMUwwLjIsNi4xQy0wLjEsNS43LTAuMSw1LjMsMC4yLDQuOXoiLz4KCTwvZGVmcz4KCTxjbGlwUGF0aCBpZD0iU1ZHSURfMl8iPgoJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzFfIiAgb3ZlcmZsb3c9InZpc2libGUiLz4KCTwvY2xpcFBhdGg+Cgk8ZyBjbGlwLXBhdGg9InVybCgjU1ZHSURfMl8pIj4KCQk8ZGVmcz4KCQkJPHJlY3QgaWQ9IlNWR0lEXzNfIiB4PSItOTcuMyIgeT0iLTYwMDYiIHdpZHRoPSIzMjAiIGhlaWdodD0iOTU3NiIvPgoJCTwvZGVmcz4KCQk8Y2xpcFBhdGggaWQ9IlNWR0lEXzRfIj4KCQkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfM18iICBvdmVyZmxvdz0idmlzaWJsZSIvPgoJCTwvY2xpcFBhdGg+CgkJPHJlY3QgeD0iLTUiIHk9Ii01IiBjbGlwLXBhdGg9InVybCgjU1ZHSURfNF8pIiBmaWxsPSIjMDQ1OTJBIiB3aWR0aD0iMjMuNCIgaGVpZ2h0PSIyMSIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=);
}

.btn .arrow-left {
  margin-right: 5px;
}

.btn .arrow-right {
  margin-left: 5px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.btn.btn-primary-02 .arrow:before {
  display: none;
}

.btn.btn-primary-02 .arrow:after {
  opacity: 1;
}

.bg-gray {
  background-color: #ededed;
}

.sfTxt {
  -webkit-appearance: none;
}

.slick-slide {
  outline: none;
}

/* header */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
}

#header .container-fluid {
  padding: 0 35px;
}

#header [class*="col-"] {
  position: static;
}

#header .logo {
  display: inline-block;
  vertical-align: top;
  width: 159px;
  height: 94px;
  margin: 33px 0 0 -2px;
  overflow: hidden;
  text-indent: -9999px;
  background: url(/wp-content/themes/fennwright/dist/images/logo.svg) no-repeat;
  background-size: 159px 94px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#header .logo a {
  display: block;
  height: 100%;
}

.top-bar {
  display: inline-block;
  vertical-align: top;
  padding: 17px 0 21px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top-bar .btn-book {
  margin-left: 26px;
}

.top-nav {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 3px 0 0;
  font-size: 0;
  line-height: 0;
}

.top-nav li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 -25px 0 0;
  padding: 0 25px;
  font-size: 18px;
  line-height: 22px;
}

.top-nav li:before {
  position: absolute;
  top: 0;
  right: 10px;
  content: "|";
}

/* main-nav */

.main-nav {
  list-style: none;
  margin: 0 -18px;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.main-nav > li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 18px;
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-align: left;
}

.main-nav > li > a {
  display: block;
  position: relative;
  padding: 0 0 35px;
}

.main-nav > li > a:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: #91b639;
  opacity: 0;
  content: "";
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main-nav > li > a:hover,
.main-nav > li > a:focus {
  text-decoration: none;
}

.main-nav > li > a:hover:before,
.main-nav > li > a:focus:before,
.main-nav > .active > a:before,
.main-nav > li:hover > a:before {
  opacity: 1;
}

.main-nav > li > a .opener {
  display: none;
}

.main-nav li:hover > ul {
  visibility: visible;
  opacity: 1;
}

.main-nav ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 314px;
  visibility: hidden;
  opacity: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ededed;
  color: #4a4a4a;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #4a4a4a;
  content: "";
}

.main-nav ul li a {
  display: block;
  position: relative;
  padding: 16px 21px 17px;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li:hover > a {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.16);
}

.main-nav ul ul {
  top: 0;
  left: 100%;
  background: #91b639;
  color: #005029;
}

.main-nav ul .has-drop > a {
  padding-right: 50px;
}

.main-nav .opener {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  font-size: 0;
  line-height: 0;
}

.main-nav .opener:before {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border: solid #4a4a4a;
  border-width: 2px 2px 0 0;
  content: "";
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
}

.menu .top-nav,
.menu .btn-book {
  display: none;
}

/* visual-intro */

.visual-intro {
  display: table;
  table-layout: fixed;
  position: relative;
  width: 100%;
  height: 705px;
  background-position: 50% 50%;
  background-size: cover;
  background-color: #000;
  color: #fff;
  font-size: 40px;
  line-height: 44px;
}

.visual-intro:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuNyIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.visual-intro > img,
.visual-intro .labels > img {
  display: none;
}

.visual-intro .labels {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-position: 50% 50%;
  background-size: cover;
}

.visual-intro .inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 65px 0 322px;
}

.home .visual-intro .inner {
  padding-top: 0;
}

.visual-intro .container {
  position: relative;
  z-index: 10;
}

.visual-intro h1 {
  margin: 0 0 12px;
  font-size: 80px;
  line-height: 1;
  color: inherit;
}

.visual-intro p {
  margin: 0 0 38px;
}

.visual-intro .btns {
  margin: 0 -13px;
  font-size: 0;
  line-height: 0;
}

.visual-intro .btn {
  margin: 0 13px 10px;
  padding: 11px 26px 12px;
}

.home .visual-intro .btn {
  padding: 5px 10px;
  font-size: 15px;
}

/* headline */

.headline {
  position: relative;
  margin: 0 0 16px;
}

.headline h2 {
  display: inline-block;
  vertical-align: top;
  position: relative;
  min-width: 100%;
  left: 50%;
  margin: 0;
  font-size: 150px;
  line-height: 154px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.05);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
     transform: translateX(-50%);
}

.headline .logo-item {
  position: absolute;
  left: 50%;
  bottom: 6px;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
     transform: translateX(-50%);
}

.headline.green h2 {
  color: rgba(0, 88, 38, 0.05);
}

/* about */

.about {
  background: #ededed;
  font-size: 21px;
  line-height: 28px;
}

.about .icon-section {
  background: #0d6032;
  margin-top: 43px;
  padding: 0 0 56px;
  color: #fff;
}

.about .headline h2 {
  color: rgba(0, 88, 38, 0.05);
}

@media screen and (min-width: 991px) {
  .home .about .search-panel {
    margin-top: -330px;
  }
}

.about .search-panel {
  text-align: left;
  margin-top: -206px;
  margin-bottom: 46px;
}

.about .search-panel .holder {
  padding-bottom: 7px;
  /**
	Keeping this here, as they don't want this live yet.
	  background:#97BC33;
	 */
}

/**
  keeping this here as they don't want this live yet
  .about .search-panel .btn {
    background-color: #005826;
    color: #fff;
}
.about .search-panel h3 {
	background:#97BC33;
	border-color:#97BC33;
}
   */

/**
Keeping this here as they don't want this live yet
.about .search-panel .options li {border-color:#97BC33;}
.about .search-panel .options li.active {background:#97BC33;}
 */

.about .lead {
  font-size: 27px;
  line-height: 34px;
  font-weight: 700;
  color: inherit;
}

.about p {
  margin: 0 0 30px;
}

.about footer {
  padding: 18px 0 0;
  font-size: 27px;
  line-height: 34px;
  color: #97bc33;
}

.about footer p {
  margin: 0 0 28px;
}

/* logo-item */

.logo-item {
  display: inline-block;
  vertical-align: top;
}

.logo-item img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  width: auto;
}

/* about-boxes */

.about-boxes {
  margin-top: -78px;
  margin-bottom: 7px;
}

/* about-box */

.about-box {
  display: block;
  position: relative;
  z-index: 10;
}

.about-box:hover,
.about-box:focus {
  text-decoration: none;
}

.about-box:hover figure {
  background: #97bc33;
}

.about-box figure {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  background: #fff;
  color: #005826;
  -webkit-box-shadow: -16px 2px 5px rgba(0, 0, 0, 0.5);
          box-shadow: -16px 2px 5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.about-box .img {
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  min-height: 279px;
  background-position: 50% 50%;
  background-size: cover;
}

.about-box .img > img {
  display: none;
}

.about-box figcaption {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  position: relative;
  width: 79px;
  text-align: center;
}

.about-box figcaption h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 279px;
  margin: 0 0 0 5px;
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -o-transform: translate(-50%, -50%) rotate(-90deg);
     transform: translate(-50%, -50%) rotate(-90deg);
}

/* about-gallery */

.about-gallery {
  padding: 43px 0 0;
}

.about-gallery .row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-gallery .row:before,
.about-gallery .row:after {
  display: none;
}

.about-gallery [class*="col-"] {
  padding: 0 60px;
}

.about-gallery .img {
  position: relative;
  height: 110px;
}

.about-gallery .img img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.about-gallery figcaption {
  padding: 28px 0 0;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}

.about-gallery .slick-dots {
  list-style: none;
  margin: 0 -8px;
  padding: 47px 0 0;
  font-size: 0;
  line-height: 0;
}

.about-gallery .slick-dots li {
  display: inline-block;
  vertical-align: top;
  padding: 0 8px;
}

.about-gallery .slick-dots button {
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  opacity: 0.2;
}

.about-gallery .slick-dots button:hover,
.about-gallery .slick-dots .slick-active button {
  opacity: 1;
}

/* location-section */

.location-section {
  position: relative;
}

.locations-map {
  height: 644px;
}

.marker-point {
  position: relative;
}

.marker-point:before {
  position: absolute;
  content: '';
  border: 20px solid transparent;
  border-top: 22px solid #97bb33;
  top: 100%;
  left: 50%;
  margin: -6px 0 0 -20px;
}

.marker-point figure {
  margin: 0;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #97bb33;
  position: relative;
  overflow: hidden;
  padding: 68px 0 0;
  z-index: 3;
}

.marker-point .img > img {
  display: none;
}

.marker-point .img {
  position: absolute;
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 100%;
}

.marker-point figcaption {
  background: #97bb33;
  text-align: center;
  color: #005826;
  font: bold 14px/16px 'Caveat', Helvetica, sans-serif;
  padding: 3px 0 0;
  position: relative;
  z-index: 2;
  min-height: 30px;
}

.location-section .container {
  position: relative;
}

.filter-locations {
  position: absolute;
  bottom: 70px;
  left: 10px;
  width: 340px;
  border-radius: 5px;
  z-index: 20;
  background: rgba(0, 88, 38, 0.9);
  padding: 28px 23px 32px;
  color: #fff;
}

.filter-locations h3 {
  color: #fff;
  font-size: 21px;
  line-height: 32px;
  margin: 0 0 16px;
}

.filter-locations ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 340px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
}

.filter-locations ul li {
  padding: 10px 0;
  width: 46%;
  border-top: 4px dotted #98bc34;
}

.filter-locations ul li input {
  display: none;
}

.filter-locations ul label {
  display: block;
  cursor: pointer;
  padding: 0 0 0 29px;
  position: relative;
  font-size: 19px;
  line-height: 27px;
  font-weight: 300;
  margin: 0;
}

.filter-locations ul label:before {
  position: absolute;
  content: '';
  width: 19px;
  height: 19px;
  left: 0;
  top: 4px;
  background: #fff;
  border-radius: 100%;
  border: 2px solid #97bb33;
}

.filter-locations ul input[type=radio]:checked + label {
  font-weight: bold;
}

/* news-section */

.news-section {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 71px 0 102px;
}

.news-section h2 {
  position: absolute;
  left: -20px;
  top: -21px;
  right: 0;
  z-index: -1;
  margin: 0;
  font-size: 288px;
  line-height: 292px;
  font-weight: 700;
  color: rgba(0, 88, 38, 0.05);
}

.news-section header {
  margin-bottom: 21px;
  font-size: 21px;
  line-height: 28px;
  color: #005826;
}

.news-section header .holder {
  padding-top: 20px;
}

.news-section header p {
  margin: 0;
}

.news-section .more {
  display: inline-block;
  vertical-align: top;
  margin: 23px 14px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: underline;
}

.news-section .more:hover,
.news-section .more:focus {
  text-decoration: none;
}

.news-section.type2 {
  padding: 48px 0 89px;
}

.news-section.type2 h2 {
  top: -35px;
}

/* news-boxes */

.news-boxes [class*="col-"] {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

/* news-box */

.news-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 100%;
  margin: 0 0 23px;
  border-radius: 0 5px 5px 0;
  font-size: 19px;
  line-height: 24px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.news-box:hover {
  background: #97bc33;
  color: #005029;
}

.news-box:hover .btn-primary {
  background-color: #fff;
  color: #005826;
}

.news-box:hover .btn-primary:hover,
.news-box:hover .btn-primary:focus,
.news-box:hover .btn-primary:active {
  background-color: #005826;
  color: #97bc33;
}

.news-box .img {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  position: relative;
  width: 48.17%;
  min-height: 310px;
  background-position: 50% 50%;
  background-size: cover;
}

.news-box .img > img {
  display: none;
}

.news-box figcaption {
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
  position: relative;
  padding: 14px 21px 98px;
}

.news-box .date {
  display: block;
  margin: 0 0 17px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  color: #005029;
}

.news-box h3 {
  margin: 0 0 16px;
  line-height: 30px;
  font-weight: 300;
}

.news-box .text {
  max-height: 48px;
}

.news-box p {
  margin: 0;
}

.news-box .btn {
  position: absolute;
  left: 20px;
  bottom: 32px;
  min-width: 146px;
}

/* testimonials */

.testimonials {
  background: #f2f6f4;
}

.testimonials .container {
  position: relative;
  padding-top: 63px;
  padding-bottom: 47px;
}

.testimonials .btn-circle {
  position: absolute;
  top: -77px;
  right: 10px;
  z-index: 10;
}

.testimonials .head {
  margin-bottom: 53px;
}

.testimonials h2 {
  margin: 0;
  font-size: 36px;
  line-height: 40px;
}

.carousel {
  position: relative;
  padding: 0 45px 0 65px;
}

.carousel .slide {
  padding: 0 35px;
}

.carousel .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 32px;
  height: 32px;
  margin-top: -22px;
  padding: 0;
  border: solid #dbdcdb;
  overflow: hidden;
  text-indent: -9999px;
  background: none;
}

.carousel .slick-arrow:hover {
  opacity: 0.7;
}

.carousel .slick-prev {
  left: 7px;
  border-width: 8px 0 0 8px;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
     transform: rotate(-45deg);
}

.carousel .slick-next {
  right: 7px;
  border-width: 8px 8px 0 0;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
}

.stars {
  width: 173px;
  height: 26px;
  display: table;
  table-layout: fixed;
  margin: 0 0 25px;
}

.stars span {
  display: table-cell;
}

.stars span:first-child {
  background: url(/wp-content/themes/fennwright/dist/images/ico-04.svg) no-repeat;
  background-size: 173px 26px;
}

.review-box h3 {
  font-size: 21px;
  line-height: 24px;
  margin: 0 0 8px;
}

.review-box {
  font-size: 19px;
  line-height: 28px;
  padding: 8px 0 0;
}

.review-box p {
  margin: 0 0 19px;
}

.review-box .date {
  display: block;
  color: #959595;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
}

/* visual-block */

.visual-block {
  display: table;
  table-layout: fixed;
  position: relative;
  width: 100%;
  height: 703px;
  font-size: 21px;
  line-height: 25px;
  background-color: #000;
  color: #fff;
}

.visual-block .video {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
}

.visual-block .video:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 58.75%;
  content: "";
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjYiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.visual-block .video > img {
  display: none;
}

.visual-block .video video {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
}

.visual-block .inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 60px 0 30px;
}

.visual-block .container {
  position: relative;
  z-index: 10;
}

.visual-block h1 {
  margin: 0 0 26px;
  line-height: 57px;
  color: inherit;
}

/* culture-section */

.culture-section .headline h2 {
  color: rgba(0, 88, 38, 0.05);
}

.culture-section {
  padding: 14px 0 101px;
  background-color: #ededed;
  color: #4a4a4a;
  font-size: 21px;
  line-height: 28px;
}

.culture-section .headline {
  margin: 0 0 48px;
}

.culture-section .lead {
  margin: 0 0 43px;
  font-size: 27px;
  line-height: 34px;
  font-weight: 700;
  color: inherit;
}

.culture-section p {
  margin: 0 0 21px;
}

/* people-section */

.people-section {
  padding: 20px 0 127px;
  background-color: #f2f6f4;
  font-size: 21px;
  line-height: 28px;
}

.people-section .headline {
  margin: 0 0 36px;
}

.people-section .headline .logo-item {
  bottom: 9px;
  margin-left: 29px;
}

.people-section h3 {
  margin: 0 0 23px;
  font-size: 48px;
  line-height: 52px;
  font-weight: 300;
}

.people-section .lead {
  font-size: 27px;
  line-height: 34px;
  font-weight: 700;
  color: #005826;
}

.people-section p {
  margin: 0 0 26px;
}

.people-section .list-unstyled {
  margin: 0;
  padding: 3px 0 0;
}

.people-section .list-unstyled li {
  margin: 0 0 20px;
}

.people-section .btn {
  min-width: 193px;
  padding: 10px 12px;
}

/* people-img */

.people-img {
  position: relative;
  margin: 8px 0 0 -11px;
}

.people-img img {
  vertical-align: top;
  width: 100%;
  height: auto;
  border: solid #91b639;
  border-width: 19px 0 0 21px;
  border-radius: 10px;
}

.people-img .btn-circle {
  position: absolute;
  right: -63px;
  bottom: -71px;
  width: 182px;
  height: 182px;
}

.people-img .btn-circle span {
  padding: 33px 5px 10px;
}

/* faq-section */

.faq-section {
  padding: 10px 0 36px;
  background-color: #97bc33;
  color: #005826;
}

.faq-section .headline {
  margin: 0 0 32px;
}

.faq-section .headline .logo-item {
  bottom: 11px;
}

.faq-section .top {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  margin-bottom: 21px;
}

.faq-section .top:before,
.faq-section .top:after {
  display: none;
}

.faq-section h3 {
  margin: 0;
  font-size: 48px;
  line-height: 52px;
  font-weight: 300;
  letter-spacing: 1px;
}

.faq-section .more {
  display: inline-block;
  vertical-align: top;
  margin: -2px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: underline;
}

.faq-section .more:hover,
.faq-section .more:focus {
  text-decoration: none;
}

/* faq-accordion */

.faq-accordion {
  font-size: 21px;
  line-height: 27px;
}

.faq-accordion .panel {
  margin: 0;
  border-width: 0 0 1px;
  border-color: #005826;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq-accordion .panel-title {
  font-size: 21px;
  line-height: 27px;
  font-weight: 700;
}

.faq-accordion .panel-title a {
  display: block;
  position: relative;
  padding: 18px 60px 18px 0;
}

.faq-accordion .panel-title a:hover,
.faq-accordion .panel-title a:focus {
  text-decoration: none;
}

.faq-accordion .panel-title a:before,
.faq-accordion .panel-title a:after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 22px;
  height: 4px;
  margin-top: -2px;
  border-radius: 3px;
  background: #005826;
  content: "";
}

.faq-accordion .panel-title a:after {
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
     transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-accordion .panel-title a:not(.collapsed):after {
  opacity: 0;
}

.faq-accordion .panel-body {
  margin: -3px 0 0;
  padding: 0 0 17px;
}

.faq-accordion p {
  margin: 0 0 24px;
}

/* faq-links */

.faq-links {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 27px;
  line-height: 31px;
  letter-spacing: -0.4px;
  font-weight: 700;
}

.faq-links li {
  margin: 0 0 22px;
}

.faq-links a {
  display: block;
}

.faq-links a:hover,
.faq-links a:focus {
  text-decoration: none;
}

.faq-links a:hover figure:before,
.faq-links a:focus figure:before {
  opacity: 0.7;
}

.faq-links figure {
  display: table;
  table-layout: fixed;
  position: relative;
  width: 100%;
  height: 106px;
  background-position: 50% 50%;
  background-size: cover;
  background-color: #000;
  color: #fff;
}

.faq-links figure:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.faq-links figure > img {
  display: none;
}

.faq-links figcaption {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 18px 26px;
}

/* visual */

.visual {
  position: relative;
  height: 512px;
  background-position: 50% 50%;
  background-size: cover;
}

.visual:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 88%;
  content: "";
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.visual > img {
  display: none;
}

/* search-panel */

.search-panel {
  position: relative;
  z-index: 10;
  margin: -269px 0 0;
  color: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

.search-panel header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.search-panel h3 {
  margin: 0;
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
  width: 196px;
  padding: 15px;
  border-radius: 9px 9px 0 0;
  text-align: center;
  border: 2px solid #fff;
  display: none;
  background: #fff;
  color: #4d4e49;
}

.search-panel .select-options {
  display: none;
}

.search-panel .options {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.search-panel .options li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #97bc33;
  color: #005826;
  border-radius: 9px 9px 0 0;
  border: 2px solid #005826;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.search-panel .options li:first-child {
  margin-left: 0;
}

.search-panel .options a {
  display: block;
  text-align: center;
  font-size: 19px;
  line-height: 24px;
  padding: 15px;
  color: #4d4e49;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.search-panel .options li:hover {
  background: #97bb33;
}

.search-panel .options li.active {
  background: #fff;
  color: #fff;
  border-color: #fff;
}

.search-panel .holder {
  padding: 30px 37px 14px;
  background-color: #fff;
}

.search-panel .row {
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
}

.search-panel .size-1 {
  width: 43%;
}

.search-panel .size-2 {
  width: 37.7%;
}

.search-panel .size-3 {
  width: 18%;
}

.search-panel .size-4 {
  width: 17.8%;
}

.search-panel .size-5 {
  width: 19.9%;
}

.search-panel .size-6 {
  width: 17.8%;
}

.search-panel [class*="col-"] {
  padding-bottom: 17px;
}

.search-panel .sfTxtLbl {
  color: #4d4e49;
  vertical-align: top;
  margin-bottom: 15px;
  font-size: 21px;
  line-height: 27px;
}

.propertyhive-ordering .select2-container--type3 .select2-selection--single,
.search-panel .select2-container--type2 .select2-selection--single {
  border: 1px solid #d8d7d7;
  background-color: #ededed;
  color: #4d4e49;
}

.propertyhive-ordering .select2-container--type3 .select2-selection--single {
  background-color: #fff;
}

.search-panel .sfTxt {
  display: block;
  width: 100%;
  height: 44px;
  padding: 10px 17px 11px;
  border: 1px solid #d8d7d7;
  border-radius: 10px;
  font-size: 17px;
  line-height: 21px;
  color: #4d4e49;
  background-color: #ededed;
}

.search-panel .sfTxt::-moz-placeholder {
  color: #4d4e49;
  opacity: 1;
}

.search-panel .sfTxt:-ms-input-placeholder {
  color: #4d4e49;
}

.search-panel .sfTxt::-webkit-input-placeholder {
  color: #4d4e49;
}

.check-row {
  padding: 26px 0 12px;
}

.check-row .sfFormCheckboxlist {
  display: inline-block;
  vertical-align: top;
  padding: 0 30px 15px 0;
}

.search-panel .custom-radio label,
.search-panel .custom-check label {
  color: #4d4e49;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
}

.search-panel .custom-check label:before {
  background-color: #ededed;
  border-color: #ededed;
}

.search-panel .custom-check label:after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxOS4xIDE0LjciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE5LjEgMTQuNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiM5REM2NEU7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik02LjQsMTQuN0wwLDguM2wyLTJsNC40LDQuNEwxNy4xLDBsMiwyTDYuNCwxNC43eiIvPgo8L2c+Cjwvc3ZnPgo=);
}

/* custom-select-02 */

.select2-container--type2 .select2-selection--single {
  height: 44px;
  padding: 10px 39px 11px 17px;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  background: #fff;
  color: #005826;
  font-size: 17px;
  line-height: 21px;
}

.select2-selection--single {
  outline: none;
}

.select2-container--type2.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--type2.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--type2 .select2-selection--single .select2-selection__arrow b {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  border: solid #005826;
  border-width: 2px 2px 0 0;
  content: "";
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
     transform: rotate(135deg);
}

.select2-container.select2-container--type2 .select2-selection--single .select2-selection__rendered {
  padding: 0;
}

.select2-container--type2 .select2-dropdown {
  border-radius: 10px;
  border: 1px solid #f2f2f2;
}

.select2-container--open.select2-container--type2 .select2-dropdown--below {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--open.select2-container--type2 .select2-dropdown--above {
  border-bottom-width: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--type2 .select2-results__option {
  padding: 11px 18px 12px;
  background: #fff;
  font-size: 17px;
  line-height: 21px;
}

.select2-container--type2 .select2-results__option--highlighted {
  background: #e0dfdd;
}

/* sale-section */

.sale-section {
  margin: -18px 0 55px;
  font-size: 19px;
  line-height: 24px;
}

.sale-section .headline {
  margin: 0 0 56px;
}

.sale-section .headline .logo-item {
  bottom: 3px;
}

.sale-section .lead {
  margin: 0 0 48px;
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
}

.sale-section p {
  margin: 0 0 24px;
}

.sale-section .second-nav {
  margin: -41px 0 0;
}

/* signup */

.signup {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 26px 0 29px;
  background-color: #97bc33;
  color: #005826;
  font-size: 25px;
  line-height: 29px;
}

.signup .row {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  margin-top: 25px;
}

.signup .row .row {
  margin-top: 0;
}

.signup h2 {
  position: absolute;
  left: 50%;
  top: -16px;
  z-index: -1;
  margin: 0;
  font-size: 200px;
  line-height: 204px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.05);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
     transform: translateX(-50%);
}

.signup h3 {
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 52px;
}

.signup h3 mark {
  padding: 0;
  background: none;
  color: #fff;
  font-weight: 300;
}

.signup .sfTxtLbl {
  vertical-align: top;
  margin-bottom: 11px;
  font-size: 21px;
  line-height: 25px;
}

.signup .sfTxt {
  display: block;
  width: 100%;
  height: 44px;
  padding: 10px 17px 11px;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  font-size: 17px;
  line-height: 21px;
  color: #005826;
}

.signup .sfTxt::-moz-placeholder {
  color: #005826;
  opacity: 1;
}

.signup .sfTxt:-ms-input-placeholder {
  color: #005826;
}

.signup .sfTxt::-webkit-input-placeholder {
  color: #005826;
}

.signup .row .btn {
  min-width: 0;
  width: 100%;
}

.signup.type2 {
  padding: 36px 0;
}

.signup.type2 h2 {
  margin: 0;
}

.signup p {
  margin: 0 0 24px;
}

.signup .btn {
  min-width: 178px;
}

/* main */

#main {
  padding-top: 35px;
  padding-bottom: 50px;
}

/* sidebar */

.sidebar {
  margin: 0 0 0 -18px;
}

.second-nav {
  list-style: none;
  margin: 0;
  padding: 8px 15px 9px;
  background: #f3f3f3;
  border-radius: 8px;
}

.second-nav .opener {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 100%;
}

.second-nav .opener:before {
  content: '';
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 8px;
  margin: -4px 0 0 -2px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxNCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxNCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZGVmcz4KCQk8cG9seWdvbiBpZD0iU1ZHSURfMV8iIHBvaW50cz0iMS4xLDAuMSAwLDEuMiA3LDggMTQsMS4yIDEyLjcsMCA2LjksNS43IAkJIi8+Cgk8L2RlZnM+Cgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4KCQk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8xXyIgIG92ZXJmbG93PSJ2aXNpYmxlIi8+Cgk8L2NsaXBQYXRoPgoJPGcgY2xpcC1wYXRoPSJ1cmwoI1NWR0lEXzJfKSI+CgkJPGRlZnM+CgkJCTxyZWN0IGlkPSJTVkdJRF8zXyIgeD0iLTUyNyIgeT0iLTMwNiIgd2lkdGg9IjE2MDAiIGhlaWdodD0iOTEzMCIvPgoJCTwvZGVmcz4KCQk8Y2xpcFBhdGggaWQ9IlNWR0lEXzRfIj4KCQkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfM18iICBvdmVyZmxvdz0idmlzaWJsZSIvPgoJCTwvY2xpcFBhdGg+CgkJPHJlY3QgeD0iLTUiIHk9Ii01IiBjbGlwLXBhdGg9InVybCgjU1ZHSURfNF8pIiBmaWxsPSIjMDA1MTJBIiB3aWR0aD0iMjQiIGhlaWdodD0iMTgiLz4KCTwvZz4KPC9nPgo8L3N2Zz4K) no-repeat;
  background-size: 100% 100%;
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
     transform: rotate(-90deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.second-nav .active > a .opener:before {
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
     transform: rotate(0deg);
}

.second-nav li {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}

.second-nav > li + li {
  border-top: solid 2px rgba(151, 151, 151, 0.2);
}

.second-nav li a {
  color: #4a4a4a;
  display: block;
  position: relative;
  padding: 12px 0;
  text-decoration: none;
}

.second-nav li.has-drop > a {
  padding-right: 30px;
}

.second-nav ul li {
  font-weight: 300;
  font-size: 15px;
}

.second-nav ul a {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 8px;
}

.second-nav ul a:before {
  content: '- ';
}

.second-nav ul ul {
  padding-top: 10px;
}

.second-nav ul ul a {
  padding-left: 38px;
}

.second-nav ul ul ul {
  padding-top: 8px;
}

.second-nav ul ul ul a {
  padding-left: 68px;
}

.second-nav li a:focus,
.second-nav li a:hover {
  text-decoration: none;
  color: #005826;
  background-color: transparent;
}

.second-nav ul {
  margin: 0;
  padding: 0 0 5px;
  list-style: none;
}

.second-nav ul li.active > a {
  font-weight: 700;
  color: #005826;
}

.second-nav.type2 {
  padding: 3px 20px 5px;
}

.second-nav.type2 li {
  font-size: 17px;
  font-weight: 400;
}

.second-nav.type2 li a {
  padding: 13px 6px;
}

.second-nav.type2 li.has-drop > a {
  padding-right: 30px;
}

.second-nav.type2 ul {
  margin: -8px 0 0;
  padding: 0 0 14px;
}

.second-nav.type2 ul li {
  font-size: 16px;
  font-weight: 400;
}

.second-nav.type2 ul a {
  padding: 9px 13px 9px 29px;
}

.second-nav.type2 ul a::before {
  display: none;
}

.second-nav.type2 .opener::before {
  width: 8px;
  height: 8px;
  margin: -4px 0 0;
  border: solid #c3c2c2;
  border-width: 0 2px 2px 0;
  background: none;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
     transform: rotate(-45deg);
}

.second-nav.type2 .active > a .opener::before {
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
}

.second-nav.type2 ul ul {
  margin: 0;
  padding: 0;
}

.second-nav.type2 ul ul li a {
  padding-left: 52px;
}

.second-nav.type2 ul ul ul li a {
  padding-left: 75px;
}

/* content */

.content {
  padding-top: 4px;
}

.image-block {
  margin: 0 0 30px;
  position: relative;
  overflow: hidden;
  padding: 47.6% 0 0;
  background-color: #d8d8d8;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.image-block > img {
  display: none;
}

.content .headings {
  padding: 0 0 20px;
}

.content .intro-text {
  display: block;
  color: #005826;
  font-size: 19px;
  line-height: 26px;
  font-weight: 400;
}

.content p,
.content li {
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
}

.content ul {
  list-style: none;
  margin: 0;
  padding: 0 0 14px;
}

.content ul li {
  padding: 0 0 12px 18px;
  position: relative;
}

.content ul li:before {
  content: '';
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  margin: 10px 0 0 1px;
  width: 5px;
  height: 5px;
  background: #005029;
  border-radius: 100%;
}

.content ol {
  margin: 0;
  padding: 0 0 16px;
  list-style: none;
  counter-reset: section;
}

.content ol li {
  padding: 0 0 10px 18px;
  position: relative;
}

.content ol li:before {
  content: counter(section, decimal) ".";
  counter-increment: section;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
}

.content .panel-group {
  margin: 41px 0 61px;
}

.content .panel-group .panel {
  background: none;
  border: 1px solid #005625;
  border-radius: 8px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

.content .panel-group .panel + .panel {
  margin: 18px 0 0;
}

.content .panel-group .panel-title {
  margin: 0;
  text-transform: none;
}

.content .panel-group .panel-title a {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  padding: 13px 55px 14px 25px;
  display: block;
  color: #005826;
  position: relative;
  background: none;
  margin-top: 8px;
}

.content .panel-group .panel-title a.collapsed {
  margin: 0;
}

.content .panel-group .panel-title a:hover {
  color: #005826;
  text-decoration: none;
}

.content .panel-group .panel-title a:before,
.content .panel-group .panel-title a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: #005625;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 2px;
}

.content .panel-group .panel-title a:before {
  width: 22px;
  height: 4px;
  margin: 25px 30px 0 0;
}

.content .panel-group .panel-title a:after {
  width: 4px;
  height: 22px;
  margin: 16px 39px 0 0;
  opacity: 0;
}

.content .panel-group .panel-title .collapsed:after {
  opacity: 1;
}

.content .panel-group .panel-body {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 27px;
  padding: 12px 50px 37px 26px;
  margin: 0;
}

.content .panel-group .panel-body p {
  margin: 0;
}

.content .table-section {
  padding: 0 0 56px;
}

.content .table-section .table-holder {
  position: relative;
}

.content table {
  width: 100%;
  border-collapse: collapse;
}

.content table th {
  text-align: left;
  color: #005826;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  vertical-align: top;
  padding: 0 18px 19px;
  width: 34.9%;
  border-bottom: solid 1px #005826;
}

.content table th:last-child {
  width: auto;
}

.content table td {
  vertical-align: top;
  padding: 16px 50px 16px 17px;
  font-size: 15px;
  line-height: 21px;
}

.content table tr:nth-child(odd) td {
  background: #f2f6f5;
}

.main-form {
  padding: 0 0 50px;
}

.main-form h4 {
  color: #005826;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 40px;
}

.main-form .sfTxtLbl {
  margin: 0 0 14px;
  display: inline-block;
  vertical-align: top;
  color: #005826;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.main-form .sfFieldWrap {
  position: relative;
}

.main-form .sfFieldWrap:before {
  content: '';
  position: absolute;
  z-index: 30;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.main-form .sfErrorWrp .sfFieldWrap:before {
  width: 16px;
  height: 16px;
  margin: 17px 18px 0 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxNS40IDE1LjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE1LjQgMTUuNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNFRTMxMjQ7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMy43LDE1LjRsLTYtNmwtNiw2TDAsMTMuN2w2LTZsLTYtNkwxLjgsMGw2LDZsNi02bDEuOCwxLjhsLTYsNmw2LDZMMTMuNywxNS40eiIvPgo8L2c+Cjwvc3ZnPgo=);
  background-size: 16px 16px;
  opacity: 1;
}

.main-form .sfValidWrp .sfFieldWrap:before {
  width: 20px;
  height: 16px;
  margin: 16px 18px 0 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxOS4xIDE0LjciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE5LjEgMTQuNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiM5REM2NEU7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik02LjQsMTQuN0wwLDguM2wyLTJsNC40LDQuNEwxNy4xLDBsMiwyTDYuNCwxNC43eiIvPgo8L2c+Cjwvc3ZnPgo=);
  background-size: 20px 16px;
  opacity: 1;
}

.main-form .sfFormDropdown.sfErrorWrp .sfFieldWrap:before {
  margin-right: 45px;
}

.main-form .sfFormDropdown.sfValidWrp .sfFieldWrap:before {
  margin-right: 45px;
}

.main-form .sfFieldWrap .sfTxt {
  display: block;
  width: 100%;
  height: 50px;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  border: 0;
  background: #f2f2f2;
  color: #005826;
  padding: 5px 50px 5px 18px;
  margin: 0;
  border-radius: 8px;
  -webkit-appearance: none;
}

.main-form .sfFieldWrap .sfTxt:focus {
  outline: none;
}

.main-form .sfFieldWrap .sfTxt::-moz-placeholder {
  color: rgba(13, 97, 50, 0.5);
  opacity: 1;
}

.main-form .sfFieldWrap .sfTxt:-ms-input-placeholder {
  color: rgba(13, 97, 50, 0.5);
}

.main-form .sfFieldWrap .sfTxt::-webkit-input-placeholder {
  color: rgba(13, 97, 50, 0.5);
}

.main-form .sfFormBox {
  padding: 0 0 21px;
  position: relative;
}

.main-form .sfFormBox:after {
  content: '';
  display: block;
  clear: both;
}

.main-form .sfError {
  display: inline-block;
  vertical-align: top;
  padding: 0 0 0 10px;
}

.main-form .sfError .error {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #fe250c;
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

.main-form .sfDropdownList {
  padding: 0 0 21px;
  display: block;
}

.main-form .sfFieldWrap textarea.sfTxt {
  min-height: 133px;
  resize: vertical;
  overflow: auto;
  margin: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}

.select2-container {
  padding: 0;
  background: none;
}

.select2-container--default .select2-selection--single {
  width: 100%;
  height: 50px;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  border: 0;
  background: #f2f2f2;
  color: #005826;
  padding: 0;
  margin: 0;
  border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(13, 97, 50, 0.5);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  line-height: inherit;
  padding: 14px 50px 12px 18px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 13px;
  height: 8px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMi43IDcuOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTIuNyA3LjgiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxkZWZzPgoJCTxwb2x5Z29uIGlkPSJTVkdJRF8xXyIgcG9pbnRzPSIxLjQsMCA2LjQsNC45IDExLjMsMCAxMi43LDEuNCA2LjQsNy44IDAsMS40IAkJIi8+Cgk8L2RlZnM+Cgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4KCQk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8xXyIgIG92ZXJmbG93PSJ2aXNpYmxlIi8+Cgk8L2NsaXBQYXRoPgoJPGcgY2xpcC1wYXRoPSJ1cmwoI1NWR0lEXzJfKSI+CgkJPGRlZnM+CgkJCTxyZWN0IGlkPSJTVkdJRF8zXyIgeD0iLTEyMzQuMSIgeT0iLTI3MzEuMSIgd2lkdGg9IjE2MDAiIGhlaWdodD0iOTEzMCIvPgoJCTwvZGVmcz4KCQk8Y2xpcFBhdGggaWQ9IlNWR0lEXzRfIj4KCQkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfM18iICBvdmVyZmxvdz0idmlzaWJsZSIvPgoJCTwvY2xpcFBhdGg+CgkJCgkJCTxyZWN0IHg9Ii0zLjEiIHk9Ii04LjEiIHRyYW5zZm9ybT0ibWF0cml4KDAuNzA3MSAwLjcwNzEgLTAuNzA3MSAwLjcwNzEgMi44ODYzIC00LjA3NjYpIiBjbGlwLXBhdGg9InVybCgjU1ZHSURfNF8pIiBmaWxsPSIjNEI0QTRCIiB3aWR0aD0iMTkiIGhlaWdodD0iMTkiLz4KCTwvZz4KPC9nPgo8L3N2Zz4K) no-repeat;
  background-size: 100% 100%;
  top: 50%;
  margin-top: -3px;
  right: 23px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  border: 0;
  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
  z-index: 99;
}

.select2-container--default .select2-results > .select2-results__options {
  padding: 0;
}

.select2-container--default .select2-results__option {
  padding: 10px 18px;
  font-size: 16px;
  line-height: 22px;
  color: #005826;
  background: #e4e4e4;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  color: #005826;
  background: #f2f2f2;
}

.select2-container--default .select2-results__option:hover,
.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[aria-selected="true"]:hover {
  background-color: #e0dfdd;
  color: #005826;
}

.select2-results__option:before {
  display: none;
}

.main-form .form-elements {
  padding-top: 7px;
}

.main-form .form-elements,
.main-form .form-elements .row {
  margin-left: -5px;
  margin-right: -5px;
}

.main-form .form-elements div[class^="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.main-form .form-elements .row div[class^="col-"] {
  width: 45.2%;
}

.custom-radio input,
.custom-check input {
  display: none;
}

.custom-radio label,
.custom-check label {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #005826;
  padding-left: 30px;
}

.custom-radio label:before,
.custom-check label:before,
.custom-radio label:after,
.custom-check label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-radio label:before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid rgba(0, 88, 38, 0.7);
}

.custom-radio label:after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #005826;
  margin: 5px 0 0 5px;
  opacity: 0;
  -webkit-transform: scale(0.25);
  -o-transform: scale(0.25);
     transform: scale(0.25);
}

.custom-check label:before {
  width: 19px;
  height: 19px;
  border-radius: 2px;
  border: 2px solid rgba(0, 88, 38, 0.7);
}

.custom-check label:after {
  width: 21px;
  height: 16px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyMSAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjEgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxkZWZzPgoJCTxwb2x5Z29uIGlkPSJTVkdJRF8xXyIgcG9pbnRzPSIxOS4xLDAgNi43LDEyLjEgMiw3LjQgMCw5LjMgNi43LDE2IDIxLDEuNyAJCSIvPgoJPC9kZWZzPgoJPGNsaXBQYXRoIGlkPSJTVkdJRF8yXyI+CgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBvdmVyZmxvdz0idmlzaWJsZSIvPgoJPC9jbGlwUGF0aD4KCTxnIGNsaXAtcGF0aD0idXJsKCNTVkdJRF8yXykiPgoJCTxkZWZzPgoJCQk8cmVjdCBpZD0iU1ZHSURfM18iIHg9Ii0xMDg4IiB5PSItMjk3NCIgd2lkdGg9IjE2MDAiIGhlaWdodD0iOTEzMCIvPgoJCTwvZGVmcz4KCQk8Y2xpcFBhdGggaWQ9IlNWR0lEXzRfIj4KCQkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfM18iICBvdmVyZmxvdz0idmlzaWJsZSIvPgoJCTwvY2xpcFBhdGg+CgkJPHJlY3QgeD0iLTUiIHk9Ii01IiBjbGlwLXBhdGg9InVybCgjU1ZHSURfNF8pIiBmaWxsPSIjMDQ1OTJBIiB3aWR0aD0iMzEiIGhlaWdodD0iMjYiLz4KCTwvZz4KPC9nPgo8L3N2Zz4K) no-repeat;
  background-size: 100% 100%;
  margin: -1px 0 0 4px;
  opacity: 0;
  -webkit-transform: scale(0.25);
  -o-transform: scale(0.25);
     transform: scale(0.25);
}

.custom-radio input:checked + label:after,
.custom-check input:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -o-transform: scale(1);
     transform: scale(1);
}

.elements-block {
  padding: 0 0 48px;
}

.elements-block h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #555;
  margin: 0 0 29px;
}

.elements-block .btns {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.elements-block .btns > li {
  display: inline-block;
  vertical-align: top;
  padding: 0 15px 15px 0;
}

.elements-block .btns > li:before {
  display: none;
}

.elements-block .btns .btn {
  padding: 11px 22px 12px;
}

.testimonial-box {
  margin: 0 0 77px;
  position: relative;
  border: solid #005826;
  border-width: 3px 0;
  padding: 22px 65px 21px 84px;
}

.testimonial-box:before,
.testimonial-box:after {
  content: '';
  position: absolute;
  z-index: 20;
  width: 22px;
  height: 17px;
}

.testimonial-box:before {
  top: 0;
  left: 0;
  margin: 30px 0 0 35px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyMy43IDE2LjIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIzLjcgMTYuMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPGRlZnM+CgkJPHBhdGggaWQ9IlNWR0lEXzFfIiBkPSJNMTAsMEgwdjcuNGMwLDIuNiwwLjYsNC41LDEuNyw1LjljMS4xLDEuMywyLjgsMi4zLDUuMiwzbDIuNC0xLjhjLTIuNC0xLjItNC44LTMuMi01LjEtNi42CgkJCWMwLTAuMiwwLjEtMC41LDAuMi0wLjZDNC41LDcsNC44LDYuOSw1LDYuOWg1VjB6IE0yMy43LDBoLTEwdjcuNGMwLDIuNiwwLjYsNC41LDEuNyw1LjljMS4xLDEuMywyLjgsMi4zLDUuMiwzbDIuNC0xLjgKCQkJYy0yLjQtMS4yLTQuOC0zLjItNS4xLTYuNmMwLTAuMiwwLjEtMC41LDAuMi0wLjZjMC4yLTAuMiwwLjQtMC4zLDAuNi0wLjNoNVYweiIvPgoJPC9kZWZzPgoJPGNsaXBQYXRoIGlkPSJTVkdJRF8yXyI+CgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBvdmVyZmxvdz0idmlzaWJsZSIvPgoJPC9jbGlwUGF0aD4KCTxnIGNsaXAtcGF0aD0idXJsKCNTVkdJRF8yXykiPgoJCTxkZWZzPgoJCQk8cmVjdCBpZD0iU1ZHSURfM18iIHg9Ii02MDMuNyIgeT0iLTMzNjguOCIgd2lkdGg9IjE2MDAiIGhlaWdodD0iOTEzMCIvPgoJCTwvZGVmcz4KCQk8Y2xpcFBhdGggaWQ9IlNWR0lEXzRfIj4KCQkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfM18iICBvdmVyZmxvdz0idmlzaWJsZSIvPgoJCTwvY2xpcFBhdGg+CgkJPHJlY3QgeD0iLTUiIHk9Ii01IiBjbGlwLXBhdGg9InVybCgjU1ZHSURfNF8pIiBmaWxsPSIjRDlEOUQ5IiB3aWR0aD0iMzMuNyIgaGVpZ2h0PSIyNi4yIi8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==);
  background-size: 100% 100%;
}

.testimonial-box:after {
  bottom: 0;
  right: 0;
  margin: 0 32px 26px 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyMi43IDE2LjIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIyLjcgMTYuMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPGRlZnM+CgkJPHBhdGggaWQ9IlNWR0lEXzFfIiBkPSJNMTIuNywwaDEwdjcuNGMwLDIuNi0wLjYsNC41LTEuNyw1LjljLTEuMSwxLjMtMi44LDIuMy01LjIsM2wtMi40LTEuOGMyLjQtMS4yLDQuOC0zLjIsNS4xLTYuNgoJCQljMC0wLjItMC4xLTAuNS0wLjItMC42Yy0wLjItMC4yLTAuNC0wLjMtMC42LTAuM2gtNVYweiBNMCwwaDEwdjcuNGMwLDIuNi0wLjYsNC41LTEuNyw1LjljLTEuMSwxLjMtMi44LDIuMy01LjIsM2wtMi40LTEuOAoJCQljMi40LTEuMiw0LjgtMy4yLDUuMS02LjZjMC0wLjItMC4xLTAuNS0wLjItMC42QzUuNSw3LDUuMiw2LjksNSw2LjlIMFYweiIvPgoJPC9kZWZzPgoJPGNsaXBQYXRoIGlkPSJTVkdJRF8yXyI+CgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfMV8iICBvdmVyZmxvdz0idmlzaWJsZSIvPgoJPC9jbGlwUGF0aD4KCTxnIGNsaXAtcGF0aD0idXJsKCNTVkdJRF8yXykiPgoJCTxkZWZzPgoJCQk8cmVjdCBpZD0iU1ZHSURfM18iIHg9Ii0xMjE1LjciIHk9Ii0zNDg2LjgiIHdpZHRoPSIxNjAwIiBoZWlnaHQ9IjkxMzAiLz4KCQk8L2RlZnM+CgkJPGNsaXBQYXRoIGlkPSJTVkdJRF80XyI+CgkJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzNfIiAgb3ZlcmZsb3c9InZpc2libGUiLz4KCQk8L2NsaXBQYXRoPgoJCTxyZWN0IHg9Ii01IiB5PSItNSIgY2xpcC1wYXRoPSJ1cmwoI1NWR0lEXzRfKSIgZmlsbD0iI0Q5RDlEOSIgd2lkdGg9IjMyLjciIGhlaWdodD0iMjYuMiIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=);
  background-size: 100% 100%;
}

.testimonial-box q {
  display: block;
  color: #005826;
  font-size: 28px;
  line-height: 37px;
  font-weight: 300;
}

.testimonial-box q:before {
  content: '';
}

.testimonial-box q:after {
  content: '';
}

.filter-form {
  position: relative;
  padding: 0 144px 0 0;
  margin: 0 0 191px;
}

.filter-form .row {
  margin-left: -7px;
  margin-right: -8px;
}

.filter-form .row > div[class^="col-"] {
  padding-left: 7px;
  padding-right: 8px;
}

.filter-form .sfFormDropdown {
  position: relative;
}

.filter-form .sfTxtLbl {
  display: block;
  color: #005826;
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}

.filter-form .sfError {
  display: none;
}

.filter-form .sfFieldWrap {
  position: relative;
}

.filter-form .select2-container--default .select2-selection--single {
  height: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  border: 1px solid #dcdadb;
  border-radius: 8px;
  background: #fff;
  color: #005826;
  padding: 0;
  margin: 0;
}

.filter-form .select2-container--default.select2-container--focus.select2-container--open.select2-container--below .select2-selection--single {
  border-radius: 8px 8px 0 0;
}

.filter-form .select2-container--default.select2-container--focus.select2-container--open.select2-container--above .select2-selection--single {
  border-radius: 0 0 8px 8px;
}

.filter-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  line-height: inherit;
  padding: 9px 35px 8px 15px;
}

.filter-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 13px;
  height: 8px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMi43IDcuOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTIuNyA3LjgiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxkZWZzPgoJCTxwb2x5Z29uIGlkPSJTVkdJRF8xXyIgcG9pbnRzPSIxLjQsMCA2LjQsNC45IDExLjMsMCAxMi43LDEuNCA2LjQsNy44IDAsMS40IAkJIi8+Cgk8L2RlZnM+Cgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzJfIj4KCQk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8xXyIgIG92ZXJmbG93PSJ2aXNpYmxlIi8+Cgk8L2NsaXBQYXRoPgoJPGcgY2xpcC1wYXRoPSJ1cmwoI1NWR0lEXzJfKSI+CgkJPGRlZnM+CgkJCTxyZWN0IGlkPSJTVkdJRF8zXyIgeD0iLTcxOS4xIiB5PSItMzY3Mi4xIiB3aWR0aD0iMTYwMCIgaGVpZ2h0PSI5MTMwIi8+CgkJPC9kZWZzPgoJCTxjbGlwUGF0aCBpZD0iU1ZHSURfNF8iPgoJCQk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8zXyIgIG92ZXJmbG93PSJ2aXNpYmxlIi8+CgkJPC9jbGlwUGF0aD4KCQkKCQkJPHJlY3QgeD0iLTMuMSIgeT0iLTguMSIgdHJhbnNmb3JtPSJtYXRyaXgoMC43MDcxIDAuNzA3MSAtMC43MDcxIDAuNzA3MSAyLjg4NjMgLTQuMDc2NikiIGNsaXAtcGF0aD0idXJsKCNTVkdJRF80XykiIGZpbGw9IiMwNDU5MkEiIHdpZHRoPSIxOSIgaGVpZ2h0PSIxOSIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=) no-repeat;
  background-size: 100% 100%;
  top: 50%;
  margin-top: -2px;
  right: 13px;
}

.filter-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.filter-form .select2-dropdown {
  border: 1px solid #dcdadb;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  z-index: 99;
  margin-right: -1px;
}

.filter-form .select2-dropdown.select2-dropdown--below {
  margin-top: -1px;
  border-radius: 0 0 8px 8px;
}

.filter-form .select2-dropdown.select2-dropdown--above {
  margin-top: 1px;
  border-radius: 8px 8px 0 0;
}

.filter-form .select2-container--default .select2-results > .select2-results__options {
  padding: 0 !important;
}

.filter-form .select2-results__option {
  padding: 7px 18px !important;
  font-size: 16px;
  line-height: 22px;
  color: #005826;
  background: #fff;
}

.filter-form .sfFormSubmit {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  width: 131px;
  overflow: hidden;
  margin: 44px 0 0;
}

.filter-form .sfFormSubmit .btn {
  display: block;
  width: 100%;
  min-width: 1px;
  padding: 9px 15px 10px;
}

.news-post {
  color: #4d4d4d;
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
}

.news-post h2 {
  font-weight: 700;
  font-size: 27px;
  line-height: 32px;
  margin: 0 0 24px;
}

.news-post .sfnewsAuthorAndDate {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  color: #005029;
  padding: 0 0 17px;
}

.news-post .sfnewsTitle {
  margin: 0 0 7px;
  color: #005826;
  font-weight: 300;
  font-size: 27px;
  line-height: 32px;
}

.news-post .img {
  position: relative;
  overflow: hidden;
  padding: 54.6% 0 0;
  background-color: #d8d8d8;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin: 0 0 10px;
  border-radius: 8px;
}

.news-post .img > img {
  display: none;
}

.news-post p,
.content .news-post p {
  margin: 0 0 21px;
}

.news-post p a {
  text-decoration: none;
  color: #555;
}

.news-post p a:hover {
  color: #555;
  text-decoration: underline;
}

.tags-list,
.content .tags-list {
  margin: 0;
  padding: 0 0 11px;
  list-style: none;
  font-size: 0;
  line-height: 0;
}

.news-post .tags-list {
  margin-top: -5px;
}

.tags-list li,
.content .tags-list li {
  display: inline-block;
  vertical-align: top;
  margin: 0 7px 7px 0;
  padding: 0;
}

.content .tags-list li:before {
  display: none;
}

.tags-list li a {
  display: inline-block;
  vertical-align: top;
  color: #005826;
  background: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  border: 1px solid #dcdadb;
  border-radius: 12px;
  padding: 0 12px 2px;
}

.tags-list li a:hover {
  text-decoration: none;
  background: #f2f2f2;
}

.btns-panel {
  border-top: solid 1px #dfdfdf;
  padding: 23px 0 48px;
}

.btns-panel .btn {
  min-width: 120px;
}

.sf_pagerNumeric {
  position: relative;
  font-size: 0;
  line-height: 0;
  padding: 31px 0 45px;
  position: relative;
  margin: 0 -15px;
}

.sf_pagerNumeric:before {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  height: 2px;
  background: #eaeaea;
  content: "";
}

.sf_pagerNumeric a {
  margin: 0 15px;
}

.sf_pagerNumeric a:not(.btn) {
  display: inline-block;
  vertical-align: top;
  min-width: 36px;
  color: #005826;
  background: #f5f5f5;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 9px 5px 11px;
  border-radius: 8px;
  text-decoration: none;
}

.sf_pagerNumeric a:not(.btn):hover,
.sf_pagerNumeric .current:not(.btn) {
  text-decoration: none;
  background: #ddd;
  color: #005826;
}

.sf_pagerNumeric .btn {
  min-width: 120px;
}

.sf_pagerNumeric .next {
  margin-top: -3px;
}

.sf_pagerNumeric .prev {
  margin-top: -3px;
}

.sf_pagerNumeric.type2 {
  padding-bottom: 38px;
}

.sf_pagerNumeric.type2:before {
  background: rgba(151, 151, 151, 0.2);
}

.text-block {
  color: #717171;
  font-size: 15px;
  line-height: 21px;
  padding: 0 0 22px;
}

.text-block h3 {
  font-weight: 300;
  font-size: 21px;
  line-height: 26px;
  color: #005826;
  margin: 0 0 10px;
}

.text-block p,
.content .text-block p {
  margin: 0 0 21px;
}

.text-block.type2 {
  line-height: 24px;
}

.text-block.type2 h3 {
  font-weight: 300;
  font-size: 27px;
  line-height: 33px;
  margin: 0 0 12px;
}

.map-block {
  padding: 0 0 19px;
}

.map-block h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 5px;
}

.map-block .loc {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #4d4d4d;
  margin-bottom: 24px;
}

.map-block #map {
  height: 309px;
  margin-bottom: 32px;
}

.map-block .btns-holder .btn {
  margin: 0 22px 20px 0;
}

.jobs-list,
.content .jobs-list {
  list-style: none;
  margin: 0;
  padding: 0 0 19px;
}

.jobs-list .job-box,
.content .jobs-list .job-box {
  border-bottom: solid 2px #ccded4;
  color: #4d4d4d;
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
  padding: 19px 0 18px;
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.jobs-list .job-box:after {
  position: absolute;
  content: '';
  left: -20px;
  right: -20px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  top: -2px;
  bottom: -2px;
  opacity: 0;
  background: #f2f6f5;
}

.jobs-list .job-box:hover:after {
  opacity: 1;
}

.jobs-list .job-box:first-child {
  border-top: solid 2px #ccded4;
}

.jobs-list .job-box:before {
  display: none;
}

.jobs-list h2 {
  color: #005826;
  margin: 0 0 14px;
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
}

.jobs-list .job-nav,
.content .jobs-list .job-nav {
  list-style: none;
  margin: 0;
  padding: 0 0 11px;
  font-size: 0;
  line-height: 0;
}

.jobs-list .job-nav > li,
.content .jobs-list .job-nav > li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #005826;
}

.jobs-list .job-nav > li + li,
.content .jobs-list .job-nav > li + li {
  padding: 0 0 0 13px;
}

.jobs-list .job-nav > li:first-child:before,
.content .jobs-list .job-nav > li:first-child:before {
  display: none;
}

.jobs-list .job-nav > li + li:before,
.content .jobs-list .job-nav > li + li:before {
  content: '';
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 2px;
  height: 17px;
  background: #005826;
  border-radius: 0;
  margin: 3px 0 0 6px;
}

.jobs-list .btn {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.jobs-list .job-nav a {
  color: #005826;
  text-decoration: none;
}

.jobs-list .job-nav a:hover {
  color: #005826;
  text-decoration: underline;
}

.jobs-list .job-dates,
.content .jobs-list .job-dates {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
  font-size: 0;
  line-height: 0;
}

.jobs-list .job-dates > li,
.content .jobs-list .job-dates > li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #4d4d4d;
}

.jobs-list .job-dates > li + li,
.content .jobs-list .job-dates > li + li {
  padding: 0 0 0 30px;
}

.jobs-list .job-dates > li:first-child:before,
.content .jobs-list .job-dates > li:first-child:before {
  display: none;
}

.jobs-list .job-dates > li + li:before,
.content .jobs-list .job-dates > li + li:before {
  content: '';
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 2px;
  height: 16px;
  background: #005826;
  border-radius: 0;
  margin: 4px 0 0 15px;
}

.jobs-list .job-dates strong {
  color: #005826;
  font-weight: 700;
  font-size: 16px;
  padding: 0 20px 0 0;
}

.jobs-list p {
  margin: 0 0 19px;
}

.jobs-list .btn {
  min-width: 146px;
}

.download-links,
.content .download-links {
  font-size: 0;
  line-height: 0;
  list-style: none;
  margin: 0;
  padding: 0 0 29px;
}

.download-links > li,
.content .download-links > li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #005826;
}

.download-links > li + li,
.content .download-links > li + li {
  padding: 0 0 0 43px;
}

.download-links > li:before,
.content .download-links > li:before {
  display: none;
}

.download-links a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 0 0 35px;
  color: #005826;
  text-decoration: underline;
}

.download-links a:hover {
  color: #005826;
  text-decoration: none;
}

.download-links .fa {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  margin: -3px 0 0 3px;
  font-size: 25px;
}

.team-section {
  padding: 37px 0 20px;
}

.team-section h2 {
  font-weight: 300;
  font-size: 28px;
  line-height: 34px;
  color: #005826;
  margin: 0 0 33px;
}

.person-boxes {
  margin: 0 -15px;
}

.person-boxes [class*="col-"] {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 0 15px;
}

.person-boxes.type2 {
  margin: 0 -10px;
}

.person-boxes.type2 [class*="col-"] {
  padding: 0 10px;
}

.person-box {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  padding: 30px 10px 93px;
  border-radius: 9px;
  background: #f2f6f5;
  font-weight: 300;
  font-size: 15px;
  line-height: 21px;
  color: #005826;
  text-align: center;
}

.person-box .photo {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin: 0 auto 20px;
}

.person-box .photo img {
  display: none;
}

.person-box h3 {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 19px;
  line-height: 26px;
}

.person-box h3 small {
  display: block;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  color: #005826;
}

.person-box h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #97bc33;
  margin: 0 0 10px;
}

.person-box p {
  margin-bottom: 5px;
}

.person-box p b {
  font-weight: 700;
}

.person-box .bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 29px;
}

.person-box .btn {
  min-width: 138px;
  font-size: 15px;
  line-height: 21px;
  padding: 11px 15px 13px;
}

.person-box.type3 {
  margin: 0 0 60px;
  padding: 36px 20px 106px;
  font-size: 17px;
}

.person-box.type3 .photo {
  width: 150px;
  height: 150px;
  margin-bottom: 17px;
}

.person-box.type3 h3 {
  margin: 0 0 4px;
  font-size: 21px;
  line-height: 28px;
}

.person-box.type3 h4 {
  padding: 0 0 12px;
  margin: 0;
  font-size: 19px;
  line-height: 23px;
}

.person-box.type3 p {
  margin: 0 0 9px;
}

.person-box.type3 .bottom {
  bottom: 39px;
}

.person-box.type3 .btn {
  min-width: 167px;
  padding: 11px 12px 12px;
  font-size: 17px;
}

.person-details {
  overflow: hidden;
  font-weight: 300;
  font-size: 17px;
  line-height: 23px;
  color: #005826;
  margin-bottom: 32px;
}

.person-details .photo {
  -webkit-background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  height: 135px;
  margin: 0 auto 20px;
  width: 135px;
  float: left;
}

.person-details .photo img {
  display: none;
}

.person-details figcaption {
  overflow: hidden;
  padding: 0 0 0 48px;
}

.person-details strong {
  display: block;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 10px;
}

.person-details p {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #97bc33;
  margin: 0;
  padding: 5px 0 9px;
}

.person-details span {
  display: block;
  margin-bottom: 6px;
}

.person-details span b {
  font-weight: 700;
}

.news-block {
  padding: 23px 0 44px;
}

.news-block h2 {
  font-weight: 300;
  font-size: 28px;
  line-height: 34px;
  color: #005826;
  margin: 0 0 38px;
}

.news-block .news-box {
  font-size: 15px;
  line-height: 22px;
}

.news-block .news-box .img {
  min-height: 273px;
}

.news-block .news-box figcaption {
  padding: 18px 19px 70px;
}

.news-block .news-box .date {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.news-block .news-box h3 {
  font-size: 17px;
  line-height: 24px;
  margin: 0 0 8px;
}

.news-block .news-box .text {
  max-height: 66px;
}

.content .news-block .news-box p {
  margin: 0;
}

.news-block .news-box .btn {
  bottom: 18px;
}

/* filter-bar */

.filter-bar {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 39px 0 44px;
}

.filter-bar h2 {
  margin: 0;
  font-size: 28px;
  line-height: 34px;
  font-weight: 300;
  color: #4d4e49;
}

.filter-bar .sfFormDropdown {
  display: inline-block;
  vertical-align: middle;
  width: 159px;
  margin: 7px 0 0;
  text-align: left;
}

/* custom-select-03 */

.select2-container--type3 .select2-selection--single {
  height: 50px;
  padding: 11px 40px 12px 18px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: #fff;
  color: #005826;
  font-size: 18px;
  line-height: 25px;
}

.select2-container--type3.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--type3.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--type3 .select2-selection--single .select2-selection__arrow b {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  border: solid #005826;
  border-width: 2px 2px 0 0;
  content: "";
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
     transform: rotate(135deg);
}

.select2-container.select2-container--type3 .select2-selection--single .select2-selection__rendered {
  padding: 0;
}

.select2-container--type3 .select2-dropdown {
  border: 1px solid #d7d7d7;
  border-radius: 10px;
}

.select2-container--open.select2-container--type3 .select2-dropdown--below {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--open.select2-container--type3 .select2-dropdown--above {
  border-bottom-width: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--type3 .select2-results__option {
  padding: 11px 18px 12px;
  background: #fff;
  font-size: 18px;
  line-height: 25px;
}

.select2-container--type3 .select2-results__option--highlighted {
  background: #e0dfdd;
}

/* tab-switch */

.tab-switch {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 7px -4px 0 17px;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.tab-switch li {
  display: inline-block;
  vertical-align: top;
  padding: 0 4px 0 3px;
}

.tab-switch a {
  display: inline-block;
  vertical-align: top;
  width: 36px;
  height: 36px;
  background: #8c9099;
  color: #fff;
  text-align: center;
}

.tab-switch a:hover,
.tab-switch a:focus,
.tab-switch .active a {
  background: #42454c;
}

.tab-switch .fa {
  font-size: 22px;
  line-height: 32px;
}

/* info-items */

.info-items {
  padding: 0 0 6px;
}

.info-items [class*="col-"] {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

/* info-item */

.info-item {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  border-radius: 0 0 5px 5px;
  background: #fff;
  color: #4d4e49;
  font-size: 16px;
  line-height: 19px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.11);
}

.info-item .gallery {
  position: relative;
  overflow: hidden;
}

.info-item .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 20px;
  height: 20px;
  margin-top: -18px;
  padding: 0;
  border: solid #fff;
  overflow: hidden;
  text-indent: -9999px;
  background: none;
}

.info-item .slick-arrow:hover {
  opacity: 0.7;
}

.info-item .slick-prev {
  left: 15px;
  border-width: 4px 0 0 4px;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
     transform: rotate(-45deg);
}

.info-item .slick-next {
  right: 15px;
  border-width: 4px 4px 0 0;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
}

.info-item .img {
  position: relative;
  height: 0;
  padding-bottom: 71.54%;
  background-position: 50% 50%;
  background-size: cover;
}

.info-item .img:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 50%;
  content: "";
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMyIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.32)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
}

.info-item .img > img {
  display: none;
}

.info-item .lbl img {
  vertical-align: initial;
  padding-right: 3px;
}

.info-item .lbl {
  background-color: #97bc33;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  font-size: 17px;
  line-height: 21px;
  padding: 5px;
  border-bottom-right-radius: 7px;
}

.info-item .price {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  margin: 0;
  padding: 5px 8px 5px 19px;
  border-radius: 0 5px 0 0;
  font-size: 21px;
  line-height: 25px;
  background: rgba(151, 188, 51, 0.82);
  color: #fff;
}

.info-item .price:before {
  display: block;
  width: 0;
  min-height: 36px;
}

.info-item .price .offset-right {
  width: 100%;
  text-align: right;
}

.info-item .price .logo {
  display: inline-block;
  vertical-align: top;
  margin-top: 3px;
}

.info-item .price strong span span {
  text-transform: uppercase;
}

.info-item .price strong span {
  text-transform: lowercase;
}

.info-item .price img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.info-item .caption {
  padding: 20px 20px 100px;
}

.info-item h3 {
  margin: 0 0 17px;
  font-size: 20px;
  line-height: 25px;
  color: inherit;
}

.info-item .text {
  max-height: 38px;
  margin: 0 0 22px;
}

.info-item p {
  margin: 0;
}

.info-item .list {
  display: table;
  width: calc(100% + 10px);
  list-style: none;
  margin: 0 -5px;
  padding: 0;
}

.info-item .list li {
  display: table-cell;
  vertical-align: top;
  width: 33.33%;
  padding: 0 5px;
}

.info-item h4 {
  margin: 0;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}

.info-item .list figure {
  display: table;
  width: 100%;
}

.info-item .list .ico {
  display: table-cell;
  vertical-align: bottom;
  padding: 0 8px 0 0;
}

.info-item .list .ico img {
  vertical-align: top;
  width: 27px;
  height: auto;
}

.info-item .list figcaption {
  display: table-cell;
  vertical-align: top;
  width: 100%;
  padding: 4px 0;
  font-size: 14px;
}

.info-item .list small {
  display: block;
  margin: -2px 0 -1px;
  font-size: 12px;
  line-height: 15px;
}

.info-item .btns {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  list-style: none;
  margin: 0;
  padding: 0 25px 34px 17px;
}

.info-item .btns li {
  float: left;
  width: 100%;
}

.info-item .btns li + li {
  width: 45%;
}

.info-item .btns .btn {
  width: 100%;
  min-width: 0;
}

/* map-section */

.map-section {
  margin: 0 0 228px;
}

.map-section img {
  display: block;
  width: 100%;
  height: auto;
}

/* visual-section */

.visual-section {
  display: table;
  position: relative;
  width: 100%;
  height: 510px;
  background-position: 50% 50%;
  background-size: cover;
  background-color: #000;
  color: #fff;
}

.visual-section:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 63.875%;
  content: "";
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.visual-section > img {
  display: none;
}

.visual-section .inner {
  position: relative;
  z-index: 10;
  display: table-cell;
  vertical-align: bottom;
}

.visual-section .row-flex {
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
}

.visual-section [class*="col-"] {
  position: static;
}

.visual-section h1 {
  position: absolute;
  left: 32px;
  bottom: 30px;
  max-width: 50%;
  margin: 0;
  font-size: 43px;
  line-height: 47px;
  color: inherit;
}

/* contact-list */

.contact-list {
  list-style: none;
  margin: 0 0 -21px;
  padding: 26px 60px 11px 26px;
  border-radius: 5px;
  background: #005826;
  color: #fff;
  font-size: 19px;
  line-height: 23px;
}

.contact-list li {
  position: relative;
  padding: 0 0 13px 44px;
}

.contact-list .fa {
  position: absolute;
  left: 0;
  top: -3px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #97bc33;
  color: #005826;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

/* back-link */

.back-link {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #005826;
}

.back-link:before {
  content: "< ";
}

.back-link:hover,
.back-link:focus {
  color: #005826;
}

/* info-block */

.info-block {
  padding: 14px 0 64px;
  font-size: 21px;
  line-height: 28px;
}

.info-block .headline {
  margin: -22px 0 26px;
}

.info-block .headline .logo-item {
  bottom: 4px;
}

.info-block .lead {
  margin: 0 0 57px;
  font-size: 27px;
  line-height: 34px;
  font-weight: 700;
}

.info-block p {
  margin: 0 0 40px;
}

.info-block .btns {
  margin: 0 -2px;
}

.info-block .btn {
  min-width: 133px;
  margin: 0 2px 13px;
  padding: 11px 33px 12px;
}

/* schedule-box */

.schedule-box {
  margin: 6px 0 0;
  padding: 17px 52px 0;
  border-radius: 5px;
  background: #005826;
  color: #fff;
  font-size: 21px;
  line-height: 28px;
  text-align: center;
}

.schedule-box h3 {
  margin: 0 0 -1px;
  font-size: 40px;
  line-height: 44px;
  color: inherit;
}

.schedule-box p {
  margin: 0 0 21px;
}

.schedule-box dl {
  margin: 0;
  overflow: hidden;
}

.schedule-box dl dt,
.schedule-box dl dd {
  line-height: inherit;
}

.schedule-box dl dt {
  float: left;
  max-width: 48%;
  text-align: left;
  font-weight: 300;
}

.schedule-box dl dd {
  position: relative;
  margin: 0 0 14px;
  padding: 0 0 23px 50%;
  text-align: right;
}

.schedule-box dl dd:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 4px dotted #97bc33;
  content: "";
}

.schedule-box dl dd:after {
  display: block;
  clear: both;
  content: "";
}

.schedule-box dl dd:last-child {
  margin: 0;
}

.schedule-box dl dd:last-child:before {
  display: none;
}

/* experts-section */

.experts-section {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 23px 0 0;
  background: #005826;
  color: #fff;
  font-size: 21px;
  line-height: 28px;
}

.experts-section h2 {
  position: absolute;
  left: 0;
  top: -11px;
  z-index: -1;
  margin: 0;
  font-size: 150px;
  line-height: 154px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.05);
}

.experts-section h3 {
  margin: 11px 0 29px;
  font-size: 48px;
  line-height: 52px;
  font-weight: 300;
  color: inherit;
}

.experts-section p {
  margin: 0 0 44px;
}

.experts-section .row .row {
  padding-bottom: 50px;
}

.experts-section dl {
  margin: 0 0 26px;
}

.experts-section dl dt,
.experts-section dl dd {
  line-height: inherit;
}

.experts-section .person-box {
  margin: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* person-box type2 */

.person-box.type2 {
  padding: 51px 10px 124px;
  font-size: 17px;
}

.person-box.type2 .photo {
  width: 150px;
  height: 150px;
  margin-bottom: 5px;
}

.person-box.type2 h3 {
  margin: 0 0 13px;
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
}

.person-box.type2 h4 {
  margin: 0 0 13px;
  font-size: 19px;
  line-height: 23px;
}

.person-box.type2 p {
  margin: 0 0 5px;
}

.person-box.type2 .bottom {
  bottom: 58px;
}

.person-box.type2 .btn {
  min-width: 167px;
  font-size: 17px;
}

/* services-section */

.services-section {
  padding: 32px 0 29px;
}

.services-section h2 {
  margin: 0 0 43px;
  font-size: 48px;
  line-height: 52px;
}

/* services-boxes */

.services-boxes [class*="col-"]:nth-child(2n-1) .services-box {
  background: #f2f6f4;
}

.services-boxes [class*="col-"] {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

/* services-box */

.services-box {
  position: relative;
  width: 100%;
  margin: 0 0 26px;
  padding: 15px 22px 108px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}

.services-box .img {
  height: 100px;
}

.services-box .img img {
  position: relative;
  top: 50%;
  vertical-align: top;
  max-height: 100%;
  width: auto;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
}

.services-box figcaption {
  padding: 14px 0 0;
}

.services-box h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 28px;
}

.services-box p {
  margin: 0 0 20px;
}

.services-box .phone {
  color: #005826;
}

.services-box footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 33px;
}

.services-box .btn {
  min-width: 119px;
}

/* search-property */

.search-property {
  padding: 40px 0 97px;
  background: #f2f6f4;
}

.search-property h2 {
  margin: 0 0 58px;
  font-size: 48px;
  line-height: 52px;
}

.search-property .search-panel {
  margin: 0;
}

/* search-intro */

.search-intro {
  padding: 13px 0 15px;
  background: #ededed;
  color: #fff;
}

.search-intro .headline h2 {
  color: rgba(0, 88, 38, 0.05);
}

.search-intro .headline {
  margin: 0 0 37px;
}

.search-intro .row {
  margin: 0 -18px;
}

.search-intro [class*="col-"] {
  padding: 0 18px 30px;
}

.search-intro .size-1 {
  width: 28.5%;
}

.search-intro .size-2 {
  width: 14.5%;
}

.search-intro .sfTxtLbl {
  vertical-align: top;
  margin-bottom: 24px;
  font-size: 21px;
  line-height: 25px;
  color: #4d4e49;
}

.search-intro .sfTxt {
  display: block;
  width: 100%;
  height: 50px;
  padding: 13px 17px 14px;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  font-size: 17px;
  line-height: 21px;
  color: #005826;
}

.search-intro .sfTxt::-moz-placeholder {
  color: #005826;
  opacity: 1;
}

.search-intro .sfTxt:-ms-input-placeholder {
  color: #005826;
}

.search-intro .sfTxt::-webkit-input-placeholder {
  color: #005826;
}

.search-intro .btn {
  min-width: 0;
  width: 100%;
  padding: 13px 12px 14px;
  font-size: 19px;
  line-height: 23px;
}

/* custom-select-04 */

.select2-container--type4 .select2-selection--single {
  height: 50px;
  padding: 13px 39px 14px 17px;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  background: #fff;
  color: #005826;
  font-size: 17px;
  line-height: 21px;
}

.select2-container--type4.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--type4.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--type4 .select2-selection--single .select2-selection__arrow b {
  position: absolute;
  top: 50%;
  right: 23px;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  border: solid #005826;
  border-width: 2px 2px 0 0;
  content: "";
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
     transform: rotate(135deg);
}

.select2-container.select2-container--type4 .select2-selection--single .select2-selection__rendered {
  padding: 0;
}

.select2-container--type4 .select2-dropdown {
  border: 1px solid #f2f2f2;
  border-radius: 10px;
}

.select2-container--open.select2-container--type4 .select2-dropdown--below {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--open.select2-container--type4 .select2-dropdown--above {
  border-bottom-width: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--type4 .select2-results__option {
  padding: 14px 18px 15px;
  background: #fff;
  font-size: 17px;
  line-height: 21px;
}

.select2-container--type4 .select2-results__option--highlighted {
  background: #e0dfdd;
}

/* people-search */

.people-search {
  padding: 40px 0 127px;
}

.people-search .search-txt {
  display: block;
  margin: 0 0 42px;
  font-size: 16px;
  line-height: 20px;
  color: #005826;
}

.people-search .person-boxes {
  margin-bottom: -19px;
}

.people-search .sf_pagerNumeric.type2 {
  padding: 41px 0 0;
}

.title-block {
  text-align: center;
  padding: 55px 0 18px;
  color: #005826;
  font-size: 21px;
  line-height: 28px;
}

.title-block h3 {
  margin-bottom: 29px;
}

.title-block p {
  margin: 0;
}

/* faq */

.second-nav .active > a:focus,
.second-nav .active > a,
.second-nav .current > a {
  color: #005826;
}

.page-header {
  border: 0;
  padding: 34px 0;
  margin: 0;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  min-height: 348px;
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 1;
}

type-property .page-header:before {
  display: none;
}

.page-header:before {
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 45%;
  z-index: 3;
}

.page-header .container {
  position: relative;
  z-index: 5;
}

.page-header > img {
  display: none;
}

.page-header *:not(.btn) {
  color: inherit;
}

.page-header h1 {
  margin: 0;
  font-size: 64px;
  line-height: 60px;
  font-weight: bold;
}

.page-header h1 span {
  display: block;
}

.top-panel {
  padding: 0 0 1px;
}

.top-panel .back-link {
  float: left;
  margin: -16px 0 0;
}

.search-form {
  float: right;
  width: 178px;
  border: 1px solid #dcdadb;
  border-radius: 10px;
  position: relative;
  padding: 8px 10px 8px 38px;
  margin: 6px 0 0;
}

.search-form .sfTxt {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  padding: 0;
  font: 16px/22px 'Lato', sans-serif;
  height: 22px;
  color: #4a4a4a;
}

.search-form .sfTxt::-moz-placeholder {
  color: #a4a4a4;
  opacity: 1;
}

.search-form .sfTxt:-ms-input-placeholder {
  color: #a4a4a4;
}

.search-form .sfTxt::-webkit-input-placeholder {
  color: #a4a4a4;
}

.search-form .sfFormSubmit {
  position: absolute;
  left: 0;
  top: 0;
}

.search-form .sfFormSubmit button {
  background: none;
  border: 0;
  padding: 10px 0 10px 12px;
  font-size: 18px;
  color: #005826;
}

.search-form .sfFormSubmit button i {
  display: block;
}

.content.offset-bottom {
  padding-bottom: 92px;
}

/* end faq */

/* profile-page */

.profile-section {
  border-top: 1px solid #f2f6f5;
  padding: 14px 0 87px;
}

.profile-section .back-link {
  margin: 0 0 47px;
}

.profile-section .content-area {
  font-size: 19px;
  line-height: 24px;
}

.profile-section .content-area p {
  margin: 0 0 24px;
}

.profile-section .content-area h2 {
  font-size: 27px;
  margin-bottom: 19px;
  line-height: 30px;
}

.profile-section .content-area .section {
  padding-bottom: 27px;
}

.profile-section .person-details {
  margin-bottom: 28px;
}

.profile-section .person-details strong {
  font-size: 37px;
  line-height: 32px;
}

.profile-section .person-details p {
  margin-bottom: 5px;
}

.search-panel.type2 {
  margin: 71px 0 0;
  padding: 25px 53px 44px;
  background-color: #005826;
}

.search-panel.type2 .headline {
  padding-bottom: 18px;
  margin-bottom: 26px;
}

.search-panel.type2 .headline h2 {
  font-size: 70px;
  line-height: 1;
}

.search-panel.type2 .logo-item img {
  width: 272px;
  height: auto;
  max-width: none;
}

.search-panel.type2 .sfTxt {
  height: 50px;
  line-height: 22px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.search-panel.type2 .sfFieldWrap {
  margin: 0 0 18px;
  display: block;
}

.search-panel.type2 .select2-container--type2 .select2-selection--single {
  height: 50px;
  line-height: 22px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.search-panel.type2 .sfFormSubmit {
  padding: 22px 0 0;
}

.search-panel.type2 .btn {
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  min-width: 144px;
  padding: 14px 12px;
}

/* end profile-page */

/* content */

.content .breadcrumbs,
.breadcrumbs {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  overflow: hidden;
  font-weight: normal;
  font-size: 16px;
}

.content .breadcrumbs li,
.breadcrumbs li {
  float: left;
  padding: 0 0 0 22px;
  position: relative;
  margin: 0 23px 0 -23px;
}

.breadcrumbs li:before {
  display: none;
}

.breadcrumbs li:after {
  position: absolute;
  content: '>';
  left: 8px;
}

.breadcrumbs a {
  text-decoration: none;
  color: #4a4a4a;
}

.breadcrumbs .active {
  text-decoration: underline;
}

.intro-ttl {
  font-size: 26px;
  line-height: 30px;
  font-weight: normal;
  color: inherit;
  margin: 0 0 20px;
  padding-top: 4px;
}

.contact-box {
  background: #f3f3f3;
  padding: 24px 30px 12px;
  font-size: 17px;
  margin: 28px 0 105px;
  line-height: 21px;
}

.contact-box h3 {
  font-size: 26px;
  font-weight: normal;
  margin: 0 0 17px;
}

.contact-box h4 {
  color: inherit;
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 20px;
}

.image-block.type2 {
  padding-top: 38.5%;
}

/* end content */

/* individual-property */

.page-header.type2 {
  min-height: 510px;
  padding: 16px 0;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.page-header.type2 h1 {
  font-size: 80px;
  padding-top: 110px;
}

@media screen and (max-width: 767px), screen and (orientation: landscape) and (max-width: 767px), screen and (orientation: portrait) and (max-width: 767px) {
  .page-header.type2 h1 {
    font-size: 40px;
  }
}

.page-header.type2:before {
  width: auto;
  right: 200px;
}

.page-header .slide,
.page-header .slick-track,
.page-header .slick-list {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.page-header .slide {
  background-position: 50% 50%;
  background-size: cover;
}

.page-header .slide img {
  display: none;
}

.page-header .btn {
  border-radius: 5px;
  line-height: 24px;
  min-width: 136px;
  padding-left: 10px;
  padding-right: 10px;
}

.page-header .btn.btn-primary:hover {
  background-color: #fff !important;
  color: #97bc33 !important;
}

/*property-section*/

.property-section {
  padding: 0 0 50px;
  background: #ededed;
  position: relative;
  z-index: 2;
}

.property-section .info-area {
  color: #005826;
  border-bottom: 1px solid #4e4e4e;
  padding: 16px 400px 15px 0;
  position: relative;
  margin: 0 0 60px;
}

.property-section .info-area h1 {
  margin: 0 0 35px;
  color: #4a4a4a;
}

.property-section .info-area .back-link {
  margin: 0 0 24px;
  color: #4a4a4a;
}

.info-list {
  display: table;
  width: calc(100% + 10px);
  list-style: none;
  margin: 0 -5px;
  padding: 0;
  max-width: 330px;
}

.info-list li {
  display: table-cell;
  vertical-align: top;
  width: 33.33%;
  padding: 0 5px;
}

.info-list h4 {
  margin: 0;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: inherit;
}

.info-list figure {
  display: table;
  width: 100%;
  height: 47px;
}

.info-list .ico {
  display: table-cell;
  vertical-align: bottom;
  padding: 0 15px 0 0;
}

.info-list .ico img {
  vertical-align: top;
}

.info-list figcaption {
  display: table-cell;
  vertical-align: top;
  width: 100%;
  padding: 16px 0 0;
}

.info-list small {
  display: block;
  margin: -2px 0 -1px;
  font-size: 12px;
  line-height: 15px;
}

.info-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 376px;
}

.info-box.signature .contact-block {
  position: relative;
  padding-top: 35px;
}

.info-box.signature .contact-block::after {
  position: absolute;
  content: '';
  background-image: url(/wp-content/themes/fennwright/dist/images/FW_Signature.png);
  top: 30px;
  right: 10px;
  width: 105px;
  height: 32px;
  background-size: cover;
}

.info-box.signature .ttl h2 {
  color: #fff;
}

.info-box.signature .ttl {
  background: #005826;
}

.info-box .ttl {
  background: #97bb33;
  border-radius: 10px 10px 0 0;
  color: #005826;
  padding: 10px 23px;
}

.info-box .ttl h2 {
  margin: 0;
  font-size: 25px;
  line-height: 38px;
}

.contact-block {
  background: #005826;
  padding: 20px 25px 18px;
}

.contact-block .call-box {
  position: relative;
  padding: 0 0 0 65px;
  font-weight: 300;
  font-size: 21px;
  line-height: 26px;
  color: #97bc33;
  margin: 0 0 48px;
}

.contact-block .call-box:before {
  content: '';
  position: absolute;
  width: 47px;
  height: 47px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDdweCIgaGVpZ2h0PSI0N3B4IiB2aWV3Qm94PSIwIDAgNDcgNDciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU4ICg4NDY2MykgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+R3JvdXAgMjI8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz4KICAgICAgICA8Y2lyY2xlIGlkPSJwYXRoLTEiIGN4PSIyMy41IiBjeT0iMjMuNSIgcj0iMjMuNSI+PC9jaXJjbGU+CiAgICAgICAgPHBvbHlnb24gaWQ9InBhdGgtMyIgcG9pbnRzPSIwIDAgMTggMCAxOCAyNSAwIDI1Ij48L3BvbHlnb24+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iMTYwMF9pbmRpdmlkdWFfcHJvcGVydHk0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAzNy4wMDAwMDAsIC03MTYuMDAwMDAwKSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0xNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAzNy4wMDAwMDAsIDcwNC4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxnIGlkPSJHcm91cC0yMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDEyLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgIDxnIGlkPSJCaXRtYXAiPgogICAgICAgICAgICAgICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICAgICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgICAgICAgICAgICAgIDx1c2UgaWQ9Ik1hc2siIGZpbGw9IiNFREVERUQiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTYuMDAwMDAwLCAxMS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICAgICAgPG1hc2sgaWQ9Im1hc2stNCIgZmlsbD0id2hpdGUiPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVzZSB4bGluazpocmVmPSIjcGF0aC0zIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICAgICAgPC9tYXNrPgogICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iQ2xpcC0yIj48L2c+CiAgICAgICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMy41NjQ1Njc3LDI0LjkyNTI3NTYgQzE1LjY5Mjk4NTMsMjUuNTk3MTQ4NCAxNy45ODY0ODEsMjEuNTM1MzU5MyAxOCwyMC44NTQ1OTg2IEMxOC4wMjMwNzE5LDE5LjY5MzYxMTMgMTQuNDI3NjY2MiwxNi4xMDAzODMzIDEzLjkwMTE0ODIsMTYuMzgxNDY0NSBDMTMuMDcyNjg1MywxNi44MjM2Mzk1IDEwLjY0MDkyNjMsMTcuNjM2MDUyOSAxMC4yMTY2MzkzLDE3LjUxNzczMjIgQzguNjU2MDc5MDYsMTcuMDgzMDU2MyA0LjYwMjg2Nzk4LDEwLjEwMTg1NjMgNS4wMDQ1Myw4LjU0MDM1NjE0IEM1LjExMzE4NTQ0LDguMTE2MjM0NyA3LjAzNjg2MTYsNi40MjgwODEzOCA3LjgzNTk5NTgzLDUuOTM1OTExNjQgQzguMzQ0MzU4MDUsNS42MjI4ODk0NyA3LjAxMjU2MDc3LDAuNzMwNjMzMzY2IDUuOTg5NjkxMjksMC4xNjk1ODIwODEgQzUuMzkwMjcwNzgsLTAuMTU4OTkzOTkzIDAuNzA2MDc2MDQ5LC0wLjIxNTM3Njg2OSAwLjIyNzA0MjQxOSwxLjk1MzgzNjI2IEMtMS40MjQyOTY4Myw5LjQyOTE1MDI2IDYuMjI4Nzg5MTMsMjIuNjA5NDExNSAxMy41NjQ1Njc3LDI0LjkyNTI3NTYiIGlkPSJGaWxsLTEiIGZpbGw9IiM0QTRBNEEiIG1hc2s9InVybCgjbWFzay00KSI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) no-repeat;
  background-size: 100% 100%;
  top: 13px;
  left: 0;
}

.contact-block .call-box h3 {
  color: inherit;
  font-size: 17px;
  line-height: 22px;
  margin: 0;
}

.contact-block .call-box p {
  margin: 0 0 4px;
}

.contact-block .call-box a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
}

.contact-block .btn {
  display: block;
  max-width: 242px;
  margin: 0 auto 16px;
}

.contact-block .btn:focus,
.contact-block .btn:hover {
  background: #fff;
  color: #005826;
}

.social {
  margin: 0;
  padding: 17px 0 0;
  list-style: none;
  text-align: center;
}

.social li {
  display: inline-block;
  vertical-align: top;
  padding: 0 1px;
}

.social a {
  display: block;
  text-decoration: none;
}

.social a:hover {
  opacity: 0.8;
}

.social i {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  padding: 5px;
}

.social .fa-pinterest {
  background: #cc3925;
}

.social .fa-envelope {
  background: #7d7d7d;
}

.social .fa-share-alt {
  background: #95d03a;
}

.social .fa-facebook {
  background: #3a5999;
}

.social .fa-twitter {
  background: #55acef;
}

.property-section .content-area {
  font-size: 19px;
  line-height: 1.263157894736842;
}

.property-section .content-area h3 {
  font-weight: 300;
  margin-bottom: 18px;
  color: #4a4a4a;
}

.property-section .content-area .box {
  padding-top: 13px;
}

.property-section .content-area p {
  margin-bottom: 1.263157894736842em;
}

.property-section .content-area p + h3 {
  margin-top: 2.037037037037037em;
}

.property-section p img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.property-section .map-block #map {
  height: 422px;
}

.content-area .affix-top {
  position: relative;
}

.content-area .affix {
  position: fixed;
  top: 158px;
}

.content-area .affix-bottom {
  position: absolute;
}

/* end individual-property */

/* footer */

#footer {
  overflow: hidden;
  background: #fff;
}

#footer .top {
  padding: 36px 0 16px;
  position: relative;
}

.footer-logo {
  display: block;
  width: 118px;
  height: 70px;
  font-size: 0;
  line-height: 0;
  background: url(/wp-content/themes/fennwright/dist/images/logo-footer.svg) no-repeat;
  background-size: 100% 100%;
  margin: 0;
}

.footer-tabs-nav {
  padding: 17px 282px 50px 0;
}

.footer-tabs-nav strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 6px;
  border-bottom: 4px solid #93b24b;
  margin-bottom: 9px;
}

.footer-tabs-nav ul {
  margin: 0 -3px;
  padding: 0;
  list-style: none;
  font-size: 0;
  line-height: 0;
}

.footer-tabs-nav ul li {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  padding: 0 3px;
}

.footer-tabs-nav ul li + li {
  border-top: 4px dotted #98bc34;
}

.footer-tabs-nav ul li a {
  display: block;
  position: relative;
  z-index: 5;
  padding: 7px 35px 7px 0;
  color: #005826;
}

.footer-tabs-nav ul li.active a,
.footer-tabs-nav ul li a:hover {
  text-decoration: none;
  font-weight: 700;
}

.footer-tabs-nav ul li a:after {
  content: '';
  position: absolute;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #98bc34 url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMy4yIDEwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMy4yIDEwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZGVmcz4KCQk8cGF0aCBpZD0iU1ZHSURfMV8iIGQ9Ik0xMi45LDQuNUw4LjgsMC4zQzguNC0wLjEsNy44LTAuMSw3LjUsMC4yQzcuMSwwLjUsNy4xLDEsNy40LDEuM2wyLjksMi45SDAuOUMwLjQsNC4yLDAsNC42LDAsNQoJCQljMCwwLjQsMC40LDAuOCwwLjksMC44aDkuNEw3LjQsOC43QzcuMSw5LDcuMSw5LjUsNy41LDkuOGMwLjQsMC4zLDEsMC4yLDEuMy0wLjFsNC4yLTQuMkMxMy4yLDUuMiwxMy4yLDQuOCwxMi45LDQuNXoiLz4KCTwvZGVmcz4KCTxjbGlwUGF0aCBpZD0iU1ZHSURfMl8iPgoJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzFfIiAgb3ZlcmZsb3c9InZpc2libGUiLz4KCTwvY2xpcFBhdGg+Cgk8ZyBjbGlwLXBhdGg9InVybCgjU1ZHSURfMl8pIj4KCQk8ZGVmcz4KCQkJPHJlY3QgaWQ9IlNWR0lEXzNfIiB4PSItMzg5LjciIHk9Ii00MTk0IiB3aWR0aD0iMTYwMCIgaGVpZ2h0PSI0ODYxIi8+CgkJPC9kZWZzPgoJCTxjbGlwUGF0aCBpZD0iU1ZHSURfNF8iPgoJCQk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8zXyIgIG92ZXJmbG93PSJ2aXNpYmxlIi8+CgkJPC9jbGlwUGF0aD4KCQk8cmVjdCB4PSItNSIgeT0iLTUiIGNsaXAtcGF0aD0idXJsKCNTVkdJRF80XykiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIyMy4yIiBoZWlnaHQ9IjIwIi8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==) no-repeat;
  background-size: 13px 10px;
  background-position: 50% 50%;
  right: 0;
  top: 50%;
  margin-top: -13px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.footer-tabs-nav ul li.active a:after {
  opacity: 1;
}

.footer-tabs-content {
  padding: 48px 0 0;
}

.footer-tab {
  display: none;
}

#footer h4 {
  font-weight: 300;
  font-size: 21px;
  line-height: 26px;
  margin: 0 0 16px;
  color: #4a4a4a;
}

#footer .place-address {
  font-style: normal;
  padding: 0;
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

#footer .place-address span {
  display: block;
  margin-bottom: 5px;
}

#footer .place-info {
  margin: 0 0 43px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

#footer .place-info td {
  vertical-align: top;
  padding: 0 0 5px;
}

#footer .place-info td + td {
  padding-left: 14px;
  white-space: nowrap;
}

#footer .call-box {
  position: relative;
  padding: 0 0 0 65px;
  font-weight: 300;
  font-size: 21px;
  line-height: 26px;
}

#footer .call-box a {
  color: #4a4a4a;
}

#footer .call-box:before {
  content: '';
  position: absolute;
  width: 47px;
  height: 47px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDdweCIgaGVpZ2h0PSI0N3B4IiB2aWV3Qm94PSIwIDAgNDcgNDciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5Hcm91cCAyPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkZXLUZvb3Rlci1BbWVuZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTcxMS4wMDAwMDAsIC00OTguMDAwMDAwKSI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cC02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjAwMDAwMCwgMzMuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzExLjAwMDAwMCwgNDY1LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgIDxjaXJjbGUgaWQ9Ik92YWwtOCIgZmlsbD0iI0VERURFRCIgY3g9IjIzLjUiIGN5PSIyMy41IiByPSIyMy41Ij48L2NpcmNsZT4KICAgICAgICAgICAgICAgICAgICA8ZyBpZD0ibm91bl8xNDA1OTY2X2NjIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMS4wMDAwMDAsIDEwLjAwMDAwMCkiIGZpbGw9IiMwMDU4MjYiPgogICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNi42ODg3MDk5LDIuMDk5MDc5NSBMOS42Mjg3NjcwMSw1LjI3MDU0NjYgQzEwLjQ1MTk4Myw2LjAwMjQyMzYzIDEwLjQ1MTk4Myw3LjQ2NjE3NzY3IDkuNjI4NzY3MDEsOC4xOTgwNTQ2OSBMNy4yNzY3MjEzMiwxMC42Mzc2NDQ4IEM4LjkyMzE1MzMsMTQuMjk3MDI5OSAxMi4zMzM2MTk1LDE3LjgzNDQzNTUgMTUuNzQ0MDg1OCwxOS40MjAxNjkgTDE4LjA5NjEzMTUsMTYuOTgwNTc5IEMxOC45MTkzNDc1LDE2LjEyNjcyMjQgMjAuMjEyOTcyNiwxNi4xMjY3MjI0IDIxLjAzNjE4ODYsMTYuOTgwNTc5IEwyMy45NzYyNDU3LDIwLjAzMDA2NjYgQzI0Ljc5OTQ2MTcsMjAuODgzOTIzMSAyNC43OTk0NjE3LDIyLjIyNTY5NzYgMjMuOTc2MjQ1NywyMy4wNzk1NTQyIEwyMS4wMzYxODg2LDI2LjEyOTA0MTggQzE1Ljg2MTY4ODEsMzEuNDk2MTM5OSAtNC4yNDgzMDI1NSwxMC41MTU2NjUzIDAuODA4NTk1Njc5LDUuMjcwNTQ2NiBMMy43NDg2NTI3OSwyLjA5OTA3OTUgQzQuNTcxODY4NzgsMS4zNjcyMDI0OCA1Ljg2NTQ5MzkxLDEuMzY3MjAyNDggNi42ODg3MDk5LDIuMDk5MDc5NSBaIE0xNC42ODU2NjUyLDEuNjExMTYxNDkgQzEzLjc0NDg0NywxLjM2NzIwMjQ4IDE0LjA5NzY1MzgsLTAuMjE4NTMxMDY5IDE1LjE1NjA3NDQsMC4wMjU0Mjc5Mzg5IEMyMC40NDgxNzcyLDEuNDg5MTgxOTggMjQuNTY0MjU3MSw1Ljg4MDQ0NDEyIDI1Ljk3NTQ4NDUsMTEuMzY5NTIxOCBDMjYuMjEwNjg5MSwxMi4zNDUzNTc4IDI0LjY4MTg1OTQsMTIuNzExMjk2MyAyNC40NDY2NTQ4LDExLjczNTQ2MDMgQzIzLjE1MzAyOTcsNi44NTYyODAxNSAxOS41MDczNTg5LDIuOTUyOTM2MDMgMTQuNjg1NjY1MiwxLjYxMTE2MTQ5IFogTTEzLjc0NDg0Nyw1LjM5MjUyNjExIEMxMi44MDQwMjg3LDUuMTQ4NTY3MSAxMy4xNTY4MzU1LDMuNTYyODMzNTUgMTQuMDk3NjUzOCwzLjgwNjc5MjU2IEMxOC4wOTYxMzE1LDQuOTA0NjA4MDkgMjEuMjcxMzkzMiw4LjE5ODA1NDY5IDIyLjMyOTgxMzcsMTIuMzQ1MzU3OCBDMjIuNTY1MDE4MywxMy4zMjExOTM5IDIxLjE1Mzc5MDksMTMuODA5MTExOSAyMC44MDA5ODQsMTIuNzExMjk2MyBDMTkuODYwMTY1OCw5LjE3Mzg5MDcyIDE3LjE1NTMxMzIsNi4zNjgzNjIxNCAxMy43NDQ4NDcsNS4zOTI1MjYxMSBaIiBpZD0iU2hhcGUiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) no-repeat;
  background-size: 100% 100%;
  top: -3px;
  left: 0;
}

#footer .call-box p {
  margin: 0 0 9px;
}

#footer .call-box span {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 5px;
}

#footer .bottom {
  padding: 26px 0 50px;
  border-top: 1px solid #dcdcdc;
}

#footer .footer-nav {
  margin: 0;
  padding: 2px 0 0;
  list-style: none;
  font-size: 0;
  line-height: 0;
  -moz-column-count: 3;
  -webkit-column-count: 3;
  column-count: 3;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}

#footer .footer-nav li {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 21px;
}

.social-list,
.content .social-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
  line-height: 0;
  text-align: right;
}

.social-list li,
.content .social-list li {
  display: inline-block;
  vertical-align: top;
  margin-left: 14px;
  padding: 0;
}

.content .social-list li:before {
  display: none;
}

.social-list a {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  background: #97bc33;
  color: #fff;
}

.social-list a:hover {
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
     transform: scale(1.1);
}

.social-list .fa {
  font-size: 20px;
  line-height: 35px;
}

.social-list .fa-google-plus {
  font-size: 16px;
}

#footer .footer-logos {
  margin: 0;
  padding: 20px 0 16px 50px;
  list-style: none;
  font-size: 0;
  line-height: 0;
  text-align: right;
}

#footer .footer-logos li {
  display: inline-block;
  vertical-align: middle;
  line-height: 52px;
  margin-left: 26px;
  padding-bottom: 6px;
}

#footer .footer-logos img {
  display: inline-block;
  vertical-align: middle;
  max-height: 52px;
  margin: 0;
}

#footer .footer-list {
  margin: 0 -10px;
  padding: 0 0 10px;
  list-style: none;
  font-size: 0;
  line-height: 0;
  text-align: right;
}

#footer .footer-list li {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

#footer .footer-list li:after {
  content: '';
  position: absolute;
  top: 4px;
  right: -1px;
  height: 15px;
  width: 2px;
  background: #6e6e6e;
  opacity: 0.8;
}

#footer .footer-list li:last-child:after {
  display: none;
}

#footer .footer-list li a {
  display: inline-block;
  vertical-align: top;
  opacity: 0.8;
  color: #6e6e6e;
}

#footer .footer-list li a:hover {
  text-decoration: none;
  opacity: 1;
}

#footer .copy {
  margin: 0;
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

/* media */

/* popups */

.open-popup,
.open-popup body {
  overflow: hidden;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 300;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.popup:after,
.popup:before {
  display: block;
  content: '.';
  height: 20px;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
}

.popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-content {
  max-width: 687px;
  width: calc(100% - 40px);
  background: #fff;
  border: 1px solid #ddd;
  padding: 43px 44px;
  margin: auto;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.close-popup {
  position: absolute;
  cursor: pointer;
  width: 16px;
  height: 16px;
  top: 44px;
  right: 28px;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.close-popup:hover {
  opacity: 0.8;
}

.close-popup:after,
.close-popup:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: #005826;
  top: 50%;
  left: 50%;
  margin: -2px 0 0 -10px;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
}

.close-popup:after {
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
     transform: rotate(-45deg);
}

.popup-content h4 {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 22px;
}

.popup-content p {
  margin: 0 0 20px;
}

.popup-content .main-form {
  padding: 19px 0 0;
}

.popup-content .main-form .sfTxtLbl {
  margin-bottom: 10px;
}

.popup-content .main-form .sfDropdownList {
  padding-bottom: 21px;
}

.popup-content .row-area {
  padding: 9px 0 0;
}

.check-list {
  margin: 0;
  padding: 0 0 8px 4px;
  list-style: none;
}

.check-list li {
  display: inline-block;
  vertical-align: top;
  padding: 0 20px 20px 0;
  min-width: 116px;
}

.check-btns {
  border: 1px solid #e0e0e0;
  padding: 17px 27px 17px 17px;
  margin: 21px 0 32px;
}

.popup-content .sfFormCheckboxlist .sfTxtLbl,
.popup-content .sfFormRadiolist .sfTxtLbl {
  font-weight: normal;
}

.popup-content .main-form .check-btns .sfTxtLbl {
  margin: 0 0 30px;
}

.popup-content .main-form .sfFormSubmit {
  padding: 30px 0 0;
}

.popup-content.sm {
  max-width: 325px;
  border-color: transparent;
}

.thank-box {
  display: table-cell;
  width: 1%;
  height: 150px;
  padding: 12px 0 0;
  vertical-align: middle;
}

.thank-box h3 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 34px;
}

.thank-box p {
  margin: 0;
}

.popup.green-color .popup-content {
  background: #005826;
  color: #fff;
  border-color: transparent;
}

.popup.green-color h4,
.popup.green-color h2,
.popup.green-color h3 {
  color: inherit;
}

.popup.green-color .close-popup:after,
.popup.green-color .close-popup:before {
  background: #fff;
}

.popup-content.sm .close-popup {
  top: 26px;
}

/* end popups */

/* review-page */

.intro-review {
  background: #005826;
  color: #fff;
  padding: 50px 0;
  font-size: 19px;
  line-height: 28px;
}

.intro-review h1 {
  font-size: 21px;
  color: inherit;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 14px;
}

.intro-review p {
  margin: 0;
}

.reviews-section {
  padding: 47px 0 79px;
}

.reviews-section .filter-form {
  margin: 0 0 25px;
  padding: 0;
}

.reviews-section .filter-form .select2-container--default .select2-selection--single {
  font-weight: normal;
}

.list-reviews {
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
}

.list-reviews li {
  padding: 33px 110px 29px 0;
  position: relative;
}

.list-reviews li:after {
  content: '';
  display: block;
  clear: both;
}

.list-reviews li + li {
  border-top: 2px solid rgba(151, 151, 151, 0.2);
}

.list-reviews .title {
  float: left;
  width: 296px;
  padding: 0 20px 0 0;
}

.list-reviews .title h3 {
  font-size: 21px;
  line-height: 24px;
  margin: 0 0 15px;
  padding-top: 1px;
}

.list-reviews .date {
  display: block;
  color: #959595;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
}

.list-reviews .descr {
  overflow: hidden;
  font-size: 19px;
  line-height: 28px;
  padding: 6px 0 0;
}

.list-reviews .more {
  display: none;
}

.list-reviews .descr p {
  margin: 0 0 15px;
}

.btn-more {
  position: absolute;
  right: 34px;
  top: 74px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-more:hover {
  opacity: 0.8;
}

.btn-more:after,
.btn-more:before {
  position: absolute;
  content: '';
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: #005826;
  left: 0;
  top: 50%;
  margin: -2px 0 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-more:after {
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
     transform: rotate(90deg);
}

.active .btn-more:after {
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
     transform: rotate(360deg);
}

/* end review-page */

/* new-build-homes */

.slideshow {
  position: relative;
}

.slideshow .slide {
  height: 714px;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

.slideshow .slide:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  right: 200px;
  z-index: -1;
  opacity: 0.8;
  background: -webkit-linear-gradient(left, black 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(black), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, black 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%);
}

.slideshow .slide.slide--no-shadow:before {
  display: none;
}

.slideshow .slide > img {
  display: none;
}

.slideshow .page-title {
  color: #fff;
  font-size: 40px;
  line-height: 44px;
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 88px;
}

.slideshow h2,
.slideshow h1 {
  color: inherit;
  font-size: 80px;
  line-height: 1;
  margin: 0 0 16px;
}

.slideshow p {
  margin: 0;
}

.slideshow .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 68px;
  height: 68px;
  margin-top: -40px;
  padding: 0;
  border: solid #dbdcdb;
  overflow: hidden;
  text-indent: -9999px;
  background: none;
  opacity: 0.85;
}

.slideshow .slick-arrow:hover {
  opacity: 0.7;
}

.slideshow .slick-prev {
  left: 51px;
  border-width: 16px 0 0 16px;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
     transform: rotate(-45deg);
}

.slideshow .slick-next {
  right: 51px;
  border-width: 16px 16px 0 0;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
     transform: rotate(45deg);
}

.new-homes {
  background: #ededed;
  padding: 5px 0 30px;
}

.new-homes ~ .search-property {
  background: none;
}

.new-homes .info-block {
  color: #005826;
  padding-bottom: 0;
}

.new-homes .info-block .headline {
  margin-bottom: 56px;
}

.new-homes .info-block .lead {
  margin-bottom: 42px;
}

.new-homes .info-item {
  margin-bottom: 33px;
}

.new-homes .info-item .caption {
  padding-bottom: 114px;
}

.new-homes .info-item .text {
  max-height: 58px;
  height: 58px;
}

.new-homes .info-item .btns li {
  width: 45%;
}

.new-homes .info-item .btns {
  padding-bottom: 48px;
}

.new-homes .items {
  padding-bottom: 29px;
}

/* end new-build-homes */

/* new-build-constable */

.top-panel.type2 {
  padding-bottom: 38px;
  padding-top: 5px;
}

.content .social {
  text-align: left;
  padding: 13px 0 42px;
}

.content .social li:before {
  display: none;
}

.content .social li {
  padding: 0 2px 0 0;
  text-align: center;
}

.content.type2 {
  font-size: 19px;
  line-height: 24px;
  padding-top: 17px;
  padding-bottom: 42px;
}

.content.type2 .intro-text {
  font-weight: bold;
  font-size: 19px;
  line-height: 24px;
  padding-bottom: 24px;
}

.content.type2 h1 {
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.content.type2 h3 {
  letter-spacing: 1px;
}

.content.type2 p {
  margin-bottom: 24px;
}

.btn-row {
  padding: 13px 0 0;
}

.btn-row .btn {
  padding-left: 20px;
  padding-right: 20px;
}

/* end new-build-constable */

@media screen and (min-width: 1220px) {
  /* header */

  .scroll #header .logo {
    margin-top: 33px;
  }

  .scroll .top-bar {
    padding: 17px 0 21px;
  }

  .main-nav ul {
    display: block !important;
  }

  .main-nav .right ul {
    left: auto;
    right: 0;
  }

  .main-nav .right ul ul {
    left: auto;
    right: 100%;
  }

  .main-nav .right ul .has-drop > a {
    padding: 16px 21px 17px 50px;
  }

  .main-nav .right ul .opener {
    left: 0;
    right: auto;
  }

  .main-nav .right ul .opener:before {
    right: auto;
    left: 28px;
    -webkit-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
       transform: rotate(-135deg);
  }

  /* footer */

  #footer .top {
    padding: 42px 0 16px;
  }

  .footer-tabs-nav {
    padding: 17px 319px 50px 0;
    position: relative;
    z-index: 1;
  }

  .footer-tabs-nav:before {
    content: '';
    width: 524px;
    height: 524px;
    background: url(/wp-content/themes/fennwright/dist/images/footer-tabs-bg-002.svg) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -48px;
    left: -118px;
    z-index: -1;
  }

  .footer-tabs-nav strong {
    font-size: 17.5px;
    line-height: 22px;
    color: #005826;
    margin-bottom: 1px;
    border-bottom: 0;
    padding-bottom: 0;
    margin-top: -8px;
  }

  .footer-tabs-nav ul li {
    font-weight: 400;
    font-size: 17.5px;
    line-height: 21px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .footer-tabs-nav ul li + li {
    border: 0;
  }

  .footer-tabs-nav ul li a {
    padding: 4px 35px 4px 0;
  }

  .footer-tabs-nav ul li.active a,
  .footer-tabs-nav ul li a:hover {
    font-weight: 700;
  }

  .footer-tabs-nav ul li a:after {
    width: 22px;
    height: 22px;
    background: #98bc34 url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE4LjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMy4yIDEwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMy4yIDEwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZGVmcz4KCQk8cGF0aCBpZD0iU1ZHSURfMV8iIGQ9Ik0xMi45LDQuNUw4LjgsMC4zQzguNC0wLjEsNy44LTAuMSw3LjUsMC4yQzcuMSwwLjUsNy4xLDEsNy40LDEuM2wyLjksMi45SDAuOUMwLjQsNC4yLDAsNC42LDAsNQoJCQljMCwwLjQsMC40LDAuOCwwLjksMC44aDkuNEw3LjQsOC43QzcuMSw5LDcuMSw5LjUsNy41LDkuOGMwLjQsMC4zLDEsMC4yLDEuMy0wLjFsNC4yLTQuMkMxMy4yLDUuMiwxMy4yLDQuOCwxMi45LDQuNXoiLz4KCTwvZGVmcz4KCTxjbGlwUGF0aCBpZD0iU1ZHSURfMl8iPgoJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzFfIiAgb3ZlcmZsb3c9InZpc2libGUiLz4KCTwvY2xpcFBhdGg+Cgk8ZyBjbGlwLXBhdGg9InVybCgjU1ZHSURfMl8pIj4KCQk8ZGVmcz4KCQkJPHJlY3QgaWQ9IlNWR0lEXzNfIiB4PSItMzg5LjciIHk9Ii00MTk0IiB3aWR0aD0iMTYwMCIgaGVpZ2h0PSI0ODYxIi8+CgkJPC9kZWZzPgoJCTxjbGlwUGF0aCBpZD0iU1ZHSURfNF8iPgoJCQk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8zXyIgIG92ZXJmbG93PSJ2aXNpYmxlIi8+CgkJPC9jbGlwUGF0aD4KCQk8cmVjdCB4PSItNSIgeT0iLTUiIGNsaXAtcGF0aD0idXJsKCNTVkdJRF80XykiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIyMy4yIiBoZWlnaHQ9IjIwIi8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==) no-repeat;
    background-size: 10px auto;
    background-position: 50% 50%;
    margin-top: -10px;
  }

  .footer-tabs-content {
    min-height: 460px;
    padding: 0;
    overflow: hidden;
  }

  #footer h4 {
    margin: 0 0 15px;
  }

  #footer .place-info {
    margin: 0 0 38px;
  }

  /* end footer */
}

@media screen and (max-width: 1599px) {
  /* header */

  .top-bar {
    position: relative;
  }

  .btn-contact {
    left: auto;
    right: 100%;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }
}

@media screen and (max-width: 1399px) {
  /* people-img */

  .people-img .btn-circle {
    right: -17px;
  }
}

@media screen and (max-width: 1219px) {
  .wrapper {
    padding-top: 133px;
  }

  .btn-contact {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
       transform: translateX(-50%);
  }

  .btn-book {
    padding: 17px 12px;
    border-radius: 5px;
    font: 700 21px/25px 'Lato', sans-serif;
  }

  .btn-book:hover,
  .btn-book:focus {
    background-color: #2b6c4c;
    color: #fff;
  }

  /* header */

  #header {
    border-top: 9px solid #9cc03d;
  }

  #header .container-fluid {
    padding: 12px 35px 18px;
  }

  #header .logo {
    margin: 0 0 0 -4px;
  }

  .btn-menu {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 53px;
    height: 53px;
    border: 4px solid #97bc33;
    border-radius: 50%;
    background: #005826;
  }

  .btn-menu:before {
    position: absolute;
    top: 21px;
    left: 10px;
    right: 10px;
    height: 4px;
    border-radius: 3px;
    background: #fff;
    -webkit-box-shadow: 0 8px #fff, 0 -8px #fff;
            box-shadow: 0 8px #fff, 0 -8px #fff;
    content: "";
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .top-nav,
  .btn-book {
    display: none;
  }

  .top-bar {
    position: static;
    padding: 18px 0;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    overflow-y: scroll;
    background: #dadada;
    text-align: left;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    bottom: 0;
    margin-top: 133px;
  }

  .menu:after {
    display: block;
    height: 23px;
    content: "";
  }

  .main-nav {
    margin: 0;
    color: #fff;
  }

  .main-nav > li {
    display: block;
    margin: 0;
    background: #ededed;
  }

  .main-nav > li:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    content: "";
  }

  .main-nav > li > a {
    padding: 15px 22px 16px;
    color: #4a4a4a;
  }

  .main-nav > li > a:hover,
  .main-nav > li > a:focus,
  .main-nav > .active > a {
    background: rgba(255, 255, 255, 0.16);
  }

  .main-nav > li > a::before {
    display: none;
  }

  .main-nav > li > a .opener {
    display: block;
  }

  .main-nav .opener::before {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .main-nav .active > a > .opener::before {
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  }

  .main-nav .has-drop > a {
    padding-right: 50px;
  }

  .main-nav ul {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    visibility: visible;
    opacity: 1;
    background: #dadada;
    color: #4a4a4a;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .main-nav ul li::before {
    background: #005826;
  }

  .main-nav ul li a {
    padding: 11px 21px;
  }

  .main-nav ul .opener:before {
    opacity: 0.6;
  }

  .main-nav ul ul {
    top: auto;
    left: auto;
    background: #bfbfbf;
    color: #4a4a4a;
  }

  .main-nav ul ul li:before {
    background: rgba(0, 88, 38, 0.15);
  }

  .main-nav ul ul li:last-child:before {
    display: none;
  }

  .main-nav ul ul li a {
    padding: 15px 21px 16px;
  }

  .main-nav ul ul li a:hover,
  .main-nav ul ul li a:focus {
    background: rgba(0, 88, 38, 0.15);
  }

  .menu .top-nav,
  .menu .btn-book {
    display: block;
  }

  .top-nav {
    padding: 0 0 21px;
  }

  .top-nav li {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 21px;
    line-height: 25px;
    font-weight: 700;
  }

  .top-nav li::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 88, 38, 0.15);
    content: "";
  }

  .top-nav li a {
    display: block;
    padding: 17px 22px 18px;
    color: #005826;
  }

  .top-nav li a:hover,
  .top-nav li a:focus {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.16);
  }

  .menu .btn-book {
    margin: 22px;
  }

  .fader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .menu-opened {
    position: relative;
    overflow: hidden;
  }

  .menu-opened .menu {
    right: 0;
  }

  .menu-opened .btn-menu:before {
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
       transform: rotate(90deg);
  }

  .menu-opened .fader {
    z-index: 50;
    visibility: visible;
  }

  .search-panel h3 {
    font-size: 16px;
    width: 175px;
  }

  .search-panel .options a {
    font-size: 16px;
  }

  /* visual-intro */

  .visual-intro {
    font-size: 35px;
    line-height: 39px;
  }

  .visual-intro h1 {
    font-size: 60px;
  }

  /* about-gallery */

  .about-gallery [class*="col-"] {
    padding: 0 40px;
  }

  /* news-section */

  .news-section h2 {
    font-size: 200px;
    line-height: 204px;
  }

  .news-section.type2 h2 {
    top: -10px;
  }

  /* news-box */

  .news-box h3 {
    font-size: 22px;
    line-height: 26px;
  }

  /* visual-block */

  .visual-block h1 {
    font-size: 44px;
    line-height: 53px;
  }

  /* headline */

  .headline h2 {
    font-size: 100px;
    line-height: 104px;
  }

  .headline .logo-item {
    width: 250px;
  }

  /* people-section */

  .people-section h3 {
    font-size: 40px;
    line-height: 44px;
  }

  /* faq-section */

  .faq-section h3 {
    font-size: 40px;
    line-height: 44px;
  }

  /* sale-section */

  .sale-section {
    margin-top: -10px;
  }

  .sale-section .headline {
    margin-bottom: 30px;
  }

  .sale-section .second-nav {
    margin-top: -20px;
  }

  /* signup */

  .signup h2 {
    top: -8px;
    font-size: 150px;
    line-height: 154px;
  }

  .signup h3 {
    font-size: 40px;
    line-height: 44px;
  }

  /* second-nav */

  .second-nav.type2 {
    padding: 3px 15px 5px;
  }

  .second-nav.type2 li {
    font-size: 15px;
  }

  .second-nav.type2 ul li {
    font-size: 14px;
  }

  .second-nav.type2 ul a {
    padding-left: 20px;
  }

  .second-nav.type2 ul ul li a {
    padding-left: 34px;
  }

  .second-nav.type2 ul ul ul li a {
    padding-left: 48px;
  }

  /* info-item */

  .info-item .price {
    padding: 5px 8px;
    font-size: 17px;
    line-height: 21px;
  }

  .info-item .price strong {
    font-size: 19px;
  }

  .info-item .list .ico {
    padding: 0 5px 0 0;
  }

  .info-item .caption {
    padding: 22px 20px 100px;
  }

  .info-item h3 {
    font-size: 19px;
    line-height: 23px;
  }

  .info-item h4 {
    font-size: 15px;
    line-height: 19px;
  }

  .info-item .btns {
    padding: 0 10px 34px;
  }

  .info-item .btns li {
    padding: 0 10px;
  }

  .info-item .btns .btn {
    font-size: 15px;
  }

  /* visual-section */

  .visual-section h1 {
    position: static;
    max-width: none;
    margin: 0 0 37px;
  }

  /* schedule-box */

  .schedule-box {
    padding: 17px 30px 0;
    font-size: 17px;
    line-height: 24px;
  }

  /* services-box */

  .services-box {
    padding: 15px 15px 108px;
    font-size: 15px;
  }

  /* experts-section */

  .experts-section h2 {
    top: 0;
    font-size: 100px;
    line-height: 104px;
  }

  /* search-intro */

  .search-intro .row {
    margin: 0 -10px;
  }

  .search-intro [class*="col-"] {
    padding: 0 10px 30px;
  }

  .search-intro .sfTxtLbl {
    font-size: 17px;
    line-height: 21px;
  }

  .search-intro .btn {
    font-size: 17px;
  }

  /* profile-page */

  .search-panel.type2 {
    padding: 25px 25px 40px;
  }

  .search-panel.type2 .headline h2 {
    font-size: 60px;
  }

  /* end profile-page */

  .content-area .affix {
    top: 143px;
  }

  .carousel .slide {
    padding: 0 15px;
  }

  .carousel {
    padding: 0 40px;
  }

  .review-box {
    font-size: 18px;
  }

  /* footer */

  .footer-tabs-nav {
    padding-right: 150px;
  }

  .footer-tabs-nav:before {
    display: none;
  }

  #footer .footer-list,
  #footer .copy {
    text-align: left;
  }

  #footer .footer-list li {
    margin-bottom: 7px;
  }

  #footer .footer-logos {
    padding-left: 0;
  }

  /* new-build-homes */

  .slideshow .slide {
    height: 600px;
  }

  .slideshow .page-title {
    font-size: 24px;
    line-height: 30px;
    max-width: 820px;
  }

  .slideshow h2,
  .slideshow h1 {
    font-size: 50px;
    line-height: 54px;
  }

  .slideshow .slick-arrow {
    width: 50px;
    height: 50px;
    margin-top: -30px;
  }

  .slideshow .slick-prev {
    left: 42px;
    border-width: 14px 0 0 14px;
  }

  .slideshow .slick-next {
    right: 42px;
    border-width: 14px 14px 0 0;
  }

  .new-homes .info-item .caption {
    padding-bottom: 100px;
  }

  .new-homes .info-item .btns {
    padding-bottom: 34px;
  }

  /* end new-build-homes */

  .content p,
  .content li {
    font-size: 15px;
  }
}

@media only screen and (orientation: landscape) and (max-width: 1024px) {
  .visual-intro h1 {
    font-size: 65px;
  }
}

@media screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 46px;
    line-height: 50px;
  }

  h2,
  .h2 {
    font-size: 38px;
    line-height: 42px;
  }

  h3,
  .h3 {
    font-size: 25px;
    line-height: 29px;
  }

  h4,
  .h4 {
    font-size: 16px;
    line-height: 20px;
  }

  h5,
  .h5 {
    font-size: 15px;
    line-height: 19px;
  }

  .lead {
    font-size: 15px;
    line-height: 21px;
  }

  .btn-contact {
    padding: 10px 12px 15px;
    -webkit-transform: translateX(-10%);
    -o-transform: translateX(-10%);
       transform: translateX(-10%);
  }

  .btn-circle {
    width: 120px;
    height: 120px;
    border-width: 6px;
    font-size: 22px;
    line-height: 22px;
  }

  .btn-chat {
    top: 211px;
    padding: 16px 23px 15px;
  }

  /* visual-intro */

  .visual-intro {
    height: 403px;
    font-size: 25px;
    line-height: 29px;
  }

  .visual-intro h1 {
    font-size: 57px;
  }

  .visual-intro .inner {
    padding: 60px 0 120px;
  }

  .home .visual-intro .inner {
    padding-top: 0;
  }

  .visual-intro p {
    margin: 0 0 36px;
  }

  /* headline */

  .headline {
    margin: 0 0 10px;
  }

  .headline h2 {
    font-size: 72px;
    line-height: 76px;
  }

  .headline .logo-item {
    width: 211px;
  }

  /* about */

  .about {
    padding: 0 0 33px;
    font-size: 17px;
    line-height: 24px;
  }

  .about .search-panel {
    margin-top: -100px;
    margin-bottom: 38px;
  }

  .about-boxes {
    margin-top: -41px;
    margin-bottom: 21px;
  }

  .about-box figcaption {
    width: 46px;
  }

  .about-box figcaption h3 {
    margin: 0;
    font-size: 21px;
    line-height: 23px;
  }

  .about-box .img {
    min-height: 159px;
  }

  .about .lead {
    font-size: 17px;
    line-height: 24px;
  }

  .about p,
  .about footer p {
    margin: 0 0 26px;
  }

  .about footer {
    margin: -2px 0 0;
    padding: 0;
    font-size: 19px;
    line-height: 24px;
  }

  .about-gallery {
    padding: 20px 0 0;
  }

  .about-gallery .row {
    margin: 0 -20px;
  }

  .about-gallery [class*="col-"] {
    padding: 0 20px;
  }

  .about-gallery .img {
    height: 80px;
  }

  .about-gallery .img img {
    -webkit-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
       transform-origin: 50% 100%;
    -webkit-transform: scale(0.7);
    -o-transform: scale(0.7);
       transform: scale(0.7);
  }

  .about-gallery figcaption {
    padding: 26px 0 0;
    font-size: 15px;
    line-height: 18px;
  }

  .about-gallery .slick-dots {
    padding: 34px 0 0;
  }

  .about-gallery .slick-dots button {
    width: 15px;
    height: 15px;
  }

  /* location-section */

  .filter-locations {
    width: 220px;
    padding-bottom: 21px;
    padding-top: 19px;
  }

  .filter-locations h3 {
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 18px;
  }

  .filter-locations ul {
    gap: 0;
  }

  .filter-locations ul label {
    font-size: 17px;
    line-height: 20px;
    padding-left: 28px;
  }

  .filter-locations ul label:before {
    width: 13px;
    height: 13px;
    top: 3px;
  }

  .filter-locations ul li {
    padding: 5px 0;
    width: 100%;
  }

  .filter-locations ul li:first-child {
    border-top: none;
  }

  .filter-locations ul li + li {
    border-top-width: 3px;
  }

  /* end location-section */

  /* news-section */

  .news-section {
    padding: 30px 0 73px;
  }

  .news-section h2 {
    top: 2px;
    left: -6px;
    font-size: 90px;
    line-height: 94px;
  }

  .news-section header {
    margin-bottom: 34px;
    font-size: 17px;
    line-height: 27px;
  }

  .news-section header .holder {
    padding: 0;
  }

  .news-section .logo-item {
    max-width: 139px;
    margin-top: 7px;
  }

  .news-section.type2 {
    padding: 18px 0 83px;
  }

  /* news-box */

  .news-box {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 22px;
  }

  .news-box .img {
    width: 47.17%;
    min-height: 273px;
  }

  .news-box figcaption {
    padding: 19px 10px 80px 21px;
  }

  .news-box .date {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 17px;
  }

  .news-box h3 {
    margin: 0 0 7px;
    font-size: 17px;
    line-height: 24px;
  }

  .news-box .text {
    max-height: 66px;
  }

  .news-box .btn {
    bottom: 18px;
  }

  /* testimonials */

  .testimonials .container {
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .testimonials .head {
    margin-bottom: 42px;
  }

  .testimonials h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .testimonials .btn-circle {
    top: -75px;
    right: 25px;
  }

  .review-box {
    padding: 0;
    font-size: 17px;
    line-height: 25px;
  }

  .carousel .slide {
    padding: 0 20px;
  }

  .carousel {
    padding: 0 43px;
  }

  .review-box h3 {
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 7px;
  }

  .review-box .stars {
    width: 157px;
    height: 24px;
    margin-bottom: 14px;
  }

  .review-box .stars span:first-child {
    background-size: 157px 24px;
  }

  .review-box p {
    margin-bottom: 24px;
  }

  .carousel .slick-arrow {
    margin-top: -36px;
    width: 29px;
    height: 29px;
  }

  .carousel .slick-prev {
    left: 7px;
    border-width: 7px 0 0 7px;
  }

  .carousel .slick-next {
    right: 7px;
    border-width: 7px 7px 0 0;
  }

  /* visual-block */

  .visual-block {
    height: 483px;
  }

  .visual-block .inner {
    padding: 35px 0 40px;
  }

  .visual-block h1 {
    font-size: 40px;
    line-height: 48px;
  }

  /* culture-section */

  .culture-section {
    padding: 7px 0 21px;
    font-size: 17px;
    line-height: 24px;
  }

  .culture-section .headline {
    margin: 0 0 21px;
  }

  .culture-section .lead {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 24px;
  }

  /* people-section */

  .title-block {
    font-size: 17px;
    line-height: 21px;
  }

  .title-block h3 {
    margin-bottom: 22px;
  }

  .people-section {
    padding: 23px 0 34px;
    font-size: 17px;
    line-height: 27px;
  }

  .people-section .headline {
    margin: 0 0 23px;
  }

  .people-section .headline .logo-item {
    bottom: 0;
    margin-left: 10px;
  }

  .people-section h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 34px;
  }

  .people-section .lead {
    font-size: 17px;
    line-height: 27px;
  }

  .people-section p {
    margin: 0 0 7px;
  }

  .people-section .list-unstyled {
    padding: 29px 0 0;
  }

  .people-section .list-unstyled li {
    margin: 0 0 15px;
  }

  .people-section .btn {
    padding: 11px 12px 12px;
  }

  .people-img {
    margin: 48px 0 0;
  }

  .people-img img {
    border-width: 19px 0 0 19px;
  }

  .people-img .btn-circle {
    right: -26px;
    bottom: -68px;
    width: 110px;
    height: 110px;
    font-size: 18px;
    line-height: 19px;
  }

  .people-img .btn-circle span {
    padding: 23px 3px 10px;
  }

  /* faq-section */

  .faq-section {
    padding: 12px 0 35px;
  }

  .faq-section .headline {
    margin: 0 0 13px;
  }

  .faq-section .headline .logo-item {
    bottom: 13px;
    width: 181px;
  }

  .faq-section .top {
    margin-bottom: 19px;
  }

  .faq-section h3 {
    font-size: 30px;
    line-height: 34px;
  }

  .faq-section .more {
    margin: 0;
    font-size: 15px;
    line-height: 19px;
  }

  .faq-accordion {
    font-size: 15px;
    line-height: 23px;
  }

  .faq-accordion .panel-title {
    font-size: 17px;
    line-height: 23px;
  }

  .faq-accordion .panel-title a {
    padding: 9px 120px 10px 0;
  }

  .faq-accordion .panel-title a::before,
  .faq-accordion .panel-title a::after {
    right: 10px;
  }

  .faq-accordion .panel-body {
    margin: 0;
    padding: 9px 0;
  }

  .faq-links {
    margin: 7px 0 0;
    font-size: 21px;
    line-height: 25px;
  }

  .faq-links li {
    margin: 0 0 13px;
  }

  .faq-links figure {
    height: 84px;
  }

  .faq-links figcaption {
    padding: 14px 29px;
  }

  /* visual */

  .visual {
    height: 268px;
  }

  /* search-panel */

  .search-panel {
    margin: -179px 0 0;
  }

  .search-panel h3 {
    display: none;
  }

  .search-panel .select-options {
    display: block;
    width: 50%;
    border-radius: 9px 9px 0 0;
    font-size: 17px;
    line-height: 23px;
    padding: 10px 15px;
    color: #4d4e49;
    text-decoration: none;
    font-weight: bold;
    text-align: right;
    padding-right: 52px;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    cursor: pointer;
    border: 2px solid #fff;
    background: #fff;
  }

  .about .search-panel .options {
    border-color: #0d6032;
  }

  .search-panel .select-options i {
    position: absolute;
    font-size: 24px;
    right: 18px;
    top: 50%;
    margin: -12px 0 0;
  }

  .search-panel header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .search-panel .options {
    width: 100%;
    display: none;
    border: solid #005826;
    border-width: 0 2px 2px;
    background: #97bc33;
  }

  .search-panel .options li {
    background: none;
    border: 0;
    margin: 0;
    border-radius: 0;
  }

  .search-panel .options a {
    text-align: left;
    font-size: 17px;
    padding: 10px 25px;
    line-height: 23px;
  }

  .search-panel .holder {
    padding: 24px 40px 8px;
  }

  .search-panel .size-1,
  .search-panel .size-2 {
    width: 50%;
  }

  .search-panel .size-3,
  .search-panel .size-4 {
    width: 25%;
  }

  .search-panel .size-5 {
    width: 25%;
  }

  .search-panel .size-6 {
    width: 100%;
  }

  .search-panel .sfTxtLbl {
    margin-bottom: 17px;
    font-size: 17px;
    line-height: 21px;
  }

  .search-panel .sfTxt {
    height: 40px;
    padding: 8px 9px 9px;
  }

  .check-row {
    padding: 14px 0 0;
  }

  .search-panel .sfFormSubmit {
    padding: 16px 0 0;
  }

  /* custom-select-02 */

  .select2-container--type2 .select2-selection--single {
    height: 40px;
    padding: 8px 30px 9px 9px;
  }

  .select2-container--type2 .select2-selection--single .select2-selection__arrow b {
    right: 13px;
  }

  .select2-container--type2 .select2-results__option {
    padding: 8px 9px 9px;
  }

  /* sale-section */

  .sale-section {
    margin: -4px 0 47px;
  }

  .sale-section,
  .sale-section .lead {
    font-size: 15px;
    line-height: 21px;
  }

  .sale-section .headline {
    margin-bottom: 24px;
  }

  .sale-section .lead,
  .sale-section p {
    margin: 0 0 21px;
  }

  /* signup */

  .signup {
    padding: 29px 0 31px;
    font-size: 19px;
    line-height: 26px;
  }

  .signup h2 {
    top: 7px;
    font-size: 100px;
    line-height: 104px;
  }

  .signup h3 {
    margin: 0 0 19px;
    font-size: 36px;
    line-height: 40px;
  }

  .signup .row {
    margin-top: 22px;
  }

  .signup .sfTxtLbl {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 21px;
  }

  .signup .sfTxt {
    height: 40px;
    padding: 8px 9px 9px;
  }

  .signup .row .btn {
    width: auto;
    min-width: 178px;
    height: 40px;
    padding: 9px 12px 10px;
  }

  .signup.type2 {
    padding: 40px 0 34px;
  }

  .signup p {
    margin: 0 0 25px;
  }

  #main {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .content .headings {
    padding: 0 0 8px;
  }

  .content .intro-text {
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
  }

  .content .intro-text + p {
    margin-bottom: 28px;
  }

  .content .panel-group {
    margin: 6px 0 54px;
  }

  .content .panel-group .panel-body {
    padding-bottom: 31px;
  }

  .content .table-section {
    padding: 0 0 34px;
  }

  .news-post .img {
    padding: 50% 0 0;
    margin: 0 0 31px;
  }

  .team-section {
    padding: 37px 0 40px;
  }

  .news-block {
    padding: 23px 0 33px;
  }

  /* filter-bar */

  .filter-bar {
    padding: 44px 0 29px;
  }

  .filter-bar h2 {
    font-size: 26px;
    line-height: 26px;
  }

  .filter-bar h2 strong {
    font-size: 18px;
  }

  .filter-bar .sfFormDropdown {
    width: 114px;
  }

  /* custom-select-03 */

  .select2-container--type3 .select2-selection--single {
    height: 40px;
    padding: 8px 30px 9px 10px;
    font-size: 17px;
    line-height: 21px;
  }

  .select2-container--type3 .select2-results__option {
    padding: 8px 10px;
    font-size: 17px;
    line-height: 21px;
  }

  .select2-container--type3 .select2-selection--single .select2-selection__arrow b {
    right: 16px;
  }

  /* tab-switch */

  .tab-switch {
    margin: 7px -3px 0 3px;
  }

  .tab-switch li {
    padding: 0 3px;
  }

  .tab-switch a {
    width: 28px;
    height: 28px;
  }

  .tab-switch .fa {
    font-size: 18px;
    line-height: 28px;
  }

  /* info-item */

  .info-items {
    padding: 0 0 16px;
  }

  .info-item {
    margin: 0 0 20px;
    border-radius: 5px;
    overflow: hidden;
  }

  .info-item .img {
    padding-bottom: 61.17%;
  }

  .info-item .price {
    padding: 5px 3px 5px 8px;
  }

  .info-item .price .logo {
    max-width: 90px;
  }

  .info-item .caption {
    padding: 25px 17px 117px;
  }

  .info-item h3 {
    margin: 0 0 15px;
  }

  .info-item .text {
    margin: 0 0 30px;
  }

  .info-item .btns {
    padding: 0 15px 38px 10px;
  }

  .info-item .btns li {
    padding: 0 8px;
  }

  .info-item .btns .btn {
    font-size: 17px;
  }

  /* sf_pagerNumeric */

  .sf_pagerNumeric.type2 {
    margin: 0 -12px;
    padding: 31px 0 20px;
  }

  .sf_pagerNumeric.type2 a {
    margin: 0 12px;
  }

  .sf_pagerNumeric.type2 .next {
    margin: 26px 12px 0 auto;
  }

  .sf_pagerNumeric.type2 .btn {
    display: block;
    width: 95px;
    min-width: 0;
    font-size: 15px;
  }

  /* map-section */

  .map-section {
    margin: 0 0 124px;
  }

  /* visual-section */

  .visual-section {
    height: 358px;
  }

  .visual-section h1 {
    font-size: 40px;
    line-height: 44px;
  }

  /* contact-list */

  .contact-list {
    margin: 0 0 -46px;
    padding: 25px 30px 4px 21px;
    font-size: 16px;
    line-height: 21px;
  }

  .contact-list li {
    padding: 0 0 23px 43px;
  }

  .contact-list .fa {
    top: -2px;
  }

  .contact-list .phone {
    font-size: 17px;
  }

  /* info-block */

  .info-block {
    padding: 9px 0 21px;
    font-size: 17px;
    line-height: 24px;
  }

  .info-block .headline {
    margin: 19px 0 21px;
  }

  .info-block .lead {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 24px;
  }

  .info-block p {
    margin: 0 0 24px;
  }

  /* schedule-box */

  .schedule-box {
    margin: 5px 0 0;
    padding: 16px 18px 22px;
  }

  .schedule-box h3 {
    margin: 0 0 -4px;
    font-size: 21px;
    line-height: 28px;
  }

  .schedule-box p {
    margin: 0 0 28px;
  }

  .schedule-box dl dd {
    margin-bottom: 7px;
    padding-bottom: 17px;
  }

  /* experts-section */

  .experts-section {
    padding: 33px 0 0;
    font-size: 17px;
    line-height: 27px;
  }

  .experts-section h2 {
    top: 29px;
    font-size: 72px;
    line-height: 76px;
  }

  .experts-section h3 {
    margin: 26px 0 22px;
    font-size: 30px;
    line-height: 34px;
  }

  .experts-section p {
    margin: 0 0 22px;
  }

  .experts-section .row .row {
    padding-bottom: 11px;
  }

  .experts-section dl {
    margin: 0 0 19px;
  }

  /* person-box type2 */

  .person-box.type2 {
    padding: 44px 10px 128px;
  }

  .person-box.type2 .photo {
    margin-bottom: 13px;
  }

  .person-box.type2 .bottom {
    bottom: 61px;
  }

  .person-box.type3 {
    margin: 0 0 16px;
    padding: 30px 10px 64px;
    font-size: 15px;
  }

  .person-box.type3 .photo {
    width: 135px;
    height: 135px;
  }

  .person-box.type3 h3 {
    margin: 0 0 7px;
    font-size: 19px;
    line-height: 26px;
  }

  .person-box.type3 h4 {
    height: 38px;
    padding: 0 0 10px;
    font-size: 16px;
    line-height: 21px;
  }

  .person-box.type3 p {
    margin: 0 0 4px;
  }

  .person-box.type3 .bottom {
    bottom: 14px;
  }

  .person-box.type3 .btn {
    min-width: 137px;
    font-size: 15px;
  }

  /* services-section */

  .services-section {
    padding: 21px 0 9px;
  }

  .services-section h2 {
    margin: 0 0 27px;
    font-size: 30px;
    line-height: 34px;
  }

  .services-boxes [class*="col-"]:nth-child(2n-1) .services-box {
    background: none;
  }

  .services-boxes [class*="col-"]:nth-child(4n+1) .services-box,
  .services-boxes [class*="col-"]:nth-child(4n) .services-box {
    background: #f2f6f4;
  }

  .services-box {
    padding: 13px 40px 100px;
  }

  .services-box .img {
    height: 70px;
  }

  .services-box .img img {
    -webkit-transform: translateY(-50%) scale(0.7);
    -o-transform: translateY(-50%) scale(0.7);
       transform: translateY(-50%) scale(0.7);
  }

  .services-box figcaption {
    padding: 5px 0 0;
  }

  .services-box h3 {
    margin: 0 0 7px;
    font-size: 19px;
    line-height: 26px;
  }

  .services-box .btn {
    font-size: 15px;
  }

  /* search-property */

  .search-property {
    padding: 24px 0 45px;
  }

  .search-property h2 {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 34px;
  }

  /* search-intro */

  .search-intro {
    padding: 8px 0 0;
  }

  .search-intro .headline {
    margin: 0 0 23px;
  }

  .search-intro .size-1 {
    width: 33.33%;
  }

  .search-intro .size-2 {
    width: 100%;
  }

  .search-intro .sfTxtLbl {
    margin-bottom: 14px;
  }

  .search-intro .btn {
    min-width: 137px;
    width: auto;
    padding: 11px 12px 12px;
    font-size: 15px;
    line-height: 21px;
  }

  .select2-container--type4 .select2-selection--single .select2-selection__arrow b {
    right: 14px;
  }

  /* people-search */

  .people-search {
    padding: 30px 0 104px;
  }

  .people-search .search-txt {
    margin: 0 0 24px;
  }

  .people-search .person-boxes {
    margin-bottom: 15px;
  }

  /* faq */

  .page-header {
    min-height: 298px;
  }

  .page-header:before {
    width: 70%;
  }

  .page-header h1 {
    font-size: 43px;
    line-height: 52px;
  }

  .top-panel .back-link {
    margin: 0;
  }

  .top-panel {
    padding: 22px 0;
  }

  .search-form {
    margin: 14px 0 7px;
  }

  .content.offset-bottom {
    padding-bottom: 8px;
  }

  /* end faq */

  /* profile-page */

  .profile-section {
    padding-bottom: 42px;
  }

  .profile-section .person-details {
    margin-bottom: 36px;
  }

  .profile-section .person-details .photo {
    width: 135px;
    height: 135px;
  }

  .profile-section .person-details strong {
    font-size: 19px;
    line-height: 16px;
  }

  .profile-section .person-details figcaption {
    padding-left: 23px;
    padding-top: 8px;
    font-size: 15px;
  }

  .profile-section .back-link {
    margin-bottom: 53px;
  }

  .profile-section .content-area h2 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 7px;
  }

  .profile-section .content-area {
    font-size: 15px;
    line-height: 21px;
  }

  .profile-section .content-area .section {
    padding-bottom: 6px;
  }

  .profile-section .content-area p {
    margin-bottom: 21px;
  }

  .profile-section .person-details p {
    font-size: 16px;
    margin: -4px 0 1px;
  }

  .search-panel.type2 .headline h2 {
    font-size: 45px;
  }

  .search-panel.type2 .logo-item img {
    width: 190px;
  }

  .search-panel.type2 {
    padding: 27px 40px 31px;
  }

  .search-panel.type2 .headline {
    padding-bottom: 15px;
    margin-bottom: 13px;
  }

  .search-panel.type2 .sfTxtLbl {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .search-panel.type2 .sfTxt,
  .search-panel.type2 .select2-container--type2 .select2-selection--single {
    height: 40px;
    line-height: 22px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .search-panel.type2 .sfFieldWrap {
    margin-bottom: 11px;
  }

  .search-panel.type2 .sfFormSubmit {
    padding: 14px 0 0;
  }

  .search-panel.type2 .btn {
    font-size: 15px;
    min-width: 137px;
    padding: 11px 12px;
  }

  /* end profile-page */

  /* content */

  .contact-box {
    margin-bottom: 30px;
  }

  /* end content */

  .page-header.type2 {
    min-height: 358px;
    padding: 24px 0;
  }

  .property-section .info-area {
    padding: 9px 240px 21px 0;
    margin-bottom: 45px;
  }

  .property-section .info-area .back-link {
    margin-bottom: 25px;
  }

  .property-section .info-area h1 {
    font-size: 32px;
    margin-bottom: 26px;
  }

  .info-list {
    max-width: 355px;
  }

  .info-box {
    width: 220px;
  }

  .contact-block {
    padding: 17px 14px;
    border-radius: 0 0 10px 10px;
  }

  .info-box .ttl {
    padding: 10px 17px;
  }

  .info-box .ttl h2 {
    font-size: 21px;
    line-height: 27px;
  }

  .contact-block .call-box {
    padding-left: 44px;
    margin-bottom: 36px;
    font-size: 17px;
    line-height: 24px;
  }

  .contact-block .call-box:before {
    width: 38px;
    height: 38px;
  }

  .contact-block .call-box a {
    font-size: 17px;
  }

  .contact-block .call-box p {
    margin-bottom: 0;
  }

  .contact-block .btn {
    margin-bottom: 9px;
  }

  .social i {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 20px;
  }

  .property-section .content-area h3 {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .property-section .content-area {
    font-size: 15px;
    line-height: 1.4;
  }

  .property-section .content-area p {
    margin-bottom: 1.4em;
  }

  .property-section .content-area p + h3 {
    margin-top: 2em;
  }

  .property-section .content-area .box + .box {
    padding-top: 0;
  }

  .property-section .content-area .box:not(.active) {
    position: absolute;
    top: -99999px;
    left: -9999px;
    width: 100%;
  }

  .property-section .mobile-tab-nav {
    background: #005826;
    color: #fff;
    padding: 12px 19px;
    margin-top: 28px;
    max-width: 480px;
  }

  .property-section .mobile-tab-nav h3 {
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 13px;
    color: #fff;
  }

  .property-section .mobile-tab-nav .opener {
    display: block;
    position: relative;
    padding: 10px 45px 10px 9px;
    color: #4d4d4d;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    background: #ededed;
    border-radius: 10px;
    margin-bottom: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .property-section .mobile-tab-nav .opener:focus,
  .property-section .mobile-tab-nav .opener:hover {
    text-decoration: none;
  }

  .property-section .mobile-tab-nav .opener:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 17px;
    width: 9px;
    height: 9px;
    border: 2px solid #005826;
    border-width: 0 0 2px 2px;
    -webkit-transform: rotate(-45deg) translateY(-50%);
         -o-transform: rotate(-45deg) translateY(-50%);
            transform: rotate(-45deg) translateY(-50%);
  }

  .property-section .mobile-tab-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ededed;
    border-radius: 10px;
    display: none;
  }

  .property-section .mobile-tab-nav ul li + li {
    border-top: 1px solid #005826;
    font-size: 15px;
    line-height: 20px;
  }

  .property-section .mobile-tab-nav ul a {
    display: block;
    color: #4d4d4d;
    padding: 9px 5px;
  }

  .property-section .mobile-tab-nav ul li.active > a,
  .property-section .mobile-tab-nav ul a:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .property-section .mobile-tab-nav ul li:first-child a {
    border-radius: 10px 10px 0 0;
  }

  .property-section .mobile-tab-nav ul li:last-child a {
    border-radius: 0 0 10px 10px;
  }

  .property-section .mobile-tab-nav ul li.active {
    display: none;
  }

  /* footer */

  #footer .top {
    padding: 23px 0 8px;
  }

  .footer-logo {
    width: 105px;
    height: 63px;
  }

  .footer-tabs-nav {
    padding: 7px 147px 30px 0;
  }

  .footer-tabs-nav strong {
    font-size: 17px;
    padding-bottom: 8px;
    margin-bottom: 17px;
  }

  .footer-tabs-nav ul li {
    font-size: 17px;
  }

  .footer-tabs-nav ul li a {
    padding: 9px 35px 8px 0;
  }

  #footer h4 {
    font-size: 17px;
    line-height: 24px;
    margin: 0 0 11px;
  }

  #footer .place-address {
    font-size: 15px;
    margin: 0 0 13px;
  }

  #footer .place-info {
    margin: 0 0 15px;
    font-size: 15px;
  }

  #footer .place-info td:first-child {
    width: 210px;
  }

  #footer .place-info td + td {
    padding-left: 14px;
  }

  #footer .call-box {
    font-size: 17px;
    line-height: 24px;
    padding: 6px 0 10px 42px;
  }

  #footer .call-box:before {
    top: 4px;
    width: 31px;
    height: 31px;
  }

  #footer .call-box p {
    margin: 0 0 4px 7px;
  }

  #footer .call-box span {
    font-size: 15px;
    margin-bottom: 1px;
  }

  #footer .bottom {
    padding: 19px 0 40px;
  }

  #footer .footer-nav {
    padding: 7px 0 0;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }

  #footer .footer-nav li {
    font-size: 15px;
    margin-bottom: 12px;
  }

  #footer .social-list {
    padding-right: 33px;
  }

  #footer .footer-logos {
    padding: 38px 0 20px;
  }

  #footer .footer-logos li {
    line-height: 34px;
    margin-left: 12px;
    padding-bottom: 12px;
  }

  #footer .footer-logos img {
    max-height: 34px;
    max-width: 102px;
  }

  #footer .footer-list {
    padding: 0 0 6px;
  }

  /* review-page */

  .intro-review p {
    margin-bottom: 6px;
  }

  .reviews-section {
    padding: 34px 0 44px;
  }

  .list-reviews {
    padding: 9px 0 0;
  }

  .list-reviews .title {
    width: 220px;
  }

  .list-reviews .descr {
    font-size: 15px;
    line-height: 24px;
  }

  .list-reviews .title h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .list-reviews li {
    padding: 24px 50px 12px 0;
  }

  .list-reviews .descr p {
    margin-bottom: 10px;
  }

  .btn-more {
    width: 17px;
    height: 17px;
    top: 62px;
    right: 12px;
  }

  .btn-more:after,
  .btn-more:before {
    width: 17px;
    height: 3px;
  }

  .reviews-section .sf_pagerNumeric.type2 .btn {
    display: inline-block;
    margin: -3px 15px 0 32px;
  }

  /* end review-page */

  /* new-build-homes */

  .slideshow .slide {
    height: 358px;
  }

  .slideshow .slide:before {
    right: 45%;
  }

  .new-homes {
    background: #fff;
    padding: 45px 0 4px;
  }

  .new-homes ~ .search-property {
    background: #f2f6f5;
  }

  .new-homes .page-title {
    color: #005826;
    font-size: 17px;
    line-height: 22px;
    padding-bottom: 20px;
  }

  .new-homes .page-title p {
    margin: 0;
  }

  .new-homes .page-title h1 {
    font-size: 32px;
    line-height: 36px;
    margin: 0 0 15px;
  }

  .new-homes .info-block .lead {
    text-align: left;
    margin-bottom: 24px;
  }

  .new-homes .info-block {
    padding-bottom: 17px;
  }

  .new-homes .info-item .text {
    height: 76px;
    max-height: 76px;
    padding-right: 10px;
    margin-bottom: 7px;
  }

  .new-homes .info-item .btns {
    padding-bottom: 30px;
  }

  .new-homes .info-item {
    margin-bottom: 27px;
  }

  .new-homes .items {
    padding-bottom: 1px;
  }

  /* end new-build-homes */

  /* new-build-constable */

  .mobile-sub-menu .mobile-tab-nav {
    background: #005826;
    color: #fff;
    padding: 12px 19px;
    max-width: 480px;
  }

  .mobile-sub-menu .mobile-tab-nav h3 {
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 13px;
    color: #fff;
  }

  .mobile-sub-menu .mobile-tab-nav .opener {
    display: block;
    position: relative;
    padding: 10px 45px 10px 20px;
    color: #4d4d4d;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    background: #ededed;
    border-radius: 10px;
    margin-bottom: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .mobile-sub-menu .mobile-tab-nav .opener:focus,
  .mobile-sub-menu .mobile-tab-nav .opener:hover {
    text-decoration: none;
  }

  .mobile-sub-menu .mobile-tab-nav .opener:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 17px;
    width: 9px;
    height: 9px;
    border: 2px solid #005826;
    border-width: 0 0 2px 2px;
    -webkit-transform: rotate(-45deg) translateY(-50%);
         -o-transform: rotate(-45deg) translateY(-50%);
            transform: rotate(-45deg) translateY(-50%);
  }

  .mobile-sub-menu .mobile-tab-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ededed;
    border-radius: 10px;
    display: none;
  }

  .mobile-sub-menu .mobile-tab-nav ul li:before {
    display: none;
  }

  .mobile-sub-menu .mobile-tab-nav ul li {
    padding: 0;
  }

  .mobile-sub-menu .mobile-tab-nav ul li + li {
    border-top: 1px solid #005826;
    font-size: 15px;
    line-height: 20px;
  }

  .mobile-sub-menu .mobile-tab-nav ul a {
    display: block;
    color: #4d4d4d;
    padding: 9px 20px;
  }

  .mobile-sub-menu .mobile-tab-nav ul li.active > a,
  .mobile-sub-menu .mobile-tab-nav ul a:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .mobile-sub-menu .mobile-tab-nav ul li:first-child a {
    border-radius: 10px 10px 0 0;
  }

  .mobile-sub-menu .mobile-tab-nav ul li:last-child a {
    border-radius: 0 0 10px 10px;
  }

  .content.type2 {
    padding-top: 45px;
    font-size: 17px;
    padding-bottom: 28px;
  }

  .content.type2 h1 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0;
    margin-bottom: 15px;
  }

  .content.type2 h3 {
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0;
  }

  .content.type2 .intro-text {
    font-size: 17px;
    padding-bottom: 0;
  }

  .content .social i {
    width: 36px;
    height: 36px;
    font-size: 20px;
    line-height: 26px;
  }

  .content .social {
    padding: 11px 0 27px;
  }

  .content.type2 p {
    margin-bottom: 24px;
  }

  .mobile-sub-menu {
    padding: 14px 0 41px;
  }

  /* end new-build-constable */
}

@media screen and (max-width: 767px), screen and (orientation: landscape) and (max-width: 767px), screen and (orientation: portrait) and (max-width: 767px) {
  body {
    line-height: 22px;
    -webkit-text-size-adjust: none;
  }

  .wrapper {
    padding-top: 103px;
  }

  .container-fluid,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1,
  .h1 {
    font-size: 24px;
    line-height: 28px;
  }

  h2,
  .h2 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
  }

  h3,
  .h3 {
    font-size: 18px;
    line-height: 22px;
  }

  h4,
  .h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }

  h5,
  .h5 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
  }

  .lead {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
  }

  .btn-contact {
    min-width: 167px;
    padding: 5px 5px 7px;
    border-radius: 0 0 10px 10px;
    font-size: 12px;
    line-height: 18px;
    -webkit-transform: translateX(-36%);
    -o-transform: translateX(-36%);
       transform: translateX(-36%);
  }

  .btn-chat {
    top: 181px;
  }

  .btn-circle {
    width: 93px;
    height: 93px;
    border-width: 4px;
    font-size: 15px;
    line-height: 16px;
  }

  .btn-circle span {
    padding: 10px;
  }

  /* header */

  #header {
    border-top-width: 4px;
  }

  #header .container-fluid {
    padding: 25px 22px 18px;
  }

  #header .logo {
    width: 96px;
    height: 56px;
    margin: 0;
    background-size: 96px 56px;
  }

  .top-bar {
    padding: 6px 0 0;
  }

  .btn-menu {
    width: 41px;
    height: 41px;
    margin-right: -7px;
    border-width: 3px;
  }

  .btn-menu::before {
    width: 19px;
    height: 3px;
    top: 16px;
    left: 8px;
    right: 8px;
    -webkit-box-shadow: 0 6px #fff, 0 -6px #fff;
            box-shadow: 0 6px #fff, 0 -6px #fff;
  }

  .menu {
    margin-top: 103px;
  }

  /* visual-intro */

  .visual-intro {
    height: 299px;
    font-size: 20px;
    line-height: 24px;
  }

  .visual-intro .inner {
    padding: 46px 0 20px;
  }

  .home .visual-intro .inner {
    padding-top: 0;
  }

  .visual-intro h1 {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 40px;
  }

  .visual-intro p {
    margin: 0 0 28px;
  }

  /* headline */

  .headline {
    margin: 0 0 21px;
  }

  .headline h2 {
    font-size: 60px;
    line-height: 64px;
  }

  .headline .logo-item {
    bottom: 3px;
    width: 181px;
  }

  /* about */

  .about {
    padding: 0 0 27px;
    font-size: 15px;
  }

  .about .search-panel {
    margin-top: -5px;
    margin-bottom: 21px;
  }

  .about-boxes {
    margin: 0 -20px 21px;
    background: #7f7f7f;
  }

  .about-boxes [class*="col-"] {
    padding: 0;
  }

  .about-boxes [class*="col-"] + [class*="col-"] {
    padding-top: 1px;
  }

  .about-box figure {
    border-radius: 4px 0 0 4px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .about-box figcaption {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    width: 52.5%;
    padding: 5px 40px 5px 19px;
    text-align: left;
  }

  .about-box figcaption:before {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 13px;
    height: 13px;
    margin-top: -6px;
    border: solid #005826;
    border-width: 2px 2px 0 0;
    content: "";
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
       transform: rotate(45deg);
  }

  .about-box figcaption h3 {
    position: static;
    width: auto;
    line-height: 27px;
    -webkit-transform: none;
    -o-transform: none;
       transform: none;
  }

  .about-box .img {
    min-height: 96px;
  }

  .about .lead {
    font-size: 15px;
  }

  .about p,
  .about footer p {
    margin: 0 0 21px;
  }

  .about footer {
    margin: 0;
    padding: 10px 0 0;
    font-size: 17px;
    line-height: 21px;
  }

  .about-gallery {
    padding: 15px 0 0;
  }

  .about-gallery .row {
    margin: 0 -10px;
  }

  .about-gallery [class*="col-"] {
    padding: 0 10px;
  }

  .about-gallery figure {
    margin: 0 0 27px;
  }

  .about-gallery .img img {
    -webkit-transform: scale(0.7);
    -o-transform: scale(0.7);
       transform: scale(0.7);
  }

  .about-gallery figcaption {
    padding: 18px 0 0;
    font-size: 13px;
    line-height: 18px;
  }

  .about-gallery .slick-dots {
    margin: 0 -5px;
    padding: 14px 0 0;
  }

  .about-gallery .slick-dots li {
    padding: 0 5px;
  }

  .about-gallery .slick-dots button {
    width: 12px;
    height: 12px;
  }

  /* location-section */

  .locations-map {
    height: 419px;
  }

  .filter-locations {
    position: static;
    width: auto;
    background: #005826;
    border-radius: 0;
    margin: 0 -20px;
    padding: 18px 20px 5px;
  }

  .filter-locations h3 {
    margin-bottom: 4px;
  }

  .filter-locations ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
         column-count: 2;
    max-width: none;
    overflow: hidden;
    position: relative;
    gap: 0;
  }

  .filter-locations ul:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    z-index: 3;
    height: 5px;
    background: #005826;
  }

  .filter-locations ul li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-top: 4px dotted #98bc34;
    padding: 11px 0 12px;
  }

  .filter-locations ul li:first-child {
    border-top: none;
  }

  .filter-locations ul li + li {
    border-top-width: 4px;
  }

  .filter-locations ul label {
    padding-left: 21px;
  }

  .filter-locations ul label:before {
    width: 14px;
    height: 14px;
  }

  .marker-point figure {
    width: 90px;
    height: 90px;
    padding-top: 61px;
  }

  /* end location-section */

  /* news-section */

  .news-section {
    padding: 24px 0 0;
  }

  .news-section header {
    margin-bottom: 23px;
    font-size: 15px;
    line-height: 21px;
  }

  .news-section .logo-item {
    float: left;
    max-width: 100px;
    margin: 0;
  }

  .news-section .more {
    float: right;
    margin: 37px 0 0;
    font-size: 14px;
    line-height: 18px;
  }

  .news-section header .holder {
    padding: 16px 0 0;
  }

  .news-section.type2 {
    padding: 21px 0 2px;
  }

  .news-section.type2 h2 {
    top: 16px;
    left: -1px;
    font-size: 60px;
    line-height: 64px;
  }

  .news-section.type2 header {
    margin-bottom: 27px;
    line-height: 24px;
  }

  .news-section.type2 header .holder {
    padding: 14px 0 0;
  }

  /* news-box */

  .news-box {
    display: block;
    position: relative;
    margin: 0 0 14px;
    border-radius: 0;
  }

  .news-box.active {
    background: #97bc33;
    color: #005029;
  }

  .news-box.active .btn-primary {
    background-color: #fff;
    color: #005826;
  }

  .news-box.active .btn-primary:hover,
  .news-box.active .btn-primary:focus,
  .news-box.active .btn-primary:active {
    background-color: #005826;
    color: #97bc33;
  }

  .news-box .img {
    width: auto;
    min-height: 0;
    height: 0;
    padding-bottom: 80.77%;
  }

  .news-box figcaption {
    position: static;
    padding: 15px 12px 72px;
  }

  .news-box .date {
    margin: 0 0 11px;
  }

  .news-box h3 {
    font-size: 15px;
    line-height: 21px;
  }

  .news-box .btn {
    left: 10px;
    right: 10px;
    min-width: 0;
  }

  /* testimonials */

  .testimonials .container {
    padding-top: 33px;
    padding-bottom: 46px;
  }

  .testimonials .head {
    margin-bottom: 33px;
  }

  .testimonials h2 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 300;
  }

  .review-box {
    padding: 0;
    font-size: 15px;
    line-height: 21px;
  }

  .carousel .slide {
    padding: 0 24px;
  }

  .carousel {
    padding: 0;
  }

  .review-box h3 {
    margin-bottom: 5px;
  }

  .review-box .stars,
  .stars {
    width: 121px;
    height: 19px;
    margin-bottom: 10px;
  }

  .review-box .stars span:first-child,
  .stars span:first-child {
    background-size: 121px 19px;
  }

  .review-box p {
    margin-bottom: 27px;
  }

  .carousel .slick-arrow {
    margin-top: -20px;
    width: 28px;
    height: 28px;
  }

  .carousel .slick-prev {
    left: -5px;
    border-width: 7px 0 0 7px;
  }

  .carousel .slick-next {
    right: -5px;
    border-width: 7px 7px 0 0;
  }

  /* visual-block */

  .visual-block {
    display: block;
    height: auto;
    background-color: #fff;
    color: #005826;
    font-size: 15px;
    line-height: 21px;
    text-align: left;
  }

  .visual-block .video {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    height: 322px;
  }

  .visual-block .video video {
    display: none;
  }

  .visual-block .inner {
    display: block;
    padding: 17px 0 27px;
  }

  .visual-block h1 {
    margin: 0 0 21px;
    font-size: 27px;
    line-height: 30px;
  }

  /* culture-section */

  .culture-section {
    padding: 17px 0 23px;
    font-size: 15px;
    line-height: 21px;
    text-align: center;
  }

  .culture-section .headline h2 {
    font-size: 45px;
    line-height: 49px;
  }

  .culture-section .headline .logo-item {
    bottom: 0;
  }

  .culture-section .lead {
    margin: 0 0 24px;
  }

  /* people-section */

  .people-section {
    padding: 27px 0 31px;
    font-size: 15px;
    line-height: 24px;
  }

  .people-section .headline {
    margin: 0 0 13px;
  }

  .people-section .headline h2 {
    font-size: 50px;
    line-height: 54px;
  }

  .people-section .headline .logo-item {
    bottom: 3px;
    width: 142px;
    margin-left: 18px;
  }

  .people-section h3 {
    margin: 0 0 21px;
    font-size: 27px;
    line-height: 30px;
  }

  .people-section .lead {
    line-height: 24px;
  }

  .people-section p {
    margin: 0 0 18px;
  }

  .people-section .list-unstyled {
    padding: 0;
  }

  .people-section .list-unstyled li {
    margin: 0 0 11px;
  }

  .people-img {
    margin: 27px 0 38px;
  }

  .people-img img {
    border-width: 10px 0 0 11px;
  }

  .people-img .btn-circle {
    right: -1px;
    bottom: -40px;
    width: 93px;
    height: 93px;
    font-size: 15px;
    line-height: 16px;
  }

  .people-img .btn-circle span {
    padding: 20px 3px 10px;
  }

  /* faq-section */

  .faq-section {
    padding: 1px 0 55px;
  }

  .faq-section .headline {
    margin: 0 0 5px;
  }

  .faq-section .headline h2 {
    font-size: 72px;
    line-height: 76px;
  }

  .faq-section .headline .logo-item {
    bottom: 11px;
    width: 151px;
  }

  .faq-section .top {
    margin-bottom: 24px;
  }

  .faq-section h3 {
    font-size: 27px;
    line-height: 30px;
  }

  .faq-section .more {
    margin-left: -5px;
  }

  .faq-accordion {
    margin: 0 0 24px;
    border-top: 1px solid #005826;
  }

  .faq-accordion .panel-title {
    font-size: 15px;
    line-height: 21px;
  }

  .faq-accordion .panel-title a {
    padding: 8px 50px 9px 0;
  }

  .faq-accordion .panel-title a::before,
  .faq-accordion .panel-title a::after {
    right: 1px;
    width: 15px;
    height: 3px;
  }

  .faq-accordion .panel-body {
    padding: 0 0 10px;
  }

  .faq-accordion p {
    margin: 0 0 10px;
  }

  .faq-links {
    margin: 0;
  }

  .faq-links li {
    margin: 0 0 7px;
  }

  .faq-links figcaption {
    padding: 12px 13px;
  }

  /* visual */

  .visual {
    height: 228px;
  }

  /* search-panel */

  .search-panel {
    margin: -165px -20px 0;
  }

  .search-panel .holder {
    padding: 15px 20px 10px;
  }

  .search-panel h3 {
    font-size: 15px;
    line-height: 16px;
    padding: 10px 18px;
  }

  .search-panel .select-options i {
    position: static;
    display: inline-block;
    vertical-align: top;
    margin: -2px 0 -4px 10px;
    top: auto;
    right: auto;
    font-size: 22px;
  }

  .search-panel .select-options {
    text-align: left;
    padding: 10px 10px 10px 16px;
    font-size: 15px;
    line-height: 16px;
  }

  .search-panel .options a {
    padding: 12px 16px;
    font-size: 15px;
    line-height: 16px;
  }

  .check-row {
    padding: 22px 0 0;
  }

  .search-panel .row {
    margin: 0 -5px;
  }

  .search-panel .size-1,
  .search-panel .size-2 {
    width: 100%;
  }

  .search-panel .size-5,
  .search-panel .size-3,
  .search-panel .size-4 {
    width: 50%;
  }

  .search-panel [class*="col-"] {
    padding: 0 5px 9px;
  }

  .search-panel .sfTxtLbl {
    margin-bottom: 9px;
    font-size: 15px;
    line-height: 19px;
  }

  .search-panel .sfTxt {
    padding: 8px 17px 9px;
    font-size: 15px;
  }

  .search-panel .sfFormSubmit {
    padding: 17px 0 0;
  }

  .search-panel .btn {
    font-size: 15px;
  }

  /* custom-select-02 */

  .select2-container--type2 .select2-selection--single {
    padding: 8px 30px 9px 17px;
    font-size: 15px;
  }

  /* sale-section */

  .sale-section {
    margin: -6px 0;
  }

  .sale-section,
  .sale-section .lead {
    line-height: 24px;
  }

  .sale-section .headline {
    margin-bottom: 19px;
  }

  .sale-section .headline h2 {
    font-size: 50px;
    line-height: 54px;
  }

  .sale-section .headline .logo-item {
    bottom: 0;
    width: 192px;
  }

  .sale-section .lead,
  .sale-section p {
    margin: 0 0 24px;
  }

  /* signup */

  .signup {
    padding: 32px 0 5px;
    text-align: left;
  }

  .signup h3 {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 35px;
  }

  .signup .row {
    margin-top: 28px;
  }

  .signup [class*="col-"] {
    padding-bottom: 13px;
  }

  .signup .sfTxtLbl {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 19px;
  }

  .signup .sfTxt {
    padding: 8px 17px 9px;
    font-size: 15px;
  }

  .signup .sfFormSubmit {
    padding-top: 10px;
  }

  .signup .btn {
    min-width: 147px;
    font-size: 15px;
  }

  .signup.type2 {
    padding: 15px 0 31px;
    text-align: center;
  }

  .signup.type2 h3 mark {
    display: block;
  }

  .signup.type2 .btn {
    padding: 9px 12px 10px;
  }

  .signup p {
    margin: 0 0 23px;
  }

  .content {
    padding-top: 0;
  }

  .image-block {
    margin: 0 -20px 39px;
    padding: 102% 0 0;
  }

  .content .intro-text {
    font-size: 15px;
    line-height: 22px;
  }

  .content .panel-group {
    margin: 2px 0 30px;
  }

  .content .panel-group .panel + .panel {
    margin: 8px 0 0;
  }

  .content .panel-group .panel-title a {
    font-size: 15px;
    line-height: 21px;
    padding: 9px 40px 10px 15px;
    margin: 0;
  }

  .content .panel-group .panel-title a:before {
    width: 12px;
    height: 2px;
    margin: 20px 22px 0 0;
  }

  .content .panel-group .panel-title a:after {
    width: 2px;
    height: 12px;
    margin: 15px 27px 0 0;
  }

  .content .panel-group .panel-body {
    font-size: 15px;
    line-height: 21px;
    padding: 4px 20px 22px 14px;
  }

  .content .table-section {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 10px;
    margin: 0 -20px 21px 0;
  }

  .content .table-section .table-holder {
    padding-right: 20px;
    min-width: 621px;
  }

  .content table th {
    font-size: 17px;
    line-height: 21px;
    font-weight: 700;
    padding: 0 22px 18px;
  }

  .content table td {
    padding: 18px 21px 15px;
    font-size: 15px;
    line-height: 21px;
  }

  .main-form {
    padding: 0 0 31px;
  }

  .main-form h4 {
    margin: 0 0 22px;
  }

  .main-form .sfTxtLbl {
    font-size: 14px;
  }

  .main-form .form-elements {
    padding-top: 0;
  }

  .elements-block {
    padding: 0 0 27px;
  }

  .elements-block .btns > li {
    padding: 0 9px 9px 0;
  }

  .testimonial-box {
    margin: 0 0 34px;
    padding: 32px 15px 36px;
    border-width: 5px 0;
    text-align: center;
  }

  .testimonial-box:before {
    margin: 18px 0 0 12px;
  }

  .testimonial-box:after {
    margin: 0 11px 18px 0;
  }

  .testimonial-box q {
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
  }

  .filter-form {
    padding: 0;
    margin: 0 0 23px;
  }

  .filter-form .sfFormDropdown {
    padding: 0 0 19px;
  }

  .filter-form .sfTxtLbl {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
  }

  .filter-form .sfFormSubmit {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 0;
    overflow: visible;
    text-align: center;
  }

  .filter-form .sfFormSubmit .btn {
    width: 132px;
    margin: 0 auto;
  }

  .news-post h2 {
    font-weight: 300;
    font-size: 17px;
    line-height: 21px;
    margin: 0 0 13px;
  }

  .news-post .sfnewsAuthorAndDate {
    font-size: 13px;
    font-weight: 700;
    padding: 0 0 10px;
  }

  .news-post .sfnewsTitle {
    font-weight: 300;
    font-size: 17px;
    line-height: 23px;
    margin: 0 0 13px;
  }

  .tags-list,
  .content .tags-list {
    padding: 0 0 5px;
  }

  .news-post .img {
    border-radius: 0;
    padding: 54% 0 0;
    margin: 0 0 18px;
  }

  .btns-panel {
    padding: 21px 0 7px;
    text-align: center;
  }

  .btns-panel .social-list,
  .content .btns-panel .social-list {
    padding-top: 33px;
    text-align: center;
  }

  .btns-panel .social-list li,
  .content .btns-panel .social-list li {
    margin: 0 7px 10px;
  }

  .sf_pagerNumeric {
    margin: 0 -12px;
    padding: 29px 0 34px;
    text-align: center;
  }

  .sf_pagerNumeric:before {
    left: 12px;
    right: 12px;
  }

  .sf_pagerNumeric a {
    margin: 0 12px;
  }

  .sf_pagerNumeric .btn {
    display: block;
    width: 120px;
    margin: 27px auto 0;
  }

  .sf_pagerNumeric.type2 {
    padding: 34px 0 33px;
  }

  .text-block {
    padding: 0 0 19px;
  }

  .text-block h3 {
    font-size: 17px;
    line-height: 24px;
    margin: 0 0 12px;
  }

  .text-block p,
  .content .text-block p {
    margin: 0;
  }

  .map-block {
    padding: 26px 0 22px;
    text-align: center;
  }

  .map-block h3 {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 8px;
  }

  .map-block .loc {
    font-weight: 300;
    font-size: 15px;
    line-height: 21px;
    margin: 0 0 26px;
  }

  .map-block #map {
    height: 124px;
    margin-bottom: 27px;
  }

  .map-block .btns-holder .btn {
    margin: 0 10px 9px;
  }

  .jobs-list,
  .content .jobs-list {
    padding: 0 0 9px;
  }

  .jobs-list .job-box,
  .content .jobs-list .job-box {
    border-bottom-width: 1px;
    text-align: center;
    padding: 16px 0 30px;
    font-size: 15px;
    line-height: 22px;
  }

  .jobs-list .job-box:first-child {
    border-top-width: 1px;
  }

  .jobs-list h2 {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 11px;
  }

  .jobs-list .job-nav,
  .content .jobs-list .job-nav {
    padding: 0 0 8px;
  }

  .jobs-list .job-nav > li,
  .content .jobs-list .job-nav > li {
    font-size: 15px;
    line-height: 21px;
  }

  .jobs-list .job-dates,
  .content .jobs-list .job-dates {
    padding: 0 0 13px;
  }

  .jobs-list .job-dates > li,
  .content .jobs-list .job-dates > li {
    display: block;
    padding-bottom: 8px;
  }

  .jobs-list .job-dates > li + li,
  .content .jobs-list .job-dates > li + li {
    padding-left: 0;
  }

  .jobs-list .job-dates > li + li:before,
  .content .jobs-list .job-dates > li + li:before {
    display: none;
  }

  .jobs-list .job-dates strong {
    padding: 0;
  }

  .jobs-list p {
    margin: 0 0 26px;
  }

  .download-links > li,
  .content .download-links > li {
    display: block;
    padding-bottom: 10px;
  }

  .download-links > li + li,
  .content .download-links > li + li {
    padding-left: 0;
  }

  .download-links .fa {
    margin: -1px 0 0 6px;
    font-size: 20px;
  }

  .team-section {
    padding: 24px 0 9px;
  }

  .team-section h2 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 26px;
  }

  .person-details {
    text-align: center;
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 27px;
  }

  .person-details .photo {
    float: none;
    margin: 0 auto 12px;
    width: 135px;
    height: 135px;
  }

  .person-details figcaption {
    padding: 0;
  }

  .person-details strong {
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 3px;
  }

  .person-details p {
    font-size: 16px;
    line-height: 22px;
    padding: 3px 0 7px;
  }

  .person-details span {
    margin-bottom: 5px;
  }

  .text-block.type2 {
    line-height: 21px;
  }

  .text-block.type2 h3 {
    font-size: 21px;
    line-height: 27px;
    margin: 0 0 8px;
  }

  .news-block {
    padding: 38px 0 30px;
  }

  .news-block h2 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 22px;
  }

  .news-block .news-box {
    display: block;
    margin-bottom: 14px;
  }

  .news-block .news-box .img {
    width: 100%;
    min-height: 0;
    padding: 81% 0 0;
  }

  .news-block .news-box figcaption {
    padding: 15px 14px 70px;
    min-height: 198px;
  }

  .news-block .news-box h3 {
    font-size: 15px;
    line-height: 21px;
    overflow: hidden;
    max-height: 84px;
    margin: 0;
  }

  .news-block .news-box .text {
    display: none;
  }

  .news-block .news-box .btn {
    bottom: 10px;
    left: 10px;
    right: 10px;
    min-width: 0;
    font-size: 15px;
  }

  /* filter-bar */

  .filter-bar {
    padding: 19px 0 27px;
  }

  .filter-bar h2 {
    margin: 0 0 20px;
    font-size: 21px;
    line-height: 26px;
  }

  .filter-bar h2 strong {
    font-size: inherit;
  }

  .filter-bar .text-right {
    text-align: left;
  }

  .filter-bar .sfFormDropdown {
    float: right;
    width: 114px;
    margin: 0;
  }

  /* tab-switch */

  .tab-switch {
    float: left;
    max-width: 50%;
    margin: 6px -3px 0;
  }

  /* info-item */

  .info-items {
    padding: 0 0 5px;
  }

  .info-item .img {
    padding-bottom: 97.46%;
  }

  .info-item .slick-prev {
    left: 11px;
  }

  .info-item .slick-next {
    right: 11px;
  }

  .info-item .caption {
    padding: 11px 18px 93px;
  }

  .info-item h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 25px;
  }

  .info-item .text {
    max-height: 57px;
    margin: 0 0 22px;
  }

  .info-item h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .info-item .list .ico {
    padding: 0 9px 0 0;
  }

  .info-item .list .ico img {
    -webkit-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
       transform-origin: 0 100%;
    -webkit-transform: scale(0.8);
    -o-transform: scale(0.8);
       transform: scale(0.8);
  }

  .info-item .btns {
    padding: 0 10px 23px;
  }

  .info-item .btns li {
    width: 63%;
  }

  .info-item .btns li + li {
    width: 37%;
  }

  .info-item .btns .btn {
    font-size: 17px;
  }

  /* map-section */

  .map-section {
    margin: 0 0 102px;
  }

  /* visual-section */

  .visual-section {
    height: 240px;
  }

  .visual-section .inner {
    vertical-align: top;
    padding: 16px 0 120px;
  }

  .visual-section h1 {
    margin: 0;
    font-size: 24px;
    line-height: 28px;
  }

  /* contact-list */

  .contact-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 14px 50px 4px 20px;
    border-radius: 0;
  }

  .contact-list li {
    padding: 0 0 12px 43px;
  }

  /* info-block */

  .info-block {
    padding: 21px 0 0;
    font-size: 15px;
  }

  .info-block .headline {
    margin: 0 0 18px;
  }

  .info-block .headline .logo-item {
    bottom: 1px;
    width: 192px;
  }

  .info-block .lead {
    margin: 0 0 16px;
    text-align: left;
  }

  .info-block .btns {
    margin-bottom: 18px;
  }

  .info-block .btn {
    min-width: 137px;
    padding: 11px 24px 12px;
    font-size: 15px;
  }

  /* schedule-box */

  .schedule-box {
    margin: 0 -20px;
    padding: 18px 22px 12px;
    border-radius: 0;
  }

  .schedule-box h3 {
    margin: 0 0 2px;
  }

  .schedule-box p {
    margin: 0 0 22px;
  }

  .schedule-box dl dd {
    margin-bottom: 5px;
  }

  /* experts-section */

  .experts-section {
    padding: 22px 0 0;
    font-size: 15px;
    line-height: 24px;
  }

  .experts-section h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 28px;
  }

  .experts-section p {
    margin: 0 0 15px;
  }

  .experts-section .row .row {
    padding-bottom: 15px;
  }

  .experts-section dl {
    margin: 0 0 10px;
  }

  /* person-box type2 */

  .person-box.type2 {
    padding: 32px 10px 82px;
    font-size: 15px;
  }

  .person-box.type2 .photo {
    width: 135px;
    height: 135px;
    margin-bottom: 10px;
  }

  .person-box.type2 h3 {
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 26px;
  }

  .person-box.type2 h4 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 21px;
  }

  .person-box.type2 .bottom {
    bottom: 24px;
  }

  .person-box.type2 .btn {
    min-width: 137px;
  }

  .person-box.type3 {
    min-height: 422px;
    margin: 0 0 19px;
    padding: 30px 10px 85px;
  }

  .person-box.type3 .photo {
    margin-bottom: 19px;
  }

  .person-box.type3 h3 {
    margin: 0 0 6px;
  }

  .person-box.type3 .bottom {
    bottom: 30px;
  }

  /* services-section */

  .services-section {
    padding: 14px 0 6px;
  }

  .services-section h2 {
    margin: 0 0 16px;
    font-size: 21px;
    line-height: 28px;
    font-weight: 300;
  }

  .services-boxes [class*="col-"]:nth-child(n) .services-box {
    background: none;
  }

  .services-boxes [class*="col-"]:nth-child(2n-1) .services-box {
    background: #f2f6f4;
  }

  .services-box {
    margin: 0;
    padding: 23px 20px 90px;
  }

  .services-box figcaption {
    padding: 8px 0 0;
  }

  .services-box h3 {
    margin: 0 0 9px;
  }

  .services-box p {
    margin: 0 0 18px;
  }

  .services-box footer {
    bottom: 25px;
  }

  /* search-property */

  .search-property {
    padding: 16px 0 0;
  }

  .search-property h2 {
    margin: 0 0 22px;
    font-size: 21px;
    line-height: 28px;
    font-weight: 300;
  }

  .search-property .search-panel {
    margin: 0 -20px;
  }

  /* search-intro */

  .search-intro {
    padding: 37px 0 23px;
  }

  .search-intro .headline h2 {
    font-size: 45px;
    line-height: 49px;
  }

  .search-intro .headline {
    margin: 0 0 25px;
  }

  .search-intro .headline .logo-item {
    bottom: 0;
  }

  .search-intro [class*="col-"] {
    padding-bottom: 9px;
  }

  .search-intro .size-1 {
    width: 100%;
  }

  .search-intro .sfTxtLbl {
    margin-bottom: 11px;
    font-size: 15px;
  }

  .search-intro .sfFormSubmit {
    padding: 22px 0 0;
  }

  .select2-container--type4 .select2-selection--single .select2-selection__arrow b {
    right: 25px;
  }

  /* people-search */

  .people-search {
    padding: 22px 0 25px;
  }

  .people-search .search-txt {
    margin: 0 0 16px;
    font-size: 15px;
  }

  /* faq */

  .page-header {
    min-height: 84px;
  }

  .page-header:before {
    width: 100%;
  }

  .top-panel .back-link {
    margin: 0 0 26px;
    float: none;
  }

  .top-panel {
    padding: 9px 0 16px;
  }

  .top-panel h1 {
    font-size: 21px;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 29px;
  }

  .search-form {
    margin: 0;
    float: none;
  }

  .content.offset-bottom {
    padding-bottom: 0;
  }

  /* end faq */

  /* profile-page */

  .profile-section {
    border: 0;
    padding: 0;
  }

  .search-panel.type2 {
    margin: 0 -20px 28px;
    padding: 40px 20px 27px;
  }

  .search-panel.type2 .headline {
    padding-bottom: 5px;
    margin-bottom: 21px;
  }

  .search-panel.type2 .sfTxt,
  .search-panel.type2 .select2-container--type2 .select2-selection--single {
    height: 50px;
    line-height: 22px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .search-panel.type2 .sfFieldWrap {
    margin-bottom: 9px;
  }

  .search-panel.type2 .sfFormSubmit {
    padding: 21px 0 0;
  }

  .profile-section .back-link {
    margin-bottom: 36px;
  }

  .profile-section .person-details figcaption {
    padding: 0;
  }

  .profile-section .person-details strong {
    font-size: 19px;
    line-height: 23px;
  }

  .profile-section .person-details p {
    margin: 0;
  }

  .profile-section .content-area h2 {
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 10px;
  }

  .profile-section .person-details {
    margin-bottom: 26px;
  }

  .profile-section .content-area .section {
    padding-bottom: 0;
  }

  /* end profile-page */

  /* content */

  .breadcrumbs {
    display: none;
  }

  .contact-box {
    margin-bottom: 30px;
  }

  .image-block.type2 {
    padding-top: 60%;
  }

  .intro-ttl {
    padding-top: 0;
    font-size: 21px;
    line-height: 24px;
  }

  .contact-box {
    margin: 0 -20px;
    padding: 20px 20px 5px;
  }

  /* end content */

  .page-header.type2 {
    min-height: 246px;
  }

  .property-section {
    padding-bottom: 23px;
  }

  .info-box {
    bottom: 100%;
    width: auto;
    right: -20px;
    left: -20px;
  }

  .info-box .ttl {
    border-radius: 5px 5px 0 0;
    padding: 10px 22px;
  }

  .info-box.visible-xs {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
  }

  .info-box .ttl h2 {
    font-weight: 300;
    font-size: 17px;
  }

  .property-section .info-area {
    padding: 21px 0;
    line-height: 18px;
    margin-bottom: 7px;
    border: none;
  }

  .property-section .info-area h1 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 16px;
  }

  .property-section .info-area p {
    color: #4d4d4d;
    margin-bottom: 21px;
  }

  .info-list h4 {
    font-size: 15px;
  }

  .info-list .ico img {
    max-width: 28px;
  }

  .info-list figcaption {
    font-size: 16px;
  }

  .property-section .content-area h3 {
    font-size: 17px;
    margin-bottom: 9px;
  }

  .property-section .content-area p {
    margin-bottom: 1em;
  }

  .property-section .mobile-tab-nav {
    margin-top: 8px;
    padding: 13px 20px;
  }

  .property-section .mobile-tab-nav h3 {
    margin-bottom: 12px;
  }

  .property-section .mobile-tab-nav .opener {
    padding: 10px 30px 10px 15px;
  }

  .property-section .mobile-tab-nav .opener:before {
    right: 9px;
  }

  .contact-block {
    padding: 27px 31px 20px 23px;
    border-radius: 0;
  }

  .contact-block .call-box {
    padding-left: 61px;
    font-size: 21px;
    margin-bottom: 31px;
  }

  .contact-block .call-box:before {
    width: 47px;
    height: 47px;
  }

  .contact-block .call-box h3 {
    margin-bottom: 2px;
  }

  .contact-block .call-box a {
    font-size: 25px;
    line-height: 30px;
  }

  .contact-block .btn {
    font-size: 15px;
    line-height: 22px;
    padding: 9px 12px;
    max-width: 192px;
    margin-bottom: 10px;
  }

  .social {
    padding-top: 19px;
  }

  .social i {
    width: 38px;
    height: 38px;
    line-height: 28px;
    font-size: 20px;
  }

  /* footer */

  #footer .top {
    padding: 36px 0 0;
  }

  .footer-logo {
    width: 180px;
    height: 31px;
    background: url(/wp-content/themes/fennwright/dist/images/logo-footer-mobile.svg) no-repeat;
    background-size: 100% 100%;
    margin: 0 auto 20px;
  }

  #footer .find-link {
    display: block;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    position: relative;
  }

  #footer .find-link .opener {
    display: block;
    padding: 13px 40px 13px 18px;
    border: 2px solid #97bb33;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    color: #6e6e6e;
  }

  .open-search #footer .find-link .opener {
    border-radius: 5px 5px 0 0;
  }

  #footer .find-link:hover,
  #footer .find-link:focus {
    text-decoration: none;
  }

  #footer .find-link:before,
  #footer .find-link:after {
    content: '';
    width: 16px;
    height: 2px;
    background: #97bb33;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: absolute;
    right: 20px;
    top: 50%;
    margin: -1px 0 0;
  }

  #footer .find-link:before {
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
       transform: rotate(90deg);
  }

  .active-search #footer .find-link:before,
  .open-search #footer .find-link:before {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }

  #footer .find-link .btn-close {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 54px;
    z-index: 5;
    background: transparent;
    cursor: pointer;
  }

  .active-search #footer .find-link .btn-close {
    display: block;
  }

  #footer .bottom {
    border: none;
    padding: 20px 0 25px;
  }

  #footer h4 {
    font-size: 21px;
    margin: 0 0 9px;
  }

  #footer .footer-nav {
    padding: 7px 0 23px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 23px;
  }

  #footer .footer-nav li {
    line-height: 20px;
    margin-bottom: 12px;
  }

  #footer .social-list {
    text-align: left;
    padding: 0;
  }

  .social-list li {
    margin: 0 14px 14px 0;
  }

  #footer .footer-logos {
    text-align: left;
    padding: 15px 0 10px;
  }

  #footer .footer-logos li {
    line-height: 32px;
    margin: 0 16px 12px 0;
    padding-bottom: 0;
  }

  #footer .footer-logos li:first-child {
    display: block;
  }

  #footer .footer-logos img {
    max-height: 32px;
    max-width: 102px;
  }

  #footer .footer-list {
    padding: 0 0 14px;
  }

  .footer-tabs-content {
    padding: 19px 0 0;
    display: none;
  }

  #footer .footer-tabs-content h4 {
    line-height: 30px;
    margin-bottom: 10px;
  }

  #footer .place-address {
    margin-bottom: 17px;
    padding-top: 6px;
  }

  #footer .place-info {
    margin-bottom: 18px;
  }

  #footer .place-info.type2 td {
    display: block;
    padding: 0 0 16px;
  }

  #footer .place-info.type2 td:first-child {
    width: auto;
    padding: 0;
  }

  #footer .place-info.type2 tr:last-child td {
    padding-bottom: 0;
  }

  #footer .call-box {
    padding: 3px 0 0 43px;
  }

  #footer .call-box p {
    margin: 0 0 4px;
  }

  .footer-tabs-nav {
    padding: 0;
    position: absolute;
    background: #005826;
    border: 2px solid #97bb33;
    z-index: 30;
    left: 10px;
    right: 10px;
    margin: -2px 0 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
  }

  .open-search .footer-tabs-nav {
    opacity: 1;
    visibility: visible;
  }

  .footer-tabs-nav ul {
    margin: 0;
  }

  .footer-tabs-nav ul li {
    padding: 0;
  }

  .footer-tabs-nav ul li + li {
    border-top: 2px solid #97bb33;
  }

  .footer-tabs-nav ul li a:after {
    display: none;
  }

  .footer-tabs-nav ul li a {
    font-size: 15px;
    line-height: 16px;
    padding: 15px 18px;
    color: #fff;
  }

  .footer-tabs-nav ul li.active a,
  .footer-tabs-nav ul li a:hover {
    font-weight: 300;
  }

  .popup-content {
    padding: 23px 15px;
    margin-bottom: 80px;
  }

  .close-popup {
    top: 10px;
    right: 10px;
  }

  .popup-content .main-form {
    padding: 0;
  }

  .popup-content .main-form .sfTxtLbl {
    margin-bottom: 12px;
  }

  .check-list li {
    padding-bottom: 10px;
  }

  .popup-content .main-form .check-btns .sfTxtLbl {
    margin-bottom: 20px;
  }

  .check-btns {
    padding-bottom: 10px;
  }

  .popup-content .main-form .sfFormSubmit {
    padding: 10px 0 0;
  }

  .thank-box h3 {
    margin-bottom: 10px;
  }

  .thank-box {
    width: auto;
    height: auto;
    padding: 5px 10px 15px;
  }

  .popup-content.sm .close-popup {
    top: 23px;
    right: 23px;
  }

  /* review-page */

  .intro-review {
    padding: 34px 0;
    font-size: 15px;
    line-height: 21px;
  }

  .intro-review .stars {
    margin-bottom: 21px;
  }

  .intro-review h1 {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 15px;
  }

  .intro-review p {
    margin: 0 0 2px;
  }

  .reviews-section {
    padding: 30px 0;
  }

  .reviews-section .filter-form .sfFormDropdown {
    padding-bottom: 14px;
  }

  .list-reviews {
    margin: 0 -20px;
    padding: 0;
  }

  .list-reviews li {
    padding: 13px 74px 13px 20px;
  }

  .list-reviews .title {
    float: none;
    width: auto;
    padding: 0 0 9px;
  }

  .list-reviews .title .date {
    display: none;
  }

  .reviews-section .filter-form {
    margin-bottom: 15px;
  }

  .list-reviews .title h3 {
    font-size: 17px;
    padding: 0;
    margin: 0;
  }

  .list-reviews .descr {
    line-height: 21px;
    padding: 0;
  }

  .list-reviews .descr p {
    margin-bottom: 13px;
  }

  .btn-more {
    width: 12px;
    height: 12px;
    top: 50%;
    right: 39px;
    margin-top: 13px;
  }

  .btn-more:after,
  .btn-more:before {
    width: 12px;
    height: 2px;
    margin: -1px 0 0;
  }

  .reviews-section .sf_pagerNumeric.type2 {
    margin: 0 -20px;
    padding: 30px 0 14px;
  }

  .reviews-section .sf_pagerNumeric.type2 .btn {
    display: block;
    margin: 30px 20px 0 auto;
  }

  /* end review-page */

  /* new-build-homes */

  .slideshow .slide {
    height: 187px;
  }

  .slideshow .slide:before {
    right: 0;
    background: #000;
    opacity: 0.1;
  }

  .slideshow .slick-arrow {
    width: 20px;
    height: 20px;
    margin-top: 0;
    border-color: #fff;
    opacity: 1;
  }

  .slideshow .slick-prev {
    left: 34px;
    border-width: 4px 0 0 4px;
  }

  .slideshow .slick-next {
    right: 34px;
    border-width: 4px 4px 0 0;
  }

  .new-homes .page-title {
    font-size: 17px;
    line-height: 22px;
  }

  .new-homes .page-title h1 {
    font-size: 26px;
    line-height: 30px;
  }

  .new-homes {
    padding: 20px 0 0;
  }

  .new-homes .page-title h1 {
    margin-bottom: 5px;
  }

  .new-homes .page-title {
    padding-bottom: 7px;
  }

  .new-homes .info-block .lead {
    margin-bottom: 13px;
  }

  .new-homes .info-block {
    line-height: 21px;
    padding-bottom: 25px;
  }

  .new-homes .info-block p {
    margin-bottom: 17px;
  }

  .new-homes .info-item .text {
    margin-bottom: 5px;
  }

  .new-homes .info-item .btns {
    padding-bottom: 25px;
  }

  .new-homes .info-item .btns li {
    width: 55%;
  }

  .new-homes .info-item {
    margin-bottom: 21px;
  }

  .new-homes .items {
    padding-bottom: 16px;
  }

  .type2-xs.search-property {
    padding-bottom: 32px;
  }

  .type2-xs.search-property .search-panel {
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  }

  /* end new-build-homes */

  /* new-build-constable */

  .content.type2 h1 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 5px;
  }

  .content.type2 {
    padding-top: 20px;
    font-size: 15px;
    line-height: 21px;
    padding-bottom: 11px;
  }

  .content.type2 h3 {
    line-height: 21px;
  }

  .content .social {
    padding: 4px 0 17px;
  }

  .content .social i {
    width: 38px;
    height: 38px;
    padding: 6px;
  }

  .content.type2 .intro-text {
    margin-bottom: 13px;
  }

  .content.type2 p {
    margin-bottom: 21px;
  }

  .mobile-sub-menu {
    padding-top: 8px;
    padding-bottom: 19px;
  }

  .mobile-sub-menu .mobile-tab-nav {
    padding: 14px 20px;
  }

  /* end new-build-constable */

  .title-block {
    font-size: 15px;
    line-height: 22px;
    padding: 36px 0 27px;
  }

  .title-block h3 {
    margin-bottom: 18px;
    line-height: 26px;
  }

  .person-box h3 small {
    font-size: 14px;
    line-height: 18px;
    padding-top: 4px;
  }
}

@media screen and (min-width: 768px) {
  #footer .slide-block {
    display: block !important;
    height: auto !important;
  }

  .footer-tabs-content {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  .search-panel .options {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
    height: auto !important;
  }
}


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