:root {
	--body-font: 'League Spartan', Arial, Helvetica, sans-serif;
	
	--color-primary: #0C2739;
	--color-secondary: #4C4921;
	--color-tertiary: #ECEADF;
	
	--rgb-color-primary: 12, 39, 57;
	--rgb-color-secondary: 76, 73, 33;
	--rgb-color-tertiary: 236, 234, 223;
}
*, *:before, *:after {
	box-sizing: border-box;
}
::-moz-selection { background: var(--color-tertiary); /*color: var(--color-primary);*/ text-shadow: none; }
::selection { background: var(--color-tertiary); /*color: var(--color-primary);*/ text-shadow: none; }

form ::-moz-selection { background: var(--color-secondary); color: var(--color-tertiary); text-shadow: none; }
form ::selection { background: var(--color-secondary); color: var(--color-tertiary); text-shadow: none; }

html.overscroll-lock,
html.overscroll-lock body {
	/*position: fixed;*/
	overflow: hidden !important;
	height: 100% !important;
}
body {
	margin: 0;
	padding: 0;
	color: var(--color-primary);
	font-size: 100%;
	line-height: 1.6em;
	font-family: var(--body-font);
	background: #fff;
}
#wrap {
	padding-top: 180px;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
img, svg {
	max-width: 100%;
}
a {
	color: var(--color-primary);
	cursor: pointer;
	outline: none;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.flex-container {
	display: flex;
}
.rel {
	position: relative;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.error {
	color: #b80000;
}
.success {
	color: var(--color-secondary);
	background-color: var(--color-tertiary);
	border: 1px dashed var(--color-secondary);
	padding: 1rem;
	font-weight: 500;
	max-width: 80%;
}
h1, h2, h3, h4, h5 {
	letter-spacing: 1px;
}

/* !BUTTONS */
.btn {
	display: inline-block;
	cursor: pointer;
	font-size: 0.9rem;
	color: #fff;
	background: var(--color-secondary);
	border: 2px solid var(--color-secondary);
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 22px;
	padding: .4rem 1.4rem .2rem;
	border-radius: 20px;
	letter-spacing: 1px;
	transition: .25s ease-out;
}
.no-touchevents .btn:hover {
	color: var(--color-secondary);
	background-color: transparent;
}
.btn.hollow {
	color: var(--color-secondary);
	background-color: transparent;
}
.no-touchevents .btn.hollow:hover {
	color: #fff;
	background-color: var(--color-secondary);
}

.btn.blue {
	background-color: var(--color-primary);
	border: 2px solid var(--color-primary);
	color: #fff;
}
.no-touchevents .btn.blue:hover {
	color: var(--color-primary);
}
.btn.blue.hollow {
	color: var(--color-primary);
	background-color: transparent;
}
.no-touchevents .btn.blue.hollow:hover {
	color: #fff;
	background-color: var(--color-primary);
}

.btn.small {
	font-size: 0.7rem;
	padding: .3rem 1.2rem .1rem;
	line-height: 18px;
}

/* !FORMS - general */
::placeholder {
	color: var(--color-secondary);
	opacity: .5;
}
::placeholder,
input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder {
	color: var(--color-secondary);
	opacity: .5;
}
input[type="text"],
input[type="email"],
input[type="submit"],
select,
textarea {
	filter: none;
	outline: none;
	
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
input[type="checkbox"] {
	accent-color: var(--color-secondary);
}
select {
	width: auto;
	padding: 5px 55px 5px 12px;
	font-size: .9rem;
	height: 31px;
	background: #fff url('../img/chevron-down.svg') no-repeat 98% / 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%234C4921' d='m12 15.4l-6-6L7.4 8l4.6 4.6L16.6 8L18 9.4l-6 6Z'/%3E%3C/svg%3E");
	color: var(--color-secondary);
}
select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}
select::-ms-expand {
	display: none;
}
option:not(:checked) {
  color: #444;
}
option[disabled],
option:disabled {
	color: #888;
}
label {
	display: block;
}
label.inline {
	display: inline;
}

/* !TABLES - general */
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 2rem 0;
}
table tr {
	border-bottom: 1px solid var(--color-primary);
}
table th, 
table td {
	padding: 4px;
	vertical-align: top;
	font-weight: 400;
	text-align: left;
}
table td {
	text-align: right;
}
table tr.bold th,
table tr.bold td {
	font-weight: 600;
}

/* !DROPDOWNS - general */
nav ul li.has-sub {
	position: relative;
}
nav ul li.has-sub a {
	display: inline-block;
}
nav ul li.has-sub div.subnav {
	display: none;
	opacity: 0;
	position: absolute;
	z-index: 20;
	text-align: left;
	width: 100%;
	left: 0;
	/* optional */
	top: 32px;
}
nav ul li.has-sub div.subnav ul {
	display: block;
	width: 100%;
	margin: 0;
	background-color: #fff;
}
nav ul li.has-sub div.subnav ul li,
nav ul li.has-sub div.subnav ul li a {
	display: block;
}

/* !HEADER */
header {
	position: fixed;
	z-index: 100;
	top: 0;
	width: 100%;
	height: 180px;
	background-color: #fff;
	
	padding: 2rem 0;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.15);
	
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
nav.main {
	display: flex;
	align-items: center;
	justify-content: center;
}
nav.main a.logo {
	display: inline-block;
}
nav.main a.logo svg {
	display: block;
	width: 350px;
	margin: 0 3rem;
}
nav.main ul {
	margin: 4rem 0 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex: 1;
}
nav.main ul li {
	display: inline-block;
}
nav.main ul li a {
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: .4rem 0 .2rem;
	
	font-size: 1.15rem;
	font-weight: 500;
	text-decoration: none;
	text-transform: lowercase;
	letter-spacing: .5px;
}
nav.main ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--color-tertiary);
	opacity: 1;
	transition: opacity 300ms, transform 300ms;
	transform: translate3d(-101%, 0, 0);
}
nav.main ul li a.active::after,
.no-touchevents nav.main ul li:not(.has-sub) a:hover::after {
	transform: translate3d(0, 0, 0);
}
nav.main ul li a.active/*,
.no-touchevents nav.main ul li:not(.has-sub) a:hover*/ {
	font-weight: 700;
}

/* main dropdowns */
nav.main ul li.has-sub div.subnav ul {
	border-left: 3px solid var(--color-tertiary);
}
nav.main ul li.has-sub div.subnav ul li a {
	font-size: 1rem;
	padding: .5rem;
}
.no-touchevents ul li.has-sub div.subnav ul li a:hover {
	/*background-color: #eee;*/
}

/* li.lang dropdown */
nav.main ul li.lang a {
	padding: .2rem 8px 0 8px;
	font-weight: 700;
	font-size: .95rem;
	text-transform: uppercase;
}
.no-touchevents nav.main ul li.lang a:hover,
.no-touchevents nav.main ul li.lang a.hovered {
	color: #fff;
	background-color: var(--color-primary);
}
nav.main ul li.lang div.subnav {
	top: 28px;
}
nav.main ul li.lang div.subnav ul {
	border-left: none;
}
nav.main ul li.lang div.subnav ul li a {
	color: var(--color-primary);
	font-size: .95rem;
	line-height: 1rem;
}
.no-touchevents nav.main ul li.lang div.subnav ul li a:hover {
	color: var(--color-primary);
	background-color: var(--color-tertiary);
}
.no-touchevents nav.main ul li.lang div.subnav ul li a::after {
	display: none;
}

/* !Mobile nav */
.hamburger {
	display: none;
	width: 30px;
	height: 25px;
	position: absolute;
	top: 35px;
	right: 20px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-transition: top 0.16s ease-in-out;
	-moz-transition: top 0.16s ease-in-out;
	-o-transition: top 0.16s ease-in-out;
	transition: top 0.16s ease-in-out;
	cursor: pointer;
	z-index: 200;
}
.hamburger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--color-primary);
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	z-index: 200;
}
.hamburger.open span {
	left: 0;
	z-index: 200;
}
.hamburger span:nth-child(1) {
	top: 2px;
}
.hamburger span:nth-child(2) {
	top: 12px;
}
.hamburger span:nth-child(3) {
	top: 22px;
}
.hamburger.open span:nth-child(1) {
	top: 14px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}
.hamburger.open span:nth-child(3) {
	top: 14px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.mobilenav {
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(255, 255, 255, 0.98);
	margin: 0;
	padding: 0;
	text-align: center;
	margin: 0 auto;
	margin-top: 100px;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 200px; /* owv scroll long*/
}
.mobilenav .first,
.mobilenav .second {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilenav .first a,
.mobilenav .second a {
	text-decoration: none;
}
.mobilenav .first {
	margin-top: -1rem;
}
.mobilenav .first li a {
	opacity: 0;
	width: 100%;
	color: var(--color-primary);
	font-size: 1.5rem;
	font-weight: 700;
	display: block;
	width: 100%;
	padding: 10px 0;
	letter-spacing: 0.5px;
}
.mobilenav .first li a.active {
	color: var(--color-secondary);
}

/* subnavs */
.mobilenav .first li.has-sub {
	
}
.mobilenav .first li.has-sub > a .fa {
	font-size: .9rem;
}
.mobilenav .first li.has-sub ul.subnav {
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
	padding-bottom: .5rem;
}
.mobilenav .first li.has-sub ul.subnav li {
	
}
.mobilenav .first li.has-sub ul.subnav li a {
	color: #999;
	padding: 4px;
}

/* mobile lang */
.mobilenav .language {
	position: relative;
	margin: 0 auto;
	margin-top: 80px;
	text-align: center;
	z-index: 101;
}
.mobilenav .language ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilenav .language li {
	display: inline;
}
.mobilenav .language li a {
	display: inline-block;
	font-size: 0.9rem;
	width: 40px;
	height: 40px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	padding: 6px 10px;
	padding-top: 8px;
	transition: all .3s ease-out;
	border-radius: 50%;
	line-height: 2;
	background: #ACACAC;
	color: #fff;
	letter-spacing: 0.5px;
}
.mobilenav .language li a.active,
.no-touchevents .mobilenav .language li a:hover {
	background: var(--color-primary);
	color: #fff;
}
.mobilenav .language li a:last-child {
	margin: 0;
}

/* !HOME */
.home-banners {
	position: relative;
}
.home-banners .slider img {
	display: block;
	height: 50vh;
	margin: 0 auto;
}
.objectfit .home-banners .slider img {
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.home-testimonials {
	margin: 6rem 0 4rem;
}
.home-testimonials h2 {
	font-size: 2rem;
	color: var(--color-secondary);
}
.home-testimonials h2::before {
	content: '“';
	font-size: 14rem;
	color: var(--color-tertiary);
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 200%);
	z-index: -1;
}
.home-testimonials .slider {
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.8rem;
	color: var(--color-secondary);
}
.home-testimonials .author {
	margin-bottom: 0;
}
.home-testimonials .author strong {
	font-weight: 600;
	font-size: 1.2rem;
}
.home-new {
	margin: 4rem 0;
}
.home-new h2 {
	font-size: 2rem;
}
.home-new .row.full-width .columns:nth-child(1) {
	padding-right: 2rem;
}
.home-new .row.full-width .columns:nth-child(2) {
	padding-left: 2rem;
}
.home-new a.more {
	display: block;
}
.no-touchevents .home-new a.more:hover {
	opacity: .8;
}
.home-new div.img {
	width: 100%;
	height: 400px;
	background: #fff url() no-repeat center center / cover;
}

/* !PROPERTIES overview */
.content.properties div.search {
	padding: 2rem;
	background-color: var(--color-tertiary);
}
.content.properties div.search form label {
	display: block;
	color: var(--color-secondary);
	text-transform: uppercase;
	font-size: .9rem;
}
.content.properties div.search form input[type="text"],
.content.properties div.search form select {
	width: 100%;
	height: 40px;
	margin-bottom: 1rem;
	padding: .5rem;
	font-size: 1rem;
	color: var(--color-secondary);
	border: 1px solid var(--color-secondary);
	background-color: transparent;
}
.content.properties div.search form select {
	height: 40px;
	padding: 5px 1rem 5px .5rem;
}
.content.properties div.search form input[type="submit"] {
	margin-top: 2rem;
	padding-top: .2rem;
}

.properties-list {
	margin: 4rem 0;
}
.properties-list div.img {
	position: relative;
	height: 400px;
}
.properties-list div.img span.label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 1;
	cursor: default;
	background-color: var(--color-primary);
	border: 2px solid var(--color-primary);
	color: #fff;
}
.properties-list div.img span.label.sold {
	background-color: #920000;
	border: 2px solid #920000;
}
.properties-list div.img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.no-touchevents .properties-list div.img a:hover {
	opacity: .8;
}
.properties-list div.info {
	border-bottom: 1px solid var(--color-primary);
}
.properties-list div.info {
	padding: 1rem 0;
}
.properties-list div.info h2,
.properties-list div.info h3,
.properties-list div.info h4 {
	margin: 0;
	text-transform: uppercase;
}
.properties-list div.info h3 { /* cat/type */
	font-weight: 500;
}
.properties-list div.info h2 { /* title */
	font-weight: 650;
	font-size: 1.3rem;
	margin-bottom: .8rem;
}
.properties-list div.info .icons p {
	display: inline-block;
	margin: 0 0 0 1rem;
}
.properties-list div.info .icons p:first-child {
	margin-left: 0;
}
.properties-list div.info .icons svg {
	width: 20px;
	height: 20px;
	position: relative;
	top: 2px;
}
.properties-list div.info h4 { /* price */
	font-size: 1.6rem;
	text-align: right;
}

/* !PROPERTIES detail */
.content.properties.detail {
	margin: 2rem 0;
}
.content.properties.detail h1 {
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.2rem;
	text-transform: uppercase;
	margin: .5rem 0 0 0;
}
.content.properties.detail h2 {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 2rem;
}
.content.properties.detail h3 {
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
}
.content.properties.detail span.label {
	cursor: default;
	background-color: var(--color-primary);
	border: 2px solid var(--color-primary);
	color: #fff;
	font-size: 0.8rem;
	padding-left: 1rem;
	padding-right: 1rem;
}
.content.properties.detail span.label.sold {
	background-color: #920000;
	border: 2px solid #920000;
}
.content.properties.detail div.descr {
	font-weight: 300;
}
.content.properties.detail p.back-to-list {
	text-align: right;
}
.content.properties.detail .slideshow {
	position: relative;
	margin: 2.5rem 0;
}
.content.properties.detail .slideshow .slider img {
	display: block;
	height: 500px;
	margin: 0 auto;
}
.objectfit .content.properties.detail .slideshow .slider img {
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.content.properties.detail .slideshow .slider .slick-dots {
	text-align: left;
	left: 1rem;
}
.content.properties.detail table.specs.extra {
	width: 60%;
	line-height: 1.2rem;
	margin-top: 0;
}
.content.properties.detail table.specs.extra th {
	width: 40%;
}
.content.properties.detail table.specs.extra th,
.content.properties.detail table.specs.extra td {
	vertical-align: middle;
}

/* !Isotope */
#isotope-grid {
	opacity: 0;
	margin: 2rem 0;
}
#isotope-grid .grid-sizer,
#isotope-grid .grid-item {
	box-sizing: border-box;
	width: 33.34%;
	height: 250px;
	padding-right: .9375rem;
	padding-bottom: .9375rem;
	overflow: hidden;
}
#isotope-grid .grid-item--width2 {width: 66.67%;}
#isotope-grid .grid-item--height2 {height: 500px;}

@media screen and (max-width: 760px)
{
	#isotope-grid .grid-item {height: 200px;}
	#isotope-grid .grid-item--height2 {height: 400px;}
}
@media screen and (max-width: 480px)
{
	#isotope-grid .grid-sizer,
	#isotope-grid .grid-item {
		width: 100%; /* small = 1 col */
		padding: 0;
	}
	#isotope-grid .grid-item {height: auto;}
	#isotope-grid .grid-item--height2 {height: auto;}
}
#work-grid .grid-sizer {
	margin: 0;
}
#isotope-grid .grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.no-touchevents #isotope-grid .grid-item a:hover img {
	opacity: 0.8;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

/* !KEYHOLDING */
.content.keyholding div.text {
	padding: 2rem 10%;
}
.content.keyholding h1 {
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.2rem;
}
.content.keyholding div.text p {
	/*font-weight: 300;*/
}
.content.keyholding .icons {
	flex-wrap: wrap;
	transform: translateY(-35%);
}
.content.keyholding .icons > div {
	width: 12%;
	padding-left: 1rem;
	margin-bottom: 1rem;
	text-align: center;
}
.content.keyholding .icons div.icon {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	border-radius: 100%;
	background-color: var(--color-tertiary);
}
.content.keyholding .icons div.icon svg {
	max-width: 50%;
}
.content.keyholding .icons h4 {
	margin: 1rem 0;
	line-height: 1rem;
	font-weight: 500;
	font-size: .95rem;
}

/* !ABOUT */
.content.about {
	margin-top: 2rem;
}
.content.about h1 {
	font-size: 2rem;
	line-height: 2.2rem;
}
.content.about h1::before {
	content: '“';
	font-size: 8rem;
	color: var(--color-tertiary);
	position: absolute;
	left: -45px;
	top: 10px;
	z-index: -1;
}
.content.about p {
	/*font-weight: 300;*/
}
.content.about div.rel {
	min-height: 703px;
}
.content.about div.rel img {
	position: absolute;
	right: 0;
	bottom: -2rem;
	display: block;
	margin: 0 auto;
}

/* !SERVICE */
.content.service .flex-container {
	align-items: center;
}
.content.service .inner {
	padding: 10%;
}
.content.service div[data-equalise] img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.content.service strong {
	font-weight: 600;
}
.content.service h1 {
	font-size: 2rem;
	line-height: 2.2rem;
}
.content.service.real-estate h2 {
	margin-bottom: 0;
	font-weight: 700;
	font-size: 1.4rem;
}
.content.service.real-estate h3 {
	margin-top: 0;
	font-weight: 600;
}
.content.service p {
	font-weight: 300;
}
.content.service .row.bg {
	/*background-color: rgba(var(--rgb-color-tertiary), 0.4);*/
}

.content.service.legal-assistance {
	margin-top: 2rem;
}
.content.service.legal-assistance p {
	font-weight: 300;
	margin: 0 0 1rem;
}
.content.service.legal-assistance ol {
	margin: 2rem 0;
}
.content.service.legal-assistance ol li {
	font-weight: 600;
}
.content.service.legal-assistance .indent {
	margin-left: 2rem;
}

/* !CONTACT */
.content.contact {
	margin-top: 2rem;
}
.content.contact h1 {
	font-size: 2rem;
	line-height: 2.2rem;
}
.content.contact a.social {
	text-decoration: none;
}
.no-touchevents .content.contact .map a.google:hover {
	opacity: 0.8;
}
.content.contact .map a.ext-link {
	color: var(--color-secondary);
	text-decoration: none;
}
.no-touchevents .content.contact .map a.ext-link:hover {
	text-decoration: underline;
}
.content.contact form {
	max-width: 80%;
	margin: 2rem 0;
}
.content.contact form input[type="text"],
.content.contact form input[type="email"],
.content.contact form input[type="tel"],
.content.contact form textarea {
	width: 100%;
	border: none;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
	background-color: rgba(var(--rgb-color-secondary), 0.1);
	border-radius: 5px;
	font-size: 1rem;
	font-family: var(--body-font);
	color: var(--color-secondary);
}

/* !FOOTER */
footer {
	padding: 2rem 0;
	margin-top: 2rem;
	color: var(--color-secondary);
	background-color: var(--color-tertiary);
}
footer a {
	color: var(--color-secondary);
	text-decoration: none;
}

/* !MEDIA */

/* Large and up */
@media screen and (min-width: 64em) /* >= 1024 */
{
	/*body {color: blue;}*/
	
	footer svg.logo-icon {
		margin-top: 1rem;
	}
}
/* Medium */
@media screen and (max-width: 63.99em) /* <= 1023 */
{
	/*body {color: red;}*/
	
	#wrap {
		padding-top: 100px;
	}
	header {
		height: 100px; /* act like sticky - always */
		padding: 1rem 0;
	}
	header nav.main {
		display: block;
	}
	header nav.main ul {
		display: none;
	}
	.hamburger {
		display: block;
	}
	nav.main a.logo svg {
		width: 200px;
		margin: 0;
	}
	
	/* Home */
	.home-testimonials .slider {
		font-size: 1.2rem;
		line-height: 1.6rem;
	}
	.home-testimonials .author strong {
		font-size: 1rem;
	}
	.home-new .row.full-width .columns:nth-child(1),
	.home-new .row.full-width .columns:nth-child(2) {
		padding: 0 .9375rem;
	}
	
	/* Properties overview */
	.properties-list div.img {
		height: 300px;
	}
	.properties-list div.info .icons p {
		margin-left: .5rem;
	}
	.properties-list div.info h4 { /* price */
		font-size: 1.2rem;
	}
	
	/* Properties detail */
	.content.properties.detail .slideshow .slider img {
		height: 50vh;
	}
	.content.properties.detail table.specs.extra {
		width: 100%;
	}
	
	/* Keyholding */
	.content.keyholding div.text {
		padding: 0;
	}
	.content.keyholding .icons {
		justify-content: space-around;
		transform: translateY(-15%);
	}
	.content.keyholding .icons > div {
		width: 20%;
		margin-right: 1rem;
	}
	
	/* Service */
	.content.service .flex-container {
		display: block;
	}
	.content.service .inner {
		padding: 0;
	}
	.content.service div[data-equalise] img {
		height: auto;
		margin: 2rem 0;
	}
	
	/* Contact */
	.success,
	.content.contact form {
		max-width: 100%;
	}
	
}
/* Small */
@media screen and (max-width: 40em) /* <= 640 */
{
	/*body {color: green;}*/
	
	/* Home */
	.home-testimonials .slider {
		font-size: 1rem;
		line-height: 1.4rem;
	}
	.home-testimonials .author strong {
		font-size: .9rem;
	}
	.home-new div.img {
		height: 250px;
	}
	.home-new .text-right {
		text-align: left;
	}
	
	/* Properties overview */
	.content.properties div.search {
		padding: 1rem;
	}
	.content.properties div.search form input[type="text"],
	.content.properties div.search form input[type="email"],
	.content.properties div.search form select,
	.content.properties div.search form textarea {
		padding: .5rem;
	}
	.content.properties div.search form select {
		height: 36px;
		padding-right: 1.3rem;
	}
	.properties-list div.img {
		height: 250px;
	}
	.properties-list div.info h4 { /* price */
		text-align: left;
		margin-top: .8rem;
	}
	
	/* Properties detail */
	.content.properties.detail p.back-to-list {
		display: none;
	}
	.content.properties.detail .slideshow {
		margin: 1rem 0;
	}
	.content.properties.detail .slideshow .slider img {
		height: 40vh;
	}
	.content.properties.detail table.specs.extra td {
		text-align: left;
	}
	
	/* Keyholding */
	.content.keyholding .icons {
		transform: translateY(-10%);
	}
	.content.keyholding .icons > div {
		width: 30%;
		padding-left: 0;
		margin-right: 0;
	}
	.content.keyholding .icons h4 {
		font-size: 0.8rem;
		line-height: 0.9rem;
	}
	
	/* About */
	.content.about div.rel {
		min-height: auto;
	}
	.content.about div.rel img {
		position: relative;
		top: 2rem;
		max-width: 80%;
	}
	
	/* Service */
	.content.service.legal-assistance .indent {
		margin-left: 1rem;
	}
	
	
	footer {
		text-align: center;
	}
	
}

/* !CUSTOM media */

@media screen and (min-width: 64em) and (max-width: 1480px) /* >= 1024 en <= 1480 px */
{
	/*body {color: red;}*/
	
	/* Keyholding > icons iets sneller naar medium overschakelen */
	.content.keyholding .icons {
		justify-content: space-around;
		transform: translateY(-15%);
	}
	.content.keyholding .icons > div {
		width: 22%;
		margin-right: 1rem;
	}
}
