/**
 * Support: web-master72@yandex.ru;
 * Author: web-master72
 *
 *
/* ---------------------------------------------- /*
 * General styles
/* ---------------------------------------------- */

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

body {
	font: 400 15px/1.6 'Montserrat', serif, sans-serif;
	color: #2f4f4f;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #ff0000;
	font-weight: bold;
}

a:hover {
	color: #999;
}

/* ---------------------------------------------- /*
 * Typography
/* ---------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	font: 700 46px/1.2 'Montserrat', serif, sans-serif;
	margin: 5px 0 5px;
	color: #222;
}

h1 {
	font-size: 64px;
	font-weight: 700;
	margin: 5px 0 15px;
}

h2 {
	font-size: 46px;
	font-weight: 700;
}

h3 {
	font-size: 22px;
	text-transform: uppercase;
	margin: 5px 0 10px;
}

h4 {
	font-size: 16px;
	margin: 5px 0 10px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 13px;
}

p {
	margin: 0 0 15px;
}

/* ---------------------------------------------- /*
 * Transition elsements
/* ---------------------------------------------- */

a,
.btn,
.navbar,
.form-control,
.portfolio-item-description {
	-webkit-transition: all 0.125s ease-in-out 0s;
	   -moz-transition: all 0.125s ease-in-out 0s;
		-ms-transition: all 0.125s ease-in-out 0s;
		 -o-transition: all 0.125s ease-in-out 0s;
			transition: all 0.125s ease-in-out 0s;
}

.portfolio-item-preview {
	-webkit-transition: all 0.3s ease-in-out 0s;
	   -moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		 -o-transition: all 0.3s ease-in-out 0s;
			transition: all 0.3s ease-in-out 0s;
}

/* ---------------------------------------------- /*
 * Reset box-shadow
/* ---------------------------------------------- */

.btn,
.panel,
.progress,
.form-control,
.modal-content,
.form-control:hover,
.form-control:focus {
	-webkit-box-shadow: none;
			box-shadow: none;
}

/* ---------------------------------------------- /*
 * Reset border-radius
/* ---------------------------------------------- */

.btn,
.alert,
.label,
.form-control,
.modal-content,
.icons-widget li a,
.input-group-addon,
.panel-group .panel {
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
		 -o-border-radius: 3px;
			border-radius: 3px;
}

/* ---------------------------------------------- /*
 * Inputs styles
/* ---------------------------------------------- */

.form-control {
	background: #FFF;
	/*border: 2px solid #D8E1E4;*/
	height: 54px;
	font-size: 14px;
	font-weight: bold;
	padding: 22px;
}

select.customDropdown {
    padding: 5px 22px;

}

.input-lg, .form-horizontal .form-group-lg .form-control {
	height: 62px;
	border-top-width: 0px;

}

.input-sm, .form-horizontal .form-group-sm .form-control {
	height: 40px;
	font-size: 12px;
}

/* ---------------------------------------------- /*
 * Input-group
/* ---------------------------------------------- */

.input-group .form-control {
	z-index: auto;
}

.input-group-addon {
	background: #D8E1E4;
	border: 2px solid #D8E1E4;
	padding: 6px 15px;
	font-weight: 700;
}

/* ---------------------------------------------- /*
 * Custom button style
/* ---------------------------------------------- */

.btn {
	font-weight: 700;
	font-size: 14px;
	padding: 17px 27px;
	border: 0;
	text-transform: uppercase;
}

.btn:hover, .btn:focus, .btn:active, .btn.active {
	outline: inherit !important;
}

/* Button icons */

.btn .icon-before {
	margin-right: 6px;
}

.btn .icon-after {
	margin-left: 6px;
}

/* Button size */

.btn-lg, .btn-group-lg > .btn {
	padding: 22px 24px;
	font-size: 15px;
}

.btn-sm, .btn-group-sm > .btn {
	padding: 11px 18px;
	font-weight: 400;
	font-size: 12px;
}

.btn-xs, .btn-group-xs > .btn {
	padding: 7px 14px;
	font-size: 14px;
}

.btn-list .btn {
	margin-bottom: 5px;
}

/* Button types*/

.btn-default {
	background: #EEEEEE;
}

.btn-custom-1, .btn-custom-2 {
	background: transparent;
	border: 2px solid #ff0000;
	padding: 15px 25px;
	color: #ff0000;
}

.btn-custom-2 {
	border: 2px solid #222;
	color: #222;
}

.btn-custom-1:hover, .btn-custom-1:focus, .btn-custom-1:active, .btn-custom-1.active {
	background: #ff0000;
	border: 2px solid #ff0000;
	color: #FFF;
}

.btn-custom-2:hover, .btn-custom-2:focus, .btn-custom-2:active, .btn-custom-2.active {
	background: #222;
	border: 2px solid #222;
	color: #FFF;
}

.btn-custom-1-inverse, .btn-custom-2-inverse {
	background: #ff0000;
	border: 2px solid #ff0000;
	padding: 15px 25px;
	color: #FFF;
}
.rmred
{
	text-transform: capitalize; 
	background: #ff0000;
	font-weight: bold;
}
.rmred.active
{
	background: #333;
}
.btn-custom-2-inverse {
	background: #222;
	border: 2px solid #222;
}

.btn-custom-1-inverse:hover, .btn-custom-1-inverse:focus, .btn-custom-1-inverse:active, .btn-custom-1-inverse.active {
	background: transparent;
	border: 2px solid #ff0000;
	color: #ff0000;
}

.btn-custom-2-inverse:hover, .btn-custom-2-inverse:focus, .btn-custom-2-inverse:active, .btn-custom-2-inverse.active {
	background: transparent;
	border: 2px solid #222;
}

/* ---------------------------------------------- /*
 * Alerts style
/* ---------------------------------------------- */

.alert {
	border: 0;
}

/* ---------------------------------------------- /*
 * Skill-bars
/* ---------------------------------------------- */

.skill-bar {
	background: #C4C4C4;
	display: table;
	height: 4px;
	width: 100%;
	margin: 10px -2px 20px -2px;
}

.skill-bar .skill-rate-on {
	background: #ff0000;
}

.skill-rate-on, .skill-rate-off {
	display: table-cell;
	border-left: 2px solid #FFF;
	border-right: 2px solid #FFF;
}

/* ---------------------------------------------- /*
 * Progress bars
/* ---------------------------------------------- */

.progress {
	background: #E5E5E5;
	margin-top: 10px;
	margin-bottom: 20px;
	height: 22px;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
}

.progress-bar {
	background: #ff0000;
	box-shadow: none;
	text-align: right;
	padding-right: 10px;
	line-height: 22px;
	-webkit-transition: all .7s ease-in-out;
	   -moz-transition: all .7s ease-in-out;
		-ms-transition: all .7s ease-in-out;
		 -o-transition: all .7s ease-in-out;
			transition: all .7s ease-in-out;
}

/* ---------------------------------------------- /*
 * Tabs
/* ---------------------------------------------- */

.nav-pills, .nav-tabs {
	margin-bottom: 20px;
}

.nav-pills > li > a {
	border-radius: 3px;
}

.nav-tabs > li > a {
	border-radius: 3px 3px 0 0;
}

.nav-pills > li.active > a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
	background: #ff0000;
}

/* ---------------------------------------------- /*
 * Panels
/* ---------------------------------------------- */

.panel {
	border: 0;
}

.panel-body {
	background: #f5f5f5;
}

.panel-group .panel-heading + .panel-collapse > .panel-body {
	border: 0;
}

/* ---------------------------------------------- /*
 * Modal
/* ---------------------------------------------- */

.modal-content {
	border: 0;
}

/* ---------------------------------------------- /*
 * Labels
/* ---------------------------------------------- */

.label {
	padding: .2em .6em .2em;
	font-size: 70%;
}

.label-custom-1 {
	background: #ff0000;
}

.label-custom-2 {
	background: #222;
}

/* ---------------------------------------------- /*
 * Inline icons
/* ---------------------------------------------- */

.line-icon-before {
	margin-right: 6px;
}

.line-icon-after {
	margin-right: 6px;
}

/* ---------------------------------------------- /*
 * Icon-list and icon widget
/* ---------------------------------------------- */

.icons-widget {
	padding: 0;
	margin: 0;
}

.icons-widget li {
	display: inline-block;
	margin-right: 5px;
}

.icons-widget li a {
	background: #222;
	text-align: center;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 1.25em;
	color: #FFF;
}

.icons-widget li a:hover {
	background: #ff0000;
}

.icons-widget-sm li a{
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: .8em;
}

.icons-widget-sm li {
	margin-right: 3px;
}

.icons-widget li:last-child {
	margin-right: 0;
}

.iconList li {
	padding: 5px 0;
}

.iconList li:before {
	content: "\f054";
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 10px;
	text-align: left;
	padding: 0;
	margin: 0;
	display: inline-block;
	margin-right: 10px;
	line-height: 1em;
}

/* ---------------------------------------------- /*
 * Owl slider
/* ---------------------------------------------- */

.owl-theme .owl-controls .owl-buttons div {
	background: #ff0000;
	font-size: 24px;
	opacity: 1;
	width: 44px;
	height: 44px;
	margin: 0;
	color: #FFF;
}

.owl-theme .owl-controls .owl-page span {
	background: #ff0000;
	margin: 5px 4px;
}

.owl-prev {
	position: absolute;
	top: 50%;
	left: 0px;
}

.owl-next {
	position: absolute;
	top: 50%;
	right: 0px;
}

/* ---------------------------------------------- /*
 * Scroll-up
/* ---------------------------------------------- */

.scroll-up {
	border-style: solid;
	border-width: 0 0 48px 48px;
	border-color: transparent transparent rgba(27, 18, 18, 0.6) transparent;
	position: fixed;
	display: none;
	right: 0px;
	bottom: 0px;
	width: 0;
	height: 0;
	z-index: 999;
	-webkit-transition: -webkit-transform 0.8s ease-in-out;
		  -moz-transition: -moz-transform 0.8s ease-in-out;
			  -o-transition: -o-transform 0.8s ease-in-out;
					transition: transform 0.8s ease-in-out;
}

.scroll-up a {
	position: relative;
	display: inline-block;
	padding: 22px;
	bottom: 0px;
	left: -44px;
	font-size: 18px;
	color: #FFF;
}

.scroll-up a:hover {
	color: #ff0000;
}

/* ---------------------------------------------- /*
 * General
/* ---------------------------------------------- */

.wrapper {
	overflow: hidden;
}

.section {
	position: relative;
	padding: 120px 0;
}

.color-overlay {
	background: rgba(0, 0, 0, 0.5);
	padding: 60px 0;
}

.section-header {
	text-align: center;
}

.section-header,
.section-header h1,
.section-header h2,
.section-header h3,
.section-header h4,
.section-header h5,
.section-header h6 {
	color: #FFF;
}

.callout-dark, .callout-light {
	background: #EBEFF0;
	text-align: center;
	padding: 60px 0;
}

.callout-dark {
	background: #222;
}

.rotate {
	text-shadow: 0 0 0 !important;
}

.long-down {
	margin-bottom: 40px;
}

.ajax-response {
	margin-top: 15px;
}

.rotate-section {
	background: #FFF;
	z-index: 99;
}

.rotate-section:before {
	top: 0;
	left: -10%;
	content: '';
	z-index: -1;
	width: 120%;
	height: 100%;
	position: absolute;
	background-color: #FFF;

	-webkit-transform-origin: 0 0;
	   -moz-transform-origin: 0 0;
		-ms-transform-origin: 0 0;
		 -o-transform-origin: 0 0;
			transform-origin: 0 0;

	-webkit-transform: rotate(-2deg);
	   -moz-transform: rotate(-2deg);
		-ms-transform: rotate(-2deg);
		 -o-transform: rotate(-2deg);
			transform: rotate(-2deg);

	-webkit-border-top: 1px solid rgba(0, 0, 0, 0.1);
	   -moz-border-top: 1px solid rgba(0, 0, 0, 0.1);
		 -o-border-top: 1px solid rgba(0, 0, 0, 0.1);
			border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rotate-section:after {
	bottom: 0;
	left: -10%;
	content: '';
	z-index: -1;
	width: 120%;
	height: 100%;
	position: absolute;
	background-color: #FFF;

	-webkit-transform: rotate(2deg);
	   -moz-transform: rotate(2deg);
		-ms-transform: rotate(2deg);
		 -o-transform: rotate(2deg);
			transform: rotate(2deg);

	-webkit-transform-origin: 0% 100%;
	   -moz-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		 -o-transform-origin: 0% 100%;
			transform-origin: 0% 100%;
}

/* ---------------------------------------------- /*
 * Navigation
/* ---------------------------------------------- */

.navbar {
	background: none;
	border-radius: 0;
	border: 0;
	padding: 25px 0;
	font-weight: 400;
	color: #FFF !important;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
	background: none;
	outline: 0;
	color: #ff0000;
}

.navbar-custom .navbar-brand {
	font-weight: 700;
	font-size: 26px;
	color: #FFF;
	padding: 0px;
}
.navbar-custom .navbar-brand > p {
	padding: 15px;
	margin-left: 5px;
}

.navbar-custom .navbar-toggle .icon-bar {
	background: #FFF;
}

.navbar-custom .navbar-nav > li > a,
.navbar-custom .navbar-nav .dropdown-menu > li > a {
	/*color: #FFF;*/
	font-size: 15px;
	font-weight: bold;
}

.navbar-color,
.custom-collapse {
	background: #1b1212;
	box-shadow: 0 0 4px rgba(0, 0, 0, .2);
	padding: 10px 0;
}

.navbar-color .nav li a:hover,
.navbar-color .nav li a:focus,
.navbar-color .nav li.active,
.navbar-color .navbar-nav > li.active a {
	color: #ff0000;
}

.navbar-color .navbar-nav > li > a,
.navbar-color .navbar-nav .dropdown-menu > li > a,
.custom-collapse .navbar-nav > li > a,
.custom-collapse .navbar-nav .dropdown-menu > li > a {
	color: #888;
}

.custom-collapse .navbar-nav {
	text-align: left;
}

.custom-collapse .navbar-nav > li.active {
	border: 0;
}

.navbar-color .navbar-toggle .icon-bar,
.custom-collapse .navbar-toggle .icon-bar {
	background: #ff0000;
}

/* ---------------------------------------------- /*
 * Intro
/* ---------------------------------------------- */

#intro {
	background: rgba(34, 34, 34, .2) !important;
	z-index: auto !important;
	padding: 260px 0 160px 0;
	text-align: center;
}

#intro,
#intro h1,
#intro h2,
#intro h3,
#intro h4,
#intro h5,
#intro h6 {
	color: #FFF;
}

.hello {
	margin: 0 0 100px;
}
.text2 {
	text-align: left;
}
/* ---------------------------------------------- /*
 * listing
/* ---------------------------------------------- */

#listing {
	background: rgba(34, 34, 34, .2) !important;
	z-index: auto !important;
	padding: 100px 0 50px 0;
	text-align: center;
}
#listing .input-group-btn, #intro .input-group-btn{
	
	text-align: left;
}
#listing,
#listing h1,
#listing h2,
#listing h3,
#listing h4,
#listing h5,
#listing h6 {
	color: #FFF;
}
.ratings i {
    color: green
}

.install span {
    font-size: 12px
}
.hello {
	margin: 0 0 100px;
}

.whitebg {
	background-color: grey;
}
ul.list {
	margin-top: 10px;
    margin-bottom: 10px;
	margin-right: 10px;
	margin-left: 10px;
	
}

.list.aspect-container li{
	display: block;
    width: 100%;
    position: relative;
    height: 0;
    padding: 60% 0 0 0;
	margin-left: 0px;
    overflow: hidden;

}
.list.whitebg {
    list-style: none;
    padding: 0;
    border: 0;
    box-shadow: 0px 0px 40px #00000033;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}
.list {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    list-style: none;
    margin-left: 0;
    padding: 0;

}

.list .aspect-container {
    display: block;
    width: 100%;
    position: relative;
    height: 0;
    padding: 60% 0 0 0;
    overflow: hidden;
}

.list .aspect-container > img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
	border-radius: 10px;
}
.listp {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    list-style: none;
    margin-left: 0;
	margin-right: 0;
    padding: 0;
	border-radius: 10px;
	background-color: #333;
	

}


.listp .aspect-container > img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
	border-radius: 10px;
}
.text3 {
	text-align: left;
	margin-left: 5px;
}
p.text3 {
	margin-left: 30px;
  }
.c-form-profession select.form-control {
    height: 50px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    background: #fff;
    border: 3px solid #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    color: #888;
    font-style: italic;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}
 
.c-form-profession select.form-control:focus {
    outline: 0; background: #fff; border: 3px solid #e8643e;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}
.list li {
    content: '';
	border-radius: 10px;
	background-color: #333;
}
.propzu-pagination {
    text-align: center;
    /* padding-top: 60px; */
}
.list li > a {
    display: block;
    position: relative;
    height: 100%;
}
.list li > a:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
    left: 0;
    top: 0;
    z-index: 9;
    opacity: 0;
    cursor: pointer;
}
.list li>a:hover:after {
    opacity: 1;
}

.list li .status {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 15px;
    color: #fff;
    padding: 3px 22px;
	font-weight: bold;
}
.propzu-pagination a {
    display: block;
    border: 2px solid #ff0000;
    color: #FFF;
    background: #ff0000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    padding: 13px 18px;
}
.propzu-pagination ul li a.active {
    background: #000;
    color: #fff;
}
.list .status.Active, .list-container .status.active {
    background-color: #ff0000;
}

.list .status.Sold, .propzu-listings-search-list-container .status.sold {
    background-color: #FFD237;
}

.list .status.Contingent, .list-container .status.contingent {
    background-color: #006064;
}
.grey_wrapper{
	padding: 10px;
	color: white;
	border-radius: 10px;
	background-color: #333;
}
.list .status.Pending, .list-container .status.pending {
    background-color: #FFA500
}
@media screen and (min-width: 768px) {
    .list {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
    }
    .list li {
        flex:0 48%;
        margin-right: 4%;
		margin-top: 1%;
    }
    .list li:nth-child(2n+2) {
        margin-right: 0;
    }
    #secondary .list,
    .sidebar .list {
        display: block;
    }
    #secondary .list li,
    .sidebar .list li {
        width: 100%;
    }
    .propzu-filter-tabs {
        display: flex;
        justify-content: space-between;
    }
}
@media screen and (min-width: 1024px) {
    .list li {
        flex:0 32%;
        margin-right: 2%;
		margin-top: 1%;
    }
    .list li:nth-child(2n+2) {
        margin-right: 2%;
    }
    .list li:nth-child(3n+3) {
        margin-right: 0;
    }
    
    .propzu-filter-tabs ul li a {
        min-width: 100px;
    }
}
.easy-autocomplete.eac-plate-dark ul {
    background: #212121;
    border-radius: 6px;
    border-width: 0;
    top: 50px;
}

.easy-autocomplete-container ul {
    background: none repeat scroll 0 0 #ffffff;
    border-top: 1px dotted #ccc;
    display: none;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    position: relative;
    top: -1px;
}
.easy-autocomplete.eac-plate-dark input {
    font-size: 13px;
    padding: 6px 12px;
}
.easy-autocomplete-container {
    top: 100%;
}
.easy-autocomplete.eac-plate-dark input {
    font-size: 14px;
    padding: 6px 12px;
}
.easy-autocomplete{
	width:100% !important
  }
  
.easy-autocomplete input{
width: 100%;
}


#c_form_profession {
	text-align: left;
}
/* ---------------------------------------------- /*
 * About
/* ---------------------------------------------- */

#about-header {
	background: url(../images/n2.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
			background-size: cover;
}
#about > p{
	text-align: left;
}
/* ---------------------------------------------- /*
 * About
/* ---------------------------------------------- */

#career-header {
	background: url(../images/n7.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
			background-size: cover;
}
/* ---------------------------------------------- /*
 * Service
/* ---------------------------------------------- */

.service {
	text-align: center;
	margin: 0 0 40px;
}

.service .icon {
	font-size: 32px;
	color: #ff0000;
}

.service h4 {
	text-transform: uppercase;
}

/* ---------------------------------------------- /*
 * Portfolio
/* ---------------------------------------------- */

#seller {
	background: url(../images/n1.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
			background-size: cover;
}

.portfolio-item {
	margin-bottom: 20px;
	overflow: hidden;
}

.portfolio-item-preview {
	position: relative;
}

.portfolio-item:hover .portfolio-item-preview {
	-webkit-transform: scale(1.1) rotate(2deg);
	   -moz-transform: scale(1.3) rotate(3deg);
		-ms-transform: scale(1.3) rotate(3deg);
		 -o-transform: scale(1.3) rotate(3deg);
			transform: scale(1.2) rotate(3deg);
}

.portfolio-item:hover .portfolio-item-description {
	opacity: 1;
	bottom: 0;
}

.portfolio-item-description {
	background: rgba(255, 255, 255, .5);
	position: absolute;
	right: 0;
	bottom: -70px;
	left: 0;
	padding: 25px;
	text-align: center;
	opacity: 0;
	color: #222;
}


/* ---------------------------------------------- /*
 * Testimonials
/* ---------------------------------------------- */

#testimonials .owl-item {
	text-align: center;
}

#testimonials .avatar img {
	height: 84px;
	width: 84px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
		 -o-border-radius: 50%;
			border-radius: 50%;
}

#testimonials blockquote {
	border: 0;
	padding: 10px 80px;
	margin: 0;
}

#testimonials blockquote p {
	margin: 15px 0 5px;
}

#testimonials .stars {
	margin-bottom: 5px;
	color: #f1c40f;
}

#testimonials .star-off {
	color: #999;
}

/* ---------------------------------------------- /*
 * Team
/* ---------------------------------------------- */

#buyer {
	background: url(../images/n4.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
			background-size: cover;
}

.member {
	text-align: center;
}

.member-data {
	padding: 15px 0 10px 0;
}

.member-data h3 {
	margin: 5px 0 0px;
}

.member-data span {
	font-size: 12px;
}

/* ---------------------------------------------- /*
 * Contact
/* ---------------------------------------------- */

#contact-header {
	background: url(../images/n2.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
			background-size: cover;
}

#contact-data {
	background: #ebeff0;
	text-align: center;
}

#map-section {
	position: relative;
	height: 450px;
	width: 100%;
}

#map {
	height: 450px;
	width: 100%;
}

#footer {
	background: #141414;
	padding: 20px 0;
	color: #FFF;
}

#footer p {
	font-size: 12px;
	margin: 5px 0;
}

#footer a {
	font-size: 12px;
	color: #999;
	margin: 5px 0;
}
#footer a:hover {
	color: #ff0000;
	text-decoration: none;
}

.derek{
	color: #999;
}
.derek2{
	text-align: left;
}
.offset-0 {
    padding-left: 0;
    padding-right: 0;
}
/* ---------------------------------------------- /*
 * Mouse animate icon
/* ---------------------------------------------- */

.mouse-icon {
	position: relative;
	border: 2px solid #fff;
	border-radius: 16px;
	height: 50px;
	width: 30px;
	margin: 0 auto;
	display: block;
	z-index: 10;
}

.mouse-icon .wheel {
	-webkit-animation-name: drop;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: 0s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-play-state: running;
	animation-name: drop;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-play-state: running;
}

.mouse-icon .wheel {
	position: relative;
	border-radius: 10px;
	background: #fff;
	width: 4px;
	height: 10px;
	top: 4px;
	margin-left: auto;
	margin-right: auto;
}

@-webkit-keyframes drop	{
	0%   { top:5px;  opacity: 0;}
	30%  { top:10px; opacity: 1;}
	100% { top:25px; opacity: 0;}
}

@keyframes drop	{
	0%   { top:5px;  opacity: 0;}
	30%  { top:10px; opacity: 1;}
	100% { top:25px; opacity: 0;}
}

/* ---------------------------------------------- /*
 * Preloader
/* ---------------------------------------------- */

#preloader {
	background: #FFF;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}

#status, .status-mes {
	background-image: url(../images/loading2.gif);
	background-position: center;
	background-repeat: no-repeat;
	height: 200px;
	left: 50%;
	margin: -100px 0 0 -100px;
	position: absolute;
	top: 50%;
	width: 200px;
}

.status-mes {
	background: none;
	left: 0;
	margin: 0;
	text-align: center;
	top: 65%;
}

.status-mes h4 {
	color: #222;
	margin-top: 30px;
}

/* ---------------------------------------------- /*
 * Media
/* ---------------------------------------------- */

@media (max-width: 992px) {

	.knob, .member {
		margin-bottom: 30px;
	}

}

@media (max-width: 767px) {

	.scroll-up {
		display: none !important;
	}

}


.pricing-tables-jumbotron {
	text-align: center;
	background: #fff;
}

.pricing-tables-jumbotron>h1, 
.pricing-tables-jumbotron>h2 {
	/*font-family: 'Exo 2', sans-serif;*/
}

.plan {
	background: #f9f9f9;
	box-shadow: 0 0 1px rgba(0, 0, 0, .2);
	border-radius: 4px 4px 0 0;
	position: relative;
	margin: 20px 0;
	/*font-family: 'Exo 2', sans-serif;*/
	text-align: center;
	color: #333;	
}

.plan:hover .hided-icon {
	color: #fff;
	padding: 0 10px;
}

.plan>.plan-title {
	padding: 20px;	
}	
	
.plan>.plan-title>h3 {
	/*font-family: 'Exo 2', sans-serif;*/
	font-weight: bold;
	font-size: 25px;
	text-transform: uppercase;
	margin: 0;
}

.plan>.plan-title>span {
	/*font-style: italic;*/
	font-size: 16px;
}

.plan>.plan-price {
	background: #fff;
	padding: 0 0 10px;
	color: #cf3735;
}
	
.plan>.plan-price>.price {
	display: block;
	font-size: 35px;
	font-weight: bold;
	/*font-style: italic;*/
}	

.plan>.plan-price>.period {
	font-size: 14px;
}

.plan .plan-list {
	padding: 0;
}

.plan .item-list {
	list-style: none;
	padding: 0;
}

.plan .item-list li:nth-child(even) {
	background: #fdfdfd;
}

.plan .item-list>li {
	padding: 10px 5px;
	font-size: 15px;
	color:#2f4f4f;
	text-align: left;
}

/*.plan .btn {
	width: 100%;
	padding: 18px 8px;
	border-radius: 0;
	border: none;
	text-transform: uppercase;
}*/

.plan .btn-success {
	color: #fff;
	background: #cf3735;
}	

.plan .btn-success:hover {
	background: #c52422;
}

.plan .hided-icon {
	color: #cf3735;	
	margin-left: -14px;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;	
}

.attached>.col-md-4:first-child .plan,
.attached>.col-md-3:first-child .plan {
	border-radius: 4px 0 0 0;
}

.attached>.col-md-4:last-child .plan,
.attached>.col-md-3:last-child .plan {
	border-radius: 0 4px 0 0;
}

.attached>.col-md-4, 
.attached>.col-md-3 {
	padding-left: 0;
	padding-right: 0;
}

.attached .plan {
	margin-top: 8px;
	border-radius: 0;
}

.attached .most-popular {
	position: relative;
	z-index: 2;
	margin-top: -8px;
	border-radius: 4px 4px 0 0;
}

.attached .most-popular>.plan-title {
	padding: 28px 20px;
}

@media (max-width: 768px) {
	.attached>.col-md-4,
	.attached>.col-md-3 {
		padding-left: 15px;
		padding-right: 15px;
	}
	.attached>.col-md-4:first-child .plan,
	.attached>.col-md-3:first-child .plan {
		border-radius: 4px 4px 0 0;
	}

	.attached>.col-md-4:last-child .plan,
	.attached>.col-md-3:last-child .plan {
		border-radius: 4px 4px 0 0;
	}
}
.share-wrapper {
    position: fixed;
    bottom: 0px;
    margin-left: -15px;
}
.share-wrapper .btn{
    border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	padding: 13px 18px;
}

.share-dropdown-wrapper:hover {
    background: none;
}

.icon-material-share {
    border-radius: 100px;
    width: 62px;
    padding-left: 10px;
}

.share-ripple {
    border-radius: 100px;
}
.carousel-control {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control.left, 
.carousel-control.right {
  background-image: none;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container{
  position: relative;
  width: 90%
}
.container video{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);                            
}
#searchStr
{
	font-weight: bold;
	font-size: 0.5em
}
@media only screen and (min-width: 660px) {
    /* For desktop: */
    #searchStr {
        font-size: 1em
    }
}
input::placeholder { color: red; }
.form-control::-webkit-input-placeholder {
    color: #d9534f;
}
#searchbtn{
  z-index: 99999;
}
/* .easy-autocomplete-container ul {
    top: 40px !important;
    color: black;
} */
/* .easy-autocomplete {
	min-height: 48px;
    width: 100% !important;
} */
/* .easy-autocomplete-container { top: 100%; } */
.form-inline .input-group .form-control {
    width: inherit;
}
.easy-autocomplete-container ul li div {
    display: block;
    font-weight: bold;
    font-size: 14px;
    word-break: break-all;
}


.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #333;
    border-color: #333;
}

.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #333;
    text-decoration: none;
    background-color: #fff; 
    border: 1px solid #ddd;
}