/* # MINI RESET # */
html,
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    line-height: 1em;
}

*:hover,
*:focus,
*:active {
    outline: none;
}

img {
    max-width: 100%;
}

textarea {
    resize: none;
}


h1,
h2,
h3 {
    color: #747474;
    margin: 0;
    padding: 100px 0;
    font-size: 44px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

h3 {
    color: #565656;
    padding: 0;
    font-size: 22px;
    font-weight: 200;
}

h4 {
    color: #464646;
    font-size: 24px;
    font-weight: 400;
    margin: 40px 0;
    text-align: center;
}

h5 {
    color: #404040;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

blockquote {
    border-left: 6px solid #ff6100;
    font-size: 25px;
    margin: 0;
    padding-left: 17px;
    line-height: 1.4em;
    text-align: justify;
}

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.44em;
    margin: 40px 0;
}

section{
	position: relative;
}

@media (max-width: 768px) {
    h1,
    h2,
    h3 {
        padding: 30px 0;
        font-size: 30px;
    }

    h3 {
        padding: 15px 0;
    }

    p {
        margin: 20px 0;
    }
}

/* # BUTTONS # */
.btn {
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    /* line-height: 44px; */
    padding: 14px 20px;
}

.col-more .btn {
    font-size: 12px;
    padding: 8px 12px;
}

.btn-default {
    background-color: #7f7f7f;
}

.btn-primary {
    background-color: #ff6100;
}

.btn-inactive {
    background-color: #474747;
}

.btn-active {
    background-color: #027b23;
}

.btn-default:hover {
    background-color: #8f8f8f;
}

.btn-primary:hover {
    background-color: #ff6b13;
}

.btn-inactive:hover {
    background-color: #5a5a5a;
}

.btn-width{
	width: 300px;
}

.btn-active:hover {
    background-color: #038928;
}

/* # APARTMENT STATUS PILLS # */
.status {
    border-radius: 22px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 12px;
}

.status-available {
    background-color: #0a7033;
}

.status-reserved {
    background-color: #474747;
}

/* # NAV # */
navbar {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 17px 20px 6px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

navbar nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 99;
}

navbar nav .phone {
    background: url('../images/icons/icon-phone.png') no-repeat scroll 10px center;
    background-color: #f1f1f1;
    background-size: 32px;
    margin-bottom: 20px;
    padding: 8px 20px 8px 20px;
    border-radius: 24px;
    font-size: 1.2em;
}

navbar .phone2 {
    background: url('../images/icons/icon-phone.png') no-repeat scroll 10px center;
    background-color: #f1f1f1;
    background-size: 32px;
    padding: 8px 10px 8px 10px;
    border-radius: 24px;
    font-size: 1.2em;   
    position: absolute;
    top: 16px;
    left: 80px;
}

navbar nav ul {
    margin: 0;
    padding: 0;
    display: flex;
}

navbar nav ul li {
    list-style: none;
}

navbar nav ul li .lang-menu {
    padding: 5px;
}

navbar nav ul li a {
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    padding: 0 10px 17px;
}


navbar nav ul li a.active, navbar nav ul li a:hover {
    
    color: #ff6100
}

navbar .logo {
    display: flex;
    align-items: flex-end;
}

navbar .logo .lang-menu {
    margin-bottom: 35px;
}

.lang-menu .lang {
    display: inline-block;
    margin: 0 3px;
    padding: 4px 8px;
    color: inherit;
    text-decoration: none;
}

.lang-menu .lang.selected {
    background: #eeeeee;
}

navbar .logo img {
    display: block;
}

navbar .nav-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    top: 16px;
	left: 30px;
}

navbar .nav-toggle span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #747474;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

navbar .nav-toggle span :nth-child(1) {
    top: 0px;
}
  
navbar .nav-toggle span:nth-child(2),
navbar .nav-toggle span:nth-child(3) {
    top: 12px;
}
  
navbar .nav-toggle span:nth-child(4) {
    top: 24px;
}
  
navbar.nav-open .nav-toggle span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
  
navbar.nav-open .nav-toggle span:nth-child(2) {
    transform: rotate(45deg);
}
  
navbar.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}
  
navbar.nav-open .nav-toggle span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

@media (min-width: 769px) {
    navbar {
        height: 120px;
    }

    navbar .nav-toggle,
    navbar nav ul li:last-child {
        display: none;
    }
    
}

@media (max-width: 768px) {
    
    navbar {
        display: block;
        height: 60px;
        align-items: center;
        padding: 11px 19px 0px;
    }
    
    navbar .nav-toggle{

		position: absolute;
		top: 16px;
		left: 16px;
	}

    navbar nav {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        position: relative;
        /*margin-top: 49px; */
        z-index: 90;
    }
    
    navbar nav ul{
		box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.5);		
        padding-top: 16px;
	}

    navbar nav ul {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 48px;
        display: flex;
        flex-direction: column;
        display: none;
        background: #fff;
        width: 90%;
    }

    navbar.nav-open nav ul {
        display: flex;
    }

    navbar .logo .lang-menu {
        display: none;
    }
    
    navbar .logo img {
	    display: block;
	    position: absolute;
	    top: 0px;
	    right: 0px;
	    height: 60px;
	}
	
	section.home {
	    padding: 60px 0px 0 !important;
	    height: calc(70vh) !important;
	}
	
	section.home svg {
		box-shadow: none !important;
	}
	
	.modal-wrapper .modal-content{
		padding: 10px;
    	padding-top: 70px;
	}
	
	#rezervacija .cta-block .btn{
		margin-top: 14px;
	}
	
}


/* # CONTENT # */
.container {
    max-width: 1200px;
}

.separator {
    background-image: url('../images/section-separator.png');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center bottom;
    padding-bottom: 139px;
    display: none;
}

.seperator-section{
    background-image: url('../images/section-separator.png');
    background-repeat: no-repeat;
    background-position: center top;
    height: 55px;
    width: 100%;
	position: absolute;
	top: -28px;
	left: 0px;
	display: block;
}

@media (max-width: 768px) {
    .separator {
        padding-bottom: 40px;
        background-image: none;
    }
    
    .seperator-section{
    	display:none;
	}
}

section > .separator {
    padding-bottom: 55px;
}

section.gradient-bg {
    background-image: url('../images/gradient-bg.png');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: left top;
}

/* # HOME # */
section.home {
    display: flex;
    width: 100%;
    height: calc(100vh);
    padding: 120px 0px 0;
}

section.home svg {
    box-shadow: 0 0 5px 0 rgba(14, 16, 16, 0.18);
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
}

section.home svg polygon {
    cursor: pointer;
    fill: #ff6100;
    opacity: 0;
    transition: all .25s;
}

section.home svg polygon:hover {
    opacity: .5;
}

/* # ABOUT # */
section.about .icons {
    padding: 20px 0;
    position: relative;
    background: #fff;
}

@media (min-width: 769px) {
    section.about .icons {
        margin-top: 0px;
    }
}

section.about .icons .row {
    align-items: baseline;
}

section.about .icons .row > div {
    text-align: center;
}

section.about .icons a {
    text-decoration: none;
}

section.about .icons span {
    color: #555;
    display: block;
    font-size: 16px;
    padding: 10px;
    text-align: center;
}

section.about .icons a:hover span {
    color: #ff6100;
}

section.about .cta-block {
    background: #f5f5f5;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    color: #474747;
    padding: 30px;
    font-size: 24px;
    font-weight: 200;
    text-align: center;
}

section.about .cta-block > * {
    display: inline-block;
    text-align: inherit;
}

section.about .cta-block h3 {
    font-size: 27px;
    font-weight: bold;
    margin: 0 0 15px;
}

section.about .cta-block span {
    margin: 15px 0;
}

section.about .cta-block a {
    margin: 10px 0;
}

/* # AMENITIES # */
section.amenities {
    padding-top: 50px;
    padding-bottom: 50px;
}

section.amenities .row {
    align-items: baseline;
}

section.amenities .col-3 {
    text-align: center;
}

section.amenities img {
    display: block;
    margin: 25px auto;
}

section.amenities h3 {
    margin-bottom: 50px;
}

.blocks-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blocks-list .block-item {
    background: #e3dfcf4f;
    flex: 0 1 23%;
    text-align: center;
    margin-bottom: 19px;
    margin-right: 2%;
    padding: 0px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px #f1f1f1 solid;
}

.blocks-list .block-item .text {
    padding: 20px;
}

.blocks-list-2{
	margin-left: 20px;
	margin-right: 20px;
}

.blocks-list-2 .block-item-2 {
	/*display: flex;*/
    /*flex-wrap: wrap;*/
    /*justify-content: flex-start;*/
    background: #e3dfcf4f;
    text-align: center;
    margin-bottom: 19px;
    padding: 0px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px #f1f1f1 solid;
}

.blocks-list-2 .right-img .img{
	float: right;
}

.blocks-list-2 .right-img .text {
	float: left;
	text-align: right;
}

.blocks-list-2 .right-img .text h4{
	text-align: right;
}

.blocks-list-2 .left-img .img{
	float: left;	
}

.blocks-list-2 .left-img .text {
	float: right;
	text-align: left;
}

.blocks-list-2 .left-img .text h4{
	text-align: left;
}


.blocks-list-2 .block-item-2 .img{
	/*flex: 0 1 48%;*/
	overflow: hidden;
	/*align-self: stretch;*/
	width: 50%;
	max-height: 100%;
}

.blocks-list-2 .block-item-2 .img img{
	/*height: 100%;*/
	max-width:120%;
}

.blocks-list-2 .block-item-2 .text {
    padding: 20px;   
   	/*flex: 0 1 48%;
	align-self: stretch;*/
	width: 50%;
}

.footer-logo{
	text-align: right;
	margin-top: 16px;
	height: 42px;
}

.footer-logo img{
	height: 40px;
	width: auto;
}



@media (max-width: 960px) {
    .blocks-list .block-item {
        flex: 0 1 31%;
        margin-right: 2%;
    }

    .blocks-list .block-item h3 {
        padding-bottom: 0;
    }
  	 
    .blocks-list-2 .block-item-2 .img img {

	    max-height: 140%;
	    width: 100%;
	    height: auto !important;

	}
    
}

@media (max-width: 768px) {
    section.amenities h3 {
        margin-bottom: 10px;
    }

    .blocks-list .block-item {
        flex: 0 1 48%;
    }

    .blocks-list .block-item h3 {
        font-size: 24px;
    }
    
	 .blocks-list-2 .right-img .text h4 {
	    text-align: left;
	}   
    
    .apartments .fix-on-mobile{
		margin-top: 30px;
	}
	
	.footer-logo{
		text-align: center;
		height: 26px;
		margin-top: 4px;
	}
	
	.footer-logo img{
		height: 27px;
	}
	    
}

@media (max-width: 640px) {
    .blocks-list {
        display: block;
    }
    
    .blocks-list-2{	
    	
		overflow: hidden;
	} 
	
    .blocks-list-2 .img{
		float: none !important;
		width: 100% !important;
		height: 200px;
	}

    .blocks-list-2 .img img{
		max-width: 120% !important;
		max-height: 180%;
		
	}
	
	.blocks-list-2 .text {
		float: none !important;
		text-align: left !important;
		width: 100% !important;
	}
}

/* # GALLERY # */
section.gallery {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* # ENVIRONMENT # */
section.environment {
    position: relative;
}

section.environment:before {
    /*background: url('../images/grass.png') no-repeat scroll center center;
    background-size: cover;
    content: '';
    display: block;
    position: absolute;
    width: 184px;
    height: 115px;
    bottom: 100%;
    left: 0;*/
}

section.environment .separator {
    margin-top: 60px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    section.environment .separator {
        display: none;
    }
}

/* # LOCATION # */
section.location {
    padding-bottom: 145px;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    section.location {
        padding-bottom: 40px;
    }
}

section.location:before {
    /*background: url('../images/globe.png') no-repeat scroll center center;
    background-size: cover;
    content: '';
    display: block;
    position: absolute;
    width: 162px;
    height: 203px;
    top: -180px;
    left: 35px;*/
}

section.location h2 {
    padding-bottom: 10px;
}

/* # APARTMENTS # */
section.apartments {
    padding-top: 50px;
    padding-bottom: 170px;
    position: relative;
    text-align: center;
}

section.apartments:before {
    /*background: url('../images/house.png') no-repeat scroll center center;
    background-size: cover;
    content: '';
    display: block;
    position: absolute;
    width: 184px;
    height: 173px;
    bottom: 100%;
    left: 0;*/
}

section.apartments h2 {
    padding-bottom: 50px;
}

section.apartments p {
    margin: 20px 0;
}

section.apartments h4 {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

section.apartments .col-6 {
    padding-top: 30px;
    padding-bottom: 15px;
}

section.apartments .col-12 {
    padding-top: 15px;
    padding-bottom: 30px;
}

section.apartments .col-6 p,
section.apartments .col-12 p {
    margin: 0;
}

@media (max-width: 768px) {
    section.apartments {
        padding-bottom: 40px;
    }

    section.apartments h2 {
        padding-bottom: 25px;
    }
    
}

/* # PURCHASE # */
section.purchase {
    padding-top: 50px;
    padding-bottom: 130px;
    position: relative;
    text-align: center;
}

@media (max-width: 768px) {
    section.purchase {
        padding-bottom: 40px;
    }
}

section.purchase:before {
    /*background: url('../images/family.png') no-repeat scroll center center;
    background-size: cover;
    content: '';
    display: block;
    position: absolute;
    width: 141px;
    height: 150px;
    bottom: 100%;
    left: 0;*/
}

section.purchase h2,
section.purchase h4,
section.purchase h5 {
    color: #474747;
}

/* # FOOTER # */
footer {
    background: #434343;
    color: #c6c6c6;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0 20px;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .row {
    margin: 0;
}

footer a {
    color: inherit;
    text-decoration: none;
}

.google-map{
	width:100%; 
	height:600px; 
	border:0px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
    }
    
    footer .row:first-child {
        padding-top: 0px;
        padding-bottom: 0px;
        text-align: center;
        font-size: 14px;
    }
    
    footer .row:last-child {
        padding-top: 8px;
        text-align: center;
    }
    
    .google-map{
		width:100%; 
		height:300px; 
		border:0px;
		margin-bottom: 40px;
	}
}

/* # MODAL */
.modal-wrapper {
    background: rgba(0, 0, 0, .58);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    padding: 20px;
    z-index: 999;
}

.modal-wrapper.open {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    animation: fadein .25s;
}

.modal-wrapper .modal-close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer;
}

.modal-wrapper .modal-close:hover {
    opacity: 1;
}

.modal-wrapper .modal-close:before,
.modal-wrapper .modal-close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}

.modal-wrapper .modal-close:before {
    transform: rotate(45deg);
}
.modal-wrapper .modal-close:after {
    transform: rotate(-45deg);
}

.modal-wrapper .modal-content {
    background: #fff;
    flex: 0 0 80%;
    overflow-y: auto;
    padding: 50px;
    padding-top: 30px;
    position: relative;
    max-height: calc(100vh - 40px);
}

.modal-content h2 {
    padding: 0;
}

.modal-content h3 {
    margin: 30px 0;
    font-size: 30px;
    font-weight: 300;
}

.modal-content .form-label {
    display: block;
    margin: 10px 0;
    text-transform: uppercase;
}

.modal-content .form-input {
    border: 1px solid #dfdfdf;
    display: block;
    width: 100%;
    margin: 0 0 40px;
    padding: 13px;
    font-size: 24px;
}

.modal-content textarea.form-input {
    min-height: 185px;
}

.modal-content .btn-group {
    text-align: center;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@media (max-width: 768px) {
    .modal-wrapper .modal-content {
        flex-basis: 100%;
    }
}

/* # MODAL - APARTMENTS LIST # */
.apartments-filter .btn {
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.apartments-list {
    border: none;
    border-collapse: collapse;
    margin-top: 20px;
    width: 100%;
}

.apartments-list th{
	text-transform: capitalize;
}
.apartments-list tr th,
.apartments-list tr td {
    padding: 4px;
    font-size: 16px;
    font-weight: 300;
    
}

.apartments-list tr th:last-child,
.apartments-list tr td:last-child {
    padding-right: 0;
    text-align: right;
}

.apartments-list tr th {
    background: #e0e0e0;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}

.apartments-list tbody tr:first-child td {
    padding-top: 20px;
}

.apartments-list .col-status {
    text-align: left;
}

.apartments-list .hide {
    display: none;
}

.apartments-list tr.special th , 
.apartments-list tr.special td {
	font-weight: 600 !important;	
	color: #e79712;	
}

.video{
	width:90%;
	height: 500px;
}

/* # RESPONSIVE # */
@media (max-width: 1500px) {
    section.environment:before,
    section.location:before,
    section.apartments:before,
    section.purchase:before {
        display: none;
    }
}
