/*===================== TABLE OF CONTENT =======================
1. Reset
2. Body Style
3. Placeholders & Highlights
4. Container & Grid
5. Headings
6. Buttons
7. Form
8. Paddings & Margins
9. Breadcrumbs
10. Custom Style
11. Cookies
12. Header
13. Intro
14. Project
15. Offer
16. Location
17. Footer
18. Page Project
19. Page Offer
20. Page Single
21. Page About
22. Contact About
23. Home Section
24. RobetL addons
25. Search Page
26. Parking Page
27. Home Description

=============================================================*/
/* ================================================================================== 
1. Reset
===================================================================================== */
*, *::after, *::before { margin: 0; padding: 0; -webkit-box-sizing: inherit; box-sizing: inherit; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a, a:active, a:hover, a:focus { outline: none; } abbr[title] { border-bottom: 1px dotted; } dfn { font-style: italic; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; max-width: 100%; } svg:not(:root) { overflow: hidden; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; margin-top: 30px; margin-bottom: 35px; border-width: 0; border-top: 1px solid #e1e1e1; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } input:focus, select:focus, textarea:focus, button:focus { outline: none; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } input, textarea, button, select, a { -webkit-tap-highlight-color: transparent; } a { color: inherit; text-decoration: none; -webkit-transition: all 0.6s ease; -o-transition: all 0.6s ease; transition: all 0.6s ease; } strong { font-weight: 700; }
.fancybox__button--zoo, .fancybox__button--slideshow, .fancybox__button--fullscreen, .fancybox__button--thumbs, .fancybox__button--zoom{
  display: none;
}
.none{
  display: none;
}
ul, ol { padding-left: 4rem; }
/* ================================================================================== 
2. Body Style
===================================================================================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 56.25%;
  word-wrap: break-word;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color:#5a5a5a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
}
main{
  position: relative;
}
/* ================================================================================== 
3. Placeholders & Highlights
===================================================================================== */
::-webkit-input-placeholder { color: inherit; opacity: 1 !important; }
:-moz-placeholder { color: inherit; opacity: 1; }
::-moz-placeholder { color: inherit; opacity: 1; }
:-ms-input-placeholder { color: inherit; }
::-moz-selection { background-color: #ae945b;  color: #fff; }  
::selection { background-color: #ae945b; color: #fff }
/* ================================================================================== 
4. Container & Grid
===================================================================================== */
.container {
  position: relative;
  width: 100%;
  max-width: 148rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2rem;
}
.container-lg{
  max-width: 180rem;
}
.container-xl{
  max-width: 192rem;
  padding: 0;
}
/* ================================================================================== 
5. Headings
===================================================================================== */
h1, h2, h3, h4, h5, h6 { margin-bottom: 2rem; font-weight: 500;line-height:1.2;color: #000;}
.title h1, .title h2{ font-size: 3.2rem;position: relative; }
p { margin-bottom: 2rem; }
.title{ margin-bottom:4rem; }
.title-center{text-align: center;}
.title h3{
  text-transform: uppercase;
  color: #ae945b;
  font-size: 1.4rem;
}
.intro .title h1{
  font-size: 3.6rem;
  color: #fff;
  font-weight: 600;
}
.title strong{
  font-weight: inherit;
  color: #ae945b;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .intro .title h1{
    font-size: 3.6rem;
  }
  .title{ margin-bottom:6rem; }
  .intro-inner .title h1{
    font-size: 5rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .intro .title h1{
    font-size: 4rem;
  }
  .intro-inner .title h1{
    font-size: 6rem;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .title h1, .title h2{ font-size: 3.6rem; }
  .intro .title h1{
    font-size: 5rem;
  }
  .intro-inner .title h1{
    font-size: 7rem;
  }
}
/* ================================================================================== 
6. Buttons
===================================================================================== */
.btn,.squares-button{
  transition: all .4s ease-in-out;
	display: inline-block;
	padding: 1rem 2.6rem;
	font-weight: 500;
  font-size: 1.6rem;
}
.btn-primary, .btn-secondary{
  background-color: #ae945b;
  color: #fff;
  background-repeat: no-repeat;
  position: relative;

}
.btn-primary::after, .btn-secondary::after {
	content: '';
	position: absolute;
	right: -2rem;
	top: 0;
	width: 0;
	height: 0;
	border-top: 2.4rem solid transparent;
	border-left: 2rem solid #ae945b;
	border-bottom: 2.4rem solid transparent;
  transition: all .4s ease-in-out;
}

.btn-primary:hover{
  background-color: #000000;
}
.btn-primary:hover::after{
	border-left: 2rem solid #000;
}
.btn-secondary{
  background-color: #000000;
}
.btn-secondary::after{
  border-left: 2rem solid #000;
}
.btn-secondary:hover{
  background-color: #ae945b;
  color: #fff;
}
.btn-secondary:hover::after{
	border-left: 2rem solid #ae945b;
}
.squares-button {
	display: inline-block !important;
	height: auto !important;
	background-color: #ae945b !important;
	color: #fff !important;
	padding: 1rem 2rem !important;
	border-radius: 0 !important;
	font-size: 1.4rem;
	text-transform: uppercase;
	line-height: 1.6 !important;
	margin: 0 auto;
}
.btn-primary:hover, .squares-button:hover{
  background-color: #000000;
}
.btn-sm{
  text-decoration: underline;
  color: #ae945b;
}
.btn-sm:hover{
  color: #000;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  .btn-primary::after, .btn-secondary::after {
    border-top: 2.2rem solid transparent;
    border-bottom: 2.2rem solid transparent;
  }
}
/* ================================================================================== 
7. Form
===================================================================================== */
input, textarea, select {
	display: block;
	width: 100%;
	border: 1px solid transparent;
  border-bottom: 1px solid #000000;
	padding: 1.5rem 2rem;
	outline: none;
	background-color: #ffffff;
	font-size: 1.6rem;
}
textarea{
  resize: vertical;
  height: 19rem;
}
input:focus,
textarea:focus, select:focus {
  border-bottom:1px solid #ae945b;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #000000;
}
button {
  transition: all 0.4s ease-in-out;
  border:0;
}
fieldset{
  border: 0;
  margin-bottom: 2rem;
}
label.check-wrapper {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: none;
}
.check-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  border: 1px solid #43515a;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.check-wrapper .checkmark::after {
  left: 0.4rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #43515a;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* ================================================================================== 
8. Paddings & Margins
===================================================================================== */
.space {
  padding: 5rem 0;
}
.mt-5{
  margin-top: 5rem;
}
.no-pt{
  padding-top: 0 !important;
}
.no-pb{
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .space {
    padding: 8rem 0;
  }
}
/* .menu-item-has-children za wp sub parent*/
/* .current_page_item za wp active link u navigaciji*/
/* ================================================================================== 
9. Breadcrumbs
===================================================================================== */
.breadcrumbs{
  background-color: #f4f4f4;
  padding: 1rem 0;
  font-size: 1.4rem;
}
.breadcrumbs ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs ul li{
  display: inline-block;
  font-weight: 600;
  color: #ae945b;
}
.breadcrumbs ul li::after{
  content: '|';
  display: inline-block;
  margin: 0 1rem;
}
.breadcrumbs ul li a{
  display: inline-block;
  font-weight: 400;
  color: #000;
}
.breadcrumbs ul li:last-child:after{
  content: none;
}
/* ================================================================================== 
10. Custom Style
===================================================================================== */
.list ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.list ul li{
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}
.list  ul li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 2rem;
  height: 2rem;
  background-image: url(images/list.svg);
  background-repeat: no-repeat;
  background-size: 2rem;
}
/* ================================================================================== 
11. Cookies
===================================================================================== */
.cky-btn-accept {
	background: #ae945b !important;
	border: 2px solid #ae945b !important;
}
.cky-btn-reject,  .cky-btn-customize, .cky-btn-preferences {
	color: #ae945b !important;
	border: 2px solid #ae945b !important;
}
button.cky-show-desc-btn:not(:hover):not(:active){
  color: #ae945b !important;
  font-weight: 600;
}
.cky-btn-revisit-wrapper{
  background-color: #ae945b !important;
}
#wt-cli-accept-all-btn{
background-color: #ae945b !important;
}
.cli-bar-message {
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.3;
	opacity: 0.65;
}
.cli-bar-btn_container a{
  font-size: 1.1rem !important;
}
/* ================================================================================== 
12. Header
===================================================================================== */
header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: all .4s ease-in-out;
  z-index: 10;
  color: #fff;
  padding: 1.5rem 0;
}
header.scrolled{
  background-color: rgba(0,0,0,.8);
}
header .container{
  display: flex;
  flex: row;
  justify-content: space-between;
  align-items: center;
}
header ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-logo{
  display: block;
}
.header-logo img{
  display: block;
  width: 15rem;
  transition: all .4s ease-in-out;
}
.header-logo span{
  font-size: 1.6rem;
  font-weight: 500;
  text-align: right;
  display: block;
}
nav{
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #2e2e2e;
  padding: 2rem;
  padding-top: 10rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease-in-out;
  z-index: 2;
}
nav.open{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
nav li{
  display: block;
}
nav li a{
  display: block;
  padding: 1rem 1.6rem;
  font-weight: 500;
  font-size: 1.8rem;
  text-transform: uppercase;
}
nav li a:hover, nav li.current_page_item a{
 opacity: 0.6;
}
.toggle {
	cursor: pointer;
	overflow: hidden;
	width: 36px;
	height: 30px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
    z-index: 11;
    margin-left: 3rem;
    order: 3;
}
.line-toggle {
	position: absolute;
	display: block;
	width: 36px;
	height: 2px;
	background: #fff;
	border-radius: 20px;
	transition: all .6s;
	right: 0;
  z-index: 11;
}
.line-toggle:first-child {
transform: translateY(-10px) translateX(0);
transition-delay: 0s;
}
.toggle .line-toggle:nth-child(2) {
    transition-delay: .12s;
}
.line-toggle:last-child {
    transform: translateY(10px) translateX(0);
    transition-delay: 0s;
}
.toggle.activate .line-toggle:first-child {
	transform: translateY(0) translateX(0) rotate(45deg);
	width: 30px;
	height: 2px;
	transition-delay: .1s;
}
.toggle.activate .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s;
}
.toggle.activate .line-toggle:last-child {
	transform: translateY(0) translateX(0) rotate(314deg);
	width: 30px;
	height: 2px;
	transition-delay: .1s;
}
.mobile-info{
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px dashed #fff;
  padding-left: 2rem;
}
.menu-item-has-children{
  position: relative;
}
.sub-menu{
  display: none;
  padding-left: 3rem;
}
.sub-menu li{
  display: block;
}
.sub-menu li a{
  display: block;
  padding: 1rem;
}
.header-info{
  display: none;
  align-items: center;
  margin-left: auto;
  gap:2rem;
  font-weight: 500;
  font-size: 1.6rem;
}
.info-row{
  display: flex;
  align-items: center;
}
.info-row img{
  display: block;
  width: 2.7rem;
  height: auto;
  margin-right: 1rem;
  transition: all .4s ease-in-out;
}
.mobile-info .info-row img{
  filter: brightness(0) invert(1);
}
.mobile-info .info-row:not(:last-child){
  margin-bottom: 2rem;
}
.header-info a, .mobile-info a{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header-info span:first-child, .mobile-info span:first-child{
  font-size: 1.2rem;
  color: #ae945b;
}

.header-info span{
  display: block;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  nav{
    width: 40rem;
  }
  .header-logo img{
    width: 18rem;
  }
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .header-logo img{
    width: 18rem;
  }
  .header-info{
    display: flex;
  
  }

}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .toggle{
    display: none;
  }
 
  nav{
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    min-height: auto;
    overflow-y: visible;
    transform: none;
    transition: none;
    padding: 0;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    margin-right: auto;
  }
  nav li{
    display: inline-block;
  }
  nav li a{
    display: inline-block;
    padding: 2rem 1rem;
    font-size: 1.4rem;
  }
  .mobile-info{display: none;}
  .sub-menu{
    position: absolute;
    left: 0;
    top: 6rem;
    width: 24rem;
    background-color: #ae945b;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .header-logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .menu-item-has-children:hover .sub-menu{
    opacity: 1;
    visibility: visible;
  }
  .header-info{
    margin-left: 1rem;
  }
  nav li a:hover, nav li.current_page_item a{
    color: #ae945b;
    opacity: 1;
  }
  .sub-menu li a:hover{
    color: #fff;
    opacity: 0.6;
  }
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  .header-info{
    font-size: 1.4rem;
  }
  nav li a{
    font-size: 1.4rem;
  }
 
}
@media only screen and (min-width: 86.25em) {
  /*1380px*/
}
@media only screen and (min-width: 90em) {
  /*1440px*/
  .header-info{
    margin-left: 2rem;
    font-size: 1.6rem;
  }
  nav li a{
    padding: 2rem 1rem;
    font-size: 1.6rem;
  }
  .header-logo img{
    width: 26.7rem;
  }
}
@media only screen and (min-width: 105em) {
  /*1680px*/
  .header-info{
    margin-left: 10rem;
  }
 
}
/* ================================================================================== 
13. Intro
===================================================================================== */
.intro-slide img{
  display: block;
  width: 100%;
  height: 70rem;
  object-fit: cover;
  object-position: center;
}
.intro-overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,  rgba(0,0,0,0.68) 0%,rgba(0,0,0,0) 100%);
}
.intro-text{
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #fff;
}
.intro-text .container {
	height: 100%;
	display: flex;
	align-items: center;
}
.intro-inner {
	max-width: 70rem;
	width: 100%;
}
.intro-inner .title{
  margin-bottom: 3rem;
}
.slick-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  cursor: pointer;
  width: 4.5rem;
  height: 4.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
  background-color: transparent;
  border:1px solid #000;
  z-index: 1;
}
.slick-prev{
  background-image: url(images/prev.svg);
  left: 0;
}
.slick-next{
  background-image: url(images/next.svg);
  right: 0;
}
.intro-text{
  opacity: 0;
}
.slick-dots{
  position: absolute;
  bottom: 3rem;
 left: 50%;
 transform: translateX(-50%);
  display: flex;
  gap:2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.slick-dots button{
  font-size: 0;
  width: 6.7rem;
  height: 0.69rem;
  background-color: #fff;
  border-radius: 2rem
}
.slick-dots li.slick-active button{
  background-color: #ae945b;
}
.intro .title{
  margin-bottom: 1rem;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .intro-slide img{
    height: 95rem;
  }
  .slick-dots{
    bottom: 10rem;
    right: 10rem;
    left: auto;
    transform: none;
  }
}
@media only screen and (min-width: 90em) {
  /*1440px*/
  .slick-dots{
    bottom: 20rem;
    right: 20rem;
  }
}
.intro-slide.slick-current .intro-text{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}
@-webkit-keyframes fadeInUp {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(0,100%,0);
      transform: translate3d(0,100%,0)
  }
  to {
      opacity: 1;
      -webkit-transform: translateZ(0);
      transform: translateZ(0)
  }
}
@keyframes fadeInUp {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(0,100%,0);
      transform: translate3d(0,100%,0)
  }
  to {
      opacity: 1;
      -webkit-transform: translateZ(0);
      transform: translateZ(0)
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}
@-webkit-keyframes fadeIn {
  0% {
      opacity: 0
  }
  to {
      opacity: 1
  }
}
@keyframes fadeIn {
  0% {
      opacity: 0
  }
  to {
      opacity: 1
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(0,-100%,0);
      transform: translate3d(0,-100%,0)
  }
  to {
      opacity: 1;
      -webkit-transform: translateZ(0);
      transform: translateZ(0)
  }
}
@keyframes fadeInDown {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(0,-100%,0);
      transform: translate3d(0,-100%,0)
  }
  to {
      opacity: 1;
      -webkit-transform: translateZ(0);
      transform: translateZ(0)
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}
/* ================================================================================== 
14. Project
===================================================================================== */
.project-text{
  width: 100%;
  margin-bottom: 5rem;
}
.project-image{
  width: 100%;
}
.project-image img{
  display: block;
  width: 100%;
  height: auto;
}
.project-text .title{
  margin-bottom: 3rem;
}
.project-text .btn{
  margin-top: 3rem;
}
.project-numbers{
  margin-bottom: 5rem;
}
.project-numbers article{
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
}
.project-numbers article:last-child{
  margin-bottom: 0;
}
.number{
  font-size: 5rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #ae945b;
  color: #fff;
}
.project-numbers article h3{
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1.8rem;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .project-numbers{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  .project-numbers article{
    /* width: 33.333%; */
    width: auto;
    margin-bottom: 0;
    text-align: left;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .number{
    font-size: 7rem;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .project-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .project-text{
    width: 45%;
    margin-bottom: 0;
  }
  .project-image{
    width: 45%;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .project-text{
    padding-left: 5rem;
  }
}
/* ================================================================================== 
15. Offer
===================================================================================== */
.offer{

}
.offer .title h2::after{
  content: none;
}
.offer-image{
  width: 100%;
  margin-bottom: 3rem;
}
.offer-text{
  width: 100%;
  background-color: #f4f4f4;

}
.offer-image img{
  display: block;
  width: 100%;
  height: auto;
}
.offer-text .title h2 {
	font-size: 2.6rem;
}
.offer-text .title{
  margin-bottom: 3rem;
}
.offer-icons{
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap:1.5rem
}
.offer-row{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.offer-row img{
  display: block;
  width: 2.4rem;
  height: auto;
  margin-right: 1rem;
}
.offer-text .btn{
  margin-top: 5rem;
}

.offer-title{
  width: 100%;
  text-align: center;
  padding: 5rem 2rem;
}

.offer-home-content{
  width: 100%;
  background-color: #f4f4f4;
  padding: 5rem 2rem;
}

@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .offer-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 5rem;
    align-items: flex-start;
  }
  .offer-image{
    width: 35%;
    margin-bottom: 0;
  }
  .offer-text{
    width: 65%;
    padding: 5rem;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .offer-wrap{
    align-items: center;
  }
  .offer-home-content .slick-prev{
    transform: none;
    left: auto;
    top: auto;
    bottom: 5rem;
    right: 7rem;
  }
  .offer-home-content .slick-next{
    transform: none;
    left: auto;
    top: auto;
    bottom: 5rem;
    right: 1rem;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .offer-wrap {
    padding: 5rem 5rem 5rem 5rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .offer-icons{
    flex-direction: row;
    gap:3rem
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .offer-home-wrapper{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
  }
  .offer-home-content{
    width: 70%;
  }
  .offer-title{
    width: 30%;
    padding: 5rem;

  }
  .offer-home-content .slick-prev{
    transform: none;
    left: auto;
    top: auto;
    bottom: 5rem;
    right: 4rem;
  }
  .offer-home-content .slick-next{
    bottom: 5rem;
    right: -4rem;
  }
  .offer-home-content .slick-prev{
    right: 2rem;
  }
}
@media only screen and (min-width: 100.0625em) {
  /*1601px*/
  .offer-wrap {
    padding: 5rem 5rem 5rem 30rem;
  }
  
}
/* ================================================================================== 
16. Location
===================================================================================== */
.location{
  position: relative;
  background-color: #2e2e2e;
  color: #fff;
}
.location-text{
  width: 100%;
  padding: 5rem 2rem;
}
.location-text  .title{
  margin-bottom: 3rem;
}
.location-text  .title h2{
  color: #ae945b;
}
.location-text .btn{
  margin-top: 3rem;
  margin-left: 3rem;
}
.location-image{
  width: 100%;
}
.location-image img{
  display: block;
  width: 100%;
  height: auto;
}
.map iframe{
  width: 100%;
  height: 40rem;
  display: block;
}
.map{
  margin-top: 5rem;
}

@media only screen and (min-width: 61.3125em) {
  /*981px*/
  .location-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .location{
    background-attachment: fixed;
  }
  .location-text{
    width: 50%;
    padding: 5rem;
  }
  .location-image{
    width: 50%;
    margin-bottom: 0;
  }
 

}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
 
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
 
}
@media only screen and (min-width: 105em) {
  /*1680px*/
  .location-text{
    padding: 5rem 20rem;
  }
}
/* ================================================================================== 
17. Footer
===================================================================================== */
footer{
  font-size: 1.4rem;
}
footer  ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}

.footer-wrapper article{
  width: 100%;
  margin-bottom: 3rem;
}
.footer-wrapper article:last-child{
  margin-bottom: 0;
}
.social{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap:1rem;
  padding: 2rem 0;
}
.social a{
  display: inline-block;
}
.social a img{
  display: block;
  width: 4rem;
}
.footer-wrapper article h3{
  font-size: 1.8rem;
}
.footer-logo a{
  display: block;
}
.footer-logo img{
  display: block;
  width: 28rem;
  height: auto;
  margin: 0 auto;
}
.copyright{
 padding: 2rem 0;
  font-size: 1.4rem;
  text-align: center;
  background-color: #2e2e2e;
  color: #fff;
}
.copyright .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 42.5625em) {
  /*681px*/
  .footer-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
    gap: 5rem;
  }
  .footer-wrapper article{
    width: auto;
    margin-bottom: 0;
  }
  .footer-logo img{
    margin: 0;
  }
  .social{justify-content: flex-start;padding: 0;}
  .copyright .container{
    align-items: center;
    justify-content: space-between;
   text-align: left;
   flex-direction: row;
  }
  
 

}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
 

}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .footer-logo img{
    width: 30rem;
  }
  .footer-links ul{
    column-count: 2;
    column-gap: 5rem;
  }
}
@media only screen and (min-width: 76.3125em) {
  /*1221px*/
  .footer-logo img{
    width: 42rem;
  }
  .footer-wrapper {
    gap: 15rem;
  }
}
/* ================================================================================== 
18. Page Project
===================================================================================== */
.top-image img{
  height: 40rem;
  width: 100%;
  object-fit: cover;
  display: block;
}
.top-image{
  position: relative;
}
.text{
  max-width: 120rem;
  width: 100%;
}
.text .btn{
  margin-top: 3rem;
}
.gallery{
  margin-top: 5rem;
}
.gallery a{
  width: 100%;
  margin-bottom: 1rem;
  display: block;
}
.gallery a img{
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .gallery{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:1%;
  }
  .gallery a{
    width: 49.5%;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .gallery a{
    width: 32.6%;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .gallery{
    margin-top: 8rem;
  }
}
/* ================================================================================== 
19. Page Offer
===================================================================================== */
.page-wrapper{
  /* max-width: 110rem; */
  width: 100%;
  margin: 0 auto;
  margin-top: 5rem;
}
.page-aside{
  width: 100%;
  background-color: #f4f4f4;
  padding: 3rem;
}
.page-content{
  width: 100%;
  margin-top: 5rem;
}
.page-content img{
  display: block;
  width: 100%;
  height: auto;
}
.content-image{
  margin-bottom: 5rem;
}
.parking-image{
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.page-aside ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-aside ul li{
  display: block;
}
.page-aside ul li a{
  display: block;
  padding: 1rem;
  border-bottom: 1px  solid  #d7d7d7;
}
.page-aside ul li a:hover, .page-aside ul li a.active{
  background-color: #ae945b;
  color: #fff;
}
.single-box{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px dashed #000;
}
.single-box:last-of-type{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0
  ;
}
.single-box h3{
  font-size: 2.6rem;
}
.single-box a{
  margin-top: 2rem;
  align-self: flex-start;
}
.page-search{
  margin-bottom: 5rem;
}
.title-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #e7e7e7;
}
.title-wrap .title{
  margin-bottom: 0;
}
.title-wrap h1{
  margin-bottom: 0
}

.stan-row:not(:last-child){
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px dashed #000;
}
.status{
  display: inline-block;
  width: 100%;
  padding: 1rem;
  padding: .75rem 1.25rem;
  text-align: center;
  border: 1px solid transparent;
margin-top: 1rem;
 
}
.stan-btn {
	display: flex;
  flex-direction: column;
}

.rezerviran{
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.prodan{
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.slobodan{
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.stan-btn .btn-secondary{
  margin-top: 1rem;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .stan-btn {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  .stan-btn .btn-secondary {
    margin-left: 1rem;
    order: 2;
    margin-top: 0;
  }
  .status{
    width: auto;
    margin: 0;
    margin-left: auto;
  }
}
@media only screen and (max-width: 56.25em) {
  /*900px*/

  .stan-tlocrt{
    margin: 3rem 0;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .page-wrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-aside{
    width: 23%;
    position: sticky;
    top: 15rem;
    right: 0;
    padding: 3rem;
  }
  .page-content{
    width: 73%;
    margin-top: 0;
  }
  .page-wrapper{
    margin-top: 0;
  }
  .content-image{
    transform: none;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .stan-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .stan-tlocrt{
    width: 48%;
  }
  .stan-text{
    width: 48%;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .page-ap-wrapper{
    display: flex;
    flex-direction: row;
  }
  .page-search{
    width: 30rem;
    margin-bottom: 0;
  }

}
/* ================================================================================== 
20. Page Single
===================================================================================== */
.single-images{
  width: 100%;
}
.single-images img{
  display: block;
  width: 100%;
  height: auto;
}
.single-text{
  width: 100%;
  margin-top: 5rem;
  overflow-x: auto;
}
.single-btns{
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap:2rem;
  align-items: center;
}
.single-btns .btn{
  width: 100%;
}

.btn-pdf{
  background-color: transparent;
  color: #000;
  background-image: url(images/catalog.svg);
  background-repeat: no-repeat;
  background-position: left 2rem center;
  padding-left: 5rem;
  background-size: 1.5rem;
  border:1px solid #000;
  border-radius: 5px;
}
.btn-phone{
  background-color: transparent;
  color: #ae945b;
  background-image: url(images/phone.svg);
  background-repeat: no-repeat;
  background-position: left 2rem center;
  padding-left: 5rem;
  background-size: 1.5rem;
  border:1px solid #ae945b;
  border-radius: 5px;

}
.btn-contact {
	background-color: transparent !important;
	color: #8a8787;
	background-image: none;
	background-repeat: no-repeat;
	background-position: left 2rem center;
	/* padding-left: 2.6rem; */
	background-size: 1.5rem;
	border: 1px solid #b5b5b5;
	padding: 1rem 2.6rem;
  border-radius: 5px;
}
.single-btns .btn:hover{
  opacity: 0.6;
}
.single-text table{
  width:50rem;
}
.single-text table td{
  padding: 1rem;
  font-size: 1.4rem; 
}
thead td{
  background-color: #f4f4f4;
	padding: 0.5rem;
	font-size: 1.4rem;
	color: #000;
}

tbody td {
	border-bottom: 1px solid #d7d7d7;
	padding: 0.5rem;
	font-size: 1.4rem;
	color: #000;
}
tbody tr:last-child td{
  background-color: #ae945b;
  color: #fff;
}
.single-gallery{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:3%;
  margin-top: 5rem;
}
.single-gallery a{
  display: block;
  width: 48.5%;
  margin-bottom: 3rem;
}
.btns-bottom{
  margin-top: 8rem;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .single-btns{
    flex-direction: row;
    justify-content: center;
  }
  .single-btns .btn{
    width: auto;
  }
  .single-text table{
    width: 100%;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .single-wrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .single-text{
    width: 43%;
    top: 15rem;
    position: sticky;
    margin-top: 0;
  }
  .single-images{
    width: 50%;
  }
}
/* ================================================================================== 
21. Page About
===================================================================================== */
.about-text{
  width: 100%;
  margin-bottom: 5rem;
}
.about-image{
  width: 100%;
}
.about-image iframe{
  width: 100%;
  display: block;
}
.about-image img{
  display: block;
  width: 100%;
  height: auto;
}
.about-text .title{
  margin-bottom: 3rem;
}
.about-inner{
  padding: 3rem;
  background-color: #f4f4f4;
  margin-top: 5rem;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .about-page-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .about-text{
    width: 45%;
    margin-bottom: 0;
  }
  .about-image{
    width: 45%;
  }
}
/* ================================================================================== 
22. Contact About
===================================================================================== */
.contact-text{
  width: 100%;
  margin-bottom: 5rem;
  text-align: center;

}
.contact-form{
  width: 100%;
  background-color: #f4f4f4;
  padding: 5rem 3rem;
  position: relative;
  padding-top: 10rem;
  margin-top: 5rem;
}
.contact-form::before{
  content: '';
  width: 10rem;
  height: 10rem;
  background-color: #fff;
  border:1px solid #e7e7e7;
  border-radius: 50%;
  background-image: url(images/mail.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3rem;
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);

}
.contact-form form p{
  margin-bottom: 0;
}
.contact-form form br{
  display: none;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .contact-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;

  }
  .contact-text{
    width: 100%;
    max-width: 70rem;

  }
  .contact-form{
    width: 100%;
    max-width: 70rem;
    padding: 5rem;
  }
}
/* ================================================================================== 
23. Home Section
===================================================================================== */
.bg1 {
	background-image: url(images/bg1.png);
	background-repeat: no-repeat;
	background-position: left -5rem center;
	background-size: 30rem;
}
.home-text{
  width: 100%;
  padding: 5rem 2rem 5rem 2rem;
}
.home-text-content{
  padding-left: 3rem;
  margin-left: 3rem;
  border-left: 2px solid #ae945b;
}
.home-text .btn{
  margin-left: 3rem;
}
.home-image{
  width: 100%;
}
.home-image img{
  display: block;
  width: 100%;
  height: auto;
}
.home-text .btn{
  margin-top: 3rem;
}
.home-text .title{
  margin-bottom: 3rem;
}
.home-section2{
  background-color: #f4f4f4;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/

}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .home-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-section2 .home-wrapper{
    flex-direction: row;
  }
  .home-text{
    width: 50%;
    padding: 0 5rem 0 5rem;
  }
  .home-image{
    width: 50%;
  }
  .bg1 {
    background-attachment: fixed;
  }
}
@media only screen and (min-width: 85.4375em) {
  /*1367px*/
  .home-text{
    padding: 0 10rem 0 10rem;
  }
  .home-wrapper{
    align-items: center;
  }
  .home-section2  .home-text{
  }
}
@media only screen and (min-width: 105em) {
  /*1680px*/
  .home-text{
    padding: 5rem 20rem 5rem 20rem;
  }
  .home-section2  .home-text{
    padding: 0 12rem 0 25rem;
  }
}
/* ================================================================================== 
23. Home Section
===================================================================================== */
.raspolozivo {
	background-color: #C3E6CB;
}
.rezervirano {
	background-color: #FFF3CD;
}
.prodano {
	background-color: #F8D7DA;
}
/* ul.horizontal-list {
	background-color: #f4f4f4;
    list-style: none;
	padding: 3rem;
    margin: 0;
}
ul.horizontal-list li {
    display: inline-block !important;
    margin-right: 3rem; 
}
ul.horizontal-list li:last-child {
    margin-right: 0; 
} */
ul.horizontal-list{
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px dashed #000;
}
ul.horizontal-list li:last-child a{
  border-bottom: 0;
}
.text-center{
  max-width: 100rem;
  width: 100%;
  margin: 0  auto;
  text-align: center;
}
.page-search fieldset{
  width: 100%;
  margin-bottom: 3rem;
}
.page-search{
  padding: 3rem;
  background-color: #f4f4f4;
}
.page-search .btn-primary {
	height: 100%;
	border-color: #ae945b;
	background-image: url(images/search-white.svg);
	background-size: 2rem;
	background-position: left 2rem center;
  transition: all .4s ease-in-out;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/

}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
 
}
@media only screen and (min-width: 61.3125em) {
  /*981px*/

}
/* ================================================================================== 
25. Search Page
===================================================================================== */
.search-wrap{
  margin-top: 5rem;
}
.search-box {
	width: 100%;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 3rem;
	border: 1px solid #ccc;
}
.search-box img{
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .search-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%;
  }
  .search-box {
    width: 48.5%;
  }
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .search-box {
    width: 31.3%;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .search-wrap{
    margin-top: 10rem;
  }
}
/* ================================================================================== 
26. Parking Page
===================================================================================== */
.parking-nav{

  margin: 5rem 0;
}
.parking-nav ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.parking-nav li{
  display: block;
}
.parking-nav li a{
  display: block;
  padding: 2rem;
  border: 1px solid #ccc;
}
.parking-nav li a:hover, .parking-nav li a.active{
  background-color: #ae945b;
  color:#fff;
  border-color: #ae945b;
}
.imp-tooltip p{
  font-size: 1.6rem  !important;
  color: #000 !important;
}
.imp-tooltip h2,.imp-tooltip h3{
  font-size: 2rem  !important;
  color: #000 !important;
  margin-bottom: 1rem;
}
.imp-tooltip {
	background-color: #ffff !important;
	color: #000 !important;
	box-shadow: 0 0 20px 20px rgba(0,0,0,0.05);
}
.hs-arrow-bottom{
  display: none;
}
@media only screen and (min-width: 50.875em) {
  /*814px*/
  .parking-nav ul{
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  .parking-nav li{
    display: inline-block;
  }
  .parking-nav li a{
    display: inline-block;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .parking-nav{
    margin: 7rem 0;
  }
}
/* ================================================================================== 
27. Home Description
===================================================================================== */
.home-desc{
  color: #fff;
  background-color: #ae945b;
}
.home-desc h2{
  color: #fff;
}
.desc-wrapper{
  column-count: 2;
  column-gap: 3rem;
}
.desc-wrapper .btn{
  margin-top: 3rem;
}
.bg2 {
	background-image: url(images/bg2.png);
	background-repeat: no-repeat;
	background-position: right  center;
	background-size: 30rem;
}
.btn-bottom {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .bg2 {
    background-attachment: fixed;
  }
}