/******************************************************************
Theme Name: 
Description: 
Author: 
Author URI: 
Version: 1.0
Created: 
******************************************************************/

/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Filter Search
6.  Team Section
7.  Single Property
8.  Single Property Details
9.  Contact
10. Footer Style

-------------------------------------------------------------------*/

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #30304e;
	font-weight: 600;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	color: #30304e;
	font-weight: 400;
	line-height: 1.6;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a {color: #30304e;}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

.label-radio {
	display: block;
    font-weight: normal;
    position: relative;
    line-height: 33px;
    padding-left: 35px;
    margin-bottom: 0;
    float: left;
    width: 100%;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #555555;
}
.label-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 13px;
}
.label-radio .checkmark {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
.label-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}
.label-radio input:checked ~ .checkmark:after {
    display: block;
}
.label-radio input:checked ~ .checkmark {
    background-color: #30304e;
}
.label-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.cb {clear: both;}

/*---------------------
  Helper CSS
-----------------------*/
.ui-widget.ui-widget-content {border: 1px solid #30304e;}

.section-title {
	margin-bottom: 88px;
	text-align: center;
}

.section-title h2 {
	color: #6f6f8a;
	font-size: 36px;
	font-weight: 400;
	line-height: 48px;
}

.section-title h2 span {
	color: #30304e;
	font-weight: 500;
}

.only-print {display: none;}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 70px;
	padding-bottom: 61px;
}

.spad-2 {
	padding-top: 50px;
	padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #30304e;
}

/* buttons */

.site-btn {
	display: inline-block;
	border: 2px solid #30304e;
	font-size: 16px;
	font-weight: 500;
	padding: 15px 25px;
	border-radius: 4px;
	line-height: normal;
	color: #30304e;
    background: #fcba00;
    border-color: #fcba00;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #30304e;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.elements-section {
	padding-top: 100px;
}

.el-title {
	margin-bottom: 75px;
}

.element {
	margin-bottom: 100px;
}

.element:last-child {
	margin-bottom: 0;
}

/*---------------------
  Header Section
-----------------------*/

.header-section {
	padding: 25px 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
}

.logo {
	float: left;
	margin-bottom: 10px;
	display: inline-block;
}

.main-menu {
	float: right;
	display: inline-block;
}

.main-menu li {
	display: inline-block;
}

.main-menu a {
	color: #30304e;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	margin-left: 35px;
	padding: 4px 5px;
}

.slicknav_menu {
	display: none;
}

.top-social {
	display: inline-block;
	margin-left: 55px;
}

.top-social a {
	display: inline-block;
	color: #30304e;
	font-size: 14px;
	margin-left: 2px;
	padding: 4px 3px;
	border: 2px solid transparent;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.top-social a:hover {
	border: 2px solid #fff;
}

/*---------------------
  Hero Section
-----------------------*/

.hero-section {
	height: 633px;
	position: relative;
	z-index: 1;
	background-position: 50% 55%;
}

.hero-section .home-page {
	margin-bottom: -57px;
}

.hero-section:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	content: "";
	z-index: -1;
}

.hero-text {
	padding-top: 230px;
	text-align: center;
}

.hero-text h2 {
	font-size: 48px;
	font-weight: 300;
}

.hero-text h1 {
	font-size: 72px;
	font-weight: 300;
}

.hero-section.search-result,
.hero-section.about-us,
.hero-section.single-property-r,
.hero-section.blog {
	height: 400px;
	background-position: 50% 80%;
}

.hero-section.search-result .hero-text,
.hero-section.about-us .hero-text,
.hero-section.single-property-r .hero-text,
.hero-section.blog .hero-text {
	padding-top: 178px;
}

/*---------------------
  Filter Search
-----------------------*/

.filter-search {
	margin-top: -57px;
	z-index: 9;
	position: relative;
}

.filter-search.search-opt {
	z-index: 9;
	position: absolute;
	width: 100%;
	margin-top: 0;
}

.filter-form {
	border-radius: 4px;
	background: #fcba00;
	height: 115px;
	-webkit-box-shadow: 2px 15px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 15px 30px rgba(0, 0, 0, 0.1);
}

.location {
	border-right: 1px solid #e6aa00;
	float: left;
	padding: 20px 27px 29px;
	width: 20%;
}

.location p {
	font-weight: 300;
	margin-bottom: 20px;
}
.archivio {
	border-right: 1px solid #e6aa00;
	float: left;
	padding: 20px 27px 29px;
	width: 14%;
}
.archivio p {
	font-weight: 300;
	margin-bottom: 20px;
}
.location .nice-select.filter-location {
	border-bottom: 1px solid #30304e;
	float: none;
	margin-top: -10px;
	height: 34px;
	line-height: 34px;
	background-color: #fff;
    padding: 0 0 0 7px;
}

.location .nice-select.filter-location:after {
	border-bottom: 2px solid #30304e;
	border-right: 2px solid #30304e;
	height: 7px;
	width: 7px;
}

.location .nice-select.filter-location span {
	color: #30304e;
	font-size: 15px;
	font-weight: 500;
}

.location .nice-select.filter-location .list {
	width: 100%;
	border-radius: 0;
	margin-top: 1px;
}

.search-type {
	border-right: 1px solid #e6aa00;
	float: left;
	padding: 20px 27px 29px;
	width: 20%;
}

.search-type p {
	font-size: 14px;
	color: #30304e;
	font-weight: 300;
	margin-bottom: 20px;
}

.search-type .nice-select.filter-property {
	border-bottom: 1px solid #30304e;
	float: none;
	margin-top: -10px;
	height: 34px;
	line-height: 34px;
	background-color: #fff;
    padding: 0 0 0 7px;
}

.search-type .nice-select.filter-property:after {
	border-bottom: 2px solid #30304e;
	border-right: 2px solid #30304e;
	height: 7px;
	width: 7px;
}

.search-type .nice-select.filter-property span {
	color: #30304e;
	font-size: 16px;
	font-weight: 500;
}

.search-type .nice-select.filter-property .list {
	width: 100%;
	border-radius: 0;
	margin-top: 1px;
}

.price-range {
	border-right: 1px solid #e6aa00;
	float: left;
	padding: 20px 27px 29px;
	width: 20%;
}

.price-range p {
	font-size: 14px;
	color: #30304e;
	font-weight: 300;
}

.nice-input {
	width: 100%;
	border: none;
    float: none;
    margin-top: -10px;
    height: 34px;
    line-height: 34px;
    background-color: #fff;
    padding: 0 0 0 7px;
    border-bottom: 1px solid #30304e;
}

.range-slider {}
#s_prezzomin, #s_prezzomax {display: none;}
.ui-slider .ui-slider-handle.slider-left,
.ui-slider .ui-slider-handle.slider-right {
	width: auto;
	height: 25px;
	margin-top: -8px;
	line-height: 25px;
	font-size: 12px;
	padding: 0 3px;
	border: none;
}

.ui-slider-horizontal {
	height: 2px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	background: #30304e;
	font-weight: 500;
	color: #ffffff;
}

.bedrooms {
	border-right: 1px solid #e6aa00;
	float: left;
	padding: 20px 25px 23px 25px;
	width: 15%;
}

.bedrooms p {
	font-size: 14px;
	color: #30304e;
	font-weight: 300;
	margin-bottom: 13px;
}

.bathrooms {
	float: left;
	padding: 20px 25px 31px 25px;
	width: 16%;
}

.bathrooms p {
	font-size: 14px;
	color: #30304e;
	font-weight: 300;
	margin-bottom: 13px;
}

.room-filter-pagi .bf-item {
	display: inline-block;
}

.room-filter-pagi .bf-item input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.room-filter-pagi .bf-item input[type=radio]:checked+label {
	background: #fcba00;
	color: #30304e;
}

.room-filter-pagi .bf-item label {
	display: inline-block;
	background: #30304e;
	padding: 8px 9px;
	line-height: 13px;
	margin-right: -3px;
	border-radius: 4px;
	cursor: pointer;
	color: #fff;
}

.room-filter-pagi .bf-item:last-child label {
	padding: 8px 5px;
}

.room-filter-pagi a {
	display: inline-block;
	background: #30304e;
	padding: 8px 9px;
	line-height: 13px;
	margin-right: -3px;
	border-radius: 4px;
	color: #fff;
}

.room-filter-pagi a:last-child {
	padding: 8px 5px;
}

.room-filter-pagi a:nth-child(2) {
	background: #fcba00;
}

.search-btn {
	width: 11%;
	float: left;
}

.search-btn button[type=submit] {
	font-weight: 400;
	background: #30304e;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	padding: 42px 21px 41px 17px;
	display: inline-block;
	font-size: 21px;
	color: #fff;
}

.search-btn button[type=submit] i {
	margin-right: 10px;
}

.nice-select {
	background-color: transparent;
	border-radius: 0;
	border-bottom: solid 1px #E7E7E7;
	border: 0;
	padding-left: 0;
}

.heading-section .subheading {
	margin-bottom: 15px;
    font-size: 18px;
    display: inline-block;
    color: #fcba00;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.heading-section .subheading:before {
    position: absolute;
    top: 50%;
    right: -60px;
    content: '';
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    margin-top: -1px;
    background: #fcba00;
}
.heading-section .subheading:after {
    position: absolute;
    top: 50%;
    left: -60px;
    content: '';
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    margin-top: -1px;
    background: #fcba00;
}

/*---------------------
  About
-----------------------*/

.about-us .about-text-warp {
	background: #6f6f8a;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 100px 15px;
}

.about-us .about-text {
	max-width: 560px;
}

.about-us .about-text h2 {
	color: #fff;
	font-size: 36px;
	line-height: 48px;
	font-weight: 500;
	margin-bottom: 25px;
}

.about-us .about-text p {
	color: #ddddde;
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 32px;
}

.about-us .about-text .site-btn.a-btn {
	background: #fcba00;
	border: none;
	color: #fff;
}

.about-us .about-img {
	margin-left: -15px;
	margin-right: -15px;
	overflow: hidden;
}

.about-us .about-img img {
	display: inline-block;
	width: 70%;
	height: 337px;
	float: left;
}

.about-us .about-img .l-img {
	height: 399px;
}

.about-us .about-img .r-img {
	width: 30%;
	height: 736px;
	display: inline-block;
	margin-top: -337px;
	float: right;
}

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

.team-section {
	padding-top: 82px;
	padding-bottom: 70px;
}

.team-section .single-team .membr-pic img {
	width: 100%;
	margin-bottom: 43px;
}

.team-section .single-team .membr-info h2 {
	font-size: 30px;
	color: #30304e;
	font-weight: 500;
	margin-bottom: 2px;
}

.team-section .single-team .membr-info p {
	font-size: 18px;
	color: #6f6f8a;
	font-weight: 400;
}

/*---------------------
  Counter
-----------------------*/

.b-top {
	padding-top: 94px;
	padding-bottom: 70px;
	border-top: 1px solid #DADAE1;
}

.single-counter .counter-img {
	float: left;
}

.single-counter .counter-img img {
	display: inline-block;
	margin-right: 25px;
}

.single-counter .counter-info {
	display: inline-block;
}

.single-counter .counter-info span {
	color: #30304e;
	display: inline-block;
	font-size: 60px;
	font-weight: 500;
	line-height: 45px;
	margin-bottom: 13px;
}

.single-counter .counter-info p {
	color: #6f6f8a;
	font-size: 18px;
	font-weight: 400;
}

/*---------------------
  Map
-----------------------*/

#map {
	width: 100%;
	height: 400px;
	margin-top: 85px;
}

/*---------------------
  Single Property
-----------------------*/

.spad-p {
	padding-bottom: 8px;
}

.single-property {
	padding-top: 36px;
}

.property-title {
	float: left;
}

.property-title h3 {
	color: #30304e;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 7px;
}

.property-title a {
	color: #6f6f8a;
	font-weight: 400;
	font-size: 18px;
	display: inline-block;
}

.property-title a i {
	color: #30304e;
}

.property-price {
	float: right;
}

.property-price p {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: -4px;
}

.property-price span {
	color: #30304e;
	font-size: 30px;
	font-weight: 500;
}

.property-img.owl-carousel .owl-item img {
	width: 100% !important;
}

.property-img.owl-carousel .owl-item img {
	border-radius: 4px;
	display: inline-block;
	width: auto;
}

.property-img .owl-nav button[type=button] {
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #fcba00;
	width: 44px;
	height: 44px;
	display: inline-block;
	line-height: 44px;
	border-radius: 50%;
	color: #fff;
	font-weight: 600;
	font-size: 24px;
}

.property-img.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -23px;
}

.popular-room-features.single-property {
	margin-bottom: 0;
}

/*---------------------
  Single Property Details
-----------------------*/

.pb-30 {
	padding-bottom: 30px;
}

.spt-40 {
	padding-top: 40px;
}

.p-ins {
	padding: 0 20px 15px 25px;
	-webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}

.details-top {
	padding: 25px 0;
	margin-bottom: 35px;
	border-bottom: 1px solid #f3f3f3;
	margin-left: -25px;
	margin-right: -20px;
}

.t-details .register-id {
	float: left;
}

.t-details .register-id p {
	color: #6f6f8a;
	font-size: 18px;
	font-weight: 400;
	margin-top: 17px;
}

.t-details .register-id p span {
	display: inline-block;
	color: #30304e;
}

.t-details .popular-room-features.single-property {
	padding-top: 0;
	float: right;
}

.t-details .popular-room-features.single-property .size {
	float: left;
}

.t-details .popular-room-features.single-property .beds {
	float: left;
	margin-left: 30px;
}

.t-details .popular-room-features.single-property .baths {
	float: left;
	margin-left: 30px;
}

.t-details .popular-room-features.single-property .garage {
	float: left;
	margin-left: 30px;
}

.property-description,
.property-features,
.location-map {
	margin-bottom: 28px;
}

.property-description h4,
.property-features h4,
.location-map h4 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 18px;
}

.property-description p,
.property-features p,
.location-map p,
.property-description span {
	color: #6f6f8a;
	font-size: 16px;
	font-weight: 300;
	margin: 0;
}

.property-description iframe,
.property-features iframe,
.location-map iframe {
	width: 100%;
	height: 355px;
	border: 0;
}

.property-features h4 {
	margin-bottom: 13px;
}

.property-features .property-table {
	width: 50%;
    float: left;
	overflow-y: auto;
}

.property-features .property-table table {
	width: 100%;
	min-width: 350px;
}

.property-features .property-table table tr:nth-child(even) {
	background: #F8F8F9;
}

.property-features .property-table table tr td {
	padding-top: 8px;
	padding-bottom: 9px;
	padding-left: 25px;
	font-size: 15px;
	font-weight: 400;
	color: #30304e;
	width: 120px;
}

.property-features .property-table table tr td img {
	margin-right: 13px;
	height: 16px;
}

.location-map {
	margin-bottom: 0;
}

.location-map h4 {
	margin-bottom: 24px;
}

.contact-service {
	border-radius: 4px;
	-webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	padding-top: 30px;
	padding-bottom: 40px;
	text-align: center;
}

.contact-service img {
	margin-bottom: 12px;
}

.contact-service p {
	color: #6f6f8a;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 6px;
}

.contact-service h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-service table {
	width: 100%;
	margin-bottom: 32px;
}

.contact-service table tr:nth-child(odd) {
	background: #F8F8F9;
}

.contact-service table tr td {
	color: #6f6f8a;
	font-size: 16px;
	font-weight: 300;
	padding: 10px 0;
}

.contact-service table tr td span {
	color: #30304e;
	display: inline-block;
}

.contact-service .site-btn.list-btn {
	color: #fff;
	background: #fcba00;
	border: none;
}

/*---------------------
  Blog
-----------------------*/

.blog-section {
	padding-top: 53px;
	padding-bottom: 55px;
}

.blog-item {
	border-radius: 0 0 4px 4px;
	-webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 45px;
}

.blog-item:last-child {
	margin-bottom: 30px;
}

.blog-item .blog-pic {
	border-radius: 4px 4px 0 0;
}

.blog-item .blog-text {
	padding-left: 22px;
	padding-top: 29px;
	padding-bottom: 34px;
	padding-right: 11px;
	position: relative;
}
/*
.blog-item .blog-text:after {
	position: absolute;
	left: 0;
	top: 97px;
	width: 100%;
	height: 2px;
	background: #f3f3f3;
	content: "";
}
*/
.blog-item .blog-text .blog-title {
	margin-bottom: 30px;
}

.blog-item .blog-text .blog-title h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
}

.blog-item .blog-text .blog-title p {
	display: inline-block;
	padding: 0;
}

.blog-item .blog-text .blog-title .blog-time {
	margin-right: 10px;
	position: relative;
}

.blog-item .blog-text .blog-title .blog-time i {
	color: #30304e000;
	position: absolute;
	top: 0;
}

.blog-item .blog-text .blog-title .blog-time span {
	display: inline-block;
	margin-left: 28px;
	font-size: 14px;
	font-weight: 300;
	color: #6f6f8a;
}

.blog-item .blog-text .blog-title .blog-posted {
	position: relative;
}

.blog-item .blog-text .blog-title .blog-posted i {
	color: #30304e000;
	position: absolute;
	top: 0;
}

.blog-item .blog-text .blog-title .blog-posted span {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	color: #6f6f8a;
	margin-left: 30px;
}

.blog-item p {
	color: #6f6f8a;
	font-size: 14px;
	font-weight: 300;
	line-height: 24px;
	margin-bottom: 20px;
}
/*
.blog-item .site-btn.blog-btn {
	border: none;
	background: #fcba00;
	color: #fff;
}
*/
.blog-pagination {
	margin-bottom: 30px;
}

.blog-pagination a {
	color: #6f6f8a;
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	padding: 5px 12px;
	background: #fff;
	border: 2px solid #ADADBC;
	border-radius: 4px;
	margin-right: 5px;
}

.blog-pagination a:first-child {
	background: #88CE43;
	color: #fff;
	border-color: #88CE43;
}

.blog-right {
	border-radius: 4px;
	-webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	padding-top: 22px;
	padding-left: 22px;
	padding-right: 22px;
	padding-bottom: 43px;
	margin-bottom: 33px;
}

.blog-right .category-search {
	position: relative;
}

.blog-right .category-search input {
	border: none;
	border-radius: 50px;
	background: #F6F6F6;
	color: #6f6f8a;
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 27px;
	padding: 22px;
	width: 100%;
	height: 41px;
}

.blog-right .category-search button {
	border: none;
	border-radius: 0 50px 50px 0;
	background: #fcba00;
	cursor: pointer;
	display: inline-block;
	padding-top: 11px;
	padding-right: 27px;
	padding-bottom: 12px;
	padding-left: 22px;
	position: absolute;
	right: 0;
	top: 0px;
	font-size: 14px;
	color: #fff;
	font-weight: 400;
}

.blog-right .category-search h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 16px;
}

.blog-right .category-search .categories-table {
	margin-left: -22px;
	margin-right: -22px;
}

.blog-right .category-search .categories-table table {
	margin-bottom: 20px;
	width: 100%;
}

.blog-right .category-search .categories-table table tr:nth-child(odd) {
	background: #F8F8F9;
}

.blog-right .category-search .categories-table table tr td {
	color: #6f6f8a;
	font-size: 16px;
	font-weight: 300;
	padding-left: 22px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.blog-right .instagram-info {
	margin-left: -22px;
	margin-right: -22px;
	margin-bottom: 27px;
}

.blog-right .instagram-info h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 25px;
	padding-left: 22px;
}

.blog-right .instagram-info .instagram-pic {
	overflow: hidden;
}

.blog-right .instagram-info .instagram-pic img {
	display: inline-block;
	height: 114px;
	width: 114px;
	margin-bottom: 10px;
	float: left;
}

.blog-right .instagram-info .instagram-pic .pic-1 {
	margin-right: 4px;
}

.blog-right .instagram-info .instagram-pic .pic-2 {
	margin-right: 4px;
}

.blog-right .instagram-info .instagram-pic .pic-4 {
	margin-right: 4px;
}

.blog-right .instagram-info .instagram-pic .pic-5 {
	margin-right: 4px;
}

.our-agents h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 33px;
}

.our-agents .single-agent {
	margin-bottom: 19px;
	overflow: hidden;
}

.our-agents .single-agent:last-child {
	margin-bottom: 0;
}

.our-agents .single-agent .agent-pic {
	float: left;
	margin-right: 17px;
}

.our-agents .single-agent .agent-info {
	overflow: hidden;
	margin-top: 5px;
}

.our-agents .single-agent .agent-info h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}

.our-agents .single-agent .agent-info p {
	color: #6f6f8a;
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 0px;
}

.our-agents .single-agent .agent-info p span {
	color: #30304e;
	display: inline-block;
}

/*---------------------
  Room Items
-----------------------*/

.p-45 {
	padding-bottom: 45px;
}

.spad.search-result {
	padding-top: 50px;
	padding-bottom: 70px;
}

.found-items h4 {
	float: left;
	font-size: 24px;
	color: #6f6f8a;
	font-weight: 400;
}

.found-items h4 span {
	font-weight: 500;
	color: #30304e;
}

.found-items select {
	display: inline-block;
	float: right;
}

.found-items .nice-select.date-select {
	float: right;
	font-size: 14px;
	height: 35px;
	line-height: 35px;
	margin-top: -26px;
	color: #30304e;
	background: #EEEEFF;
	padding-left: 10px;
}

.found-items .nice-select.date-select:after {
	border-bottom: 2px solid #777785;
	border-right: 2px solid #777785;
	height: 7px;
	margin-top: -4px;
	width: 7px;
}

.found-items .nice-select.date-select span {
	margin-top: 10px;
}

.found-items .nice-select.date-select .list {
	margin-top: 10px;
	left: -17px;
	margin-left: -50px;
}

.room-items {
	border-radius: 4px;
	-webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	overflow: hidden;
}

.room-items .room-img {
	border-radius: 4px 4px 0 0;
	height: 290px;
	position: relative;
	width: 100%;
}

.room-items .room-img .room-content {
	display: inline-block;
	position: absolute;
	top: 8px;
	right: 15px;
}

.room-items .room-img .room-content i {
	color: #fff;
	display: inline-block;
}

.room-items .room-text {
	padding: 15px;
	border-radius: 0 0 4px 4px;
}

.room-items .room-text .room-details {
	padding-bottom: 8px;
	overflow: hidden;
	margin-bottom: 9px;
	border-bottom: 1px solid #f3f3f3;
	margin-left: -15px;
	margin-right: -15px;
}

.room-items .room-text .room-details .room-title {
	padding: 0 15px;
}

.room-items .room-text .room-details .room-title h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 6px;
}

.room-items .room-text .room-details .room-title a {
	display: inline-block;
	position: relative;
	float: left;
	margin-right: 10px;
}

.room-items .room-text .room-details .room-title a i {
	display: inline-block;
	color: #30304e000;
	position: absolute;
	top: -1px;
}

.room-items .room-text .room-details .room-title a span {
	display: inline-block;
	color: #30304e;
	font-size: 12px;
	font-weight: 500;
	margin-left: 23px;
}

.room-items .room-text .room-features {
	overflow: hidden;
	padding-bottom: 15px;
	margin-bottom: 12px;
	border-bottom: 1px solid #f3f3f3;
	margin-left: -30px;
	margin-right: -20px;
}

.room-items .room-text .room-features .room-info {
	padding-left: 30px;
	padding-right: 20px;
}

.room-items .room-text .room-features .room-info .size {
	display: inline-block;
	margin-right: 28px;
	float: left;
}

.room-items .room-text .room-features .room-info .size p {
	font-size: 12px;
	margin-bottom: 5px;
}

.room-items .room-text .room-features .room-info .size span {
	color: #30304e;
	font-size: 14px;
	font-weight: 400;
	margin-left: 5px;
}

.room-items .room-text .room-features .room-info .beds {
	display: inline-block;
	margin-right: 28px;
	float: left;
}

.room-items .room-text .room-features .room-info .beds p {
	font-size: 12px;
	margin-bottom: 5px;
}

.room-items .room-text .room-features .room-info .beds span {
	color: #30304e;
	font-size: 14px;
	font-weight: 500;
	margin-left: 5px;
}

.room-items .room-text .room-features .room-info .baths {
	display: inline-block;
	margin-right: 28px;
	float: left;
}

.room-items .room-text .room-features .room-info .baths p {
	font-size: 12px;
	margin-bottom: 5px;
}

.room-items .room-text .room-features .room-info .baths span {
	color: #30304e;
	font-size: 14px;
	font-weight: 500;
	margin-left: 5px;
}

.room-items .room-text .room-features .room-info .garage {
	display: inline-block;
	float: left;
}

.room-items .room-text .room-features .room-info .garage p {
	font-size: 12px;
	margin-bottom: 5px;
}

.room-items .room-text .room-features .room-info .garage span {
	color: #30304e;
	font-size: 14px;
	font-weight: 500;
	margin-left: 5px;
}

.room-items .room-text .room-price {
	display: inline-block;
}

.room-items .room-text .room-price p {
	color: #30304e;
	font-size: 16px;
	margin-bottom: -7px;
}

.room-items .room-text .room-price span {
	color: #30304e;
	font-size: 24px;
	font-weight: 500;
}

.room-items .room-text .site-btn.btn-line {
	float: right;
	margin-top: 2px;
	margin-bottom: 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.room-items .room-text .site-btn.btn-line:hover {
	color: #30304e;
	background: #fcba00;
	border-color: #fcba00;
}

/*---------------------
  Popuplar Items
-----------------------*/

.p-in {
	padding: 195px 0 150px 0;
}

.popular-items {
	background: #fff;
	border-radius: 4px;
	padding: 30px 20px 30px 30px;
}

.popular-items .popular-room-details {
	margin-bottom: 13px;
	overflow: hidden;
	padding-bottom: 19px;
	border-bottom: 1px solid #f3f3f3;
	margin-left: -30px;
	margin-right: -20px;
}

.popular-items .popular-room-details .popular-room-title {
	padding-left: 30px;
	padding-right: 20px;
}

.popular-items .popular-room-details .popular-room-title h5 {
	color: #30304e;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
}

.popular-items .popular-room-details .popular-room-title a {
	display: inline-block;
	position: relative;
	float: left;
	margin-right: 10px;
}

.popular-items .popular-room-details .popular-room-title a i {
	display: inline-block;
	color: #30304e000;
	position: absolute;
	top: -1px;
}

.popular-items .popular-room-details .popular-room-title a span {
	display: inline-block;
	color: #30304e;
	font-size: 12px;
	font-weight: 500;
	margin-left: 23px;
}

.popular-items .popular-room-description {
	margin-bottom: 12px;
	padding-bottom: 17px;
	border-bottom: 1px solid #f3f3f3;
	margin-left: -30px;
	margin-right: -20px;
}

.popular-items .popular-room-description .popular-room-desc {
	padding-left: 30px;
	padding-right: 20px;
}

.popular-items .popular-room-description .popular-room-desc p {
	color: #6f6f89;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	margin-bottom: 0;
}

.popular-items .popular-room-features {
	overflow: hidden;
	margin-bottom: 14px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f3f3f3;
	margin-left: -30px;
	margin-right: -20px;
}

.popular-items .popular-room-features .popular-room-info {
	padding-left: 30px;
	padding-right: 20px;
}

.popular-items .popular-room-features .popular-room-info .size {
	display: inline-block;
	margin-right: 28px;
	float: left;
}

.popular-items .popular-room-features .popular-room-info .size p {
	font-size: 12px;
	margin-bottom: 5px;
}

.popular-items .popular-room-features .popular-room-info .size span {
	color: #30304e;
	font-size: 14px;
	font-weight: 400;
	margin-left: 5px;
}

.popular-items .popular-room-features .popular-room-info .beds {
	display: inline-block;
	margin-right: 28px;
	float: left;
}

.popular-items .popular-room-features .popular-room-info .beds p {
	font-size: 12px;
	margin-bottom: 5px;
}

.popular-items .popular-room-features .popular-room-info .beds span {
	color: #30304e;
	font-size: 14px;
	font-weight: 500;
	margin-left: 5px;
}

.popular-items .popular-room-features .popular-room-info .baths {
	display: inline-block;
	margin-right: 28px;
	float: left;
}

.popular-items .popular-room-features .popular-room-info .baths p {
	font-size: 12px;
	margin-bottom: 5px;
}

.popular-items .popular-room-features .popular-room-info .baths span {
	color: #30304e;
	font-size: 14px;
	font-weight: 500;
	margin-left: 5px;
}

.popular-items .popular-room-features .popular-room-info .garage {
	display: inline-block;
	float: left;
}

.popular-items .popular-room-features .popular-room-info .garage p {
	font-size: 12px;
	margin-bottom: 5px;
}

.popular-items .popular-room-features .popular-room-info .garage span {
	color: #30304e;
	font-size: 14px;
	font-weight: 500;
	margin-left: 5px;
}

.popular-items .popular-room-price {
	display: inline-block;
}

.popular-items .popular-room-price p {
	color: #30304e;
	font-size: 16px;
	margin-bottom: -7px;
}

.popular-items .popular-room-price span {
	color: #30304e;
	font-size: 24px;
	font-weight: 500;
}

.popular-items .popular-room-price .deal {
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	background: #E30707;
	text-transform: uppercase;
	padding: 1px 9px;
	border-radius: 50px;
	margin-left: 11px;
}

.site-btn.btn-line {
	float: right;
	margin-top: 6px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.site-btn.btn-full {
	float: left;
	margin-top: 6px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: #30304e;
	background: #fcba00;
	border-color: #fcba00;
}

.site-btn.btn-line:hover {
	color: #30304e;
	background: #fcba00;
	border-color: #fcba00;
}
.site-btn.btn-full:hover {
	color: #30304e;
	background: #fcba00;
	border-color: #fcba00;
}

.slider-active.owl-carousel .owl-item img {
	display: inline-block;
	width: auto;
}

.slider-active .owl-nav button[type=button] {
	position: absolute;
	left: -23px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #fcba00;
	width: 44px;
	height: 44px;
	display: inline-block;
	line-height: 44px;
	border-radius: 50%;
	color: #fff;
	font-weight: 600;
	font-size: 24px;
}

.slider-active.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -23px;
}
/*---------------------
  home
-----------------------*/
.servizi-agenzia {margin-top: 30px;}
.servizi-agenzia ul {display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px;}
.servizi-agenzia li {display: flex; align-items: center; min-height: 100px;}
.servizi-agenzia li p {font-size: 17px;}
.servizi-agenzia li p span {color: #6f6f8a;}

/*---------------------
  cerco-offro
-----------------------*/

.cerco-offro-section {
	background: #fcba00;
	padding: 30px 0 30px 0;
}

.cerco-offro-section .cerco-offro-text img {
	/* margin-bottom: 25px; */
	margin-right: 30px;
}

.cerco-offro-section .cerco-offro-text h4 {
	display: inline;
	color: #30304e;
	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	margin-bottom: 35px;
}

.cerco-offro-section .cerco-offro-text input {
	width: 385px;
	height: 51px;
	border: none;
	display: inline-block;
	padding: 18px 10px 18px 20px;
	font-size: 14px;
	color: #6f6f8a;
	font-weight: 300;
	border-radius: 4px;
	margin-right: 20px;
}

.cerco-offro-section .cerco-offro-text .site-btn.news-btn {
	padding: 16px 38px;
	border: none;
	background: #30304e;
	color: #fff;
	cursor: pointer;
}

/*---------------------
  Services
-----------------------*/

.services-section {
	padding-top: 78px;
}

.left-side h2 {
	color: #6f6f8a;
	font-size: 36px;
	font-weight: 400;
	line-height: 48px;
	margin-bottom: 12px;
}

.left-side h2 span {
	color: #30304e;
	font-weight: 500;
}

.left-side p {
	color: #6f6f8a;
	font-size: 17px;
	font-weight: 300;
	line-height: 24px;
	margin: 0;
}

.right-side ul {
	margin-top: 10px;
}

.right-side ul li {
	color: #30304e;
	font-size: 18px;
	font-weight: 400;
	list-style: none;
	margin-bottom: 20px;
}

.right-side a:hover {
	padding: 15px 25px;
    border-radius: 4px;
    color: #30304e;
    line-height: normal;
    background-color: #fcba00;
}

.right-side ul li img {
	margin-right: 27px;
}

/*---------------------
  Room Pic
-----------------------*/

.room-pic img {
	width: 20%;
}

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

.contact-section {
	padding-top: 85px;
	padding-bottom: 100px;
}

.contact-form h4,
.contact-info h4 {
	color: #30304e;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 47px;
}

.contact-form input,
.contact-info input {
	width: 100%;
	height: 44px;
	background: #fff; /* #f6f6f6 */
	border: none;
	padding-top: 17px;
	padding-right: 15px;
	padding-bottom: 18px;
	padding-left: 20px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 400;
	color: #8f8f8f;
	margin-bottom: 20px;
}

.contact-form textarea,
.contact-info textarea {
	background: #fff; /* #f6f6f6 */
	border: none;
	color: #8f8f8f;
	font-size: 12px;
	font-weight: 400;
	height: 200px;
	padding-top: 20px;
	padding-left: 20px;
	width: 100%;
	margin-bottom: 15px;
}

.contact-form .site-btn.c-btn,
.contact-info .site-btn.c-btn {
	border: none;
	background: #30304e;
	color: #fff;
}

.contact-info h4 {
	margin-bottom: 44px;
}

.contact-info .contact-addr {
	margin-bottom: 22px;
}

.contact-info .contact-addr li {
	list-style: none;
	position: relative;
	margin-bottom: 12px;
}

.contact-info .contact-addr li i {
	color: #30304e;
	position: absolute;
	top: -2px;
}

.contact-info .contact-addr li span {
	color: #6f6f8a;
	font-size: 14px;
	font-weight: 300;
	margin-left: 35px;
}

.contact-info p {
	color: #6f6f8a;
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 2px;
}

/*---------------------
  Instagram
-----------------------*/

.instagram {
	background: #F8F8F9;
	padding: 40px 0;
}

.instagram h2 {
	color: #30304e;
	font-size: 36px;
	font-weight: 400;
}

/*---------------------
  Footer
-----------------------*/

.sp-60 {
	padding-bottom: 60px;
}

.sp-40 {
	padding-bottom: 40px;
}

.p-20 {
	padding-bottom: 20px;
}

.p-37 {
	padding-bottom: 37px;
}

.p-40 {
	padding-top: 40px;
}

.footer-section {
	padding-top: 50px;
	background: #30304e;
}

footer li a {color: #fff;}

.about-footer h5 {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 17px;
}

.about-footer p {
	color: #a2a2bb;
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 33px;
}

.about-footer .footer-social a {
	display: inline-block;
	margin-right: 20px;
	color: #fff;
	position: relative;
	z-index: 1;
}

.about-footer .footer-social a i {
	margin-left: 10px;
}

.about-footer .footer-social a:after {
	position: absolute;
	width: 32px;
	height: 32px;
	background: #6f6f8a;
	color: #fff;
	content: "";
	border-radius: 50%;
	bottom: -3px;
	left: 0px;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.about-footer .footer-social a:hover:after {
	opacity: 1;
	visibility: visible;
}

.footer-blog h5 {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 22px;
}

.footer-blog .single-blog {
	overflow: hidden;
}

.footer-blog .single-blog .lt-side {
	display: inline-block;
	float: left;
	overflow: hidden;
	margin-right: 30px;
	margin-bottom: 27px;
}

.footer-blog .single-blog .lt-side img {
	height: 67px;
	width: 67px;
	border-radius: 4px;
	display: inline-block;
	margin-top: 4px;
}

.footer-blog .single-blog .rt-side {
	display: inline-block;
	margin-bottom: 27px;
}

.footer-blog .single-blog .rt-side h6 {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 6px;
	line-height: 22px;
}

.footer-blog .single-blog .rt-side .blog-time {
	display: inline-block;
	position: relative;
	float: left;
	margin-right: 13px;
}

.footer-blog .single-blog .rt-side .blog-time i {
	color: #E7E7EB;
	position: absolute;
	top: -3px;
}

.footer-blog .single-blog .rt-side .blog-time span {
	color: #30304e;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	margin-left: 27px;
}

.footer-blog .single-blog .rt-side .read-more {
	display: inline-block;
	position: relative;
}

.footer-blog .single-blog .rt-side .read-more i {
	color: #E7E7EB;
	position: absolute;
	top: -2px;
}

.footer-blog .single-blog .rt-side .read-more span {
	color: #30304e;
	font-size: 12px;
	font-weight: 500;
	margin-left: 25px;
}

.footer-address h5 {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 16px;
}

.footer-address ul {
	margin-bottom: 18px;
}

.footer-address ul li {
	list-style: none;
	color: #fff;
	margin-bottom: 6px;
	position: relative;
}

.footer-address ul li i {
	position: absolute;
	top: -2px;
}

.footer-address ul li span {
	color: #a2a2bb;
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	margin-left: 35px;
}

.footer-address p {
	color: #a2a2bb;
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 0;
}

.copyright {
	color: #a2a2bb;
	font-size: 12px;
	font-weight: 500;
	opacity: 1;
}

.copyright a {
	color: #a2a2bb;
}

/* menu mobile */
.slicknav_menu .slicknav_menutxt {color: #30304e; text-shadow: none;}
.slicknav_menu .slicknav_icon-bar {background-color: #30304e; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;}

/* paginatore */
#paginatore ul {text-align: right;}
#paginatore li {display: inline-block; width: 40px; height: 40px; line-height: 40px; text-align: center;}
#paginatore li a {display: block; width: 40px; height: 40px; line-height: 40px; text-align: center; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out; color: #999;}
#paginatore li a:hover {background-color: #fcba00; color: #333;}
#paginatore li a.pag_sel {background-color: #fcba00; color: #333; webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;}
.hotel-rooms .room-items .scheda-link {position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block;}
.hotel-rooms .btn-full {float: right}

/* mappa scheda */
#location-map {width: 100%; height: 350px;}

/* contatti scheda */
#scheda .contact-section {background-color: #fcba00; padding-top: 60px; padding-bottom: 60px;}
#scheda .box-classe-en {margin-top: 15px;}

/* contatti */
#contatti .contact-section {background-color: #fcba00; padding-top: 30px; padding-bottom: 60px;}
#contatti .contact-info .contact-addr li span, #contatti .contact-info p {color: #30304e;}

/* slider scheda */
#owl-scheda { width: 100%; padding: 0; height: 500px;  margin-bottom: 30px;}
#owl-scheda .owl-item {float: left; margin-right: 5px;}
#owl-scheda .owl-stage-outer {position: relative; overflow: hidden; height: 100%;}
#owl-scheda .owl-nav button[type=button] {position: absolute; left: -15px; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); background: #fcba00; width: 44px; height: 44px; display: inline-block; line-height: 44px; border-radius: 50%; color: #30304e; font-weight: 600; font-size: 24px;}
#owl-scheda .owl-nav button[type=button].owl-next {right: -15px; left: auto;}
#owl-scheda.solo-una-img .owl-stage {width: 100% !important; text-align: center;}
#owl-scheda.solo-una-img .owl-stage .owl-item {float: none !important;}
#owl-scheda.solo-una-img .owl-nav {display: none !important;}

/* stampa, img, pln, video */
#scheda .tabs2 a span, #scheda .tabs a span {font-size: 40px;  color: #fcba00;}
#scheda .tabs2 li, #scheda .tabs li {display: inline-block; list-style-type: none;}
#scheda .tabs {text-align: right;}
#scheda .tabs li {margin-left: 5px;}
#scheda .tabs2 li {margin-right: 5px;}

/* ristrutturazioni edili */
#ristrutturazione .hero-section {height: 500px; background-position: center;}
#ristrutturazione .popular-room {background-position: center;}
#ristrutturazione i.fa {font-size: 40px; margin-right: 30px; vertical-align: middle; color: #fcba00;}

/*---------------------
  Responsive
-----------------------*/

/* Medium Screen : 1280px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.logo {
		display: block;
		float: none;
		text-align: center;
		margin-bottom: 10px;
	}
	.main-menu {
		text-align: center;
		float: none;
		display: block;
		text-align: center;
	}
	.main-menu li:first-child a {
		margin-left: 0;
	}
	.top-social {
		margin-left: 30px;
		margin-top: 10px;
	}
	.filter-form {
		width: 60%;
		margin: auto;
	}
	.filter-form {
		height: 502px;
	}
	.archivio {
		width: 100%;
	}
	.location {
		padding: 20px 27px 10px;
		width: 100%;
	}
	.search-type {
		padding: 10px 27px 10px;
		width: 100%;
	}
	.price-range {
		padding: 10px 27px 10px;
		width: 100%;
	}
	.bedrooms {
		padding: 10px 25px 10px 25px;
		width: 100%;
	}
	.bathrooms {
		padding: 10px 25px 25px 25px;
		width: 100%;
	}
	.archivio {
		padding: 25px 25px 0px 25px;
		width: 100%;
	}
	.search-btn {
		width: 100%;
	}
	.search-btn button[type=submit] {
		width: 100%;
		border-radius: 0 0 4px 4px;
		padding: 25px 40px 25px 31px;
	}
	.footer-blog .single-blog .lt-side {
		margin-right: 15px;
	}
	.footer-blog .single-blog .rt-side h6 {
		font-size: 15px;
	}
	.main-menu li a {
		margin-left: 20px;
	}
	.top-social {
		margin-left: 20px;
	}
	.blog-right .instagram-info .instagram-pic img {
		width: 50%;
	}
	.room-items .room-text .room-features .room-info .size {
		margin-right: 13px;
	}
	.room-items .room-text .room-features .room-info .beds {
		margin-right: 13px;
	}
	.room-items .room-text .room-features .room-info .baths {
		margin-right: 13px;
	}
	.single-counter .counter-info p {
		font-size: 15px;
	}
}

/* Tablet : 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.logo {
		display: block;
		float: none;
		text-align: center;
		margin-bottom: 10px;
	}
	.main-menu {
		text-align: center;
		float: none;
		display: block;
		text-align: center;
	}
	.main-menu li a {
		margin-left: 20px;
	}
	.main-menu li:first-child a {
		margin-left: 0;
	}
	.top-social {
		margin-left: 30px;
		margin-top: 10px;
	}
	.filter-form {
		height: 502px;
	}
	.archivio {
		padding: 25px 25px 0px 25px;
		width: 100%;
	}
	.location {
		padding: 20px 27px 10px;
		width: 100%;
	}
	.search-type {
		padding: 10px 27px 10px;
		width: 100%;
	}
	.price-range {
		padding: 10px 27px 10px;
		width: 100%;
	}
	.bedrooms {
		padding: 10px 25px 10px 25px;
		width: 100%;
	}
	.bathrooms {
		padding: 10px 25px 25px 25px;
		width: 100%;
	}
	.search-btn {
		width: 100%;
	}
	.search-btn button[type=submit] {
		width: 100%;
		border-radius: 0 0 4px 4px;
		padding: 25px 40px 25px 31px;
	}
	.room-items .room-text .room-features .room-info .size {
		margin-right: 25px;
	}
	.room-items .room-text .room-features .room-info .beds {
		margin-right: 25px;
	}
	.room-items .room-text .room-features .room-info .baths {
		margin-right: 25px;
	}
	.about-footer {
		margin-bottom: 25px;
	}
	.footer-address {
		margin-top: 10px;
	}
	.contact-info {
		margin-top: 30px;
	}
	.instagram-pic .pic-1 {
		margin-right: 10px !important;
	}
	.instagram-pic .pic-2 {
		margin-right: 10px !important;
	}
	.instagram-pic .pic-3 {
		margin-right: 10px !important;
	}
	.instagram-pic .pic-4 {
		margin-right: 10px !important;
	}
	.instagram-pic .pic-5 {
		margin-right: 10px !important;
	}
	.property-title {
		margin-bottom: 15px;
	}
	.property-price {
		float: left;
	}
	.p-ins {
		margin-bottom: 30px;
	}
	.single-team {
		margin-bottom: 30px;
	}
	.team-section {
		padding-bottom: 40px;
	}
	.single-counter {
		margin-bottom: 30px;
	}
	#owl-scheda {height: 400px;}
	.property-features .property-table {width: 100%;}
	.property-features .property-table img {display: none !important;}
	.servizi-agenzia li {min-height: auto;}
}

/* Large Mobile : 480px */

@media only screen and (max-width: 767px) {
	.main-menu {
		display: none;
	}
	.slicknav_menu {
		display: block;
		background: transparent;
		padding: 0;
	}
	.slicknav_nav {
		background: #30304e;
		padding: 25px;
		z-index: 99;
	}
	.slicknav_nav a:hover {
		border-radius: 50%;
		background: none;
		color: #fff;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		margin: 15px 5px;
		color: #fff;
	}
	.slicknav_btn {
		margin-top: 38px;
		margin-bottom: 10px;
		background-color: #fcba00;
	}
	.slicknav_nav li {
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.slicknav_nav li:hover {
		background: #333;
		border-radius: 4px;
	}
	.slicknav_nav li.top-social:hover {
		background: transparent;
	}
	.top-social {
		margin-left: 10px;
		margin-top: 5px;
	}
	.filter-form {
		height: 502px;
	}
	.archivio {
		padding: 25px 25px 0px 25px;
		width: 100%;
	}
	.location {
		padding: 20px 27px 10px;
		width: 100%;
	}
	.search-type {
		padding: 10px 27px 10px;
		width: 100%;
	}
	.price-range {
		padding: 10px 27px 10px;
		width: 100%;
	}
	.bedrooms {
		padding: 10px 25px 10px 25px;
		width: 100%;
	}
	.bathrooms {
		padding: 10px 25px 25px 25px;
		width: 100%;
	}
	.search-btn {
		width: 100%;
	}
	.search-btn button[type=submit] {
		width: 100%;
		border-radius: 0 0 4px 4px;
		padding: 25px 40px 25px 31px;
	}
	.cerco-offro-section .cerco-offro-text input {
		width: 100%;
		margin-right: 0;
	}
	.cerco-offro-section .cerco-offro-text .site-btn.news-btn {
		margin-top: 15px;
	}
	.about-footer {
		margin-bottom: 25px;
	}
	.about-footer p {
		margin-bottom: 20px;
	}
	.footer-address {
		margin-top: 10px;
	}
	.t-details .popular-room-features.single-property {
		float: left;
	}
	.p-ins {
		margin-bottom: 30px;
	}
	.contact-info {
		margin-top: 30px;
	}
	.contact-section {
		padding-bottom: 70px;
	}
	.instagram-pic .pic-1 {
		margin-right: 10px !important;
	}
	.instagram-pic .pic-2 {
		margin-right: 10px !important;
	}
	.instagram-pic .pic-3 {
		margin-right: 10px !important;
	}
	.instagram-pic .pic-4 {
		margin-right: 10px !important;
	}
	.instagram-pic .pic-5 {
		margin-right: 10px !important;
	}
	.property-title {
		margin-bottom: 15px;
	}
	.property-price {
		float: left;
	}
	.services-section .left-side {
		margin-bottom: 30px;
	}
	.single-team {
		margin-bottom: 30px;
	}
	.team-section {
		padding-bottom: 40px;
	}
	.single-counter {
		margin-bottom: 30px;
	}
	.property-img .owl-nav button[type=button] {
		left: 5px;
	}
	.property-img.owl-carousel .owl-nav button.owl-next {
		right: 5px;
	}
	.slider-active .owl-nav button[type=button] {
		left: 5px;
	}
	.slider-active.owl-carousel .owl-nav button.owl-next {
		right: 5px;
	}
	.property-features .property-table {width: 100%;}
	.property-features .property-table img {display: none !important;}
}
@media screen and (max-width: 600px) {
	#owl-scheda {height: 300px;}
	#owl-scheda .owl-nav button[type=button].owl-prev {left: 0}
	#owl-scheda .owl-nav button[type=button].owl-next {right: 0;}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hero-text h2 {
		font-size: 35px;
	}
	.hero-text h1 {
		font-size: 45px;
	}
	.room-items .room-text .room-features .room-info .size {
		margin-right: 12px;
	}
	.room-items .room-text .room-features .room-info .beds {
		margin-right: 12px;
	}
	.room-items .room-text .room-features .room-info .baths {
		margin-right: 12px;
	}
	.popular-items {
		padding: 20px 20px 20px 20px;
	}
	.popular-items .popular-room-details {
		margin-bottom: 25px;
	}
	.popular-items .popular-room-details .popular-room-title h5 {
		font-size: 17px;
	}
	.popular-items .popular-room-features .popular-room-info .size {
		margin-right: 10px;
	}
	.popular-items .popular-room-features .popular-room-info .beds {
		margin-right: 10px;
	}
	.popular-items .popular-room-features .popular-room-info .baths {
		margin-right: 10px;
	}
	.popular-room-features .size span {
		margin-left: 4px;
	}
	.popular-room-features .beds span {
		margin-left: 4px;
	}
	.popular-room-features .baths span {
		margin-left: 4px;
	}
	.popular-items .deal {
		bottom: 94px;
	}
	.popular-items .site-btn.btn-line {
		float: none;
		margin-top: 15px;
	}
	.left-side h2 span {
		font-size: 30px;
	}
	.left-side h2 {
		font-size: 21px;
		line-height: 30px;
	}
	.right-side ul li {
		font-size: 14px;
		line-height: 26px;
	}
	.right-side ul li img {
		margin-right: 15px;
	}
	.room-pic img {
		width: 100%;
		height: 270px;
	}
	.cerco-offro-section .cerco-offro-text h4 {
		font-size: 22px;
	}
	.footer-blog .single-blog .rt-side h6 {
		font-size: 14px;
	}
	.sp-60 {
		padding-bottom: 50px;
	}
	.found-items h4 {
		font-size: 14px;
	}
	.about-us .about-text h2 {
		font-size: 28px;
		line-height: 40px;
		margin-bottom: 20px;
	}
	.about-us .about-img img {
		height: 200px;
	}
	.about-us .about-img .l-img {
		height: 300px;
	}
	.about-us .about-img .r-img {
		height: 637px;
	}
	.section-title h2 {
		font-size: 20px;
		line-height: 35px;
	}
	.section-title h2 span {
		font-size: 36px;
	}
	.section-title {
		margin-bottom: 50px;
	}
	.single-team {
		margin-bottom: 30px;
	}
	.team-section {
		padding-bottom: 40px;
	}
	.single-counter {
		margin-bottom: 30px;
	}
	.b-top {
		padding-bottom: 40px;
	}
	.p-ins {
		padding: 0 20px 15px 20px;
	}
	.popular-room-features.single-property {
		float: left;
	}
	.p-ins:after {
		top: 145px;
	}
	.property-features table tr {
		display: block;
	}
	.property-features table tr td {
		width: 100px;
	}
	.property-features .property-table table tr td {
		padding-left: 15px;
	}
	.property-features .property-table table tr td img {
		display: block;
		margin-bottom: 10px;
	}
	.p-ins {
		margin-bottom: 30px;
	}
	.blog-item .blog-text .blog-title {
		margin-bottom: 20px;
	}
	.blog-item .blog-text:after {
		top: 119px;
	}
	.blog-item .blog-text .blog-title .blog-time i {
		top: 0px;
	}
	.blog-item .blog-text .blog-title .blog-posted i {
		top: 0;
	}
	.blog-right .category-search table tr td {
		width: 278px;
	}
	.blog-right .category-search button {
		padding-left: 18px;
	}
	.blog-right .category-search input {
		font-size: 12px;
	}
	.our-agents .single-agent .agent-pic {
		margin-bottom: 15px;
	}
	.our-agents .single-agent .agent-info {
		margin-top: 0;
		float: left;
	}
	.t-details .popular-room-features.single-property .beds {
		margin-left: 10px;
	}
	.t-details .popular-room-features.single-property .baths {
		margin-left: 10px;
	}
	.t-details .popular-room-features.single-property .garage {
		margin-left: 10px;
	}
	.instagram h2 {
		font-size: 25px;
	}
}