/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}



/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}

/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 */

/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/

/* SelectBoxIt container */
.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  font: 14px Helvetica, Arial;
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
  width: 100%; /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  display: block;
  position: relative;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
  height: 40px; /* Height of the drop down */
  line-height: 40px; /* Vertically positions the drop down text */
  display: block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

/* Button Text */
.selectboxit-text {
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100%;  /* Minimum Width of the dropdown list box options */
  *width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  border-radius: 0;
  text-align: left;
  /*-webkit-box-shadow: none;*/
  /*-moz-box-shadow: none;*/
  /*box-shadow: none;*/
}

/* Individual options */
 .selectboxit-option .selectboxit-option-anchor{
  padding: 0 2px;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
  text-indent: 5px; /* Horizontal Positioning of the select box option text */
  margin: 0;
  list-style-type: none;
}

/* The first Drop Down option */
.selectboxit-option-first {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectboxit-option-last {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
  font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
  cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  position: absolute;
  right: 0;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
	margin-top: -13px;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
  float: left;
}

.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}

.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
  background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
  background-color: #fff;
}

/*.selectboxit-btn.selectboxit-enabled:hover,*/
/*.selectboxit-btn.selectboxit-enabled:focus,*/
/*.selectboxit-btn.selectboxit-enabled:active {*/
  /*color: #333333;*/
  /*background-color: #e6e6e6;*/
/*}*/

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
}

.selectboxit-default-arrow {
  /*width: 0;*/
  /*height: 0;*/
  /*border-top: 4px solid #000000;*/
  /*border-right: 4px solid transparent;*/
  /*border-left: 4px solid transparent;*/
  position: relative;
}
.selectboxit-default-arrow:before{
  	content: "\f107";
	font-family: FontAwesome;
	position: absolute;
	right: 0;
	margin-right: 7px;
	color: #dee5e8;
	font-size: 24px;
}

.selectboxit-list {
  background-color: #ffffff;
  border: none;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.selectboxit-list .selectboxit-option-anchor {
  color: #333333;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #ffffff;
  background-color: #373f89;
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}

.jq-checkbox {
	top: -1px;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;
	border: 1px solid #C3C3C3;
	border-radius: 3px;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
	cursor: pointer;
}
.jq-checkbox.checked .jq-checkbox__div {
	width: 12px;
	height: 12px;
	margin: 2px 0 0 2px;
	border-radius: 2px;
	background: #666;
	box-shadow: inset 0 -3px 6px #AAA;
}
.jq-checkbox.focused {
	border: 1px solid #08C;
}
.jq-checkbox.disabled {
	opacity: .55;
}


.jq-radio {
	top: -1px;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;
	border: 1px solid #C3C3C3;
	border-radius: 50%;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
	cursor: pointer;
}
.jq-radio.checked .jq-radio__div {
	width: 10px;
	height: 10px;
	margin: 3px 0 0 3px;
	border-radius: 50%;
	background: #777;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,.7);
}
.jq-radio.focused {
	border: 1px solid #08C;
}
.jq-radio.disabled {
	opacity: .55;
}


.jq-file {
	width: 270px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.jq-file input {
	height: auto;
	line-height: 1em;
	cursor: pointer;
}
.jq-file__name {
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
	height: 34px;
	padding: 0 80px 0 10px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #FFF;
	box-shadow: inset 1px 1px #F1F1F1;
	font: 14px/32px Arial, sans-serif;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.jq-file__browse {
	position: absolute;
	top: 1px;
	right: 1px;
	padding: 0 10px;
	border-left: 1px solid #CCC;
	border-radius: 0 4px 4px 0;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px/32px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
}
.jq-file:hover .jq-file__browse {
	background: #E6E6E6;
	background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
	background:         linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-file:active .jq-file__browse {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-file.focused .jq-file__name {
	border: 1px solid #5794BF;
}
.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}


.jq-number {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding: 0 36px 0 0;
}
.jq-number__field {
	width: 100px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
}
.jq-number__field:hover {
	border-color: #B3B3B3;
}
.jq-number__field input {
	box-sizing: border-box;
	width: 100%;
	padding: 8px 9px;
	border: none;
	outline: none;
	background: none;
	font: 14px Arial, sans-serif;
	color: #333;
	text-align: left; /* для Opera Presto */
	-moz-appearance: textfield;
}
.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
	margin: 0; /* в каких-то браузерах присутствует отступ */
	-webkit-appearance: none;
}
.jq-number__spin {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 14px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
.jq-number__spin.minus {
	top: auto;
	bottom: 0;
}
.jq-number__spin:hover {
	background: #E6E6E6;
	background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
	background:         linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-number__spin:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-number__spin:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 11px;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #999;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:after {
	top: 5px;
	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-bottom: none;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:hover:after {
	border-top-color: #000;
}
.jq-number__spin.plus:hover:after {
	border-bottom-color: #000;
}
.jq-number.focused .jq-number__field {
	border: 1px solid #5794BF;
}
.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-number.disabled .jq-number__spin:after {
	border-bottom-color: #AAA;
}
.jq-number.disabled .jq-number__spin.minus:after {
	border-top-color: #AAA;
}


.jq-selectbox {
	vertical-align: middle;
	cursor: pointer;
}
.jq-selectbox__select {
	height: 32px;
	padding: 0 45px 0 10px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px/32px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
}
.jq-selectbox__select:hover {
	background: #E6E6E6;
	background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
	background:         linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-selectbox__select:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-selectbox.focused .jq-selectbox__select {
	border: 1px solid #5794BF;
}
.jq-selectbox.disabled .jq-selectbox__select {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-selectbox__select-text {
	display: block;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.jq-selectbox .placeholder {
	color: #888;
}
.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 100%;
	border-left: 1px solid #CCC;
}
.jq-selectbox__trigger-arrow {
	position: absolute;
	top: 14px;
	right: 12px;
	width: 0;
	height: 0;
	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow {
	border-top-color: #000;
}
.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
	border-top-color: #AAA;
}
.jq-selectbox__dropdown {
	box-sizing: border-box;
	width: 100%;
	margin: 2px 0 0;
	padding: 0;
	border: 1px solid #CCC;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0 2px 10px rgba(0,0,0,.2);
	font: 14px/18px Arial, sans-serif;
}
.jq-selectbox__search {
	margin: 5px;
}
.jq-selectbox__search input {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 5px 27px 6px 8px;
	border: 1px solid #CCC;
	border-radius: 3px;
	outline: none;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
	box-shadow: inset 1px 1px #F1F1F1;
	color: #333;
	-webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
	-webkit-appearance: none;
}
.jq-selectbox__not-found {
	margin: 5px;
	padding: 5px 8px 6px;
	background: #F0F0F0;
	font-size: 13px;
}
.jq-selectbox ul {
	margin: 0;
	padding: 0;
}
.jq-selectbox li {
	min-height: 18px;
	padding: 5px 10px 6px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
	color: #231F20;
}
.jq-selectbox li.selected {
	background-color: #A3ABB1;
	color: #FFF;
}
.jq-selectbox li:hover {
	background-color: #08C;
	color: #FFF;
}
.jq-selectbox li.disabled {
	color: #AAA;
}
.jq-selectbox li.disabled:hover {
	background: none;
}
.jq-selectbox li.optgroup {
	font-weight: bold;
}
.jq-selectbox li.optgroup:hover {
	background: none;
	color: #231F20;
	cursor: default;
}
.jq-selectbox li.option {
	padding-left: 25px;
}


.jq-select-multiple {
	box-sizing: border-box;
	padding: 1px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #FFF;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px/18px Arial, sans-serif;
	color: #333;
	cursor: default;
}
.jq-select-multiple.focused {
	border: 1px solid #5794BF;
}
.jq-select-multiple.disabled {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-select-multiple ul {
	margin: 0;
	padding: 0;
}
.jq-select-multiple li {
	padding: 3px 9px 4px;
	list-style: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
}
.jq-select-multiple li:first-child {
	border-radius: 3px 3px 0 0;
}
.jq-select-multiple li:last-child {
	border-radius: 0 0 3px 3px;
}
.jq-select-multiple li.selected {
	background: #08C;
	color: #FFF;
}
.jq-select-multiple li.disabled {
	color: #AAA;
}
.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
	background: #CCC;
	color: #FFF;
}
.jq-select-multiple li.optgroup {
	font-weight: bold;
}
.jq-select-multiple li.option {
	padding-left: 25px;
}


input[type='email'].styler,
input[type='password'].styler,
input[type='search'].styler,
input[type='tel'].styler,
input[type='text'].styler,
input[type='url'].styler,
textarea.styler {
	padding: 8px 9px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
}
input[type='search'].styler {
	-webkit-appearance: none;
}
textarea.styler {
	overflow: auto;
}
input[type='email'].styler:hover,
input[type='password'].styler:hover,
input[type='search'].styler:hover,
input[type='tel'].styler:hover,
input[type='text'].styler:hover,
input[type='url'].styler:hover,
textarea.styler:hover {
	border-color: #B3B3B3;
}
input[type='email'].styler:focus,
input[type='password'].styler:focus,
input[type='search'].styler:focus,
input[type='tel'].styler:focus,
input[type='text'].styler:focus,
input[type='url'].styler:focus,
textarea.styler:focus {
	border-color: #CCC;
	border-top-color: #B3B3B3;
	outline: none;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
button.styler,
input[type='button'].styler,
input[type='submit'].styler,
input[type='reset'].styler {
	overflow: visible;
	padding: 8px 11px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	outline: none;
	background: #F5F5F5;
	background: -webkit-linear-gradient(#FFF, #E6E6E6);
	background:         linear-gradient(#FFF, #E6E6E6);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
button.styler::-moz-focus-inner,
input[type='button'].styler::-moz-focus-inner,
input[type='submit'].styler::-moz-focus-inner,
input[type='reset'].styler::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button.styler:not([disabled]):hover,
input[type='button'].styler:not([disabled]):hover,
input[type='submit'].styler:not([disabled]):hover,
input[type='reset'].styler:hover {
	background: #E6E6E6;
	background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
	background:         linear-gradient(#F6F6F6, #E6E6E6);
}
button.styler:not([disabled]):active,
input[type='button'].styler:not([disabled]):active,
input[type='submit'].styler:not([disabled]):active,
input[type='reset'].styler:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled] {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}

/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
  display: none !important; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu,
.mm-menu > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0; }

.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }
  .mm-panel.mm-opened {
    -webkit-transform: translate3d(0%, 0, 0);
    -moz-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0); }
  .mm-panel.mm-subopened {
    -webkit-transform: translate3d(-30%, 0, 0);
    -moz-transform: translate3d(-30%, 0, 0);
    -ms-transform: translate3d(-30%, 0, 0);
    -o-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0); }
  .mm-panel.mm-highest {
    z-index: 1; }

.mm-menu > .mm-panel {
  background: inherit;
  border-color: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px; }
  .mm-menu > .mm-panel.mm-hasnavbar {
    padding-top: 40px; }
  .mm-menu > .mm-panel:before, .mm-menu > .mm-panel:after {
    content: '';
    display: block;
    height: 20px; }

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important; }

.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px; }
  .mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,
  .mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
    border-color: transparent; }

.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block; }

.mm-vertical .mm-listview > li > .mm-next,
.mm-listview > li.mm-vertical > .mm-next {
  height: 40px;
  bottom: auto; }
  .mm-vertical .mm-listview > li > .mm-next:after,
  .mm-listview > li.mm-vertical > .mm-next:after {
    top: 16px;
    bottom: auto; }
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after,
.mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }
  .mm-navbar > * {
    display: block;
    padding: 10px 0; }
  .mm-navbar a,
  .mm-navbar a:hover {
    text-decoration: none; }
  .mm-navbar .mm-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  .mm-navbar .mm-btn {
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    z-index: 1; }
    .mm-navbar .mm-btn:first-child {
      padding-left: 20px;
      left: 0; }
    .mm-navbar .mm-btn:last-child {
      text-align: right;
      padding-right: 20px;
      right: 0; }

.mm-panel .mm-navbar {
  display: none; }
.mm-panel.mm-hasnavbar .mm-navbar {
  display: block; }

.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px; }
  .mm-listview a,
  .mm-listview a:hover {
    text-decoration: none; }
  .mm-listview > li {
    position: relative; }
    .mm-listview > li, .mm-listview > li:after,
    .mm-listview > li .mm-next,
    .mm-listview > li .mm-next:before {
      border-color: inherit; }
    .mm-listview > li > a,
    .mm-listview > li > span {
      /*text-overflow: ellipsis;*/
      /*white-space: nowrap;*/
      /*overflow: hidden;*/
      color: inherit;
      display: block;
      /*padding: 10px 10px 10px 20px;*/
      margin: 0; }
      .mm-listview > li > a.mm-arrow,
      .mm-listview > li > span.mm-arrow {
        padding-right: 50px; }
    /*.mm-listview > li:not(.mm-divider):after {*/
      /*content: '';*/
      /*border-bottom-width: 1px;*/
      /*border-bottom-style: solid;*/
      /*display: block;*/
      /*position: absolute;*/
      /*left: 0;*/
      /*right: 0;*/
      /*bottom: 0; }*/
    /*.mm-listview > li:not(.mm-divider):after {*/
      /*left: 20px; }*/
  .mm-listview .mm-next {
    background: rgba(3, 2, 1, 0);
    width: 50px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2; }
    .mm-listview .mm-next:before {
      content: '';
      border-left-width: 1px;
      border-left-style: solid;
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0; }
    .mm-listview .mm-next + a,
    .mm-listview .mm-next + span {
      margin-right: 50px; }
    .mm-listview .mm-next.mm-fullsubopen {
      width: 100%; }
      .mm-listview .mm-next.mm-fullsubopen:before {
        border-left: none; }
      .mm-listview .mm-next.mm-fullsubopen + a,
      .mm-listview .mm-next.mm-fullsubopen + span {
        padding-right: 50px;
        margin-right: 0; }

.mm-menu > .mm-panel > .mm-listview {
  margin: 20px -20px; }
.mm-menu > .mm-panel > .mm-listview:first-child,
.mm-menu > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listview .mm-inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0; }
  .mm-listview .mm-inset > li {
    padding: 5px 0; }

.mm-listview .mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px; }

.mm-listview .mm-spacer {
  padding-top: 40px; }
  .mm-listview .mm-spacer > .mm-next {
    top: 40px; }
  .mm-listview .mm-spacer.mm-divider {
    padding-top: 25px; }

.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px; }

.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 20px; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7); }
  .mm-menu .mm-navbar > *,
  .mm-menu .mm-navbar a {
    color: rgba(0, 0, 0, 0.3); }
  .mm-menu .mm-navbar .mm-btn:before, .mm-menu .mm-navbar .mm-btn:after {
    border-color: rgba(0, 0, 0, 0.3); }
  .mm-menu .mm-listview {
    border-color: rgba(0, 0, 0, 0.1); }
    .mm-menu .mm-listview > li .mm-next:after,
    .mm-menu .mm-listview > li .mm-arrow:after {
      border-color: rgba(0, 0, 0, 0.3); }
    .mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
    .mm-menu .mm-listview > li.mm-selected > span {
      background: rgba(255, 255, 255, 0.5); }
  .mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
  .mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
  .mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
  .mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
    background: rgba(0, 0, 0, 0.05); }
  .mm-menu .mm-divider {
    background: rgba(0, 0, 0, 0.05); }

/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease; }

html.mm-opened {
  overflow: hidden;
  position: relative; }
  html.mm-opened body {
    overflow: hidden; }

html.mm-background .mm-page {
  background: inherit; }

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999; }

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block; }

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed; }
.mm-menu.mm-current {
  display: block; }

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0); }

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0); } }
/*
	jQuery.mmenu autoHeight addon CSS
*/
.mm-menu.mm-top.mm-autoheight, .mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%; }
  .mm-menu.mm-top.mm-autoheight.mm-fullscreen, .mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
    max-height: 100%; }
.mm-menu.mm-measureheight > .mm-panel {
  bottom: auto !important;
  height: auto !important; }

/*
	jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%; }
  em.mm-counter + a.mm-next {
    width: 90px; }
    em.mm-counter + a.mm-next + a,
    em.mm-counter + a.mm-next + span {
      margin-right: 90px; }
  em.mm-counter + a.mm-fullsubopen {
    padding-left: 0; }

.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0; }
.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px; }

.mm-nosubresults > .mm-counter {
  display: none; }

.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

/*
	jQuery.mmenu dividers addon CSS
*/
.mm-divider > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px; }
.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.mm-collapsed:not(.mm-uncollapsed) {
  display: none; }

.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
  .mm-fixeddivider:after {
    content: none !important;
    display: none !important; }

.mm-hasdividers .mm-fixeddivider {
  display: block; }

.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05); }

/*
	jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s; }

/*
	jQuery.mmenu iconpanels addon CSS
*/
.mm-iconpanel .mm-panel {
  -webkit-transition-property: -webkit-transform, left, right;
  -moz-transition-property: -moz-transform, left, right;
  -ms-transition-property: -ms-transform, left, right;
  -o-transition-property: -o-transform, left, right;
  transition-property: transform, left, right; }
  .mm-iconpanel .mm-panel.mm-opened {
    border-left: 1px solid;
    border-color: inherit; }
  .mm-iconpanel .mm-panel.mm-subopened {
    overflow-y: hidden;
    left: -40px;
    right: 40px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.mm-iconpanel .mm-panel.mm-iconpanel-0 {
  left: 0px; }

.mm-iconpanel .mm-panel.mm-iconpanel-1 {
  left: 40px; }

.mm-iconpanel .mm-panel.mm-iconpanel-2 {
  left: 80px; }

.mm-iconpanel .mm-panel.mm-iconpanel-3 {
  left: 120px; }

.mm-iconpanel .mm-panel.mm-iconpanel-4 {
  left: 160px; }

.mm-iconpanel .mm-panel.mm-iconpanel-5 {
  left: 200px; }

.mm-iconpanel .mm-panel.mm-iconpanel-6 {
  left: 240px; }

.mm-subblocker {
  background: inherit;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease; }

.mm-subopened .mm-subblocker {
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -100000px;
  left: 0;
  z-index: 3; }

/*
	jQuery.mmenu navbars addon CSS
*/
.mm-menu > .mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-navbar-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom: none;
  top: auto;
  bottom: 0; }

.mm-navbar-top ~ .mm-navbar-top {
  border-bottom: none; }

.mm-navbar-bottom ~ .mm-navbar-bottom {
  border-top: none; }

.mm-navbar.mm-hasbtns {
  padding: 0 40px; }

.mm-close:after {
  content: 'x'; }

.mm-navbar[class*="mm-navbar-content-"] > * {
  box-sizing: border-box;
  display: block;
  float: left; }

.mm-navbar > .mm-breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px; }
  .mm-navbar > .mm-breadcrumbs > * {
    display: inline-block;
    padding: 10px 3px; }
  .mm-navbar > .mm-breadcrumbs > a {
    text-decoration: underline; }
.mm-navbar.mm-hasbtns .mm-breadcrumbs {
  margin-left: -40px; }
.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs {
  margin-left: 0;
  padding-left: 0; }

.mm-navbar-top-1 {
  top: 0px; }

.mm-hasnavbar-top-1 .mm-panel {
  top: 40px; }
.mm-hasnavbar-top-1 .mm-indexer {
  top: 50px; }
.mm-hasnavbar-top-1 .mm-fixeddivider {
  top: 40px; }

.mm-navbar-top-2 {
  top: 40px; }

.mm-hasnavbar-top-2 .mm-panel {
  top: 80px; }
.mm-hasnavbar-top-2 .mm-indexer {
  top: 90px; }
.mm-hasnavbar-top-2 .mm-fixeddivider {
  top: 80px; }

.mm-navbar-top-3 {
  top: 80px; }

.mm-hasnavbar-top-3 .mm-panel {
  top: 120px; }
.mm-hasnavbar-top-3 .mm-indexer {
  top: 130px; }
.mm-hasnavbar-top-3 .mm-fixeddivider {
  top: 120px; }

.mm-navbar-top-4 {
  top: 120px; }

.mm-hasnavbar-top-4 .mm-panel {
  top: 160px; }
.mm-hasnavbar-top-4 .mm-indexer {
  top: 170px; }
.mm-hasnavbar-top-4 .mm-fixeddivider {
  top: 160px; }

.mm-navbar-bottom-1 {
  bottom: 0px; }

.mm-hasnavbar-bottom-1 .mm-panel {
  bottom: 40px; }
.mm-hasnavbar-bottom-1 .mm-indexer {
  bottom: 50px; }

.mm-navbar-bottom-2 {
  bottom: 40px; }

.mm-hasnavbar-bottom-2 .mm-panel {
  bottom: 80px; }
.mm-hasnavbar-bottom-2 .mm-indexer {
  bottom: 90px; }

.mm-navbar-bottom-3 {
  bottom: 80px; }

.mm-hasnavbar-bottom-3 .mm-panel {
  bottom: 120px; }
.mm-hasnavbar-bottom-3 .mm-indexer {
  bottom: 130px; }

.mm-navbar-bottom-4 {
  bottom: 120px; }

.mm-hasnavbar-bottom-4 .mm-panel {
  bottom: 160px; }
.mm-hasnavbar-bottom-4 .mm-indexer {
  bottom: 170px; }

.mm-navbar-size-2 {
  height: 80px; }

.mm-navbar-size-3 {
  height: 120px; }

.mm-navbar-size-4 {
  height: 160px; }

.mm-navbar-content-2 > * {
  width: 50%; }

.mm-navbar-content-3 > * {
  width: 33.33%; }

.mm-navbar-content-4 > * {
  width: 25%; }

.mm-navbar-content-5 > * {
  width: 20%; }

.mm-navbar-content-6 > * {
  width: 16.67%; }

/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box; }

.mm-search {
  height: 40px;
  padding: 7px 10px 0 10px; }
  .mm-search input {
    border: none;
    border-radius: 26px;
    font: inherit;
    font-size: 14px;
    line-height: 26px;
    outline: none;
    display: block;
    width: 100%;
    height: 26px;
    margin: 0;
    padding: 0 10px; }
  .mm-search input::-ms-clear {
    display: none; }

.mm-panel > .mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }
.mm-panel.mm-hassearch {
  padding-top: 40px; }
  .mm-panel.mm-hassearch.mm-hasnavbar {
    padding-top: 80px; }
    .mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
      top: 40px; }

.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0; }

.mm-noresults .mm-noresultsmsg {
  display: block; }
.mm-noresults .mm-indexer {
  display: none !important; }

li.mm-nosubresults > a.mm-next {
  display: none; }
  li.mm-nosubresults > a.mm-next + a,
  li.mm-nosubresults > a.mm-next + span {
    padding-right: 10px; }

.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7); }
.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

/*
	jQuery.mmenu sectionIndexer addon CSS
*/
.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
  .mm-indexer a {
    text-decoration: none;
    display: block;
    height: 3.85%; }
  .mm-indexer ~ .mm-panel.mm-hasindexer {
    padding-right: 40px; }

.mm-hasindexer .mm-indexer {
  right: 0; }
.mm-hasindexer .mm-fixeddivider {
  right: 20px; }

.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3); }

/*
	jQuery.mmenu toggles addon CSS
*/
input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px; }

label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2; }
  label.mm-toggle:before,
  label.mm-check:before {
    content: '';
    display: block; }

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px; }
  label.mm-toggle:before {
    border-radius: 30px;
    width: 28px;
    height: 28px;
    margin: 1px; }

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right; }

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px; }
  label.mm-check:before {
    border-left: 3px solid;
    border-bottom: 3px solid;
    width: 40%;
    height: 20%;
    margin: 25% 0 0 20%;
    opacity: 0.1;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1; }

li.mm-vertical label.mm-toggle, li.mm-vertical label.mm-check {
  bottom: auto;
  margin-top: 0; }
li.mm-vertical label.mm-toggle {
  top: 5px; }
li.mm-vertical label.mm-check {
  top: 5px; }

label.mm-toggle, label.mm-check {
  right: 20px; }
label.mm-toggle + a,
label.mm-toggle + span {
  padding-right: 80px; }
label.mm-check + a,
label.mm-check + span {
  padding-right: 60px; }

a.mm-next + label.mm-toggle, a.mm-next + label.mm-check {
  right: 60px; }
  a.mm-next + label.mm-toggle + a,
  a.mm-next + label.mm-toggle + span, a.mm-next + label.mm-check + a,
  a.mm-next + label.mm-check + span {
    margin-right: 50px; }
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span {
  padding-right: 70px; }
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  padding-right: 50px; }

em.mm-counter + a.mm-next + label.mm-toggle, em.mm-counter + a.mm-next + label.mm-check {
  right: 100px; }
  em.mm-counter + a.mm-next + label.mm-toggle + a,
  em.mm-counter + a.mm-next + label.mm-toggle + span, em.mm-counter + a.mm-next + label.mm-check + a,
  em.mm-counter + a.mm-next + label.mm-check + span {
    margin-right: 90px; }

.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }
  .mm-menu label.mm-toggle:before {
    background: #f3f3f3; }
.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7); }

/*
	jQuery.mmenu borderstyle extension CSS
*/
.mm-menu.mm-border-none .mm-listview > li:after,
.mm-listview.mm-border-none > li:after {
  content: none; }

.mm-menu.mm-border-full .mm-listview > li:after,
.mm-listview.mm-border-full > li:after {
  left: 0 !important; }

/*
	jQuery.mmenu effects extension CSS
*/
html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease; }
html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }
html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0); }
html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center; }
html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0); }

html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease; }
html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }
html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0); }
html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0); }
html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0); }

html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease; }
html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
  opacity: 1; }

.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }
  .mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
    -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
    -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
    -o-transform: scale(1, 1) translate3d(0%, 0, 0);
    transform: scale(1, 1) translate3d(0%, 0, 0); }
    .mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
      -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
      -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
      -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
      -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
      transform: scale(0.7, 0.7) translate3d(-30%, 0, 0); }

.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(1) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms; }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(2) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms; }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(3) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms; }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(4) {
    -webkit-transition-delay: 400ms;
    -moz-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms; }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(5) {
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms; }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(6) {
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms; }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(7) {
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms; }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(8) {
    -webkit-transition-delay: 800ms;
    -moz-transition-delay: 800ms;
    -ms-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms; }
  html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(9) {
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms; }
html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview > li {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/*
	jQuery.mmenu fullscreen extension CSS
*/
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px; }

html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0); }

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }
@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0); } }
html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0); }

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }
@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0); } }
.mm-menu.mm-fullscreen.mm-top, .mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px; }

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important; }

/*
	jQuery.mmenu multiline extension CSS
*/
.mm-menu.mm-multiline .mm-listview > li > a,
.mm-menu.mm-multiline .mm-listview > li > span,
.mm-listview.mm-multiline > li
.mm-listview > li.mm-multiline > a,
.mm-listview.mm-multiline > li
.mm-listview > li.mm-multiline > span {
  text-overflow: clip;
  white-space: normal; }

/*
	jQuery.mmenu pageshadow extension CSS
*/
.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99; }
.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%; }
.mm-menu.mm-pageshadow.mm-next:after, .mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none; }

.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

/*
	jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%; }

.mm-menu.mm-right {
  left: auto;
  right: 0; }

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0; }

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0); }

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }
@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0); } }
/*
	jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important; }

.mm-menu.mm-front {
  z-index: 1; }

.mm-menu.mm-front, .mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }
  .mm-menu.mm-front.mm-right, .mm-menu.mm-next.mm-right {
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }
.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); }

html.mm-opening .mm-menu.mm-front, html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu.mm-top, .mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px; }

/*
	jQuery.mmenu themes extension CSS
*/
.mm-menu.mm-theme-dark {
  background: #333333;
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.8); }
  .mm-menu.mm-theme-dark .mm-navbar > *,
  .mm-menu.mm-theme-dark .mm-navbar a {
    color: rgba(255, 255, 255, 0.4); }
  .mm-menu.mm-theme-dark .mm-navbar .mm-btn:before, .mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
    border-color: rgba(255, 255, 255, 0.4); }
  .mm-menu.mm-theme-dark .mm-listview {
    border-color: rgba(0, 0, 0, 0.15); }
    .mm-menu.mm-theme-dark .mm-listview > li .mm-next:after,
    .mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after {
      border-color: rgba(255, 255, 255, 0.4); }
    .mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next),
    .mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
      background: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
  .mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
  .mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
  .mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
    background: rgba(255, 255, 255, 0.05); }
  .mm-menu.mm-theme-dark .mm-divider {
    background: rgba(255, 255, 255, 0.05); }

.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8); }

.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05); }

.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8); }
.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15); }
  .mm-menu.mm-theme-dark label.mm-toggle:before {
    background: #333333; }
.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu.mm-theme-white {
  background: white;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-theme-white .mm-navbar > *,
  .mm-menu.mm-theme-white .mm-navbar a {
    color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-theme-white .mm-navbar .mm-btn:before, .mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
    border-color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-theme-white .mm-listview {
    border-color: rgba(0, 0, 0, 0.1); }
    .mm-menu.mm-theme-white .mm-listview > li .mm-next:after,
    .mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after {
      border-color: rgba(0, 0, 0, 0.3); }
    .mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next),
    .mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
      background: rgba(0, 0, 0, 0.05); }
  .mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
  .mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
  .mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
  .mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
    background: rgba(0, 0, 0, 0.03); }
  .mm-menu.mm-theme-white .mm-divider {
    background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6); }
.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-theme-white label.mm-toggle:before {
    background: white; }
.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu.mm-theme-black {
  background: black;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6); }
  .mm-menu.mm-theme-black .mm-navbar > *,
  .mm-menu.mm-theme-black .mm-navbar a {
    color: rgba(255, 255, 255, 0.4); }
  .mm-menu.mm-theme-black .mm-navbar .mm-btn:before, .mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
    border-color: rgba(255, 255, 255, 0.4); }
  .mm-menu.mm-theme-black .mm-listview {
    border-color: rgba(255, 255, 255, 0.2); }
    .mm-menu.mm-theme-black .mm-listview > li .mm-next:after,
    .mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after {
      border-color: rgba(255, 255, 255, 0.4); }
    .mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next),
    .mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
      background: rgba(255, 255, 255, 0.3); }
  .mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
  .mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
  .mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
  .mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
    background: rgba(255, 255, 255, 0.2); }
  .mm-menu.mm-theme-black .mm-divider {
    background: rgba(255, 255, 255, 0.2); }

.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6); }

.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none; }

.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6); }
.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2); }
  .mm-menu.mm-theme-black label.mm-toggle:before {
    background: black; }
.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

/*
	jQuery.mmenu tileview extension CSS
*/
.mm-menu.mm-tileview .mm-listview:after,
.mm-menu .mm-tileview.mm-listview:after {
  content: '';
  display: block;
  clear: both; }
.mm-menu.mm-tileview .mm-listview > li,
.mm-menu .mm-tileview.mm-listview > li {
  width: 50%;
  height: 0;
  padding: 50% 0 0 0;
  float: left;
  position: relative; }
  .mm-menu.mm-tileview .mm-listview > li:after,
  .mm-menu .mm-tileview.mm-listview > li:after {
    left: 0;
    top: 0;
    border-right-width: 1px;
    border-right-style: solid;
    z-index: -1; }
  .mm-menu.mm-tileview .mm-listview > li.mm-tile-xs,
  .mm-menu .mm-tileview.mm-listview > li.mm-tile-xs {
    width: 12.5%;
    padding-top: 12.5%; }
  .mm-menu.mm-tileview .mm-listview > li.mm-tile-s,
  .mm-menu .mm-tileview.mm-listview > li.mm-tile-s {
    width: 25%;
    padding-top: 25%; }
  .mm-menu.mm-tileview .mm-listview > li.mm-tile-l,
  .mm-menu .mm-tileview.mm-listview > li.mm-tile-l {
    width: 75%;
    padding-top: 75%; }
  .mm-menu.mm-tileview .mm-listview > li.mm-tile-xl,
  .mm-menu .mm-tileview.mm-listview > li.mm-tile-xl {
    width: 100%;
    padding-top: 100%; }
  .mm-menu.mm-tileview .mm-listview > li > a,
  .mm-menu.mm-tileview .mm-listview > li > span,
  .mm-menu .mm-tileview.mm-listview > li > a,
  .mm-menu .mm-tileview.mm-listview > li > span {
    line-height: 1px;
    text-align: center;
    padding: 50% 10px 0 10px;
    margin: 0;
    position: absolute;
    top: 0;
    right: 1px;
    bottom: 1px;
    left: 0; }
  .mm-menu.mm-tileview .mm-listview > li > .mm-next,
  .mm-menu .mm-tileview.mm-listview > li > .mm-next {
    width: auto; }
    .mm-menu.mm-tileview .mm-listview > li > .mm-next:before, .mm-menu.mm-tileview .mm-listview > li > .mm-next:after,
    .mm-menu .mm-tileview.mm-listview > li > .mm-next:before,
    .mm-menu .mm-tileview.mm-listview > li > .mm-next:after {
      content: none;
      display: none; }
.mm-menu.mm-tileview .mm-panel {
  padding-left: 0;
  padding-right: 0; }
  .mm-menu.mm-tileview .mm-panel:after {
    content: none;
    display: none; }
.mm-menu.mm-tileview .mm-listview {
  margin: 0; }


.slider-container {
  width: 300px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.slider-container .back-bar {
  height: 10px;
  position: relative;
}
.slider-container .back-bar .selected-bar {
  position: absolute;
  height: 100%;
}
.slider-container .back-bar .pointer {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  cursor: col-resize;
  opacity: 1;
  z-index: 2;
}
.slider-container .back-bar .pointer.last-active {
  z-index: 3;
}
.slider-container .back-bar .pointer-label {
  position: absolute;
  top: -17px;
  font-size: 8px;
  background: white;
  white-space: nowrap;
  line-height: 1;
}
.slider-container .back-bar .focused {
  z-index: 10;
}
.slider-container .clickable-dummy {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider-container .scale {
	top: -12px;
  position: relative;
}
.slider-container .scale span {
  position: absolute;
  height: 5px;
  border-left: 1px solid #999;
  font-size: 0;
	top: 0;
}
.slider-container .scale ins {
  font-size: 9px;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: -12px;
  color: #999;
  line-height: 1;
}
.slider-container.slider-readonly .clickable-dummy,
.slider-container.slider-readonly .pointer {
  cursor: auto;
}
.theme-green .back-bar {
  height: 5px;
  border-radius: 2px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-green .back-bar .selected-bar {
  border-radius: 2px;
  background-color: #a1fad0;
  background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
  background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
  background-image: -o-linear-gradient(top, #bdfade, #76fabc);
  background-image: linear-gradient(to bottom, #bdfade, #76fabc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);
}
.theme-green .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #AAA;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-green .back-bar .pointer-label {
  color: #999;
}
.theme-green .back-bar .focused {
  color: #333;
}
.theme-green .scale span {
  border-left: 1px solid #e5e5e5;
}
.theme-green .scale ins {
  color: #999;
}
.theme-blue .back-bar {
  height: 5px;
  border-radius: 2px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-blue .back-bar .selected-bar {
  border-radius: 2px;
  background-color: #92c1f9;
  background-image: -moz-linear-gradient(top, #b1d1f9, #64a8f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b1d1f9), to(#64a8f9));
  background-image: -webkit-linear-gradient(top, #b1d1f9, #64a8f9);
  background-image: -o-linear-gradient(top, #b1d1f9, #64a8f9);
  background-image: linear-gradient(to bottom, #b1d1f9, #64a8f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d1f9', endColorstr='#ff64a8f9', GradientType=0);
}
.theme-blue .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #AAA;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-blue .back-bar .pointer-label {
  color: #999;
}
.theme-blue .back-bar .focused {
  color: #333;
}
.theme-blue .scale span {
  border-left: 1px solid #e5e5e5;
}
.theme-blue .scale ins {
  color: #999;
}

.theme-orange .back-bar {
	height: 5px;
	border-radius: 2px;
	background-color: #b0bfd4;
}
.theme-orange .back-bar .selected-bar {
	border-radius: 0;
	background-color: #f6851f;
}
.theme-orange .back-bar .pointer {
	width: 18px;
	height: 18px;
	top: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid #e4e7e9;
	background-color: #fff;
	-moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.theme-orange .back-bar .pointer-label {
	color: #999;
}
.theme-orange .back-bar .focused {
	color: #333;
}
.theme-orange .scale span {
	border-left: 1px solid #b9c6d8;
}
.theme-orange .scale ins {
	font-size: 10px;
	color: #b9c6d8;
}

.container-label{
	position: absolute;
	top: 36px;
}

.container-label .pointer-label{
	display: inline-block;
	background: #fff;
	overflow: hidden;
	width: 74px;
	color: #373e88;
}
.container-label .pointer-label.left{
	margin-left: 32px;
}
.container-label .pointer-label.right{
	margin-left: 53px;
}


/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('../../../img/fancybox/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('../../../img/fancybox/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('../../../img/fancybox/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('../../../img/fancybox/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('../../../img/fancybox/fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('../../../img/fancybox/fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}

#fancybox-thumbs {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 8050;
}

#fancybox-thumbs.bottom {
	bottom: 2px;
}

#fancybox-thumbs.top {
	top: 2px;
}

#fancybox-thumbs ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

#fancybox-thumbs ul li {
	float: left;
	padding: 1px;
	opacity: 0.5;
}

#fancybox-thumbs ul li.active {
	opacity: 0.75;
	padding: 0;
	border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
	opacity: 1;
}

#fancybox-thumbs ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #222;
	background: #111;
	outline: none;
}

#fancybox-thumbs ul li img {
	display: block;
	position: relative;
	border: 0;
	padding: 0;
	max-width: none;
}

* {
  margin: 0;
  padding: 0;
}
body {
  font-size: 14px;
  font-family: GillSans, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
}
a {
  text-decoration: none!important;
}
.btn:active {
  box-shadow: none;
}
iframe {
  max-width: 100%!important;
}
.padd {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .padd-left-sm {
    padding-left: 15px !Important;
  }
}
.no-padd {
  padding-left: 0;
  padding-right: 0;
}
.no-padd-right {
  padding-right: 0;
}
.no-padd-left {
  padding-left: 0;
}
.no-padd-bottom {
  padding-bottom: 0;
}
@media (min-width: 1300px) {
  .no-padd-lg {
    padding-left: 0;
    padding-right: 0;
  }
  .no-padd-right-lg {
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .no-padd-md {
    padding-left: 0;
    padding-right: 0;
  }
  .no-padd-right-md {
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .padd-right-sm {
    padding-right: 10px;
  }
  .no-padd-sm {
    padding-left: 0;
    padding-right: 0;
  }
  .no-padd-right-sm {
    padding-right: 0;
  }
  .no-padd-left-sm {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .padd-xs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .padd-right-xs {
    padding-right: 10px;
  }
  .padd-left-xs {
    padding-left: 10px;
  }
  .no-padd-xs {
    padding-left: 0;
    padding-right: 0;
  }
  .no-padd-right-xs {
    padding-right: 0;
  }
  .no-padd-left-xs {
    padding-left: 0;
  }
}
.spacer {
  margin-bottom: 10px;
}
.big-spacer {
  margin-bottom: 25px;
}
header .navbar {
  margin: 0;
  border: none;
  border-radius: 0;
}
.styler-checkbox.jq-checkbox {
  border-radius: 50%;
  box-shadow: none;
  background: transparent;
  border: 1px solid #cbd3e0;
  display: block;
  position: relative;
  overflow: hidden;
  float: left;
  top: 3px;
}
.styler-checkbox.jq-checkbox.checked {
  border: 1px solid #f68824;
}
.styler-checkbox.jq-checkbox.checked .jq-checkbox__div {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  box-shadow: none;
  background: #f68824;
  margin: 4px 0 0 4px;
}
.styler-checkbox.jq-checkbox.checked + span {
  color: #f68824;
}
.styler-checkbox.jq-checkbox.checked + span sup {
  color: #373e88;
}
.filters .filter-title {
  text-transform: uppercase;
  color: #50cebd;
  font-size: 24px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .filters .filter-title {
    padding-left: 15px;
  }
}
.filters .btn-box-filter {
  margin-bottom: 30px;
}
.filters .btn-box-filter .btn {
  display: block;
  color: #373e88;
  background: #fff;
  text-transform: uppercase;
  border-radius: 0;
  padding: 12px 12px;
}
.filters .btn-box-filter .btn.active {
  background: #f6851f;
  color: #fff;
  box-shadow: none;
}
@media (max-width: 767px) {
  .filters .btn-box-filter .btn {
    font-size: 12px;
  }
}
.filters .panel {
  border: none;
  border-radius: 0;
}
.filters .panel .panel-heading {
  background: #e3e6ec;
  border-radius: 0;
  color: #373e88;
  font-size: 16px;
}
.filters .panel .panel-heading.clickable {
  cursor: pointer;
}
.filters .panel .panel-heading span {
  font-size: 20px;
}
.filters .panel span.panel-title {
  font-size: 16px;
}
.filters .panel .glyphicon {
  border-radius: 50%;
  border: 1px solid;
  width: 15px;
  height: 15px;
  text-align: center;
  vertical-align: middle;
  top: -4px;
  padding: 0 2px;
}
.filters .panel .glyphicon:before {
  position: relative;
  top: -1px;
}
.filters .panel .panel-body li {
  padding-bottom: 5px;
}
.filters .panel .panel-body a {
  color: #373e88;
  font-weight: normal;
  font-size: 16px;
}
.filters .panel .panel-body a span {
  display: block;
  margin-left: 23px;
}
.filters .panel-choice .panel-heading {
  background: #f6851f;
  color: #fff;
  font-size: 16px;
}
.filters .panel-choice li span {
  color: #373e88;
  font-size: 16px;
}
.filters .panel-choice li i {
  vertical-align: middle;
  font-size: 19px;
  color: #f6851f;
}
.filters .panel-choice .btn.btn-filter {
  background: #2c365e;
  color: #fff;
  text-transform: uppercase;
  display: block;
  border-radius: 0;
  padding: 4px 12px;
  margin-top: 12px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .filters .panel-choice .btn.btn-filter {
    font-size: 13px;
  }
}
.filters .range-box {
  margin-bottom: 11px;
}
@media (max-width: 991px) {
  .filters .range-box {
    padding-left: 15px;
  }
}
.filters .range-box .cell {
  display: table-cell;
  vertical-align: middle;
}
.filters .range-box .cell-input {
  position: relative;
}
.filters .range-box .cell-input label {
  position: absolute;
  top: 50%;
  margin: -8px 0 0;
  left: 13px;
  font-size: 12px;
  line-height: 18px;
  color: #373e88;
  font-weight: normal;
}
.filters .range-box .cell-input input {
  padding-left: 31px;
}
.filters .range-box p {
  margin-bottom: 5px;
  color: #373e88;
}
.filters .range-box .payment-option {
  width: 50px;
  text-align: center;
}
.filters .range-box .payment-option a {
  display: block;
  color: #cfd9e7;
}
.filters .range-box .payment-option a.active {
  color: #373f89;
}
.filters .range-box .payment-option span {
  color: #b0bfd4;
  font-size: 18px;
}
.filters .range-box .form-control {
  border-radius: 0;
  border: none;
}
@media (max-width: 991px) {
  .filters .range-box .form-control {
    border: 1px solid #ccc;
  }
}
.filters .range-box .separator {
  padding: 0 5px;
}
.filters .range-box .filter-range {
  padding: 32px 0;
}
.filters .slider-range-box {
  position: relative;
}
#main-filters .mm-panel {
  padding: 0 0 0;
}
#main-filters .panel-body a {
  font-size: 14px;
}
#main-filters .panel-choice li a {
  float: left;
}
#main-filters .panel-choice li span {
  display: block;
  padding-left: 26px;
}
.sticky-btns {
  position: fixed;
  z-index: 15;
  right: -58px;
  bottom: 46px;
  transition: right .3s;
}
.sticky-btns.scrolled {
  right: -7px;
}
.sticky-btns span {
  display: block;
  float: left;
  width: 48px;
  height: 45px;
  text-align: center;
  font-size: 1.375em;
  color: #fff;
  background: #001850;
  opacity: 0.6;
  border-radius: 0;
  padding-top: 7px;
  margin: 0 7px;
  cursor: pointer;
  transition: background .3s;
}
.sticky-btns i.fa {
  padding-top: 4px;
}
.btn {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.btn:hover {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
#popup-repear .modal-header {
  border: none;
}
#popup-repear .modal-body {
  font-size: 20px;
  text-align: center;
}
#popup-repear .modal-dialog {
  margin: 200px auto;
}
@media (min-width: 1300px) {
  .business-card .container {
    width: 1250px;
  }
}
.business-card header {
  background: rgba(30, 39, 99, 0.9);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .business-card header {
    position: relative;
  }
}
.business-card header .navbar {
  margin: 0;
  border: none;
  border-radius: 0;
}
.business-card header .navbar-brand {
  height: auto;
  padding: 15px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card header .navbar-brand img {
    width: 146px;
  }
}
@media (max-width: 767px) {
  .business-card header .navbar-brand img {
    width: 115px;
  }
}
.business-card header .navbar-toggle {
  margin-top: 19px;
  margin-right: 0;
}
.business-card header .navbar-toggle .icon-bar {
  background: #fff;
}
.business-card header .navbar-right {
  padding-top: 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card header .navbar-right {
    padding-top: 11px;
  }
}
.business-card header .navbar-right li a {
  color: #fff;
  font-size: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.business-card header .navbar-right li a:hover,
.business-card header .navbar-right li a:focus,
.business-card header .navbar-right li a:active {
  background: transparent;
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card header .navbar-right li a {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.business-card header .navbar-right li .padd-right {
  padding-right: 43px;
}
@media (max-width: 767px) {
  .business-card header .navbar-right li .padd-right {
    padding-right: 15px;
  }
}
.business-card header .navbar-right small {
  font-size: 12px;
}
.business-card header .navbar-right .navbar-nav {
  float: none;
}
.business-card header .navbar-right .navbar-nav li {
  float: right;
}
.business-card header .language {
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
  text-align: right;
}
.business-card header .language ul li {
  display: inline-block;
  padding-left: 5px;
}
@media (max-width: 767px) {
  .business-card header .language ul li {
    padding-left: 3px;
  }
}
.business-card header .language ul li a {
  opacity: 0.5;
  display: block;
  border: 1px solid transparent;
}
.business-card header .language ul li a:hover {
  opacity: 1;
}
.business-card header .language ul li a.active {
  border: 1px solid #50cebc;
  opacity: 1;
}
.business-card header .fa-skype {
  font-size: 21px;
  vertical-align: middle;
}
.business-card header .fa-whatsapp {
  font-size: 21px;
  vertical-align: middle;
}
.business-card .img-box {
  position: relative;
}
.business-card .img-box img {
  width: 100%;
}
.business-card .block-services {
  background: #eff2f4;
  color: #373e88;
}
.business-card .block-services .bottom-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .business-card .block-services .bottom-label {
    padding-bottom: 6px;
  }
}
.business-card .block-services .bottom-label.green {
  background: rgba(80, 206, 189, 0.6);
}
.business-card .block-services .bottom-label.blue {
  background: rgba(31, 111, 182, 0.6);
}
.business-card .block-services .bottom-label.orange {
  background: rgba(246, 133, 31, 0.6);
}
.business-card .block-services .bottom-label .label {
  color: #fff;
  display: block;
  padding: 15px;
  font-size: 20px;
  border-radius: 0;
  font-weight: 300;
}
@media (min-width: 1300px) {
  .business-card .block-services .bottom-label .label {
    font-size: 23px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card .block-services .bottom-label .label {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .business-card .block-services .bottom-label .label {
    padding: 10px;
    font-size: 15px;
  }
}
.business-card .block-services .bottom-label .label.green {
  background: #50cebd;
}
.business-card .block-services .bottom-label .label.blue {
  background: #1f6fb6;
}
.business-card .block-services .bottom-label .label.orange {
  background: #f6851f;
}
.business-card .block-services .bottom-label img {
  width: 40px;
  padding-right: 10px;
}
.business-card .block-services ul.list li {
  position: relative;
  padding-left: 13px;
  padding-bottom: 5px;
}
.business-card .block-services ul.list li:before {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  font-size: 18px;
}
.business-card .block-services ul.list.green li:before {
  color: #F6851F;
}
.business-card .block-services ul.list.grey li:before {
  color: #1F6FB6;
}
.business-card .block-services .service-table {
  display: table;
  width: 100%;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .business-card .block-services .service-table {
    padding: 0;
  }
}
.business-card .block-services .cell-services {
  display: table-cell;
  border-left: 1px solid #cfd9e7;
  width: 33.33333333%;
  vertical-align: top;
}
.business-card .block-services .cell-services:first-child {
  border-left: none;
}
@media (max-width: 767px) {
  .business-card .block-services .cell-services {
    display: block;
    width: 100%;
    border-left: none;
  }
}
.business-card .accordion {
  height: 600px;
  overflow: hidden;
  position: relative;
}
.business-card .accordion:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}
@media (min-width: 1400px) {
  .business-card .accordion {
    height: 800px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .business-card .accordion {
    height: 650px;
  }
}
.business-card .accordion._create:after {
  display: none;
}
.business-card .accordion__ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 9999px;
  height: 600px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1400px) {
  .business-card .accordion__ul {
    height: 800px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .business-card .accordion__ul {
    height: 650px;
  }
}
.business-card .accordion__li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 600px;
  float: left;
  overflow: hidden;
  box-shadow: 0 0 10px 0 #000;
  transition: all 0.3s ease-out;
  position: relative;
  width: 1134px;
}
@media (min-width: 1400px) {
  .business-card .accordion__li {
    height: 800px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .business-card .accordion__li {
    height: 650px;
  }
}
.business-card .accordion__img {
  display: block;
  cursor: pointer;
}
.business-card .info-box {
  padding: 20px;
}
.business-card .info-box .cell {
  display: table-cell;
  vertical-align: top;
}
.business-card .info-box .cell-icon {
  padding: 0 20px 0 50px;
}
.business-card .info-box .cell-icon img {
  width: 50px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .business-card .info-box .cell-icon {
    padding: 0 9px 0 8px;
  }
}
@media (max-width: 767px) {
  .business-card .info-box .cell-icon {
    padding: 0 20px 0 0;
  }
}
.business-card .info-box h4 {
  padding-left: 14px;
  font-size: 22px;
  margin-bottom: 5px;
}
.business-card .info-box a {
  color: #373e88;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}
.business-card .info-box a.line-orange:before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #F6851F;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
}
.business-card .info-box a.line-orange:hover:before {
  width: 100%;
}
.business-card .info-box a.line-blue:before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #1F6FB6;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
}
.business-card .info-box a.line-blue:hover:before {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card .info-box a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .business-card .info-box a {
    font-size: 15px;
  }
}
.business-card .info-box .one-block {
  border-bottom: 1px solid #cfd9e7;
  padding-bottom: 20px;
}
.business-card .info-box .one-block + .one-block {
  padding-top: 20px;
}
.business-card .info-box .one-block:last-child {
  border-bottom: none;
}
.business-card .info-box .four-blocks .cell-icon {
  padding: 0 20px 0 0;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .business-card .info-box .four-blocks .cell-icon {
    padding: 0 3px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card .info-box .four-blocks .cell-icon {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .business-card .info-box .four-blocks .cell-icon {
    text-align: center;
    padding-bottom: 10px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .business-card .info-box .four-blocks .cell {
    display: block;
    text-align: center;
  }
}
.business-card .info-box .list-tourism li {
  border-bottom: 1px solid #cfd9e7;
  padding: 20px 0;
}
.business-card .info-box .list-tourism li:last-child {
  border-bottom: none;
}
.business-card .info-box .list-tourism .cell {
  vertical-align: middle;
}
.business-card .info-box .list-tourism .line-green .cell-txt span {
  position: relative;
}
.business-card .info-box .list-tourism .line-green .cell-txt span:before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #50cebd;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
}
.business-card .info-box .list-tourism .line-green:hover .cell-txt span:before {
  width: 100%;
}
.business-card .text-block {
  text-align: center;
  padding: 40px 0;
}
.business-card .text-block p {
  color: #373e88;
  font-size: 18px;
}
@media (max-width: 767px) {
  .business-card .text-block p {
    font-size: 14px;
  }
}
.business-card .banner-block img {
  width: 100%;
}
.business-card footer {
  color: #798ca7;
  font-size: 14px;
  padding: 13px 0 20px;
}
@media (max-width: 767px) {
  .business-card footer {
    padding: 0 0 20px;
  }
}
.business-card footer .footer-bottom {
  border-top: 1px solid #cfd9e7;
  padding: 15px 0;
}
.business-card footer .contact-info {
  padding: 15px 20px 15px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card footer .contact-info {
    padding: 15px 9px 15px 0;
  }
}
@media (max-width: 767px) {
  .business-card footer .contact-info {
    padding: 0px 9px 15px 0;
  }
}
.business-card footer .social {
  padding: 15px 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card footer .social {
    padding: 15px 30px;
  }
}
@media (max-width: 767px) {
  .business-card footer .social {
    float: none!important;
    text-align: center;
    padding: 15px 0;
  }
}
.business-card footer .social h4 {
  font-size: 18px;
}
.business-card footer .logo-hgk {
  padding: 35px 20px;
}
@media (max-width: 767px) {
  .business-card footer .logo-hgk {
    padding: 20px 0;
  }
}
.business-card footer .logo-footer {
  padding: 27px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .business-card footer .logo-footer img {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .business-card footer .logo-footer img {
    width: 119px;
  }
}
.business-card footer .development {
  text-align: right;
}
@media (max-width: 767px) {
  .business-card footer .development {
    text-align: left;
  }
}
.business-card footer .copyright {
  padding: 4px 0;
  text-align: right;
}
@media (max-width: 767px) {
  .business-card footer .copyright {
    text-align: left;
    padding-top: 15px;
  }
}
.business-card footer .txt p {
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .business-card .four-blocks .cell {
    display: block;
    text-align: center;
  }
}
.business-card .development {
  padding-top: 0;
}
.business-card .development .inner {
  display: inline-block;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 4px;
}
@media (max-width: 767px) {
  .business-card .development .inner {
    padding-left: 0;
  }
}
.business-card .development .inner span {
  display: inline-block;
  vertical-align: middle;
}
.business-card .development .inner .logo {
  padding-right: 5px;
}
.business-card .development .inner .logo-wizardry {
  padding-bottom: 3px;
}
.business-card .development .separatop {
  display: inline-block;
  color: #ccc;
  text-align: center;
  padding: 0 8px 0 5px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .business-card .development .separatop {
    display: none;
  }
}
.four-blocks {
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .four-blocks {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .four-blocks {
    font-size: 14px;
  }
}
.four-blocks .line-center {
  background: url("../../assets/img/line.png") repeat-y 50% 0;
  margin: 15px 0;
}
.four-blocks a {
  color: #373e88;
}
.four-blocks .cell-icon {
  padding: 0 20px 0 0;
}
.four-blocks .cell-icon img {
  width: 50px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .four-blocks .cell-icon {
    text-align: center;
    padding-bottom: 10px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .four-blocks .cell-icon {
    text-align: center;
    padding-bottom: 10px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .four-blocks .cell {
    display: block;
    text-align: center;
  }
}
.four-blocks .box-sale {
  padding-right: 15px;
}
.four-blocks .box-rent {
  padding-left: 15px;
}
.four-blocks .box-deal {
  margin-right: 15px;
  margin-top: -15px;
  padding-top: 15px;
  border-top: 1px solid #cfd9e7;
}
.four-blocks .box-service {
  margin-left: 15px;
  margin-top: -15px;
  padding-top: 15px;
  border-top: 1px solid #cfd9e7;
}
@media (min-width: 1300px) {
  .container {
    width: 1250px;
  }
}
@media (max-width: 767px) {
  header .navbar-brand {
    height: auto;
    padding: 15px 0;
  }
  header .navbar-brand img {
    width: 148px;
  }
}
header .navbar-toggle {
  margin-top: 26px;
  margin-right: 0;
}
header .navbar-toggle .icon-bar {
  background: #373e88;
}
header #top-search {
  display: inline-block;
  float: right;
  padding: 29px 15px;
  font-size: 18px;
  color: #373e88;
}
header #top-search-wrap {
  position: absolute;
  top: -65px;
  left: 0;
  width: 100%;
  height: 71px;
  background: #fff;
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 10;
  text-align: center;
}
header #top-search-wrap input[type="text"] {
  height: 40px;
  padding: 0 10px 0 10px;
  font-size: 18px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ecf0f2;
  color: rgba(51, 51, 51, 0.69);
  box-shadow: none;
  outline: none;
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}
header #top-search-wrap .input-group {
  position: relative;
  margin: 22px 0;
}
header #top-search-wrap .input-group:after {
  background: #50cebc;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  content: "";
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}
header #top-search-wrap .input-group.fg-toggled:after {
  width: 100%;
}
header #top-search-wrap #top-search-close {
  position: absolute;
  top: 0;
  font-size: 23px;
  font-style: normal;
  color: rgba(0, 0, 0, 0.38);
  width: 35px;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  right: -13px;
  z-index: 1;
}
header #top-search-wrap .btn-default {
  border: none;
  color: #50cebc;
}
header #top-search-wrap .btn-default:hover,
header #top-search-wrap .btn-default:active,
header #top-search-wrap .btn-default:focus {
  background: transparent;
  box-shadow: none;
  outline: none;
}
header.search-toggled #top-search-wrap {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media (max-width: 767px) {
  header #main-menu {
    border-top: 1px solid #e3e6ec;
  }
}
header #main-menu a {
  color: #798ca7;
}
header #main-menu .block-menu {
  float: left;
}
@media (min-width: 768px) and (max-width: 991px) {
  header #main-menu .block-menu {
    float: right;
  }
}
@media (max-width: 767px) {
  header #main-menu .block-menu {
    float: none;
  }
}
header #main-menu .pull-right-md {
  float: right;
}
header #main-menu .navbar-link {
  padding: 15px;
}
@media (max-width: 767px) {
  header #main-menu .navbar-link {
    text-align: right;
    padding: 0 15px;
  }
}
header #main-menu .navbar-link li {
  float: none;
  display: block;
  padding: 3px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  header #main-menu .navbar-link li {
    text-align: right;
  }
}
header #main-menu .navbar-link li a {
  text-transform: uppercase;
  padding: 0;
  display: inline-block;
  position: relative;
}
header #main-menu .navbar-link li a:hover,
header #main-menu .navbar-link li a:active,
header #main-menu .navbar-link li a:focus {
  background: transparent;
}
header #main-menu .navbar-link li a:before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #50cebc;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
}
header #main-menu .navbar-link li a:hover:before {
  width: 100%;
}
header #main-menu .navbar-phone {
  padding: 15px 13px 0;
  float: none;
}
header #main-menu .navbar-phone + .navbar-phone {
  padding-top: 0;
}
@media (min-width: 992px) and (max-width: 1299px) {
  header #main-menu .navbar-phone {
    padding: 15px 10px 0;
  }
}
@media (max-width: 767px) {
  header #main-menu .navbar-phone {
    padding: 0 13px 0;
  }
}
header #main-menu .navbar-phone li {
  float: right;
}
@media (max-width: 767px) {
  header #main-menu .navbar-phone li:first-child {
    padding-left: 10px;
  }
}
header #main-menu .navbar-phone li a {
  font-size: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
}
header #main-menu .navbar-phone li a:hover,
header #main-menu .navbar-phone li a:focus,
header #main-menu .navbar-phone li a:active {
  background: transparent;
}
@media (min-width: 768px) and (max-width: 991px) {
  header #main-menu .navbar-phone li a {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  header #main-menu .navbar-phone li a {
    padding: 4px 0;
  }
}
header #main-menu .navbar-phone li .padd-right {
  padding-right: 34px;
}
@media (max-width: 767px) {
  header #main-menu .navbar-phone li .padd-right {
    padding-right: 0;
  }
}
header #main-menu .navbar-phone .separator {
  position: relative;
}
header #main-menu .navbar-phone .separator:after {
  content: "/";
  position: absolute;
  right: -3px;
  top: 8px;
  font-size: 18px;
  color: #798ca7;
}
@media (min-width: 768px) and (max-width: 991px) {
  header #main-menu .navbar-phone .separator:after {
    top: 3px;
  }
}
@media (max-width: 767px) {
  header #main-menu .navbar-phone .separator:after {
    display: none;
  }
}
header #main-menu .navbar-phone small {
  font-size: 12px;
}
header #main-menu .navbar-phone .navbar-nav {
  float: none;
}
header #main-menu .navbar-phone .navbar-nav li {
  float: right;
}
header #main-menu .navbar-phone i.fa-skype {
  color: #1dc2ef;
  font-size: 20px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  header #main-menu .navbar-phone i.fa-skype {
    padding-left: 20px;
  }
}
header #main-menu .navbar-phone i.fa-whatsapp {
  color: #11a611;
  font-size: 21px;
  vertical-align: middle;
}
header #main-menu .language {
  width: 210px;
  margin-right: 0;
  padding-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  header #main-menu .language {
    padding-bottom: 20px;
    width: 483px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header #main-menu .language {
    padding-bottom: 20px;
  }
}
header #main-menu .language ul {
  padding-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  header #main-menu .language ul {
    text-align: right;
  }
}
@media (max-width: 767px) {
  header #main-menu .language ul {
    text-align: right;
  }
}
header #main-menu .language ul li {
  display: inline-block;
  padding-left: 5px;
}
@media (max-width: 767px) {
  header #main-menu .language ul li {
    padding-left: 0;
  }
}
header #main-menu .language ul li a {
  display: block;
  border: 1px solid transparent;
  opacity: 0.5;
}
header #main-menu .language ul li a.active {
  border: 1px solid #50cebc;
  opacity: 1;
}
header #main-menu .language .form-control {
  box-shadow: none;
  border: 1px solid #ecf0f2;
  border-right: none;
  border-radius: 0;
}
header #main-menu .language .btn-default {
  border-radius: 0;
  border: 1px solid #ecf0f2;
  border-left: none;
  padding: 0 12px;
  outline: none;
  height: 34px;
  line-height: 34px;
}
header #main-menu .language .btn-default:hover,
header #main-menu .language .btn-default:active,
header #main-menu .language .btn-default:focus {
  background: transparent;
}
header #main-menu .language .btn-default i.fa {
  color: #5bd1c1;
  font-size: 20px;
}
main .grey-bg {
  background: #eff2f4;
}
main .btn-orange {
  background: #f6851f;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 0;
  font-weight: 300;
  padding: 0 18px;
  height: 39px;
  line-height: 38px;
}
main .btn-orange:hover {
  color: #fff;
}
main .btn-orange i.fa {
  padding-left: 17px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .btn-orange {
    margin-top: 16px;
    font-size: 14px;
  }
}
main .title-section,
main h1 {
  font-size: 34px;
  text-transform: uppercase;
  color: #373e88;
  text-align: center;
  position: relative;
  margin: 40px 20px;
}
main .title-section:before,
main h1:before {
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #93a3b9;
}
@media (max-width: 767px) {
  main .title-section:before,
  main h1:before {
    top: 50%;
    margin-top: -1px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .title-section,
  main h1 {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  main .title-section,
  main h1 {
    font-size: 18px;
    margin: 27px 0;
  }
}
main .title-section span,
main h1 span {
  background: #eff2f4;
  padding: 0 20px;
  color: #373e88;
  z-index: 1;
  position: relative;
  display: inline-block;
}
main .title-section.mini-title,
main h1.mini-title {
  font-size: 24px;
}
main .two-column {
  column-gap: 30px;
  color: #798ca7;
  font-size: 16px;
  text-align: justify;
}
main .section-objects {
  padding-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects {
    padding-bottom: 20px;
  }
}
main .section-objects .img-box {
  position: relative;
  height: 350px;
  overflow: hidden;
}
@media (max-width: 991px) {
  main .section-objects .img-box {
    height: 300px;
  }
}
main .section-objects .img-box img {
  width: 100%;
  height: auto;
}
main .section-objects .img-box .price-label {
  position: absolute;
  bottom: 0;
  background: #2c365e;
  padding: 10px 60px;
  width: 300px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .img-box .price-label {
    padding: 4px 33px;
    width: 179px;
  }
}
@media (max-width: 767px) {
  main .section-objects .img-box .price-label {
    width: 100%;
  }
}
main .section-objects .img-box .price-label .name {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .img-box .price-label .name {
    font-size: 14px;
  }
}
main .section-objects .img-box .price-label .price {
  color: #f6851f;
  font-weight: bold;
  font-size: 28px;
  line-height: 25px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .img-box .price-label .price {
    font-size: 21px;
    line-height: 20px;
  }
}
main .section-objects .description {
  position: relative;
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .description {
    font-size: 15px;
  }
}
main .section-objects .description:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  font-size: 128px;
  color: #dee4e9;
  top: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .description:after {
    font-size: 95px;
  }
}
main .section-objects .description li {
  color: #373f89;
  font-weight: bold;
}
main .section-objects .description p {
  color: #798ca7;
  margin: 0;
  padding: 40px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .description p {
    padding: 2px 0;
  }
}
main .section-objects .row-right .price-label {
  right: 0;
}
main .section-objects .row-right .description {
  padding: 60px 140px 40px 69px;
}
main .section-objects .row-right .description:after {
  content: "\f100";
  right: 0;
  margin-right: 31px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .row-right .description:after {
    margin-right: 8px;
  }
}
@media (max-width: 767px) {
  main .section-objects .row-right .description:after {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .section-objects .row-right .description {
    padding: 0 140px 28px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .row-right .description {
    padding: 0px 76px 19px 0;
  }
}
@media (max-width: 767px) {
  main .section-objects .row-right .description {
    padding: 20px;
  }
}
main .section-objects .row-left .price-label {
  left: 0;
}
main .section-objects .row-left .description {
  padding: 60px 69px 40px 140px;
}
main .section-objects .row-left .description:after {
  content: "\f101";
  left: 0;
  margin-left: 31px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .row-left .description:after {
    margin-left: 8px;
  }
}
@media (max-width: 767px) {
  main .section-objects .row-left .description:after {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .section-objects .row-left .description {
    padding: 0 50px 28px 140px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-objects .row-left .description {
    padding: 0px 0  19px 76px;
  }
}
@media (max-width: 767px) {
  main .section-objects .row-left .description {
    padding: 20px;
  }
}
main .section-blognews .title-section {
  margin: 15px 0;
}
main .section-blognews img {
  display: block;
  max-width: 100%;
  height: auto;
}
main .box-news {
  margin-bottom: 30px;
  display: inline-block;
  width: 49%;
  vertical-align: top;
}
main .box-news .date {
  color: #798ca7;
  font-size: 16px;
  padding-bottom: 5px;
}
main .box-news .txt {
  font-size: 17px;
  font-weight: bold;
  font-family: PT Serif;
  line-height: 20px;
}
main .box-news .txt a {
  color: #2c365e;
}
main .box-blog {
  border-bottom: 1px solid #93a3b9;
  padding: 20px 0;
}
main .box-blog:first-child {
  padding-top: 0;
}
main .box-blog:last-child {
  border-bottom: none;
}
main .box-blog.no-padd-top {
  padding-top: 0;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .box-blog img {
    width: 228px;
  }
}
main .box-blog .cell {
  display: table-cell;
  vertical-align: top;
}
@media (max-width: 767px) {
  main .box-blog .cell {
    display: block;
  }
}
@media (max-width: 767px) {
  main .box-blog .img img {
    width: 100%;
  }
}
main .box-blog .date {
  width: 89px;
}
main .box-blog .date-inner {
  border-bottom: 2px solid #93a3b9;
  padding-bottom: 20px;
}
main .box-blog .date-inner span {
  display: block;
  font-size: 16px;
}
main .box-blog .date-inner .big {
  font-size: 40px;
  font-family: PT Serif;
  line-height: 39px;
}
main .box-blog .category {
  color: #50cebc;
  font-size: 16px;
}
main .box-blog .txt {
  padding: 0 0 0 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .box-blog .txt {
    padding: 0 0 0 15px;
  }
}
@media (max-width: 767px) {
  main .box-blog .txt {
    padding: 15px 0 0 0;
  }
}
main .box-blog h3 {
  color: #2c365e;
  font-family: PT Serif;
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .box-blog h3 {
    font-size: 18px;
    margin-bottom: 9px;
  }
}
main .box-blog h3 a {
  color: #2c365e;
}
main .box-blog p {
  color: #798ca7;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .box-blog p {
    font-size: 14px;
  }
}
main .box-blog .date-xs {
  color: #888888;
  font-size: 12px;
  text-align: right;
  padding-top: 6px;
}
main .box-recommend {
  margin-bottom: 15px;
}
main .box-recommend .cell {
  display: table-cell;
  vertical-align: top;
}
main .box-recommend img {
  width: 196px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .box-recommend img {
    width: 146px;
  }
}
main .box-recommend .content {
  border-bottom: 2px solid #93a3b9;
  color: #373f89;
  font-size: 16px;
}
main .box-recommend .content ul {
  padding: 5px 15px;
}
main .box-recommend .price {
  color: #f6851f;
  font-size: 20px;
  padding: 5px 15px;
}
main .box-recommend .price p {
  margin-bottom: 0;
}
main .btn-green {
  background: #50cebc;
  border-radius: 0;
  color: #fff;
  padding: 6px 19px;
  font-size: 16px;
  margin: 40px 0;
}
main .btn-green:hover {
  color: #fff;
}
main #main-carousel .owl-pagination,
main #main-carousel-2 .owl-pagination,
main #object-carousel .owl-pagination {
  z-index: 5;
  position: relative;
  bottom: -5px;
}
main #main-carousel .owl-controls .owl-prev,
main #main-carousel-2 .owl-controls .owl-prev,
main #object-carousel .owl-controls .owl-prev,
main #main-carousel .owl-controls .owl-next,
main #main-carousel-2 .owl-controls .owl-next,
main #object-carousel .owl-controls .owl-next {
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -58px;
  background-color: rgba(44, 54, 94, 0.4);
  padding: 3px 37px;
  border-radius: 0;
}
main #main-carousel .owl-controls .owl-prev:hover,
main #main-carousel-2 .owl-controls .owl-prev:hover,
main #object-carousel .owl-controls .owl-prev:hover,
main #main-carousel .owl-controls .owl-next:hover,
main #main-carousel-2 .owl-controls .owl-next:hover,
main #object-carousel .owl-controls .owl-next:hover {
  background-color: rgba(44, 54, 94, 0.6);
}
@media (max-width: 767px) {
  main #main-carousel .owl-controls .owl-prev,
  main #main-carousel-2 .owl-controls .owl-prev,
  main #object-carousel .owl-controls .owl-prev,
  main #main-carousel .owl-controls .owl-next,
  main #main-carousel-2 .owl-controls .owl-next,
  main #object-carousel .owl-controls .owl-next {
    display: none;
  }
}
main #main-carousel .owl-controls .owl-prev,
main #main-carousel-2 .owl-controls .owl-prev,
main #object-carousel .owl-controls .owl-prev {
  left: 0;
  font-size: 82px;
  margin-left: 0;
}
main #main-carousel .owl-controls .owl-prev i.fa,
main #main-carousel-2 .owl-controls .owl-prev i.fa,
main #object-carousel .owl-controls .owl-prev i.fa {
  margin-right: 14px;
}
main #main-carousel .owl-controls .owl-next,
main #main-carousel-2 .owl-controls .owl-next,
main #object-carousel .owl-controls .owl-next {
  right: 0;
  font-size: 82px;
  margin-right: 0;
}
main #main-carousel .owl-controls .owl-next i.fa,
main #main-carousel-2 .owl-controls .owl-next i.fa,
main #object-carousel .owl-controls .owl-next i.fa {
  margin-left: 14px;
}
main #main-carousel img,
main #main-carousel-2 img,
main #object-carousel img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  main #main-carousel img,
  main #main-carousel-2 img,
  main #object-carousel img {
    width: 200%;
  }
}
main #main-carousel .carousel-caption,
main #main-carousel-2 .carousel-caption,
main #object-carousel .carousel-caption {
  text-align: left;
  text-shadow: none;
  top: 0;
  right: 0!important;
  width: 360px;
  left: auto!important;
  padding: 40px 50px;
  background: rgba(44, 54, 94, 0.7);
  height: 100%;
  margin-right: 150px;
  color: #eaedf6;
}
@media (max-width: 767px) {
  main #main-carousel .carousel-caption,
  main #main-carousel-2 .carousel-caption,
  main #object-carousel .carousel-caption {
    left: 0!important;
    right: auto!important;
    width: 70%;
    padding: 10px 13px;
  }
}
main #main-carousel .carousel-caption span,
main #main-carousel-2 .carousel-caption span,
main #object-carousel .carousel-caption span {
  text-transform: uppercase;
  font-size: 30px;
}
@media (max-width: 767px) {
  main #main-carousel .carousel-caption span,
  main #main-carousel-2 .carousel-caption span,
  main #object-carousel .carousel-caption span {
    font-size: 19px;
  }
}
main #main-carousel .carousel-caption .price-box,
main #main-carousel-2 .carousel-caption .price-box,
main #object-carousel .carousel-caption .price-box {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  main #main-carousel .carousel-caption .price-box,
  main #main-carousel-2 .carousel-caption .price-box,
  main #object-carousel .carousel-caption .price-box {
    padding-bottom: 46px;
  }
}
main #main-carousel .carousel-caption .price,
main #main-carousel-2 .carousel-caption .price,
main #object-carousel .carousel-caption .price {
  color: #fc871d;
  font-size: 22px;
}
@media (max-width: 767px) {
  main #main-carousel .carousel-caption .price,
  main #main-carousel-2 .carousel-caption .price,
  main #object-carousel .carousel-caption .price {
    font-size: 17px;
  }
}
main #main-carousel .carousel-caption .txt,
main #main-carousel-2 .carousel-caption .txt,
main #object-carousel .carousel-caption .txt {
  font-size: 18px;
}
@media (max-width: 767px) {
  main #main-carousel .carousel-caption .txt,
  main #main-carousel-2 .carousel-caption .txt,
  main #object-carousel .carousel-caption .txt {
    font-size: 14px;
  }
}
main #main-carousel .carousel-caption .sub-title,
main #main-carousel-2 .carousel-caption .sub-title,
main #object-carousel .carousel-caption .sub-title {
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  main #main-carousel .carousel-caption .sub-title,
  main #main-carousel-2 .carousel-caption .sub-title,
  main #object-carousel .carousel-caption .sub-title {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
main #main-carousel .carousel-caption .btn-orange,
main #main-carousel-2 .carousel-caption .btn-orange,
main #object-carousel .carousel-caption .btn-orange {
  margin-top: 20px;
}
@media (max-width: 767px) {
  main #main-carousel .carousel-caption .btn-orange,
  main #main-carousel-2 .carousel-caption .btn-orange,
  main #object-carousel .carousel-caption .btn-orange {
    padding: 0 6px;
    font-size: 14px;
  }
}
main .our-services {
  background: #dee4e9;
  margin-top: 30px;
  padding: 0 15px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .our-services {
    padding: 0 15px 15px;
  }
}
main .our-services .cell {
  display: table-cell;
  vertical-align: top;
}
main .our-services .cell-icon {
  padding: 0 20px 0 12px;
}
main .our-services .cell-icon img {
  width: 50px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  main .our-services .cell-icon {
    padding: 0 9px 0 8px;
  }
}
@media (max-width: 767px) {
  main .our-services .cell-icon {
    padding: 0 20px 0 0;
  }
}
main .our-services .one-block {
  padding-top: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .our-services .one-block {
    border-left: 1px solid #cfd9e7;
  }
}
@media (max-width: 767px) {
  main .our-services .one-block {
    padding-bottom: 20px;
  }
}
main .our-services .one-block h4 {
  font-size: 22px;
  color: #373e88;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  main .our-services .four-blocks .cell {
    display: block;
    text-align: center;
  }
}
@media (max-width: 767px) {
  main .our-services .four-blocks .cell-icon {
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .our-services .four-blocks .box-sale {
    margin-right: 15px;
    margin-top: -15px;
    padding-top: 15px;
    border-top: 1px solid #cfd9e7;
  }
  main .our-services .four-blocks .box-rent {
    margin-left: 15px;
    margin-top: -15px;
    padding-top: 15px;
    border-top: 1px solid #cfd9e7;
  }
}
@media (max-width: 991px) {
  main .our-services .four-blocks .box-sale {
    margin-right: 15px;
    margin-top: -15px;
    padding-top: 15px;
    border-top: 1px solid #cfd9e7;
  }
  main .our-services .four-blocks .box-rent {
    margin-left: 15px;
    margin-top: -15px;
    padding-top: 15px;
    border-top: 1px solid #cfd9e7;
  }
}
main .our-services ul.list li {
  position: relative;
  padding-left: 13px;
  padding-bottom: 5px;
  padding-right: 20px;
}
main .our-services ul.list li:before {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  font-size: 18px;
}
main .our-services ul.list li a {
  color: #373e88;
  font-size: 16px;
}
main .our-services .btn-service {
  text-transform: uppercase;
  color: #373e88;
  font-size: 27px;
  white-space: normal;
  margin: 0 auto;
  display: block;
  padding: 31px 12px;
}
main .our-services .btn-service:hover {
  box-shadow: none;
}
@media (max-width: 767px) {
  main .our-services .btn-service {
    padding: 21px 0 0;
  }
}
main .our-services .btn-service span {
  display: inline-block;
  vertical-align: middle;
  line-height: 28px;
  padding-top: 10px;
}
main .our-services .btn-service i.fa {
  color: #d0d8e0;
  font-size: 114px;
  vertical-align: middle;
  padding-left: 7px;
}
@media (max-width: 767px) {
  main .our-services .btn-service i.fa {
    vertical-align: top;
    padding-left: 0;
    line-height: 68px;
  }
}
@media (max-width: 767px) {
  main .section-menu {
    margin-left: -15px;
    margin-right: -15px;
  }
}
main .section-menu .btn-group {
  height: 260px;
  vertical-align: top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-menu .btn-group {
    height: 156px;
  }
}
@media (max-width: 767px) {
  main .section-menu .btn-group {
    height: 100%;
    vertical-align: middle;
    display: block;
    width: 100%;
  }
}
main .section-menu .btn-group a {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  display: block;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  height: 100%;
  vertical-align: top;
  float: none;
  border: none;
  border-radius: 0;
  padding: 0;
  text-shadow: 1px 1px 1px #5a5a5a;
  white-space: normal;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (max-width: 767px) {
  main .section-menu .btn-group a {
    height: 85px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .section-menu .btn-group a {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-menu .btn-group a {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  main .section-menu .btn-group a {
    font-size: 17px;
  }
}
main .section-menu .btn-group a span {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 10px 15px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-menu .btn-group a span {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  main .section-menu .btn-group a span {
    padding-top: 18px;
  }
}
main .section-map .inner-box {
  position: relative;
  height: 586px;
}
main .section-map .inner-box:before {
  content: "";
  background: rgba(0, 0, 0, 0.15);
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .section-map .inner-box {
    height: 581px;
  }
}
main .section-map #map-canvas {
  height: 100%;
  margin: 0;
  padding: 0;
}
main .section-map .search-block {
  background: #eff2f4;
  width: 330px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
}
main .section-map .search-block .nav-tabs {
  border-bottom: 1px solid #cfd9e7;
}
main .section-map .search-block .nav-tabs a {
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  color: #cfd9e7;
  font-size: 16px;
  padding: 21px 15px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
main .section-map .search-block .nav-tabs a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
main .section-map .search-block .nav-tabs a:hover {
  background: transparent;
  border: none;
}
main .section-map .search-block .nav-tabs a:hover:before {
  left: 20px;
  right: 20px;
}
main .section-map .search-block .nav-tabs .active a {
  background: transparent;
  border: none;
}
main .section-map .search-block .nav-tabs .active a:before {
  height: 4px;
  left: 20px;
  right: 20px;
}
main .section-map .search-block .tab-content {
  padding: 50px 20px 70px;
}
main .section-map .search-block .tab-content h3 {
  text-transform: uppercase;
  color: #50cebd;
  font-size: 31px;
  margin-bottom: 30px;
}
main .section-map .search-block .selectboxit-container {
  margin-bottom: 22px;
  width: 100%!important;
}
main .section-map .search-block .selectboxit-container .selectboxit,
main .section-map .search-block .selectboxit-container .selectboxit-options {
  width: 100%!important;
}
main .section-map .search-block .selectboxit-container .realestate {
  padding-left: 36px;
  position: relative;
}
main .section-map .search-block .selectboxit-container .realestate:after {
  content: "\f015 ";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  margin-left: 15px;
  color: #dee5e8;
  font-size: 20px;
  text-align: center;
}
main .section-map .search-block .selectboxit-container .location {
  padding-left: 36px;
  position: relative;
}
main .section-map .search-block .selectboxit-container .location:after {
  content: "\f041 ";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  margin-left: 15px;
  color: #dee5e8;
  font-size: 20px;
  text-align: center;
}
main .section-map .search-block .range-box .cell {
  display: table-cell;
  vertical-align: middle;
}
main .section-map .search-block .range-box .cell-input {
  position: relative;
}
main .section-map .search-block .range-box .cell-input label {
  position: absolute;
  top: 50%;
  margin: -8px 0 0;
  left: 13px;
  font-size: 12px;
  line-height: 18px;
}
main .section-map .search-block .range-box .cell-input input {
  padding-left: 31px;
}
main .section-map .search-block .range-box p {
  margin-bottom: 5px;
}
main .section-map .search-block .range-box .payment-option {
  padding: 0 15px;
}
main .section-map .search-block .range-box .payment-option a {
  display: block;
  color: #cfd9e7;
}
main .section-map .search-block .range-box .payment-option a.active {
  color: #373f89;
}
main .section-map .search-block .range-box .form-control {
  border-radius: 0;
  border: none;
}
main .section-map .search-block .range-box .separator {
  padding: 0 5px;
}
main .section-map .search-block .btn-orange {
  display: block;
  margin: 40px 0 5px;
  padding: 0 18px;
}
main .section-map .search-block .btn-link {
  padding: 0;
  color: #00adef;
  text-decoration: underline !important;
  font-size: 16px;
}
main .section-map .search-block .btn-link:hover {
  text-decoration: none !important;
  box-shadow: none;
}
main .breadcrumb {
  background: transparent;
  padding: 16px 0 0 0;
  display: inline-block;
}
main .breadcrumb a {
  color: #50cebd;
  border-bottom: 1px solid;
  text-transform: unset;
}
main .breadcrumb a:hover {
  border-bottom: none;
}
main .breadcrumb li {
  font-size: 16px;
}
main .breadcrumb li.active {
  color: #A7A7AB;
}
main .breadcrumb li + li:before {
  content: "\f144";
  font-family: FontAwesome;
  color: #50cebd;
  font-size: 13px;
  padding: 0 11px;
}
main .bread-filter {
  display: inline-block;
  margin-left: 25px;
}
main .bread-filter li a {
  color: #373f89;
}
main .bread-filter li + li:before {
  content: "/";
  color: #50cebd;
  font-size: 13px;
  padding: 0 5px;
}
main .carousel-block {
  position: relative;
}
@media (max-width: 767px) {
  main .carousel-block #main-carousel .item img {
    width: 100%;
  }
}
main .mini-preview {
  padding-top: 20px;
  margin-right: -11px;
}
main .mini-preview a {
  margin-bottom: 10px;
  display: block;
  overflow: hidden;
  height: 44px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .mini-preview a {
    height: 104px;
  }
}
main .mini-preview img {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  width: 100%;
}
main .mini-preview img:hover {
  cursor: pointer;
  -webkit-transform: scale(2, 2);
  -ms-transform: scale(2, 2);
  transform: scale(2, 2);
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  box-shadow: 10px 10px 5px rgba(136, 136, 136, 0.8);
  z-index: 1;
  position: relative;
}
main .mini-preview .preview-img {
  padding: 0 5px;
  display: inline-block;
  vertical-align: top;
  float: none;
  margin-left: -4px;
}
@media (max-width: 767px) {
  main .mini-preview .preview-img {
    padding: 0;
  }
}
main .badges {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
main .badges:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}
main .badges .exclusive,
main .badges .new,
main .badges .hot,
main .badges .sold {
  display: block;
  float: none;
  color: #fff;
  padding: 0 20px 0 20px;
  font-size: 16px;
  position: relative;
  margin-bottom: 10px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 300;
  width: 155px;
  text-align: left;
  height: 32px;
  line-height: 32px;
}
@media (max-width: 767px) {
  main .badges .exclusive,
  main .badges .new,
  main .badges .hot,
  main .badges .sold {
    padding: 0 12px 0 15px;
    font-size: 13px;
    width: 106px;
  }
}
main .badges .hot {
  padding: 2px 20px 2px 17px;
  line-height: 14px;
  font-size: 15px;
}
@media (max-width: 767px) {
  main .badges .hot {
    padding: 2px 20px 2px 15px;
    line-height: 12px;
    font-size: 11px;
  }
}
main .badges .exclusive {
  background: #ce50c4;
}
main .badges .new {
  background: #50cebd;
}
main .badges .hot {
  background: #f6851f;
}
main .badges .sold {
  background: #8a0816;
}
main .object-description {
  margin-bottom: 20px;
}
main .object-description #map-canvas {
  height: 479px;
}
main .object-description .description h4 {
  font-size: 22px;
  color: #373f89;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 31px;
}
main .object-description .description .numb {
  font-size: 22px;
  color: #373f89;
}
main .object-description .description p {
  color: #798ca7;
  font-size: 18px;
}
main .object-description .description ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
  margin-left: 15px;
}
main .object-description .description ul li {
  color: #798ca7;
  padding-bottom: 5px;
}
main .object-description .features {
  background: #fff;
  padding: 30px 20px;
}
main .object-description .features .column ul {
  -webkit-column-width: 200px;
  -moz-column-width: 200px;
  column-width: 200px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .object-description .features .column ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
main .object-description .features li {
  position: relative;
  padding-left: 25px;
}
main .object-description .features li:before {
  position: absolute;
  left: 0;
  background: url("../../assets/img/plus-icon.png") no-repeat center;
  background-size: 100%;
  width: 19px;
  height: 19px;
  top: 5px;
}
main .object-description .features li a,
main .object-description .features li span {
  color: #373f89;
  font-size: 20px;
  font-weight: normal;
  padding: 3px 0;
  display: block;
  line-height: 24px;
}
main .object-description .features-2 {
  background: #fff;
  padding: 30px 20px;
}
main .object-description .features-2 .column .with-icons {
  margin-bottom: 20px;
}
main .object-description .features-2 .column .with-icons li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 10px 0 10px 29px;
  margin-right: 31px;
}
main .object-description .features-2 .column .with-icons i.fa {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -17px;
  font-size: 26px;
  color: #f6851f;
  text-align: center;
}
main .object-description .features-2 .column .with-icons .num {
  font-size: 16px;
  padding-left: 14px;
  color: #373f89;
}
main .object-description .features-2 .column .text {
  -webkit-column-width: 200px;
  -moz-column-width: 200px;
  column-width: 200px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .object-description .features-2 .column .text {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
main .object-description .features-2 .column .text li {
  position: relative;
}
main .object-description .features-2 .column .text li a,
main .object-description .features-2 .column .text li span {
  color: #373f89;
  font-size: 16px;
  font-weight: normal;
  padding: 3px 0;
  display: block;
  line-height: 22px;
}
main .page-nav {
  background: #fff;
  padding: 8px 12px;
  margin-bottom: 30px;
}
main .page-nav span {
  font-size: 16px;
  color: #50cebd;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  padding: 3px 10px 0;
}
main .page-nav .icon {
  background: #e3e6ec;
  display: inline-block;
  vertical-align: middle;
  padding: 3px 0;
}
main .page-nav .icon i.fa {
  color: #3e458c;
  vertical-align: middle;
  padding: 1px 7px;
  font-size: 18px;
}
main .object-image {
  padding-bottom: 40px;
}
main .object-image .print-icon a {
  color: #2c365e;
  font-size: 16px;
  padding-bottom: 10px;
  display: inline-block;
}
main .object-image .carousel-block #object-carousel {
  height: 430px;
}
main .object-image .carousel-block #object-carousel .owl-item {
  height: 430px;
  overflow: hidden;
}
main .object-image .carousel-block #object-carousel .owl-item > div {
  height: 430px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  main .object-image .carousel-block #object-carousel .owl-item {
    height: auto;
  }
}
main .object-image .carousel-block #object-carousel .owl-item img {
  display: inline-block;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 100%;
}
@media (max-width: 991px) {
  main .object-image .carousel-block #object-carousel .owl-item img {
    position: absolute;
    min-width: 100%;
    max-width: none;
    height: 100%;
    width: auto;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}
main .object-image .carousel-block #object-carousel .owl-controls {
  margin-top: 0;
}
main .object-image .object-bg {
  background: #e3e6ec;
  padding: 0;
}
main .info-object li {
  text-align: center;
  padding: 9px 0;
}
main .info-object li span {
  display: block;
}
main .info-object .dark-box {
  background: #2c365e;
}
main .info-object .dark-box li {
  color: #fff;
  font-size: 18px;
  border-bottom: 1px solid #93a3b9;
}
main .info-object .dark-box li:last-child {
  border-bottom: none;
}
main .info-object .dark-box li .price {
  color: #f6851f;
}
main .info-object .dark-box li .font-24 {
  font-size: 24px;
}
main .info-object .light-box {
  background: #e3e6ec;
}
main .info-object .light-box li {
  color: #373e88;
  font-size: 14px;
  border-bottom: 1px solid #93a3b9;
}
main .info-object .light-box li:last-child {
  border-bottom: none;
}
main .info-object .light-box li .units {
  font-size: 26px;
  font-weight: bold;
}
main .info-object .btn-application {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  background: #f6851f;
  display: block;
  border-radius: 0;
  padding: 12px 12px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .info-object .btn-application {
    font-size: 13px;
  }
}
main .info-object .btn-application i.fa {
  padding-left: 5px;
}
main .benefits {
  background: #cedcf9;
  padding: 20px 0;
}
@media (max-width: 991px) {
  main .benefits {
    margin-top: 30px;
  }
}
main .benefits h4 {
  text-transform: uppercase;
  font-size: 24px;
  color: #373e88;
}
main .benefits .cell-header {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
}
main .benefits ul {
  padding: 20px 30px 0 30px;
}
@media (max-width: 767px) {
  main .benefits ul {
    padding: 20px 18px 0 16px;
  }
}
main .benefits li {
  padding-bottom: 11px;
}
main .benefits li a {
  display: block;
  color: #373e88;
  font-size: 16px;
}
main .benefits li .cell {
  display: table-cell;
  vertical-align: middle;
  line-height: 15px;
}
main .benefits li .cell.cell-icon {
  width: 36px;
}
main .benefits li .cell span {
  position: relative;
  padding-left: 5px;
  display: block;
}
main .benefits li .cell span:before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
main .benefits li i.fa {
  background: #50cebd;
  border-radius: 50%;
  color: #fff;
  padding: 4px;
  font-size: 16px;
  width: 26px;
  height: 26px;
  text-align: center;
  vertical-align: middle;
}
main .consul-block {
  margin-bottom: 35px;
}
main .consul-block .consult .img-circle {
  border: 1px solid #cfd7e2;
  width: 125px;
}
@media (max-width: 767px) {
  main .consul-block .consult .img-circle {
    width: 84px;
  }
}
main .consul-block .consult .cell {
  display: table-cell;
  vertical-align: top;
}
main .consul-block .consult .cell.cell-txt {
  padding-left: 30px;
  position: relative;
  padding-bottom: 30px;
  width: 66%;
}
main .consul-block .consult p {
  color: #93a3b9;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 17px;
}
main .consul-block .consult .name {
  font-size: 24px;
  color: #373e88;
  line-height: 25px;
  margin-bottom: 13px;
}
main .consul-block .consult .flags-lang {
  position: absolute;
  bottom: 0;
}
main .consul-block .consult .flags-lang li {
  display: inline-block;
  padding-right: 5px;
}
@media (max-width: 767px) {
  main .consul-block .consult .flags-lang {
    position: relative;
  }
}
main .consul-block .form-box {
  background: #e3e6ec;
  padding: 25px 30px;
  margin-top: 13px;
}
@media (max-width: 767px) {
  main .consul-block .form-box {
    padding: 25px 0;
  }
}
main .consul-block .form-box .form-control {
  border: 1px solid #c6cfdd;
  border-radius: 2px;
  color: #93a3b9;
}
main .consul-block .form-box span {
  color: #373e88;
  font-size: 16px;
  display: inline-block;
  padding-top: 4px;
}
main .consul-block .form-box .note {
  color: #93a3b9;
  font-size: 16px;
  display: block;
  padding-top: 0;
  padding-left: 35px;
  line-height: 19px;
}
@media (max-width: 767px) {
  main .consul-block .form-box .note {
    padding-left: 0;
    padding-top: 15px;
  }
}
main .consul-block .form-box .cell {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  main .consul-block .form-box .cell {
    display: block;
  }
}
@media (max-width: 767px) {
  main .consul-block .form-box .btn-orange {
    padding: 0 11px;
  }
}
main .large-carousel #main-carousel .carousel-caption {
  padding: 26px 50px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  main .large-carousel #main-carousel .carousel-caption {
    left: 0!important;
    right: auto!important;
    margin-left: 150px;
  }
}
@media (max-width: 767px) {
  main .large-carousel #main-carousel .carousel-caption {
    padding: 13px 10px;
  }
}
main .large-carousel #main-carousel .carousel-caption .price-box {
  padding-bottom: 27px;
}
main .large-carousel #main-carousel .carousel-caption .btn-orange {
  margin-top: 11px;
}
@media (max-width: 767px) {
  main .large-carousel #main-carousel img {
    width: 400%;
  }
}
main .sort-box {
  background: #fff;
  padding: 0 15px;
  margin-bottom: 30px;
  height: 46px;
  line-height: 40px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .sort-box {
    padding: 0 13px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .sort-box {
    padding: 0 9px;
  }
}
@media (max-width: 767px) {
  main .sort-box {
    padding: 5px 10px 0;
    height: auto;
  }
}
main .sort-box .title {
  text-transform: uppercase;
  color: #50cebd;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
  height: 32px;
  line-height: 34px;
}
main .sort-box .select-list {
  background: #e3e6ec;
  text-transform: uppercase;
  color: #3b428a!important;
  width: 200px!important;
  margin-top: 3px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .sort-box .select-list {
    width: 160px!important;
  }
}
@media (max-width: 767px) {
  main .sort-box .select-list {
    width: 178px!important;
    vertical-align: top;
    margin-top: 0;
  }
}
main .sort-box .select-list span,
main .sort-box .select-list .selectboxit-options a {
  height: 32px;
  line-height: 32px;
  max-width: 120px!important;
}
main .sort-box .select-list .selectboxit-arrow {
  margin-top: -8px;
  margin-right: 3px;
}
main .sort-box .select-list .selectboxit-default-arrow:before {
  content: "\f13a";
  color: #3b428a;
  font-size: 15px;
}
main .sort-box .selectboxit-options {
  width: 100%!important;
  min-width: 100%!important;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
main .sort-box .nav-dropdown > li > a {
  padding: 0 15px;
  color: #3b428a;
  display: block;
  height: 32px;
  line-height: 32px;
}
main .sort-box .nav-dropdown > li > a i.fa {
  float: right;
  color: #3b428a;
  font-size: 15px;
  position: relative;
  top: 50%;
  margin-top: -8px;
}
main .sort-box .nav-dropdown > li > a:hover {
  color: #fff;
  background: #3b428a;
}
main .sort-box .nav-dropdown > li > a:hover i.fa {
  color: #fff;
}
main .sort-box .nav-dropdown .dropdown-menu {
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 0;
}
main .sort-box .nav-dropdown .dropdown-menu a {
  padding: 10px 15px;
  text-transform: none;
  font-size: 16px;
}
main .sort-box .nav-dropdown .dropdown-menu a:hover {
  background: #3b428a;
  color: #fff;
}
main .sort-box .nav-dropdown .open > a {
  background: #3b428a;
  color: #fff;
}
main .sort-box .nav-dropdown .open > a:hover,
main .sort-box .nav-dropdown .open > a:focus,
main .sort-box .nav-dropdown .open > a:active {
  background: #3b428a;
  color: #fff;
}
main .sort-box .btn-filter {
  color: #373e88;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
  background: #e3e6ec;
  padding: 2px 11px;
  height: 32px;
  line-height: 30px;
}
@media (max-width: 767px) {
  main .sort-box .btn-filter {
    vertical-align: top;
  }
}
main .sort-box .btn-filter i.fa {
  font-size: 20px;
  text-align: center;
  margin-left: 0;
  padding-right: 5px;
}
main .sort-box .btn-filter.active,
main .sort-box .btn-filter:hover {
  color: #fff;
  background: #50cebd;
}
main .sort-box .btn-filter.active i.fa,
main .sort-box .btn-filter:hover i.fa {
  color: #fff;
}
main .sort-box .view-type {
  text-align: right;
}
@media (max-width: 767px) {
  main .sort-box .view-type {
    text-align: left;
    padding-top: 15px;
  }
}
main .sort-box .view-type .view-links {
  display: inline-block;
  padding-left: 10px;
}
main .sort-box .view-type .view-links a {
  display: inline-block;
  color: #373e88;
}
main .sort-box .view-type .view-links a i.fa {
  background: #e3e6ec;
  padding: 5px;
  font-size: 20px;
  width: 30px;
  text-align: center;
  margin-left: 5px;
}
main .sort-box .view-type .view-links a.active,
main .sort-box .view-type .view-links a:hover {
  color: #fff;
}
main .sort-box .view-type .view-links a.active i.fa,
main .sort-box .view-type .view-links a:hover i.fa {
  background: #50cebd;
  color: #fff;
}
main .filter-object .object-box {
  position: relative;
  margin-bottom: 20px;
  height: 294px;
  overflow: hidden;
}
main .filter-object .object-box img {
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: none;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
main .filter-object .object-box a:hover img {
  -webkit-transform: scale(2.05, 2.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(2.05, 2.05);
}
main .filter-object .object-box .caption-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: table;
}
main .filter-object .object-box .param {
  display: table-cell;
  vertical-align: top;
  padding: 6px 32px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .filter-object .object-box .param {
    padding: 6px 17px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .filter-object .object-box .param {
    padding: 6px 11px;
  }
}
@media (max-width: 767px) {
  main .filter-object .object-box .param {
    padding: 6px 6px;
  }
}
main .filter-object .object-box .param li {
  color: #373f89;
  font-size: 16px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .filter-object .object-box .param li {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  main .filter-object .object-box .param li {
    font-size: 12px;
  }
}
main .filter-object .object-box .price {
  font-size: 22px;
  color: #f6851f;
  background: #2c365e;
  display: table-cell;
  padding: 7px 10px 7px 27px;
  vertical-align: middle;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .filter-object .object-box .price {
    font-size: 20px;
    padding: 7px 10px 7px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .filter-object .object-box .price {
    padding: 7px 10px 7px 17px;
  }
}
@media (max-width: 767px) {
  main .filter-object .object-box .price {
    padding: 7px 10px 7px 16px;
    font-size: 17px;
  }
}
main .filter-object .object-box .price span {
  display: block;
}
main .filter-object .object-box .price .numb {
  color: #fff;
  font-size: 16px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .filter-object .object-box .price .numb {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  main .filter-object .object-box .price .numb {
    font-size: 13px;
  }
}
main .filter-object .pagination-box {
  float: right;
}
@media (max-width: 767px) {
  main .filter-object .pagination-box {
    text-align: center;
    float: none;
  }
}
main .filter-object .pagination {
  margin: 37px 0;
}
main .filter-object .pagination li a,
main .filter-object .pagination li span {
  border: none;
  background: #c5cedc;
  color: #2c365e;
  margin: 0 7px;
  font-size: 18px;
  padding: 4px 12px;
}
main .filter-object .pagination li a:hover,
main .filter-object .pagination li span:hover,
main .filter-object .pagination li a.active,
main .filter-object .pagination li span.active,
main .filter-object .pagination li a.cur,
main .filter-object .pagination li span.cur,
main .filter-object .pagination li a:focus,
main .filter-object .pagination li span:focus {
  background: #50cebd;
  color: #fff;
}
@media (max-width: 767px) {
  main .filter-object .pagination li a,
  main .filter-object .pagination li span {
    margin: 0 0;
  }
}
main .filter-object .pagination li .btn-prev,
main .filter-object .pagination li .btn-next {
  background: transparent;
  padding: 6px 12px;
}
main .filter-object .pagination li .btn-prev:hover,
main .filter-object .pagination li .btn-next:hover,
main .filter-object .pagination li .btn-prev.active,
main .filter-object .pagination li .btn-next.active,
main .filter-object .pagination li .btn-prev.cur,
main .filter-object .pagination li .btn-next.cur,
main .filter-object .pagination li .btn-prev:focus,
main .filter-object .pagination li .btn-next:focus {
  background: transparent;
  color: #2c365e;
}
main .filter-object .pager {
  margin-top: 0;
}
main .filter-object .pager li a {
  border-radius: 0;
  border: none;
  background: #c5cedc;
  color: #2c365e;
}
main .filter-object .pager li a:hover,
main .filter-object .pager li a.active,
main .filter-object .pager li a:focus {
  background: #50cebd;
  color: #fff;
}
main .filter-object .center-xs {
  float: left;
}
@media (max-width: 767px) {
  main .filter-object .center-xs {
    text-align: center;
    float: none;
  }
}
main .article-block {
  background: #e3e6ec;
  padding: 30px 0;
}
main .article-block h2,
main .article-block h3 {
  color: #2c365e;
  font-size: 22px;
  margin-bottom: 20px;
}
main .article-block p {
  color: #798ca7;
  font-size: 16px;
  margin-bottom: 0;
}
main .article-block ul {
  list-style: disc;
  margin-left: 16px;
}
main .article-block ul li {
  color: #798ca7;
  font-size: 10px;
}
main .article-block ul li span {
  font-size: 16px;
}
main .contact-block {
  background: #fff;
}
main .contact-block .form-box {
  margin-top: 0;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .contact-block .form-box {
    padding: 25px 13px;
  }
}
main .contact-block .form-box .cell {
  display: block;
}
main .contact-block .form-box .note {
  padding-left: 0;
  padding-top: 15px;
}
main .contact-block .social {
  padding: 15px 30px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .contact-block .social {
    padding: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .contact-block .social {
    padding: 15px 0 15px 31px;
  }
}
main .contact-block .social li {
  display: inline-block;
  padding-right: 10px;
  vertical-align: top;
}
main .contact-block .social li i.fa {
  font-size: 32px;
  color: #50cebd;
}
main .contact-block .social li i.fa-vk {
  background: #50cebd;
  color: #fff;
  border-radius: 5px;
  font-size: 21px;
  padding: 3px;
  margin-top: 2px;
}
main .contact-map {
  height: 400px;
  padding-bottom: 40px;
}
main .contact-map #map-canvas {
  height: 100%;
}
main .contact-info {
  display: table;
  width: 100%;
}
main .contact-info .row-table {
  display: table-row;
}
main .contact-info .cell {
  display: table-cell;
  vertical-align: top;
  padding: 15px 30px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .contact-info .cell {
    padding: 15px 15px;
  }
}
@media (max-width: 767px) {
  main .contact-info .cell {
    display: block;
  }
}
main .contact-info span {
  font-size: 16px;
  color: #50cebc;
  margin-bottom: 5px;
  margin-top: 0;
}
main .contact-info li {
  font-size: 22px;
  color: #373e88;
}
main .panel-blog .panel-body {
  padding: 0;
}
main .panel-blog li {
  border-bottom: 1px solid #cfd9e7;
}
main .panel-blog li:last-child {
  border-bottom: none;
}
main .panel-blog .article-box {
  padding: 15px 15px;
}
main .panel-blog .article-box .date {
  font-size: 16px;
  color: #798ca7;
}
main .panel-blog .article-box .title-article {
  font-size: 16px;
  color: #373e88;
  text-transform: none;
  font-family: PT Serif;
  font-weight: bold;
  margin-bottom: 0;
}
main .panel-blog .article-box .title-article a {
  text-decoration: underline!important;
  font-weight: bold;
  line-height: 21px;
  padding-top: 5px;
  display: block;
}
main .btn-filter-blog {
  color: #373e88;
  padding: 0;
  margin-right: 15px;
}
main .btn-filter-blog i.fa {
  background: #e3e6ec;
  padding: 11px;
  font-size: 22px;
  width: 46px;
  text-align: center;
  margin-left: 0;
  margin-bottom: 10px;
}
main .btn-filter-blog.active,
main .btn-filter-blog:hover {
  color: #fff;
}
main .btn-filter-blog.active i.fa,
main .btn-filter-blog:hover i.fa {
  background: #50cebd;
  color: #fff;
}
main .article-blog {
  border-bottom: 1px solid #cfd9e7;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
main .article-blog img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
main .article-blog .cell {
  display: table-cell;
  vertical-align: top;
}
@media (max-width: 767px) {
  main .article-blog .cell {
    display: block;
  }
}
main .article-blog .cell img {
  width: 400px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .article-blog .cell img {
    width: 326px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .article-blog .cell img {
    width: 320px;
  }
}
main .article-blog .cell.cell-txt {
  padding-right: 30px;
}
@media (max-width: 767px) {
  main .article-blog .cell.cell-txt {
    padding-right: 0;
  }
}
main .article-blog .date-box {
  float: left;
}
@media (max-width: 767px) {
  main .article-blog .date-box {
    float: none;
  }
}
main .article-blog .date {
  line-height: 22px;
}
main .article-blog .date .cell {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  color: #373e88;
}
main .article-blog .date .cell-numb {
  font-family: PT Serif;
  font-size: 40px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  main .article-blog .date {
    float: left;
  }
}
main .article-blog .section {
  font-size: 16px;
  color: #50cebc;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  main .article-blog .section {
    float: right;
    padding-top: 10px;
  }
}
main .article-blog .title {
  font-family: PT Serif;
  font-size: 22px;
  color: #373e88;
  font-weight: bold;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  main .article-blog .title {
    font-size: 20px;
  }
}
main .article-blog p {
  font-size: 16px;
  color: #798ca7;
  margin-bottom: 19px;
}
main .article-blog .img-box {
  display: block;
  margin-left: 30px;
  float: right;
  margin-top: -67px;
  width: 400px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .article-blog .img-box {
    width: 285px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .article-blog .img-box {
    width: 181px;
  }
}
@media (max-width: 767px) {
  main .article-blog .img-box {
    float: none;
    padding-top: 10px;
    padding-bottom: 20px;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  main .article-blog .img-box img {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  main .article-blog .btn-orange {
    font-size: 15px;
  }
}
main .blog-detailed a {
  word-break: break-all;
}
main .blog-detailed img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
main .blog-detailed .date {
  line-height: 22px;
}
main .blog-detailed .date .cell {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  color: #373e88;
}
main .blog-detailed .date .cell-numb {
  font-family: PT Serif;
  font-size: 40px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  main .blog-detailed .date {
    float: left;
  }
}
main .blog-detailed .section {
  font-size: 16px;
  color: #50cebc;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  main .blog-detailed .section {
    float: right;
    padding-top: 10px;
  }
}
main .blog-detailed h2 {
  font-family: PT Serif;
  font-size: 22px;
  color: #373e88;
  font-weight: bold;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  main .blog-detailed h2 {
    font-size: 20px;
  }
}
main .blog-detailed p {
  font-size: 16px;
  color: #798ca7;
  margin-bottom: 19px;
}
main .blog-detailed a.link {
  color: #00adef;
  text-decoration: underline!important;
}
main .blog-detailed h3 {
  font-size: 18px;
  color: #373e88;
  font-family: PT Serif;
  font-weight: bold;
  padding-bottom: 15px;
}
main .blog-detailed .list-dotted {
  padding-left: 32px;
}
@media (max-width: 767px) {
  main .blog-detailed .list-dotted {
    padding-left: 0;
  }
}
main .blog-detailed .list-dotted li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #798ca7;
  padding-bottom: 10px;
}
main .blog-detailed .list-dotted li:before {
  content: "\f111 ";
  font-family: FontAwesome;
  position: absolute;
  left: 3px;
  font-size: 7px;
  top: 7px;
  padding: 0 3px;
}
main .blog-detailed .list-numbr {
  padding-left: 58px;
  list-style: decimal;
}
@media (max-width: 767px) {
  main .blog-detailed .list-numbr {
    padding-left: 27px;
  }
}
main .blog-detailed .list-numbr li {
  position: relative;
  font-size: 16px;
  color: #798ca7;
  padding-bottom: 10px;
}
main .blog-detailed .list-numbr li:before {
  content: "\f1db ";
  font-family: FontAwesome;
  position: absolute;
  left: -23px;
  font-size: 20px;
  top: -5px;
  padding: 0 3px;
  color: #c6cfdd;
}
main .blog-detailed blockquote {
  border-left: 3px solid #f6851f;
  margin-left: 40px;
}
main .blog-detailed blockquote p {
  font-size: 16px;
  color: #373e88;
  font-weight: bold;
  margin-bottom: 0;
}
main .blog-detailed .table tr {
  font-size: 16px;
  color: #373e88;
}
main .blog-detailed .table tr:first-child td {
  border-top: none;
}
main .blog-detailed .table th {
  font-weight: normal;
  background: #e3e6ec;
  border-top: none;
}
main .blog-detailed .table td {
  background: #fff;
  border-top: 1px solid #eff2f4;
}
main .blog-detailed .carousel-blog {
  padding: 30px 0;
}
main .blog-detailed .carousel-blog .padd {
  padding: 12px 0;
}
main .blog-detailed .carousel-blog .padd:first-child {
  padding-top: 0;
}
main .blog-detailed .carousel-blog .padd:last-child {
  padding-bottom: 0;
}
main .our-work {
  background: #dee4e9;
  padding: 20px 30px;
  margin: 30px 0;
}
@media (max-width: 991px) {
  main .our-work {
    padding: 20px 0;
  }
}
main .our-work + .consul-block {
  border-top: none;
}
main .our-work .title-section span {
  background: #dee4e9;
}
main .our-work .table-work {
  margin: 0 -31px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .our-work .table-work {
    margin: 0;
  }
}
@media (max-width: 767px) {
  main .our-work .table-work {
    margin: 0;
  }
}
main .our-work .table-work .table-row {
  padding-bottom: 24px;
}
main .our-work .table-work .cell {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 767px) {
  main .our-work .table-work .cell {
    display: block;
  }
}
main .our-work .table-work .cell:last-child .padd-box:after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  right: 30%;
  margin-bottom: -72px;
  width: 46px;
  background: url("../../assets/img/arrow-bottom.png") no-repeat center;
  height: 58px;
  background-size: 50%;
}
@media (max-width: 991px) {
  main .our-work .table-work .cell:last-child .padd-box:after {
    display: none;
  }
}
main .our-work .table-work .padd-box {
  padding: 0 31px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .our-work .table-work .padd-box {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  main .our-work .table-work .padd-box {
    padding: 0;
  }
}
main .our-work .table-work .padd-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 58px;
  background: url("../../assets/img/arrow.png") no-repeat center;
  height: 46px;
  background-size: 100%;
  margin-right: -29px;
  margin-top: -23px;
}
@media (max-width: 991px) {
  main .our-work .table-work .padd-box:after {
    display: none;
  }
}
main .our-work .table-work .row-second .padd-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 58px;
  background: url("../../assets/img/arrow-left.png") no-repeat center;
  height: 46px;
  background-size: 100%;
}
main .our-work .table-work .row-second .cell:last-child .padd-box:after {
  display: none;
}
main .our-work .box {
  padding: 10px 10px;
  text-align: right;
  display: block;
  margin-top: 60px;
  background: #fff;
  min-height: 184px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  main .our-work .box {
    min-height: 224px;
  }
}
main .our-work .box .box-icon {
  border-radius: 50%;
  display: table;
  height: 80px;
  margin: 0 auto;
  width: 80px;
  margin-top: -61px;
  text-align: center;
  line-height: 67px;
}
main .our-work .box .box-icon span {
  color: #fff;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
main .our-work .box .bg-1 {
  background-color: #50cebc;
}
main .our-work .box .bg-2 {
  background-color: #36c3cd;
  line-height: 80px;
}
main .our-work .box .bg-3 {
  background-color: #1fb8d0;
}
main .our-work .box .bg-4 {
  background-color: #0db2e7;
  line-height: 77px;
}
main .our-work .box .bg-5 {
  background-color: #0e4d91;
  line-height: 80px;
}
main .our-work .box .bg-6 {
  background-color: #0c63a4;
}
main .our-work .box .bg-7 {
  background-color: #1b78be;
  line-height: 77px;
}
main .our-work .box .bg-8 {
  background-color: #0989c7;
  line-height: 76px;
}
main .our-work .box .info {
  margin-top: 15px;
}
main .our-work .box .info h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: #ff4600;
}
main .our-work .box .info p {
  color: #373e88;
  font-size: 16px;
  padding-top: 10px;
  text-align: center;
}
main .section-about {
  padding-bottom: 30px;
}
.error-page {
  background-color: #eff2f4;
}
.error-page .back {
  margin: 16px 0 20px;
}
.error-page .back a {
  font-size: 16px;
  color: #50cebd;
  border-bottom: 1px solid;
  cursor: pointer;
}
.error-page .back a:hover {
  border-bottom: none;
}
.error-page .inner-box {
  text-align: center;
  padding: 75px 0 100px;
}
@media (max-width: 1199px) {
  .error-page .inner-box {
    padding: 30px 0 50px;
  }
}
.error-page .inner-box h1 {
  font-size: 86px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #ff6600;
}
.error-page .inner-box h1 span {
  display: block;
  font-size: 42px;
}
.error-page .inner-box h1:before {
  content: none;
}
@media (max-width: 767px) {
  .error-page .inner-box h1 {
    font-size: 56px;
    margin-bottom: 15px;
  }
  .error-page .inner-box h1 span {
    font-size: 36px;
  }
}
.error-page .inner-box p {
  font-size: 16px;
  color: #666699;
}
.error-page .inner-box p a {
  position: relative;
  color: #50cebc;
}
.error-page .inner-box p a:before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #50cebc;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all .3s;
}
.error-page .inner-box p a:hover:before {
  width: 100%;
}
.add-banner {
  margin-bottom: 40px;
}
.add-banner img {
  max-width: 100%;
  width: 100%;
}
footer {
  padding: 50px 0 20px;
}
@media (max-width: 767px) {
  footer {
    padding: 15px 0 20px;
  }
}
footer p {
  text-transform: uppercase;
  color: #2c365e;
  font-size: 22px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  footer p {
    font-size: 20px;
  }
}
footer p a {
  font-size: 14px;
  text-transform: none;
}
footer .contact-info {
  padding: 0 20px 0 0;
  width: 56%;
}
@media (max-width: 767px) {
  footer .contact-info {
    padding: 0 9px 15px 0;
  }
}
footer .logo-box {
  width: 43%;
}
footer .logo-hgk {
  padding: 10px 0;
  display: block;
}
@media (max-width: 767px) {
  footer .logo-hgk {
    padding: 10px 0;
  }
}
footer .text-id {
  display: block;
  padding-top: 3px;
  font-size: 12px;
  line-height: 15px;
}
footer .address {
  color: #798ca7;
}
footer .address .box {
  border-bottom: 1px solid #cfd9e7;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  footer .address .box img {
    width: 157px;
  }
}
footer .address .logo-hgk img {
  width: 115px;
}
@media (min-width: 992px) and (max-width: 1299px) {
  footer .address .logo-hgk img {
    width: 89px;
  }
}
footer .copyright {
  padding: 4px 0;
  color: #798ca7;
  text-align: right;
}
@media (max-width: 767px) {
  footer .copyright {
    text-align: left;
  }
}
footer .map-menu {
  padding-left: 50px;
}
footer .map-menu li {
  padding-bottom: 4px;
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .map-menu li {
    padding-bottom: 10px;
  }
}
footer .map-menu li a {
  text-transform: uppercase;
  color: #798ca7;
  position: relative;
}
footer .map-menu li a:before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #50cebc;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
}
footer .map-menu li a:hover:before {
  width: 100%;
}
@media (max-width: 767px) {
  footer .our-directions {
    padding-top: 15px;
    margin-bottom: 10px;
  }
}
footer .our-directions li {
  padding-bottom: 10px;
}
footer .our-directions li a {
  color: #798ca7;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  border: 1px solid transparent;
  display: block;
  padding: 10px 10px 10px 50px;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 992px) and (max-width: 1299px) {
  footer .our-directions li a {
    font-size: 18px;
    padding: 10px 10px 10px 50px;
  }
}
@media (max-width: 767px) {
  footer .our-directions li a {
    font-size: 16px;
    padding: 10px 10px 10px 40px;
  }
}
footer .our-directions li a .icon {
  position: absolute;
  left: 0;
  background: #c5cedc;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 0;
  color: #fff;
  top: 50%;
  margin-top: -17px;
  font-size: 16px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767px) {
  footer .our-directions li a .icon {
    height: 30px;
    width: 30px;
    padding: 6px 0;
    margin-top: -16px;
    font-size: 14px;
  }
}
footer .our-directions li a:hover {
  border-radius: 50px;
}
footer .our-directions li a:hover .icon {
  background: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .social {
    padding-left: 36px;
  }
}
footer .social ul {
  padding-bottom: 10px;
}
footer .social li {
  display: inline-block;
  padding-right: 10px;
  vertical-align: top;
}
footer .social li i.fa {
  font-size: 32px;
  color: #c5cedc;
}
footer .social li i.fa-vk {
  background: #c5cedc;
  color: #fff;
  border-radius: 5px;
  font-size: 21px;
  padding: 3px;
  margin-top: 2px;
}
footer .social li a:hover i.fa-facebook-square {
  color: #1f62bc;
}
footer .social li a:hover i.fa-twitter-square {
  color: #32c8de;
}
footer .social li a:hover i.fa-vk {
  background: #507194;
}
footer .social li a:hover i.fa-instagram {
  color: #d6917a;
}
footer .social li a:hover i.fa-google-plus-square {
  color: #F32B2B;
}
footer .social li a:hover i.fa-youtube-square {
  color: #E8142B;
}
footer .development {
  text-align: right;
}
@media (max-width: 767px) {
  footer .development {
    text-align: left;
    padding-top: 10px;
  }
}
footer .development .inner {
  display: inline-block;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 4px;
}
@media (max-width: 767px) {
  footer .development .inner {
    padding-left: 0;
  }
}
footer .development .inner span {
  display: inline-block;
  vertical-align: middle;
}
footer .development .inner .logo {
  padding-right: 5px;
}
footer .development .inner .logo-wizardry {
  padding-bottom: 3px;
}
footer .development .separatop {
  display: inline-block;
  color: #ccc;
  text-align: center;
  padding: 0 3px 0 0px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  footer .development .separatop {
    display: none;
  }
}
footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 14px;
  color: #798ca7;
}
