@charset "utf-8";
/* GENERAL ----------------------------*/

body {
	overflow-x: hidden;
	font-family: 'Poppins', sans-serif;
}

/* TOOLTIP */
.ui-tooltip, .arrow:after {
	background-color: rgba(21, 26, 29, 1);
	border: none;
}
.ui-tooltip {
	padding: 5px 10px;
	color: #ffffff;
	border-radius: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	box-shadow: none;
	border: none;
	text-align: center;
	border-width: 0;
}
.arrow {
	width: 70px;
	height: 16px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	margin-left: -35px;
	bottom: -16px;
}
.arrow.top {
	top: -16px;
	bottom: auto;
}
.arrow.left {
	left: 20%;
}
.arrow:after {
	content: "";
	position: absolute;
	left: 20px;
	top: -20px;
	width: 25px;
	height: 25px;
	box-shadow: none;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.arrow.top:after {
	bottom: -20px;
	top: auto;
}

/* TYPOGRAPHY -----------------------------*/

a {
	text-decoration: none;
	color: #161a1d;
	transition: all .3s ease;
}

.text-link:hover {
	opacity: 0.8;
}

p {
	color: #7a7a7a;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}

strong {
	font-weight: 700;
}

p+p {
	margin-top: 15px;
}

h1 {
	font-size: 45px;
	font-weight: 300;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 23px;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
}

.color-secondary {
	color: #c39c77;
}

.important {
	color: #c39c77;
}

@media screen and (max-width:600px) {
	h1 {
		font-size: 37px;
	}
}

/* FORMS -----------------------------*/

input, select, textarea {
	height: 45px;
	width: 100%;
	padding: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: #161a1d;
	background-color: #f2f2f2;
	border: none;
}

textarea {
	height: 200px;
}

/* BUTTONS -----------------------------*/

button, .button {
	border: none;
	font-size: 15px;
	padding: 15px 30px 15px 30px;
	display: inline-block;
	font-weight: 600;
	cursor: pointer;
}

.button--underline {
	font-size: 15px;
	font-weight: 600;
	color: #ececec;
	position: relative;
	padding: 0;
}

.button--underline-light:after {
	content: "";
	position: absolute;
	bottom: -10px;
	right: -30px;
	width: 90%;
	height: 5px;
	background-color: #fff;
	transition: all .3s ease;
}

.button--underline-dark {
	color: #151a1d;
}

.button--underline-dark:after {
	content: "";
	position: absolute;
	bottom: -10px;
	right: -30px;
	width: 90%;
	height: 5px;
	background-color: #151a1d;
	transition: all .3s ease;
}

.button--underline:hover:after {
	width: 60%;
}

.button--light {
	background-color: #fff;
	color: #525252;
}

.button--light:hover {
	background-color: #151a1d;
	color: #fff;
}

.button--dark {
	background-color: #151a1d;
	color: #fff;
}

.button--dark:hover {
	background-color: #ececec;
	color: #151a1d;
}

/* HEADER ----------------------------*/

.header .container {
	overflow: visible;
}

.header {
	margin-bottom: 75px;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.header-social-media svg {
	width: 35px;
	height: 35px;
}

.header-social-media a {
	transition: all .3s ease;
}

.header-social-media a:first-child {
	margin-right: 5px;
}

.header-social-media a:hover {
	opacity: 0.6;
}

.add-property {
	font-family: 'Raleway', sans-serif;
	color: #151a1d;
	font-weight: 500;
	transition: all .3s ease;
}

.add-property:hover {
	opacity: 0.6;
}

.header-top-right-col svg {
	width: 15px;
	height: 15px;
}

.header-logo {
	margin-top: -36px;
	text-align: center;
}

.header-logo svg {
	width: 220px;
	height: auto;
}

.header-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-nav {
	background-color: #151a1d;
	position: relative;
	display: flex;
	align-items: center;
	padding: 40px 40px 40px 40px;
}

.header-nav:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	background-color: #151a1d;
	z-index: -1;
}

.header-nav__item {
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	position: relative;
	margin-left: 50px;
	tranistition:all .3s ease;
}


.header-nav__item:before {
	content: "";
	position: absolute;
	left: -40px;
	top: 50%;
	width: 30px;
	height: 3px;
	background-color: #fff;
	transform: translateY(-50%);
	transition: all .3s ease;
}

.header-nav__item:last-child:after {
	content: "";
	position: absolute;
	right: -40px;
	top: 50%;
	width: 30px;
	height: 3px;
	background-color: #fff;
	transform: translateY(-50%);
}

.header-nav__item:hover:before, .header-nav__item--active:before {
	width: calc(100% + 70px);
}

.header-lang {
	font-family: 'Raleway', sans-serif;
	color: #c7c7c7;
	font-size: 14px;
}

.header-lang-active {
	display: block;
	color: #151a1d;
	font-weight: 500;
	margin-top: 5px;
}

.header-lang-active svg {
	width: 10px;
	height: 10px;
}

.header-lang-pasive {
	display: none;
	position: absolute;
}

.header-lang-pasive a {
	display: block;
	color: #151a1d;
	font-weight: 500;
	margin: 5px 8px 5px 0;
	transition: all .3s ease;
}

.header-lang-pasive a:hover {
	opacity: 0.6;
}

.menu-small {
	display: none;
	flex-direction: row-reverse;
	align-items: center;
	width: 30%;
}

.menu-small-pasive {
	display: flex;
	flex-direction: column;
	width: 35px;
	height: 27px;
	justify-content: space-between;
}

.menu-small-pasive span {
	display: block;
	background-color: #151a1d;
	height: 5px;
	width: 100%;
	position: relative;
	transform: rotate(0);
	top: 0;
	left: 0;
	opacity: 1;
	transition: none 0.5s ease;
	transition-property: transform, top, left, opacity;
}

.menu-small-active {
	z-index: 101;
	background-color: #151a1d;
	position: absolute;
	left: 0;
	top: 180px;
	width: 100%;
	min-height: 100vh;
	overflow-y: auto;
	text-align: center;
	display: none;
}

.menu-small-active-nav {
	padding: 40px;
}

.menu-small-active a {
	color: #fff;
	font-weight: 600;
	margin-bottom: 30px;
	display: block;
}

.separator {
	max-width: 400px;
	height: 1px;
	background-color: #595959;
	text-indent: -9999px;
	margin: 40px auto;
}

.menu-small-lang-wrapper {
	display: flex;
	background-color: #595959;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.menu-small-lang a {
	font-weight: 400;
	margin: 0 10px 0 0;
	border-right: 1px solid #b3b3b3;
	padding-right: 10px;
	font-size: 14px;
}

.menu-small-lang a:last-child {
	border-right: none;
	padding: 0;
	margin: 0;
}

.menu-small-lang, .menu-small-extra {
	display: none;
}

@media screen and (max-width:900px) {
	.header-lang {
		width: 30%;
	}
	.header-logo {
		width: 40%;
		text-align: center;
	}
	.header-nav {
		display: none;
	}
	.menu-small {
		display: flex;
	}
}

@media screen and (max-width:600px) {
	.header {
		margin-bottom: 30px;
	}
	.header-social-media svg {
		width: 30px;
		height: 30px;
	}
	.header-lang {
		display: none;
	}
	.header-logo {
		margin-top: -50px;
		width: auto;
	}
	.header-logo svg {
		width: 130px;
	}
	.header-top-right-col {
		display: none;
	}
	.header-top {
		justify-content: flex-end;
	}
	.menu-small-active {
		top: 130px;
	}
	.menu-small-lang, .menu-small-extra {
		display: block;
	}
}

/* CONTENT -----------------------------*/

.main-container {
	overflow: visible;
}

.main-offer-row {
	display: flex;
	margin-bottom: 10px;
}

.main-offer-large {
	width: 60%;
}

.main-offer-small, .main-offer-half-wrapper {
	width: 40%;
}

.main-offer-box {
	background-size: cover;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	cursor: pointer;
	background-position: center;
}

.main-offer-box:hover span {
	color: #fff;
}

.main-offer-box:hover span:before {
	width: 100%;
}

.main-offer-category {
	color: #000;
	font-size: 23px;
	font-family: 'Raleway', sans-serif;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 12px 22px;
	position: relative;
	z-index: 1;
	text-align: center;
	font-weight: 500;
}

.main-offer-category:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 6px;
	background-color: #151a1d;
	transition: all .3s ease;
	z-index: -1;
}

.main-offer-houses {
	margin-right: 10px;
	height: 520px;
}

.main-offer-sea-apartments {
	margin-bottom: 2.5%;
	height: 49%;
}

.main-offer-business {
	height: 49%;
}

.main-offer-land {
	height: 250px;
	margin-right: 10px;
}

.main-offer-apartments {
}

/*extra-offer*/

.extra-offer {
	display: flex;
	margin-top: 90px;
}

.extra-offer-left-col, .extra-offer-right-col {
	padding: 70px 25px;
	display: flex;
}

.extra-offer-left-col {
	background-color: #151a1d;
	position: relative;
	color: #fff;
}

.extra-offer-left-col:before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	background-color: #151a1d;
	z-index: -1;
}

.extra-offer-icon {
	margin-right: 20px;
}

.extra-offer-icon svg {
	width: 35px;
	height: 35px;
}

.extra-offer-icon--light {
	fill: #fff;
}

.extra-offer-title {
	padding-top: 7px;
	margin-bottom: 20px;
}

.extra-offer-title small {
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
}

.extra-offer-right-col {
	background-color: #ececec;
	margin-left: 20px;
	min-width:45%;
	border-right:10px solid #000;
}

.extra-offer-content p {
	margin-bottom: 30px;
	color:#fff;
}

.extra-offer-right-col p {
	color: #7a7a7a;
}

@media screen and (max-width:600px) {
	.main-offer-row {
		flex-direction: column;
		margin-bottom: 0;
	}
	.main-offer-large, .main-offer-small, .main-offer-half-wrapper {
		width: 100%;
		margin-right: 0;
	}
	.main-offer-large, .main-offer-sea-apartments, .main-offer-business, .main-offer-small {
		height: 200px;
		margin-bottom: 10px;
	}
}

/*realestate-ad*/

.realestate-ad {
	position: relative;
	text-align: center;
	color: #fff;
	padding: 100px;
	background-size: cover;
	background-position: center;
	margin-top: 90px;
}

.realestate-ad-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
}

.realestate-ad-content {
	position: relative;
	z-index: 50;
}

.realeastate-ad-title {
	font-weight: 400;
	position: relative;
	display: inline-block;
	margin-bottom: 55px;
	font-family: 'Raleway', sans-serif;
}

.realestate-ad-title strong {
	font-weight: 700;
}

.realeastate-ad-title:after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%);
	width: 110px;
	height: 8px;
	background-color: #fff;
}

.realestate-ad p {
	font-size: 18px;
	padding: 0 40px;
	color: #fff;
}

.realestate-ad .button {
	margin-top: 40px;
}

@media screen and (max-width:900px) {
	.extra-offer {
		flex-direction: column;
	}
	.extra-offer-left-col::before {
		content: none;
	}
	.extra-offer-right-col {
		margin: 20px 0 0 0;
	}
	.realestate-ad {
		padding: 50px 20px;
	}
	.realestate-ad p {
		padding: 0;
	}
}

@media screen and (max-width:600px) {
	.extra-offer {
		margin-top: 40px;
	}
	.realestate-ad {
		margin-top: 50px;
	}
}

/* LIST ------------------------------*/

/*filters*/

.filter {
	margin-bottom: 40px;
}

.filter-form {
	display: flex;
}

.filter-form label {
	margin-bottom: 5px;
	display: block;
}

/*list*/

.list {
	display: flex;
	flex-wrap: wrap;
}

.list-item {
	margin-bottom: 70px;
}

.list-item-img {
	background-size: cover;
	background-position: center;
	padding-bottom: 66.66%;
	position: relative;
}

.list-item-content {
	margin-top: 15px;
}

.list-item-content-split {	
	display: flex;
	justify-content: space-between;
}

.list-item-content span {
	display: block;
	margin-bottom: 10px;
}

.list-content-price {
	background-color: #6c6c6c;
	padding: 15px 10px;
	color: #fff;
	font-weight: 500;
	margin-top: 0;
}

@media screen and (max-width:900px) {
	.list-item {
		width: 48.7%;
		margin-right: 0;
	}
	.list-item:nth-child(odd) {
		margin-right: 2.5%;
	}
}

@media screen and (max-width:600px) {
	.list-item {
		width: 100%;
		margin:0 0 70px 0;
	}
	.list-item:nth-child(odd) {
		margin-right: 0;
	}

	.filter-form {
		flex-direction: column;
	}
	.filter-form__item {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/* DETAILS ------------------------------*/

.details-gallery__wrapper {
	height: 550px;
	overflow: hidden;
	position: relative;
}

.details-gallery__overlay {
	background: linear-gradient(0deg, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	height: 300px;
	width: 100%;
	bottom: 0;
}

.details-gallery__btn {
	text-align: center;
}

/*gallery*/

.details-gallery-row {
	display: flex;
	margin-bottom: 10px;
}

.details-gallery-large {
	width: 60%;
	/*height:520px;*/
	margin-left:10px;
}

.details-gallery-half-wrapper {
	width: 40%;
}

.details-gallery-small-half {
	/*height:49%;*/
	margin-bottom:2.5%;
	padding-bottom:66.66%;
}

.details-gallery-small-half:last-child {
	margin-bottom:0;
}

.details-gallery-box {
	background-size: cover;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	cursor: pointer;
	background-position: center;
}

.details-gallery-box:hover span {
	color: #fff;
}

.details-gallery-box:hover span:before {
	width: 100%;
}

.details-gallery-thumbs {
	display:flex; 
	/*height:170px;*/
}
.details-gallery-thumb {
	background-size: cover; 
	width:100%; 
	/*height:100%;*/
	display:block; 
	margin-right:10px; 
	width:25%;
	padding-bottom:16.2%;
	position:relative;
}
.details-gallery-thumb:last-child {
	margin-right:0;
}
.details-gallery-thumbs-sp {
	display:none;
}
.gallery-overlay {
	width:100%; 
	height:100%; 
	background-color:rgba(0,0,0,0.5); 
	display:flex; 
	justify-content:center; 
	align-items:center; 
	color:#fff;
	position:absolute;
	z-index:9;
	bottom:0;
}

.gallery-overlay--sm {
	display:none;
}


.details-desc {
	display: flex;
	margin-top: 90px;
}

.details-desc-left-col {
	width: 30%;
}

.details-desc-right-col {
	width: 70%;
}

.details-desc h1 {
	font-weight: 300;
}

.details-desc-right-col ul {
	list-style-type: disc;
	color: #7a7a7a;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	padding-left: 15px;
}

.details-desc-right-col li {
	margin-bottom: 15px;
}

.details-info {
	display: flex;
	color: #151a1d;
	line-height: 1.8;
	font-size: 16px;
	margin-top: 90px;
}

.info-table {
	width: 50%;
}

.info-table:first-child {
	margin-right: 10px;
}

.info-table:nth-child(2) {
	margin-left: 10px;
}

.info-table-row-left {
	margin-right: 10px;
}

.info-table-row-right {
	text-align: right;
}

.info-table-row {
	display: flex;
	justify-content: space-between;
	padding: 15px 20px;
}

.info-table-row:nth-child(odd) {
	background-color: #ececec;
}

.info-buttons {
	text-align: center;
	margin-top: 50px;
}

.info-buttons .button:first-child {
	margin-right: 10px;
}

.details-info-buttons {
	text-align: center;
	margin-top: 60px;
}

.details-info-buttons a:first-child {
	margin: 0 5px 5px 0;
}

@media screen and (max-width:900px) {
	.details-desc, .details-info {
		flex-direction: column;
	}
	.details-desc-left-col {
		margin-bottom: 20px;
	}
	.details-desc-left-col, .details-desc-right-col {
		width: 100%;
	}
	.info-table {
		width: 100%;
	}
	.info-table:first-child, .info-table:nth-child(2) {
		margin: 0;
	}
}

@media screen and (max-width:764px) {

	.details-gallery-row {
		flex-direction: column;
		margin-bottom: 0;
	}
	.details-gallery-half-wrapper {
		width: 100%;
		margin-right: 0;
		
	}
	.details-gallery-large, .details-gallery-small-half {
		/*height: 300px;*/
		margin-bottom: 10px;
		margin-left:0; 
		width:100%;
		padding-bottom:66.66%;
	}
	.details-gallery-small-half:last-child {
		margin-bottom: 10px;
	}
	.details-gallery-thumbs {
		display:none;
	}
	.details-gallery-large {
		position:relative;
	}
	.gallery-overlay--sm {
		display:flex;
	}
}

@media screen and (max-width:600px) {
	.details-desc, .details-info {
		margin-top: 50px;
	}
}

/* PHOTOGRAPHY ------------------------------*/

.photography-title {
	margin-bottom: 40px;
}

.photography-gallery {
	margin-bottom: 90px;
}

.photography-title small {
	display: block;
	font-size: 25px;
	color: #7a7a7a;
	margin-top: 5px;
}

@media screen and (max-width:600px) {
	.photography-title {
		margin-bottom: 20px;
	}
	.photography-gallery {
		margin-bottom: 50px;
	}
	.photography-title small {
		font-size: 20px;
	}
}

/* CONTACT ------------------------------*/

/* MANAGE ------------------------------*/

.manage-nav {
	font-size: 18px;
}

.manage-nav__item {
	margin-bottom: 40px;
}

.manage-nav__item a {
	transition: all .3s ease;
}

.manage-nav__item a:hover, .manage-nav__item a.active {
	font-weight: 700;
}

.manage-container {
	display: flex;
}

.list-item-img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.list-item-img--sold {
	-webkit-filter: grayscale(100%);
  	filter: grayscale(100%);
}

.list-item-img span.over {
	font-size: 14px;
	/*color: #000;*/
	background-color: rgba(255, 255, 255, 0.7);
	padding: 10px 10px;
	display: inline-block;
	/*font-family: 'Raleway', sans-serif;*/
	/*font-weight: 500;*/
	opacity: 0;
	transition: all .3s ease;
	position: absolute;
	bottom:0;
	color: #161a1d;
	font-family: 'Poppins', sans-serif;
	line-height: 1.4;
	width: 100%;
}

.list-item-img span.over p {
	color: #161a1d;
	font-family: 'Poppins', sans-serif;
	line-height: 1.4;
}

.list a {
	transition: all .3s ease;
}

.list a:hover span {
	opacity: 100;
}

.manage-login-info {
	text-align: right;
	margin-bottom: 20px;
}

.manage-login-img {
	margin-bottom: 20px;
}

.manage-login-form p {
	color: #151a1d;
}

.manage-login-info span:first-child {
	border-right: 1px solid #000;
	padding-right: 10px;
	margin-right: 10px;
}

.manage-login-form form {
	display: flex;
	align-items: flex-start;
	margin-top: 10px;
}

.input-wrapper {
	flex: 1;
}

.input-wrapper {
	margin-right: 10px;
}

.manage-login-form form button {
	margin-left: 10px;
}

.input-wrapper {
	position: relative;
}

.input-wrapper input {
	padding-left: 40px;
	width: 100%;
}

.input-wrapper svg {
	width: 20px;
	height: 20px;
	position: absolute;
	left: 15px;
	top: 13px;
}

.manage-logged {
	display: flex;
	margin-bottom: 40px;
}

.manage-logged h3 {
	margin-bottom: 22px;
}

.manage-logged-list li {
	margin-bottom: 15px;
}

.manage-logged-list p {
	line-height: 1.4;
}

.manage-logged-list strong {
	display: block;
	color: #151a1d;
}

.manage-document-list h3 {
	margin-bottom: 15px;
	cursor: pointer;
	padding: 15px 15px;
}

.manage-document-list h3:hover {
	background-color: #dddddd;
}

.manage-document-list h3 .manage-document-list-more {
	position: relative;
	float: right;
	top: 12px;
}
.manage-document-list h3 .manage-document-list-more span {
	display: block;
	background-color: #151a1d;
	height: 2px;
	width: 10px;
	position: relative;
	opacity: 1;
	transition: none 0.5s ease;
	transition-property: transform, top, left, opacity;
}
.manage-document-list h3 .manage-document-list-more span:nth-child(1) {
	transform: rotate(0);
	top: 0;
	left: 0;
}
.manage-document-list h3 .manage-document-list-more span:nth-child(2) {
	transform: rotate(90deg);
	top: -2px;
	left: 0;
}

.manage-document-list h3 .open span:nth-child(2) {
	transform: rotate(0);
}

.manage-document-list ul {
	display: none;
	padding: 15px 15px;
}

.manage-document-list ul:first-child {
	display: block;
}

.document-list li {
	border-bottom: 1px solid #dddddd;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.document-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.document-list li a {
	color: #7a7a7a;
	display: flex;
	align-items: center;
}

.document-list svg {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.manage-text-pages__title {
	margin-bottom: 30px;
}

.text-list--in-paragraph {
	margin: 30px 0;
}

.text-list li {
	list-style-type: disc;
	margin-left: 15px;
	margin-bottom: 15px;
}

.text-pages-section {
	margin-bottom: 35px;
}

.text-pages-subtitle {
	display: block;
	margin-bottom: 20px;
}

.contact-info-wrapper--manage {
	flex-direction: column;
}

.contact-info-wrapper--manage .contact-info-col {
	width: 100%;
	border-right: none;
	margin: 0 0 40px 0;
	padding: 0;
}

.remark {
	font-size: 12px;
	margin-top: 12px;
	display: block;
}

.manage-nav-small {
	display: none;
}

.manage-nav-active {
	background-color: #161a1d;
	padding: 20px;
	margin-bottom: 40px;
	cursor: pointer;
}

.manage-nav-active a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-weight: 700;
}

.manage-nav-pasive {
	display: none;
}

.manage-nav-pasive-list {
	padding: 20px 20px 20px 20px;
	margin-top: -40px;
}

.manage-nav-pasive-list__item {
	margin-bottom: 20px;
}

.manage-nav-pasive-list__item {
	font-weight: 700;
}

.manage-nav-active svg {
	fill: #fff;
	width: 13px;
	height: 10px;
	margin-left: 10px;
}

.faq-item {
	margin-bottom:40px;
}

.faq-item .text-pages-subtitle {
	cursor: pointer;
}

.faq-item strong {
	color:#7a7a7a;
}
.faq-answer {
	display:none;
}

@media screen and (max-width:900px) {
	.manage-container {
		flex-direction: column;
	}
	.main-container-right-col, .main-container-left-col {
		width: 100%;
	}
	.manage-nav {
		display: none;
	}
	.manage-nav-small {
		display: block;
	}
}

@media screen and (max-width:600px) {
	.manage-login-form form {
		flex-direction: column;
	}
	.input-wrapper {
		width: 100%;
		margin-bottom: 10px;
	}
	.manage-login-form form button {
		margin-left: 0;
	}
	.manage-logged {
		flex-direction: column;
	}
	.manage-logged-img, .manage-logged-info {
		width: 100%;
	}
	.manage-logged-info {
		margin-top: 20px;
	}
}

/* CONTACT ------------------------------*/

.main-form {
	display: flex;
	flex-wrap: wrap;
}

.main-form__item {
	margin-bottom: 20px;
}

.main-form__label {
	display: block;
	margin-bottom: 10px;
}

.main-form-btn {
	text-align: right;
	width: 100%;
}

.main-form-btn #recaptcha_upit {
	margin-bottom: 25px;
}

.form-section {
	margin-bottom: 20px;
}

.main-form-subtitle {
	display: block;
	margin-bottom: 10px;
}

.browse input {
	background-color: transparent;
	padding: 0;
}

.google-map {
	margin: 50px 0 -5px 0;
}

.c-box {
	clear: both;
	margin-bottom: 20px;
}

.c-box div {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.c-box__label {
	float: none;
	width: auto;
	min-height: auto;
	margin-left: 5px;
	margin-bottom: 0;
	font-size: 12px;
	line-height: normal;
}

input[type=checkbox] {
	width: auto;
	height: auto;
	margin: 0 0 0px 0;
}

.contact-info-title {
	margin-bottom: 40px;
}

.contact-info a {
	color: #7a7a7a;
	transition: all .3s ease;
}

.contact-info a:hover {
	opacity: 0.7;
}

.contact-info-wrapper {
	display: flex;
}

.contact-info-col {
	border-right: 1px solid #151a1d;
	padding: 15px 60px 15px 0;
	margin-right: 60px;
	color: #7a7a7a;
}

.contact-info-col:last-child {
	border-right: none;
	padding: 15px 0;
}

.contact-info-name {
	font-size: 20px;
	margin-bottom: 20px;
	display: block;
}

.contact-info-name small {
	display: block;
	text-transform: uppercase;
	color: #c39c77;
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 3px;
}

.contact-us {
	margin-top: 90px;
}

@media screen and (max-width:900px) {
	.contact-info-wrapper {
		flex-direction: column;
	}
	.contact-info-col {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid #000;
		padding: 0 0 20px 0;
		margin: 0 0 20px 0;
	}
	.contact-info-wrapper--manage .contact-info-col {
		padding: 0 0 20px 0;
		margin: 0 0 20px 0;
	}
	.contact-info-col:last-child {
		padding: 0;
		margin: 0;
		border-bottom: none;
	}
}

@media screen and (max-width:600px) {
	.main-form {
		flex-direction: column;
	}
	.main-form__item {
		width: 100%;
	}
	.contact-us {
		margin-top: 50px;
	}
	.form-section {
		margin-bottom: 0px;
	}
}

/* FOOTER ------------------------------*/

.footer {
	margin-top: 100px;
	background-color: #151a1d;
	padding-top: 40px;
}

.footer--no-margin {
	margin-top: 0;
}

.footer-logo svg {
	fill: #fff;
	width: 145px;
	height: 145px;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #ababab;
	line-height: 1.4;
}

.footer-top a.tel {
	color: #ababab;
	text-decoration: none;
}

.footer-top a.tel:hover {
	opacity: 0.7;
}

.footer-top .mail {
	color: #fff;
	font-weight: 700;
	transition: all .3s ease;
}

.footer-top .mail:hover {
	opacity: 0.8;
}

.footer-contact {
	text-align: right;
}

.footer-nav {
	text-align: right;
	width: 100%;
	margin-top: 20px;
}

.footer-nav a {
	display: inline-block;
	color: #fff;
	font-weight: 500;
	margin-left: 25px;
	font-size: 18px;
	position: relative;
}

.footer-nav a:after {
	content: "";
	position: absolute;
	bottom: -9px;
	left: 0;
	background-color: #c39c77;
	height: 0px;
	width: 100%;
	transition: all .3s ease;
}

.footer-nav a:hover:after {
	height: 5px;
}

.footer-bottom {
	border-top: 1px solid #777777;
	margin-top: 40px;
	color: #777777;
	font-size: 14px;
	padding: 20px 0 40px 0;
	line-height: 1.8;
}

.footer-bottom a {
	color: #777777;
	transition: all .3s ease;
}

.footer-bottom a:hover {
	opacity: 0.7;
}

@media screen and (max-width:1024px) {
	.footer-nav a {
		font-size: 16px;
		margin-left: 20px;
		margin-bottom: 15px;
	}
	.footer-bottom {
		margin-top: 20px;
	}
}

@media screen and (max-width:600px) {
	.footer {
		margin-top: 70px;
	}
	.footer--no-margin {
		margin-top: 0;
	}
	.footer-logo svg {
		display: none;
	}
	.footer-nav {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.footer-contact span {
		display: inline-block;
	}
}

/* ABOUT US,.... -----------------------------*/

.text-page {
	display: flex;
}

.text-page-margin-top {
	margin-top: 50px;
}

.text-page-left-col {
	width: 35%;
	padding-right: 10px;
}

.text-page-right-col {
	width: 65%;
}

.text-page h1 {
	font-weight: 300;
}

@media screen and (max-width:900px) {
	.text-page {
		flex-direction: column;
	}
	.text-page-left-col, .text-page-right-col {
		width: 100%;
	}
	.text-page-left-col {
		margin-bottom: 20px;
	}
}

/*MARGINS*/

.omega {
	margin-right: 0;
}

/*COOKIES*/

.cookies {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #ececec;
	z-index: 99999999;
	display: none;
}

.cookies-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
}

.cookies p {
	font-size: 14px;
	text-align: left;
	color: #151a1d;
	padding-bottom: 0;
}

.cookies p a {
	text-decoration: underline;
	color: #151a1d;
}

.cookies p a:hover {
	opacity: 0.8;
}

.cookies a.button {
	padding: 10px 8px;
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 0 40px;
	background-color: #151a1d;
	color: #fff;
	text-transform: uppercase;
	transition: all .3s ease;
}

.cookies a.button:hover {
	background-color: #c39c77;
	text-decoration: none;
}

@media screen and (max-width:700px) {
	.cookies-wrap {
		flex-direction: column;
	}
	.cookies p {
		text-align: center;
	}
	.cookies a.button {
		margin: 20px 0 0 0;
	}
}

/*POSTAVLJANJE UREĐAJA*/

#tablet-wide {
	display: none;
}

#tablet {
	display: none;
}

#smartphone {
	display: none;
}

/******MEDIA QUERIES******/

@media screen and (max-width: 1200px) {
	#desktop {
		display: none;
	}
	#tablet-wide {
		display: block;
	}
	#tablet {
		display: none;
	}
	#smartphone {
		display: none;
	}
}

@media screen and (max-width: 880px) {
	#desktop {
		display: none;
	}
	#tablet-wide {
		display: none;
	}
	#tablet {
		display: block;
	}
	#smartphone {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	#desktop {
		display: none;
	}
	#tablet-wide {
		display: none;
	}
	#tablet {
		display: none;
	}
	#smartphone {
		display: block;
	}
}