@import url('//fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&subset=latin,latin-ext');

/* --- */

html,
body {
	
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	
	margin: 0;
	padding: 0;
	
	font: 17px 'Ubuntu', sans-serif;
	font-weight: 300;
	color: #111;
	background: #f5f5f5;
	overflow-y: scroll;
}

a {
	
	text-decoration: none;
	color: #c2423b;
}

a:hover {
	
	color: #000;
}

p {
	
	margin: 0;
	padding: 0;
	
	line-height: 150%;
}

abbr {
	
	text-decoration: none;
}

hr {
	
	height: 40px;
	margin: 0;
	
	border: none;
}

/* --- */

.left {

	text-align: left;
}

.center {

	text-align: center;
}

.right {

	text-align: right;
}

.justify {

	text-align: justify;
}

.bold {

	font-weight: 500;
}

.normal {

	font-weight: normal;
}

.italic {

	font-style: italic;
}

.underline {
	
	text-decoration: underline;
}

.lowercase {
	
	text-transform: lowercase !important;
}

.uppercase {
	
	text-transform: uppercase !important;
}

.float-left {

	float: left;
}

.float-right {

	float: right;
}

.color {
	
	color: #c2423b;
}

/* --- */

label {

	display: block;
	margin: 0 0 10px 0;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="file"],
input[type="email"],
select,
textarea {

	display: block;
	padding: 10px 15px;
	margin: 0;
	width: 100%;
	height: 46px;
	
	line-height: 23px;
	border: 1px solid #ccc;
	background: #fff;
	font: 17px 'Ubuntu', sans-serif;
	font-weight: 300;
	box-sizing: border-box;
}

select {

	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-o-appearance: none;
	background: #fff url('./image/select.png') no-repeat right center;
	cursor: pointer;
}

textarea {

	height: 200px;
}

textarea.short {
	
	height: 100px;
}

input[type="checkbox"],
input[type="readio"] {
	
	margin: 0 5px 0 0;
}

input[type="submit"],
.button {

	display: inline-block;
	margin: 0 5px 10px 0;
	padding: 12px 20px;

	border: none;
	background-color: #c2423b;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23000' stroke-width='66.7' stroke-opacity='0.05' %3E%3Ccircle fill='%23ff9d00' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23fb8d17' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23f47d24' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%23ed6e2d' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23e35f34' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23d85239' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%23cc453e' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23be3941' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23b02f43' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23a02644' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23901e44' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23801843' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%236f1341' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%235e0f3d' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%234e0c38' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%233e0933' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%232e062c' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23210024' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
	background-size: cover;
	color: #fff !important;
	cursor: pointer;
	font: 16px 'Ubuntu', sans-serif;
	font-weight: 500;
	-webkit-appearance: none;
	text-transform: uppercase;
	text-decoration: none !important;
	text-align: center;
	box-sizing: border-box;
	border-radius: 100px;
}

input[type="submit"]:hover,
.button:hover {
	
	background: #c2423b;
	color: #fff !important;
}

.buttons {
	
	margin: 10px 0 0 0;
}

.buttons a {
	
	margin-left: 5px;
}

.buttons-fixed {
	
	margin: 0;
	padding: 0;
	height: 40px;
}

.buttons-fixed input,
.buttons-fixed a {
	
	display: block;
	margin: 0 !important;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.g-recaptcha {
	
	min-height: 75px;
}

/* --- */

.alert {

	padding: 20px;
	margin: 0 0 15px 0;
	
	background: #333;
	color: #fff;
}

.alert strong {
	
	display: block;
	margin: 0 0 10px 0;
	
	font-size: 18px;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
}

.alert-success {

	background: #4aa239;
}

.alert-error {

	background: #c00;
}

.alert a {
	
	color: #fff;
}

.alert a.button {

	padding: 5px 10px;
	min-width: 50px;

	background: #fff;
	color: #000;
	text-align: center;
}

.alert a.button.green {

	background: #4aa239;
	color: #fff;
}

.alert a.button.red {

	background: #c00;
	color: #fff;
}

/* --- */

.cols {
	
	-webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
	box-sizing: border-box;
}

.cols-2 {
	
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	
}

.cols-3 {
	
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
}

.cols-4 {
	
	-webkit-column-count: 4;
	-moz-column-count: 4;
	column-count: 4;
}

.cols-5 {
	
	-webkit-column-count: 5;
	-moz-column-count: 5;
	column-count: 5;
}

.cols label,
.cols div,
.cols section,
.cols p {
	
	width: 100%;
	margin-bottom: 10px !important;
	display: block;
	
	break-inside: avoid;
	page-break-inside: avoid;
	-webkit-column-break-inside: avoid;
	box-sizing: border-box;
}



.cols > *:first-child {

	margin-left: 0 !important;
}

.cols label * {
	
	margin-top: 0 !important;
}

@media all and (max-width: 1024px) {
	
	.cols,
	.cols-2,
	.cols-3,
	.cols-4,
	.cols-5	{
		
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	
	.cols label,
	.cols div,
	.cols section,
	.cols p {
		
		margin-bottom: 10px !important;
	}
}

/* --- */

section {
	
	padding: 20px;
	margin: 0 0 15px 0;
	position: relative;
	
	background: #fff;
}

section img {
	
	max-width: 100%;
}

section section {
	
	background: #e1e9eb;
	font-size: 16px;
}

section *:last-child {
	
	margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	
	display: block;
	margin: 30px 0 10px 0;
	padding: 0;
	
	font-size: 20px;
	font-weight: 500;
}

section section h1,
section section h2,
section section h3,
section section h4,
section section h5,
section section h6 {
	
	font-size: 18px;
}

section h1:first-child,
section h2:first-child,
section h3:first-child,
section h4:first-child,
section h5:first-child,
section h6:first-child {
	
	margin: 0 0 20px 0;
}

section h1:last-child,
section h1.end,
section h2:last-child,
section h2.end,
section h3:last-child,
section h3.end,
section h4:last-child,
section h4.end,
section h5:last-child,
section h5.end,
section h6:last-child,
section h6.end {
	
	margin-bottom: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	
	color: #000 !important;
	text-decoration: none !important;
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
	
	display: inline-block;
	margin: 0 10px 0 0;
}

.id {
	
	display: inline-block;
	padding: 5px 7px;
	margin: 0 0 30px 0;
	
	background: #eee;
	border-radius: 3px;
	font-weight: 400;
	font-size: 15px;
}

@media all and (max-width: 1024px) {
	
	section img {
		
		max-width: 100%;
	}
	
	h1 {
		
		text-align: center;
	}
}

/* --- */

.bookmark {
	
	margin: 0 0 15px 0;
	
	border-bottom: 2px solid #ccc;
}

.bookmark a {
	
	display: inline-block;
	padding: 12px 20px;
	
	background: #fff;
	opacity: 0.5;
	color: #000;
}

.bookmark a.selected,
.bookmark a:hover {
	
	opacity: 1.0;
	color: #c2423b;
}

/* --- */

.section-date {
	
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 9999;
	
	color: #aaa;
	font-size: 15px;
	background: #fff;
}

section section .section-date {
	
	background: #f5f5f5;
}

.section-date img {
	
	display: inline-block;
	margin: 0 0 0 5px;
	
	vertical-align: middle;
}

.section-date a {
	
	color: #aaa;
}

.section-gallery:not(:last-child) {
	
	margin: 0 0 15px 0;
}

.section-gallery a:first-child img {
	
	display: block;
	margin: 0 0 4px 0;
}

.profile-arrow {
	
	display: inline-block;
	width: 30px;
	height: 15px;

	background: url('./image/profile-arrow.png') no-repeat center center;
}

.section-like {
	
	margin: 30px 0 15px 0;
	
	font-weight: 500;
	font-size: 16px;
}

.section-like a {
	
	display: inline-block;
	margin: 0 25px 0 0;
	
	color: #000;
	text-decoration: none !important;
}

.section-like a.selected {
	
	color: #e50000;
}

.section-like a img {
	
	display: inline-block;
	margin: 0 5px 0 0;
	
	vertical-align: middle;
}

.section-top-right {
	
	position: absolute;
	top: 25px;
	right: 20px;
	margin: 0;
}

.section-bottom-right {
	
	position: absolute;
	bottom: 25px;
	right: 20px;
	margin: 0;
}

.max-img {
	
	width: 100%;
	max-width: 100%;
}

#report {
	
	position: absolute;
	top: 20px;
	right: 20px;
}

#report img {
	
	opacity: 0.2;
}

#report img.selected,
#report img:hover {
	
	opacity: 1.0;
}

.fav {
	
	position: absolute;
	top: 15px;
	right: 15px;
}

.book-ul {
	
	margin: 0;
	padding: 0;
}

.book-ul li {
	
	padding: 3px 0 3px 40px;
	margin: 0 0 10px 0;

	list-style: none;
}

.item-links {
	
	margin: 25px 0 0 0;
	padding: 15px 0 0 0;
	
	border-top: 1px solid #111;
}

.item-links li {
	
	display: inline-block;
	margin: 0 30px 0 0;
	padding: 3px 0 3px 36px;
	
	list-style: none;
}

.item-links a {
	
	color: #111;
}

li.calendar {
	
	background: url('./image/calendar.png') no-repeat left center;
}

li.client {
	
	background: url('./image/client.png') no-repeat left center;
}

li.phone {
	
	background: url('./image/phone.png') no-repeat left center;
}

li.email {
	
	background: url('./image/email.png') no-repeat left center;
}

li.message {
	
	background: url('./image/message.png') no-repeat left center;
}

li.comments {
	
	background: url('./image/comments.png') no-repeat left center;
}

li.favorite {
	
	background: url('./image/favorite.png') no-repeat left center;
}

li.price {
	
	background: url('./image/price.png') no-repeat left center;
}

li.options {
	
	background: url('./image/options.png') no-repeat left center;
}

li.info {
	
	background: url('./image/alert.png') no-repeat left center;
}

.status-0 {
	
	display: inline-block;
	padding: 5px 7px;
	
	border-radius: 4px;
	background: #111;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: bold;
}

.status-1 {
	
	display: inline-block;
	padding: 5px 7px;
	
	border-radius: 4px;
	background: #008b0d;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: bold;
}

.status-2,
.status-4,
.status-5 {
	
	display: inline-block;
	padding: 5px 7px;
	
	border-radius: 4px;
	background: #be3941;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: bold;
}

.status-3 {
	
	display: inline-block;
	padding: 5px 7px;
	
	border-radius: 4px;
	background: #ccc;
	color: #000;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: bold;
}

@media all and (max-width: 1024px) {
	
	.section-date {
		
		top: 10px;
	}
	
	.section-top-right {
		
		position: static;
		display: block;
		margin: 0 0 20px 0;
		
		text-align: center;
	}
}

/* --- */

.manage-panel-top {
	
	width: 150px;
	background: #000;
	color: #fff;
	text-align: center;
}

.manage-img {
	
	display: inline-block;
	position: relative;
	width: 150px;
	height: 150px;
	
	overflow: hidden;
	cursor: pointer;
}

.manage-img-panel {
	
	position: absolute;
	top: 0;
	left: 0;
	width: 120px;
	height: 120px;
	padding: 15px;
	
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
}

.manage-img-panel .button {
	
	width: calc(100% - 30px);
	margin: 0 0 10px 0;
	
	line-height: auto;
	font-size: 14px;
}

@media all and (max-width: 1024px) {
	
	.manage-panel-top {
		
		width: 100%;
	}
	
	.manage-img {
	
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 10px 0;
	}
	
	.manage-img img {
	
		display: block;
		width: 100%;
	}
	
	.manage-img-panel {
		
		width: calc(100% - 30px);
	}
}

/* --- */

#photo-editor {
	
	max-width: 100%;
	position: relative;
	
	overflow: auto;
	background: #ccc;
}

#photo-editor-menu {
	
	margin: 20px 0 0 0;
}

#photo-editor-menu a {
	
	display: inline-block;
	margin: 0 15px 0 0;
	
	text-decoration: underline;
}

#this-image {
	
	float: left;
}

#area {
	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	background: rgba(255, 255, 255, 0.5) url('./image/move.png') no-repeat center center;
}

#resize {
	
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0;
	bottom: 0;
	
	background: url('./image/resize.png') no-repeat center center;
}

/* --- */

.paging {
	
	margin: 30px 0;
	
	color: #333;
	text-align: right;
}

.paging ul {
	
	margin: 0 15px 0 0;
	padding: 0;
	display: inline-block;
}

.paging ul li {
	
	margin: 0 5px 0 0;
	padding: 0;
	display: inline-block;
	
	list-style: none;
}

.paging ul li a {
	
	display: inline-block;
	padding: 3px 6px;
	
	color: #333;
}

.paging ul li a:hover {
	
	color: #e92c2c;
}

.paging ul li a.selected {
	
	text-decoration: underline;
}

.paging ul li:first-of-type a,
.paging ul li:last-of-type a {
	
	color: #fff;
	background-color: #c2423b;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23000' stroke-width='66.7' stroke-opacity='0.05' %3E%3Ccircle fill='%23ff9d00' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23fb8d17' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23f47d24' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%23ed6e2d' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23e35f34' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23d85239' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%23cc453e' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23be3941' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23b02f43' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23a02644' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23901e44' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23801843' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%236f1341' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%235e0f3d' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%234e0c38' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%233e0933' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%232e062c' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23210024' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
	border-radius: 50px;
}

.paging ul li:first-of-type a:hover,
.paging ul li:last-of-type a:hover {
	
	background: #c2423b;
}

/* --- */

#wrapper {
	
	width: 100%;
	min-height: 100%;
	position: relative;
}

.main {

	padding: 0 20px;
	margin: 0 auto;
	position: relative;
	max-width: 1200px;
}

.clear {
	
	clear: both;
}

.img-max {
	
	width: 100%;
}

.opacity {
	
	opacity: 0.5;
}

.opacity-max {
	
	opacity: 0.35;
}

@media all and (max-width: 1024px) {
	
	.main {
		
		padding: 0 10px;
		
		max-width: 100%;
	}
}

/* --- */

#header {
	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 9999;
	
	line-height: 100px;
	background: #fff;
	color: #fff;
}

#header.compact {
	
	height: 60px;
	
	line-height: 60px;
}

.logo,
h1.logo {
	
	margin: 0;
	padding: 0;
	
	font-weight: 500;
	font-size: 26px;
	color: #000;
}

.logo a,
.logo a:hover {
	
	color: #000;
	text-decoration: none;
}

#header .logo {
	
	position: absolute;
	top: 0;
	left: 20px;
}

#header.compact .logo {
	
	max-height: 50px;
}

#header-space {
	
	height: 100px;
}

#info-number {
	
	position: absolute;
	top: 30px;
	left: 240px;
	padding: 10px 12px 10px 47px;
	
	color: #000;
	background: #eee url('./image/info-number.png') no-repeat left +8px center;
	border-radius: 5px;
	line-height: 20px;
	font-weight: 500;
}

#header.compact #info-number {
	
	top: 10px;
}

@media all and (max-width: 1024px) {
	
	#header {
		
		height: 50px;
		
		line-height: 50px;
	}
	
	#header-space {
		
		height: 65px;
	}
	
	#header-space.index {
		
		height: 50px;
	}
	
	#header .logo {
	
		left: 10px;
	}
}

/* --- */

#menu {
	
	margin: 0;
	padding: 0;
	
	text-align: right;
	color: #222;
}

#menu li {
	
	display: inline-block;
	margin: 0 0 0 20px;
	padding: 0;
	
	list-style: none;
}

#menu li a {
	
	color: #222;
}

#menu li a:hover {
	
	color: #d85239;
}

#menu-toggle {
	
	display: none;
}

@media all and (max-width: 1024px) {

	#menu-toggle {
		
		display: inline-block;
		position: absolute;
		top: 7px;
		right: 10px;
	}

	#menu {
		
		display: none;
		position: absolute;
		top: 50px;
		left: 0;
		width: 100%;
		
		background: #fff;
	}
	
	#menu li {
		
		display: block;
		margin: 0;
		
		text-align: center;
		border-top: 1px solid #eee;
	}
}

/* --- */

.avatar {
	
	display: inline-block;
	width: 50px;
	height: 50px;
	
	border-radius: 100px;
	border: 2px solid #000;
	vertical-align: middle;
}


/* --- */

#slider {
	
	height: 650px;
	position: relative;
	
	background-color: #c2423b;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23000' stroke-width='66.7' stroke-opacity='0.05' %3E%3Ccircle fill='%23ff9d00' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23fb8d17' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23f47d24' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%23ed6e2d' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23e35f34' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23d85239' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%23cc453e' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23be3941' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23b02f43' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23a02644' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23901e44' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23801843' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%236f1341' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%235e0f3d' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%234e0c38' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%233e0933' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%232e062c' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23210024' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
	background-size: cover;
}

.slider-img {
	
	position: absolute;
	top: 75px;
	left: 100px;
}

#slider-content {
	
	width: 50%;
	position: absolute;
	top: 180px;
	right: 0;
	
	color: #fff;
	text-align: center;
}

#slider-content strong {
	
	display: block;
	margin: 0 0 40px 0;
	
	font-weight: 300;
	font-size: 38px;
}

#slider-content p {
	
	display: block;
	margin: 0 0 60px 0;
	
	font-size: 19px;
}

#search {
	
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

#search-line {
	
	background: rgba(0, 0, 0, 0.2);
	text-align: left;
	border-radius: 100px;
	overflow: hidden;
}

#search-line label {
	
	margin: 0;
	padding: 0;
	display: inline-block;
	max-width: 45%;
	float: left;
}

#search-line label input[type="text"] {
	
	margin: 0;

	color: #fff;
	border: none;
}

#search input[type="submit"] {
	
	width: 60px;
	height: 60px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -7px;
	right: -7px;
	
	background: #fff url('./image/search.png') no-repeat center center;
}

#search input[type="submit"]:hover {
	
	background: #fff url('./image/search-hover.png') no-repeat center center;
}

#search-title {
	
	padding-left: 50px;
	
	background: url('./image/search-title.png') no-repeat left +18px center;
}

#search-city {
	
	padding-left: 39px;
	
	background: url('./image/search-city.png') no-repeat left +10px center;
}

@media all and (max-width: 1024px) {
	
	#slider {
		
		height: auto;
		padding: 20px 0;
	}
	
	#slider-content {
	
		width: 100%;
		position: static;
	}
	
	#slider-content strong {
		
		margin: 0 0 20px 0;
		
		font-size: 28px;
	}
	
	#slider-content p {
		
		margin-bottom: 30px;
		
		font-size: 18px;
	}
	
	.slider-img {
		
		display: none;
	}
}

/* --- */

#categories {
	
	padding: 50px;
	
	color: #fff;
	background: #333;
	text-align: center;
}

#categories a,
#categories a:hover {
	
	color: #fff;
}

.cat {
	
	display: inline-block;
	margin: 0 10px;
	
	font-size: 22px;
	font-weight: 400;
}

.cat-icon {
	
	width: 150px;
	height: 150px;
	padding: 30px;
	margin: 0 0 20px 0;
	
	background-color: #c2423b;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23000' stroke-width='66.7' stroke-opacity='0.05' %3E%3Ccircle fill='%23ff9d00' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23fb8d17' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23f47d24' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%23ed6e2d' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23e35f34' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23d85239' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%23cc453e' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23be3941' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23b02f43' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23a02644' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23901e44' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23801843' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%236f1341' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%235e0f3d' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%234e0c38' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%233e0933' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%232e062c' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23210024' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
	background-size: cover;
	border-radius: 150px;
	line-height: 150px;
	text-align: center;
}

.cat-icon img {
	
	width: 100%;
	vertical-align: middle;
}

.cat:hover .cat-icon {
	
	background: #c2423b;
}

@media all and (max-width: 1024px) {
	
	#categories {
	
		padding: 20px;
	}
	
	.cat {
		
		margin-bottom: 20px;
		
		font-size: 18px;
	}
	
	.cat-icon {
		
		width: 50px;
		height: 50px;
		
		line-height: 50px;
	}
}

/* --- */

#content {
	
	position: relative;
	top: 0;
	padding: 30px 0 350px 0;
}

#left {
	
	width: 300px;
	float: left;
}

#right {
	
	margin: 0 0 0 315px;
}

#left ul {
	
	margin: 0;
	padding: 0;
}

#left ul li {
	
	padding: 10px 0;
	margin: 0;
	
	border-bottom: 1px solid #eee;
	list-style: none;
}

#left ul li:last-child {
	
	border-bottom: none;
}

@media all and (max-width: 1024px) {
	
	#content {
		
		padding: 0;
	}
	
	#content .main {
		
		display: flex;
        flex-flow: column;
	}
	
	#left {
		
		width: 100%;
		float: none;
		margin: 0 0 15px 0;
		order: 2;
	}
	
	#right {
		
		margin: 0;
		order: 1;
	}
}

/* --- */

.slider-items-container {
		
	width: calc(100% + 7.5px);
}

section.item {
	
	max-width: calc(100% / 3 - 30px);
	float: left;
	margin: 0 15px 15px 0;
	padding: 10px 10px 20px 10px;
	
	text-align: center;
}

.slider-items-container section.item {
	
	max-width: 286px;
	float: left;
	margin: 0 0 20px 0;
	padding: 10px 10px 20px 10px;
	
	text-align: center;
	box-sizing: border-box;
}

section.item:nth-child(3n) {
	
	margin-right: 0;
}

.item-img {
	
	width: 100%;
}

.item-end {
	
	position: absolute;
	top: 15px;
	left: 15px;
}

section.item h2 {
	
	margin: 15px 0;
	
	font-size: 20px;
	white-space: nowrap;
	overflow: hidden;
}

section.item p {
	
	margin: 0 0 20px 0;
	
	color: #888;
}

section.item .button {
	
	padding: 10px 20px;
	
	font-size: 15px;
}

.slider-items-container section.item .button {
	
	background: url('./image/button.png') no-repeat center center;
}

.slider-items-container section.item .button:hover {
	
	background: #c2423b;
}

section.item .buttons-fixed {
	
	height: 70px;
}

#item-res {
	
	width: calc(100% - 340px);
	min-height: 240px;
}

@media all and (max-width: 1200px) {
	
	section.item {
	
		width: calc((100% - 20px) / 2);
	}
	
	section.item:nth-child(2n) {
		
		margin-right: 0;
	}
}

@media all and (max-width: 1024px) {
	
	section.item {
	
		width: calc(100% - 20px) !important;
		max-width: calc(100% - 20px) !important;
		float: none;
		margin: 0 0 10px 0;
	}
	
	section.item h2 {
		
		font-size: 18px;
	}
	
	section.item p {
		
		font-size: 13px;
	}
	
	section.item .button {
	
		font-size: 12px;
	}
	
	#item-res {
	
		width: 100%;
		min-height: 0;
	}
}

/* --- */

section.item-line {
	
}

/* --- */

#block-1 {
	
	margin: 0 0 15px 0;
}

#block-2 {
	
	margin: 0 0 15px 0;
}

/* --- */

#map {
	
	height: 250px;
}

/* --- */

#recommend {
	
	margin: 30px 0;
	position: relative;
}

#recommend-more {
	
	position: absolute;
	right: 0;
	bottom: 30px;
}

@media all and (max-width: 1024px) {
	
	#recommend {
		
		text-align: center;
	}
	
	#recommend-more {
		
		position: static;
	}
}

/* --- */

.pricelist-circle {
	
	width: 120px !important;
	height: 120px;
	margin: 0 auto 30px auto;
	
	border-radius: 120px;
	background: #e92c2c;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 15px;
}

.pricelist-circle strong {
	
	display: block;
	padding: 25px 0 0 0;
	
	font-size: 35px;
}

/* --- */

section.blog {
	
	position: relative;
	height: 245px;
	padding-left: 300px;
}

.blog-img {
	
	position: absolute;
	top: 0;
	left: 0;
}

section.blog h2 {
	
	margin-top: 0;
	
	font-size: 20px;
}

section.blog p {
	
	height: 180px;
	margin: 0 0 15px 0;
	
	font-size: 16px;
	overflow: hidden;
	color: #888;
}

.blog-buttons {
	
	text-align: right;
}

.blog-buttons a {
	
	display: inline-block;
	margin-left: 20px;
}

/* --- */

#box-container {
	
	margin: 0 0 50px 0;
	
	color: #fff;
}

#box-left {
	
	width: calc((100% - 15px) / 2);
	float: left;
}

#box-right {
	
	margin-left: calc((100% + 15px) / 2);
}

#box-left,
#box-right {
	
	padding: 50px 0;
	
	background-color: #c2423b;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23000' stroke-width='66.7' stroke-opacity='0.05' %3E%3Ccircle fill='%23ff9d00' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23fb8d17' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23f47d24' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%23ed6e2d' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23e35f34' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23d85239' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%23cc453e' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23be3941' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23b02f43' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23a02644' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23901e44' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23801843' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%236f1341' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%235e0f3d' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%234e0c38' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%233e0933' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%232e062c' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23210024' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
	background-size: cover;
	text-align: center;
}

#box-container h3 {
	
	margin: 0 0 30px 0 !important;
}

#box-container p {
	
	margin: 0 0 30px 0 !important;
}

#box-container a.button {
	
	display: inline-block;
	margin: 0 0 20px 0;
	
	background: #fff;
	color: #000 !important;
}

#box-container a.button:hover {
	
	color: #c2423b !important;
}

#box-container a {
	
	color: #fff;
}

.box-premium {
	
	position: absolute;
	top: 0;
	right: 0;
}

section > strong.box-toggle,
section h1.box-toggle,
section h2.box-toggle {
	
	background: url('./image/up.png') no-repeat right center;
	cursor: pointer;
}

section > strong.box-toggle.box-close,
section h1.box-toggle.box-close,
section h2.box-toggle.box-close {
	
	margin-bottom: 0;
	
	background: url('./image/down.png') no-repeat right center;
}

section.box-toggle * {
	
	display: none;
}

@media all and (max-width: 1024px) {
	
	#box-left,
	#box-right {
		
		padding: 20px 10px;
		float: none;
		margin: 0 0 10px 0;
		width: calc(100% - 20px);
	}
	
	#box-container h3 {
		
		font-size: 22px;
	}
}

/* --- */

.pricelist {
	
	text-align: center;
}

.pricelist h3 {
	
	width: 150px;
	height: 150px;
	margin: 0 auto 30px auto !important;
	
	color: #fff;
	font-size: 30px;
	background-color: #c2423b;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg stroke='%23000' stroke-width='66.7' stroke-opacity='0.05' %3E%3Ccircle fill='%23ff9d00' cx='0' cy='0' r='1800'/%3E%3Ccircle fill='%23fb8d17' cx='0' cy='0' r='1700'/%3E%3Ccircle fill='%23f47d24' cx='0' cy='0' r='1600'/%3E%3Ccircle fill='%23ed6e2d' cx='0' cy='0' r='1500'/%3E%3Ccircle fill='%23e35f34' cx='0' cy='0' r='1400'/%3E%3Ccircle fill='%23d85239' cx='0' cy='0' r='1300'/%3E%3Ccircle fill='%23cc453e' cx='0' cy='0' r='1200'/%3E%3Ccircle fill='%23be3941' cx='0' cy='0' r='1100'/%3E%3Ccircle fill='%23b02f43' cx='0' cy='0' r='1000'/%3E%3Ccircle fill='%23a02644' cx='0' cy='0' r='900'/%3E%3Ccircle fill='%23901e44' cx='0' cy='0' r='800'/%3E%3Ccircle fill='%23801843' cx='0' cy='0' r='700'/%3E%3Ccircle fill='%236f1341' cx='0' cy='0' r='600'/%3E%3Ccircle fill='%235e0f3d' cx='0' cy='0' r='500'/%3E%3Ccircle fill='%234e0c38' cx='0' cy='0' r='400'/%3E%3Ccircle fill='%233e0933' cx='0' cy='0' r='300'/%3E%3Ccircle fill='%232e062c' cx='0' cy='0' r='200'/%3E%3Ccircle fill='%23210024' cx='0' cy='0' r='100'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
	background-size: cover;
	line-height: 150px;
	border-radius: 150px;
}

.pricelist-price {
	
	font-size: 20px;
	font-weight: 500;
}

.pricelist ul {
	
	margin: 50px 0;
	padding: 0;
	
	border-top: 1px solid #eee;
	font-size: 15px;
}

.pricelist ul li {
	
	margin: 0;
	padding: 15px 0;
	
	list-style: none;
	border-bottom: 1px solid #eee;
}

/* --- */

#footer {
	
	width: 100%;
	height: 330px;
	position: absolute;
	left: 0;
	bottom: 0;
	
	background: #222;
	color: #fff;
}

#footer .main {
	
	text-align: center;
}

#footer a {
	
	color: #fff;
}

#footer a:hover {
	
	text-decoration: underline;
}

#footer-menu {
	
	padding: 50px 0;
	margin: 0 0 50px 0;
	
	background: #333;
}

#footer-menu ul {
	
	margin: 0;
	padding: 0;
	
	text-align: center;
}

#footer-menu ul li {
	
	display: inline-block;
	margin: 0 15px;
	padding: 0;
	
	list-style: none;
}

#footer-info-number {
	
	display: inline-block;
	padding: 10px 12px 10px 47px;
	
	color: #000;
	background: #ddd url('./image/info-number.png') no-repeat left +8px center;
	border-radius: 5px;
	line-height: 20px;
	font-weight: 500;
}

#social-media {
	
	margin: 0 0 30px 0;
	
	text-align: center;
}

@media all and (max-width: 1024px) {
	
	#footer {
		
		padding: 0 0 15px 0;
		height: auto;
		position: static;
	}
	
	#footer-menu {
	
		padding: 20px 0;
		margin: 0 0 20px 0;
	}
	
	#footer-menu ul li {
		
		display: block;
		margin: 0 0 10px 0;
	}
	
	#footer img {
		
		max-height: 50px;
	}
	
	#footer .float-left {
		
		float: none;
	}
	
	#social-media {
	
		top: 0;
		margin: 20px 0 0 0;
		
		text-align: center;
	}
	
	#social-media img {
	
		width: 30px;
		height: 30px;
	}
}