@charset "utf-8";

/*font-family: 'Open Sans', sans-serif;
font-family: 'Playfair Display', serif;*/

html {
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", sans-serif;
}

/* BUTTONS */

button,
.button {
    font-family: "Open Sans", sans-serif;
    padding: 22px 40px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
	cursor: pointer;
}
.button--dark {
    color: #fff;
    letter-spacing: 1.8px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #00172d;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.button--dark:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #c2b68c;
    border: 1px solid #c2b68c;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.button--dark:hover,
.button--dark:focus,
.button--dark:active {
    color: #fff;
}
.button--dark:hover:before,
.button--dark:focus:before,
.button--dark:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.button--underlined-light {
    font-size: 17px;
    padding: 0;
    color: #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    padding: 0 5px 10px 5px;
    transition: all 0.3s ease;
}
.button--underlined-light:hover {
    border-bottom: 1px solid #c2b68c;
    color: #c2b68c;
}

.button--light {
    background-color: #fff;
    color: #000;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}
.button--light:hover {
    background-color: #00172d;
    color: #fff;
}

.button--colored {
    background-color: #c2b68c;
    color: #fff;
    letter-spacing: 1.5px;
    font-size: 16px;
}
.button--colored:hover {
    background-color: #c2bca9;
}

.button--light-with-border {
    background-color: #fff;
    color: #000;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 1px solid #00172d;
}
.button--light-with-border:hover {
    background-color: #00172d;
    color: #fff;
}

.button--gold-border {
    background-color: transparent;
    border: 1px solid #c2b68c;
    color: #c2b68c;
    padding: 15px 30px;
}

/* FORMS */

input,
select,
textarea {
    width: 100%;
    padding: 5px 10px;
    height: 50px;
    border: none;
    background-color: #f2f2f2;
	font-family: "Open Sans", sans-serif;
	color: #727272;
}

textarea {
    height: 400px;
}

/* TYPOGRAPHY */

h1 {
    font-size: 50px;
    font-family: "Playfair Display", serif;
}
h1 small {
    display: block;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    color: #c2b68c;
    opacity: 0.7;
    font-style: normal;
    font-weight: 400;
}
h2 {
    font-size: 45px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}
h3 {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}
h4 {
    font-size: 30px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

p {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 300;
    color: #727272;
}
.txt-link {
    color: #c2b68c;
}

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

/* NAV-BAR */

.nav-bar {
    background-color: #fff;
}

/* nav-vertical*/

.nav-vertical {
    width: 75px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
	position: absolute;
	z-index: 100;
	z-index:100000;
}

.main-nav-pasive {
    display: block;
    position: relative;
    transition: all 0.9s ease;
    cursor: pointer;
    margin-top: 40px;
}

.main-nav-pasive span {
    width: 38px;
    height: 2px;
    background-color: #000;
    display: block;
    transition: all 0.3s ease;
    margin-top: 8px;
}
.main-nav-pasive span:nth-child(2) {
    width: 30px;
}

.main-nav-pasive:hover span:nth-child(2) {
    width: 38px;
}

/*nav active */

.main-nav-active {
    padding: 35px 50px;
    position: absolute;
    left: 75px;
    top: 0;
    /*width: 20%;*/
	width: 400px;
    height: 100%;
    background-color: #00172d;
    z-index: 100;
    display: none;
}
.main-nav-active-logo svg {
    width: 120px;
}

.main-nav-active-links a {
    display: block;
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    position: relative;
    border-bottom: 1px dashed #fff;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}
.main-nav-active-links a:last-child {
    border-bottom: none;
}
.main-nav-active-links a:hover {
    opacity: 0.8;
}

.main-nav-active-sm {
    margin-top: 30px;
}
.main-nav-active-sm a {
    margin-right: 10px;
    transition: all 0.3s ease;
}
.main-nav-active-sm svg {
    width: 40px;
    height: 40px;
}
.main-nav-active-sm a:hover {
    opacity: 0.8;
}

.nav-horizontal-active {
    left: 0;
    height: auto;
    top: 108px;
    background-color: #beb084;
    padding: 35px 50px;
}

.nav-vertical .intro-slide-logo {
    display: none;
}

/* nav-horizontal */

.nav-horizontal {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-horizontal {
    padding: 10px 50px;
}
.nav-horizontal .intro-slide-logo {
    position: relative;
    left: auto;
}
.nav-horizontal .main-nav-pasive {
    margin-top: 0;
}
.nav-horizontal .nav-lang {
    margin-bottom: 0;
}
.nav-horizontal .intro-slide-logo svg {
    width: 70px;
}

/* nav-lang */

.nav-lang {
    margin-bottom: 30px;
    position: relative;
}
.nav-lang-pasive {
    color: #c2b68c;
    font-weight: 700;
    /*margin-bottom: 40px;*/
	padding-bottom: 10px;
}
.nav-lang-active {
    position: absolute;
    left: -10px;
    bottom: 17px;
    display: flex;
    flex-direction: column;
    display: none;
}
.nav-lang-active a {
    display: block;
    color: #c2b68c;
    font-weight: 700;
	padding:0 10px 15px 10px;
   	
}

.nav-lang-horizontal-active {left:auto; right:-10px; bottom:auto; top:30px; background-color: #c2b68c; color:#fff;  z-index:50; }
.nav-lang-horizontal-active a {color:#fff; padding:0 10px 15px 10px;}
.nav-lang-horizontal-active a:first-child {padding-top:15px;}

/* MEDIA QUERIES */

@media screen and (max-width: 1500px) {
    .main-nav-active {
        /*width: 40%;*/
		width: 400px;
    }
}

@media screen and (max-width: 900px) {
    .main-nav-active {
        width: 70%;
		width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .nav-vertical {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        padding: 10px 20px;
    }

    .nav-vertical .intro-slide-logo svg {
        width: 55px;
    }

    .nav-vertical .intro-slide-logo {
        top: 0;
        transform: translate(0, 0);
        text-align: center;
        left: auto;
        position: relative;
        display: block;
    }

    .nav-lang {
        margin-bottom: 0;
    }
    .nav-lang-active {
        left:auto; right:-10px; bottom:auto; top:30px; background-color: #c2b68c; color:#fff; padding-top:10px;
    }
	
	.nav-lang-active a {color:#fff;}

    .main-nav-pasive {
        margin-top: 0px;
    }

    .main-nav-active {
        width: 100%;
        left: 0;
        top: 91px;
        height: auto;
        padding: 35px 20px;
    }

    .nav-horizontal {
        padding: 10px 20px;
    }
    .nav-horizontal .intro-slide-logo svg {
        width: 55px;
    }
    .nav-horizontal .intro-slide-logo {
        top: 0;
        transform: translate(0, 0);
        text-align: center;
    }
    .nav-horizontal-active {
        top: 90px;
    }

    .intro-slide-logo {
        display: none;
    }
	
	.nav-horizontal .intro-slide-logo {display:block;}

}

/*INTRO SLIDE*/

.intro-section {
    height: 100vh;
    position: relative;
}
.intro-slide {
    height: 100vh;
	width: 100%;
}
.intro-slide-1 {
    background-image: url(../photos/intro/intro_slide_1_exterior_villa_with_the_pool_croatia_rentals_quercus_brisevo.webp);
    background-size: cover;
}
.intro-slide-2 {
    background-image: url(../photos/intro/intro_slide_2_exterior_villa_with_the_pool_croatia_rentals_quercus_brisevo.webp);
    background-size: cover;
}
.intro-slide-3 {
    background-image: url(../photos/intro/intro_slide_3_dining_table_and_kitchen_villa_quercus_vacation_house_in_zadar_region_croatia.webp);
    background-size: cover;
}
.intro-slide-4 {
    background-image: url(../photos/intro/intro_slide_4_bedroom_with_the_couch_relaxing_holidays_villa_quercus_dalmatia_croatia.webp);
    background-size: cover;
}
.intro-slide-5 {
    background-image: url(../photos/intro/intro_slide_5_summer_kitchen_with_fireplace_dinning_table_relaxing_vacation_villa_quercus_zadar_croatia.webp);
    background-size: cover;
}
.intro-slide-6 {
    background-image: url(../photos/intro/intro_slide_6_relaxing_vacation_villa_quercus_with_the_pool_zadar_region_brisevo.webp);
    background-size: cover;
}

/*intro-slide-logo*/

.intro-slide-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	z-index: 100;
}
.intro-slide-logo svg {
    width: 170px;
}

/*intro-slide-button*/
.intro-slide-button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
	z-index: 100;
}

/*intro-slide-nav*/
.intro-slide-nav {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
	z-index: 100;
}

.intro-slide-nav__item {
    display: block;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 33px;
    margin-bottom: 30px;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.intro-slide-nav__item:before {
    content: "";
    position: absolute;
    right: -15px;
    top: 4px;
    height: 100%;
    width: 3px;
    background-color: #fff;
}
.intro-slide-nav__item:hover,
.intro-slide-nav__item--active {
    opacity: 1;
}

/* MEDIA QUERIES */

@media screen and (max-width: 550px) {
    .intro-slide {
        height: 100vh;
    }
    .intro-slide-nav {
        display: none;
    }
    .intro-slide-button {
        width: 100%;
    }
    .intro-slide-logo {
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/*INTRO-ABOUT*/

.intro-about {
    background-color: #00172d;
    padding: 100px 0px 80px 0px;
}
.intro-about-text {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    text-align: center;
    line-height: 1.8;
    padding: 0 230px;
}

.intro-about-icons {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.intro-about-icons__item {
    color: #fff;
    text-align: center;
    margin-right: 100px;
}
.intro-about-icons__item:last-child {
    margin-right: 0;
}
.intro-about-icons__item svg {
    height: 60px;
}
.intro-about-icons__item span {
    display: block;
    letter-spacing: 1.8px;
    line-height: 1.5;
    font-weight: 300;
    margin-top: 10px;
    font-size: 18px;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1200px) {
    .intro-about-text {
        padding: 0 100px;
    }
}

@media screen and (max-width: 900px) {
    .intro-about {
        padding: 40px 0;
        border-top: 5px solid #c2b68c;
    }
    .intro-about-text {
        padding: 0px;
        font-size: 25px;
        line-height: 1.6;
    }
	.intro-about-icons__item {
		margin-right:30px;
	}
    .intro-about-icons__item svg {
        height: 40px;
    }
}

@media screen and (max-width: 650px) {
    .intro-about-icons__item {
        margin-right: 20px;
    }
    .intro-about-icons__item svg {
        height: 30px;
    }
    .intro-about-icons__item span {
        font-size: 16px;
    }
    .intro-about {
        padding: 40px 0 10px 0;
    }
    .intro-about-icons {
        flex-direction: column;
    }
    .intro-about-icons__item {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/*VILLA SECTIONS*/

.villa-sections {
}
.villa-sections-tabs {
    padding: 40px 0;
    border-bottom: 10px solid #c2b68c;
}
.villa-sections-tabs .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
}
.villa-sections-tabs__item {
    font-size: 18px;
    font-weight: 600;
    color: #00172d;
    margin-left: 130px;
    position: relative;
}
.villa-sections-tabs__item:after {
    content: "";
    display: block;
    border: 12px solid #fff;
    border-bottom-color: #c2b68c;
    position: absolute;
    bottom: -40px;
    left: 50%;
    margin-left: -12px;
    opacity: 0;
    transition: all 0.5s ease;
}

.villa-sections-tabs__item:hover:after,
.villa-sections-tabs__item--active:after {
    opacity: 1;
}

.villa-sections-info {
    background-size: cover;
    height: 865px;
    color: #fff;
}
.villa-sections-info-1 {
    background-image: url(../images/villa_sections_1_living_room_relaxing_vacation_villa_quercus_zadar_croatia.jpg);
    background-size: cover;
    background-position: center;
}
.villa-sections-info-2 {
    background-image: url(../images/villa_sections_2_exterior_villa_quercus_terrace_view.jpg);
    background-size: cover;
    background-position: center;
}

.villa-sections-info-3 {
    background-image: url(../images/villa_sections_3_summer_kitchen_with_fireplace_dinning_table_relaxing_vacation_villa_quercus_zadar_croatia.jpg);
    background-size: cover;
    background-position: center;
}

.villa-sections-info .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.villa-sections-info-text {
    background-color: #00172d;
    width: 720px;
    padding: 100px;
}
.villa-sections-info-details span svg {
    height: 30px;
    vertical-align: sub;
}

.villa-sections-info-title {
    color: #c2b68c;
    font-style: italic;
    font-weight: 400;
}
.villa-sections-info-title small {
    color: #fff;
}

.villa-sections-info-details {
    margin: 30px 0;
    font-size: 25px;
    font-weight: 600;
    color: #a5abb1;
    display: flex;
    align-items: center;
}
villa-sections-info-details span {
    display: inline-block;
}

.villa-sections-info-details__item {
    margin-right: 90px;
}
.villa-sections-info-details__item:last-child {
    margin-right: 0;
}

.villa-sections-info p {
    opacity: 0.7;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.7;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 900px) {
    .villa-sections-tabs__item {
        margin-left: 30px;
    }
    .villa-sections-info-text {
        width: 500px;
        padding: 50px;
    }
    .villa-sections-info-details {
        font-size: 20px;
    }
}

@media screen and (max-width: 500px) {
    .villa-sections-tabs .container {
        align-items: flex-end;
    }
    .villa-sections-tabs__item {
        font-size: 15px;
    }
    .villa-sections-info-details__item {
        margin-right: 30px;
    }
}

/*VILLA OFFER LIST */

.villa-offer {
    margin: 80px 0;
}
.villa-offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.villa-offer-list {
    width: 30%;
}
.villa-offer-title {
    text-align: center;
    margin-bottom: 60px;
}
.villa-offer-list-item {
    display: flex;
    align-items: center;
    padding: 20px 0 20px 20px;
    border-right: 10px solid #c2b68c;
    cursor: pointer;
    transition: all 0.3s ease;
	color: #000000;
}
.villa-offer-list-item__text {
    width: 70%;
    padding-right: 30px;
}
.villa-offer-list-item__text h4 {
    margin-bottom: 8px;
}
.villa-offer-list-item:hover {
    border-right: 10px solid #0a203f;
    background-color: #f1f1f1;
}
.villa-offer-list-item__img {
    margin-right: 30px;
    width: 30%;
}

.villa-offer-list-nav {
    position: relative;
    left: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.villa-offer-list-nav-up {
    margin-bottom: 20px;
}
.villa-offer-list-nav svg {
    width: 30px;
}
.villa-offer-list-nav-down svg {
    transform: rotate(180deg);
}
.villa-offer-list-nav-down {
    margin-top: 20px;
}
.villa-offer-list-nav:hover {
    opacity: 0.7;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 1500px) {
    .villa-offer-list {
        width: 50%;
    }
}

@media screen and (max-width: 1024px) {
    .villa-offer-list {
        width: 100%;
    }
    .villa-offer-list-img {
        display: none;
    }
    .villa-offer-list-item__img {
        width: auto;
    }
    .villa-offer-list-item {
        border-right: none;
    }
}

@media screen and (max-width: 900px) {
    .villa-offer {
        margin: 50px 0;
    }
    .villa-offer-title {
        margin-bottom: 40px;
    }
    .villa-offer-list-nav {
        display: none;
    }

    .villa-offer-list-item:hover {
        border-right: none;
        background-color: #f1f1f1;
    }
}

@media screen and (max-width: 500px) {
    .villa-offer {
        margin: 50px 0;
    }
    .villa-offer-list-item {
        flex-direction: column;
        padding: 20px;
    }
    .villa-offer-list-item__img {
        width: 100%;
        margin-right: 0;
    }
    .villa-offer-list-item__text {
        padding-right: 0;
        width: 100%;
        margin-top: 10px;
    }
    .villa-offer-title {
        margin-bottom: 20px;
        padding: 0 20px;
    }
}

/*ENTERTAINMENT-ROOM */

.villa-entertainment-room-wrapper {
    display: flex;
    align-items: center;
    background-color: #f8f9fb;
}
.villa-entertainment-room-text {
    width: 35%;
    margin-left: -200px;
    background-color: #00172d;
    padding: 100px 100px 100px 100px;
}
.villa-entertainment-room-text-title {
    color: #c2b68c;
    margin-bottom: 40px;
}
.villa-entertainment-room-text p {
    color: #fff;
    opacity: 0.7;
}

.villa-entertainment-room-icons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 55px;
}
.villa-entertainment-room-icons__item {
    text-align: center;
    /*margin-right:8%;*/
    padding: 0 10px;
    width: 25%;
}

.villa-entertainment-room-icons__item:last-child {
    margin-right: 0;
}

.villa-entertainment-room-icons__item svg {
    height: 40px;
}
.villa-entertainment-room-icons__item span {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-top: 15px;
    text-align: center;
    letter-spacing: 1.4px;
    font-weight: 300;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 1700px) {
    .villa-entertainment-room-text {
        width: 45%;
        padding: 50px;
        margin-left: -550px;
    }
}

@media screen and (max-width: 1300px) {
    .villa-entertainment-room-img {
        width: 80%;
    }
    .villa-entertainment-room-text {
        width: 60%;
    }
}

@media screen and (max-width: 1024px) {
    .villa-entertainment-room-wrapper {
        flex-direction: column;
    }
    .villa-entertainment-room-img {
        width: 100%;
    }
    .villa-entertainment-room-text {
        width: 100%;
        margin-left: 0;
        margin-top: -5px;
    }
}

@media screen and (max-width: 500px) {
    .villa-entertainment-room-icons__item {
        width: 50%;
        margin-bottom: 20px;
    }
    .villa-entertainment-room-text {
        padding: 40px 20px;
    }
    .villa-entertainment-room-text-title {
        margin-bottom: 30px;
    }
    .villa-entertainment-room-icons {
        margin-top: 35px;
    }
}

/*VILLA EVENTS*/
.villa-events {
    background-color: #f8f9fb;
    margin-top: -5px;
}
.villa-events-title {
    margin-bottom: 20px;
    color: #00172d;
}
.villa-events-title small {
    margin-bottom: -10px;
}
.villa-events-text {
    color: #727272;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    text-align: center;
    line-height: 1.6;
    padding: 80px 230px;
}
.villa-events-gallery {
    display: flex;
}

/*.villa-events-gallery li {width:25%;}*/

.villa-events p {
    font-size: 20px;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 1300px) {
    .villa-events-text {
        padding: 80px;
    }
}

@media screen and (max-width: 768px) {
    .villa-events-text {
        padding: 50px;
    }
}

@media screen and (max-width: 500px) {
    .villa-events-text {
        padding: 50px 0px;
    }
}
/*LOCATION*/

.location {
    display: flex;
    margin: -5px 0 -1px 0;
    height: 800px;
}

.location--with-border {
    border-bottom: 10px solid #beb084;
}

.location-map {
    width: 80%;
    background-image: url(../images/location_map_bg.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;

    justify-content: center;
    padding: 0 20px 0 20%;
}

.location-map-title small {
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 10px;
    font-size: 16px;
}
.location-distances {
    background-color: #00172d;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    color: #fff;
    padding: 50px;
    width: 20%;
}
.location-distances-title {
    color: #c2b68c;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.location-distances__item {
    margin-bottom: 15px;
    opacity: 0.8;
    letter-spacing: 1.5px;
}

.location-map-info {
    display: flex;
}
.location-map-info span {
    display: block;
    font-weight: 600;
}
.location-map-title {
    margin-bottom: 60px;
}
.location-map-info__left-col {
    letter-spacing: 1.5px;
    line-height: 2;
    color: #b2b2b2;
    margin-right: 100px;
}

.location-map-info__right-col {
    letter-spacing: 1.5px;
    line-height: 2;
    color: #c2b68c;
}
.location-map-info__right-col span {
    display: flex;
    align-items: center;
}
.location-map-info__right-col svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.location-map-info__right-col a {
    color: #c2b68c;
    tranisition: all 0.3s ease;
}
.location-map-info__right-col a:hover {
    opacity: 0.7;
}

.location-button {
    margin-top: 40px;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 1600px) {
    .location-distances {
        width: 30%;
    }
    .location-map {
        padding: 0 30px;
        flex-wrap: wrap;
    }
    .location-map-title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 900px) {
    .location {
        flex-direction: column-reverse;
        height: auto;
        margin: 0;
    }
    .location-map {
        width: 100%;
        padding: 50px 20px;
    }
    .location-distances {
        width: 100%;
        padding: 50px 20px;
    }
}

@media screen and (max-width: 600px) {
    .location-map-info {
        flex-direction: column;
    }
    .location-button {
        margin-top: 10px;
    }
    .location-map-info__right-col {
        margin-top: 20px;
    }
}

/*BOOK / CHECK-IN-OUT*/

.booking-banner {
    background-image: url(../images/booking_banner.png);
    background-size: cover;
    padding: 70px 0;
	margin-top:-1px;
}
.booking-banner-icon svg {
    width: 80px;
}
.booking-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.booking-banner-text h3 {
    font-style: italic;
    color: #fff;
    letter-spacing: 1.5px;
}
.booking-banner-text p {
    font-size: 19px;
    color: #fff;
    letter-spacing: 1.5px;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 900px) {
    .booking-banner {
        margin-top: -1px;
    }
    .booking-banner-icon svg {
        width: 60px;
    }
}

@media screen and (max-width: 768px) {
    .booking-banner-icon {
        display: none;
    }
    .booking-banner {
        padding: 50px 0;
    }
    .booking-banner .container {
        flex-direction: column;
    }
    .booking-banner-text {
        margin-bottom: 20px;
    }
}

/* ABOUT VILLLA */

.about-villa {
    background-color: #00172d;
    text-align: center;
    color: #fff;
}
.about-villa .container {
    padding: 130px 220px;
}
.about-villa-title {
    margin-bottom: 40px;
}

.about-villa p {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 25px;
}
.about-villa p + p {
    margin-top: 50px;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1024px) {
    .about-villa .container {
        padding: 50px 40px;
    }
}

@media screen and (max-width: 500px) {
    .about-villa .container {
        padding: 50px 20px;
    }
}

/* VILLA SECTIONS */

.villa-sections-info-full-size {
    height: 100vh;
    border-top: 10px solid #c2b68c;
    display: block;
}

/* VILLA OFFER*/

.villa-main-offer-text {
    background-color: #00172d;
    text-align: center;
}
.villa-main-offer-text .container {
    padding: 100px 100px 200px 100px;
}
.villa-main-offer-text svg {
    width: 80px;
}
.villa-main-offer-text p {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    margin-top: 30px;
}

.villa-main-offer-list-wrapper {
    margin-top: -100px;
    background-color: #fff;
    text-align: center;
    padding: 40px;
}
.villa-main-offer-list-title {
    margin-bottom: 70px;
    font-weight: 400;
    font-style: italic;
    text-align: center;
}

.villa-main-offer-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 150px;
    margin-bottom: 60px;
}
.villa-main-offer-list__item {
    width: 25%;
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    padding-right: 30px;
}

.villa-main-offer-list__item span {
	width:88%;
}

.villa-main-offer-list__item svg {
    width: 10%;
	min-width:15px;
    margin-right: 10px;
}

.villa-main-offer-list-hidden {
    margin-top: -35px;
    display: none;
}
.villa-main-offer-list-hidden svg {
    fill: #00172d;
}

@media screen and (max-width: 1500px) {
    .villa-main-offer-list-wrapper {
        margin-top: 0;
    }
    .villa-main-offer-text .container {
        padding: 100px;
    }
}

@media screen and (max-width: 1200px) {
    .villa-main-offer-list {
        padding: 0;
    }
}

@media screen and (max-width: 1024px) {
    .villa-main-offer-text .container {
        padding: 50px;
    }
}

@media screen and (max-width: 900px) {
    .villa-main-offer-list__item {
        width: 33.33%;
    }
}

@media screen and (max-width: 600px) {
    .villa-main-offer-list-wrapper {
        padding: 40px 20px;
    }
    .villa-main-offer-list__item {
        width: 50%;
        padding-right: 20px;
    }
}


@media screen and (max-width: 500px) {
    .villa-main-offer-text .container {
        padding: 50px 20px;
    }
    .villa-main-offer-text p {
        margin-top: 10px;
    }
}

/*VILLA GARDEN */

.villa-garden-content {
    display: flex;
    align-items: center;
}

.villa-garden-img img {
    display: block;
}

.villa-garden-text {
    width: 40%;
    margin-left: -200px;
    background-color: #fff;
    padding: 100px 100px 100px 100px;
    border-left: 10px solid #c2b68c;
}
.villa-garden-text-title {
    color: #00172d;
    margin-bottom: 40px;
}
.villa-garden-text p {
    color: #727272;
    opacity: 0.7;
}
.villa-garden-text p + p {
    margin-top: 20px;
}

.villa-garden-text a.button {
    margin-top: 40px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1500px) {
    .villa-garden-text {
        width: 60%;
        padding: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .villa-garden-text {
        width: 90%;
    }
    .villa-garden-text-title {
        margin-bottom: 20px;
    }
    .villa-garden-text a.button {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .villa-garden-content {
        flex-direction: column;
    }
    .villa-garden-text {
        width: 100%;
        margin-left: 0;
        padding: 30px;
    }
}

/*PRICE LIST*/

.price-list {
    background-color: #00172d;
    padding: 100px;
}
.price-list .container {
}
.price-list-title {
    color: #fff;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 400;
}

.price-list-table {
    border-collapse: collapse;
}
.price-list-table td {
    border: 1px solid #003160;
    padding: 25px;
    width: 25%;
    color: #c2b68c;
    font-weight: 600;
    text-align: center;
}
.price-list-table td:first-child {
    color: #fff;
    text-align: left;
    width: 30%;
}

.price-list-table-head td {
    background-color: #fff;
    color: #00172d;
    text-align: center;
}
.price-list-table-head td:first-child {
    color: #00172d;
    text-align: left;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
    .price-list {
        padding: 50px 20px;
    }
    .price-list-title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 880px) {
    .price-list {
        padding: 50px 0px;
    }
    .price-list-table td {
        padding: 25px 10px;
        font-size: 15px;
    }
}

@media screen and (max-width: 600px) {
    .price-list-table {
        overflow-x: scroll;
        display: block;
        white-space: nowrap;
    }
}

/*CONTACT*/

.contact-info {
    background-color: #00172d;
    padding: 100px;
    text-align: center;
    border-bottom: 10px solid #c2b68c;
}
.contact-info .container {
    padding: 0 200px;
}
.contact-info-title {
    color: #fff;
    margin-bottom: 40px;
}
.contact-info p {
    color: #fff;
    font-size: 25px;
    font-family: "Playfair Display", serif;
}

.contact-form {
    border-bottom: 1px dashed gray;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.contact-form__item {
    margin-left: 20px;
}
.contact-form__item:first-child {
    margin-left: 0;
}

.contact-form--no-border {
    border-bottom: none;
}

.contact-form__item--50 {
    width: 50%;
}
.contact-form__item--33 {
    width: 33.33%;
}
.contact-form__item--20 {
    width: 20%;
}
.contact-form__item--100 {
    width: 100%;
}

.c-box {
    clear: both;
    margin-bottom: 20px;
}
.c-box div {
    display: flex;
    align-items: center;
}
.c-box__label {
    float: none;
    width: auto;
    min-height: auto;
    margin-left: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: #707070;
}
input[type="checkbox"] {
    width: auto;
    height: auto;
}

.contact-form__item label {
    display: block;
    font-family: "Playfair Display", serif;
    color: #707070;
    font-size: 18px;
    margin-bottom: 8px;
}
.field-with-icon {
    position: relative;
}

.field-with-icon a {
    position: absolute;
    right: 15px;
    top: 0px;
}
.field-with-icon svg {
    width: 20px;
    height: 20px;
}

.contact-form-buttons {
    margin-bottom: 100px;
    display: flex;
    align-items: flex-end;
	flex-direction:column;
}
.contact-form-buttons button{
    margin-top: 20px;
}

.check-in-out {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 90px;
    color: #fff;
}
.check-in,
.check-out {
    width: 50%;
}
.check-in-out em {
    font-size: 40px;
    display: block;
    font-family: "Playfair Display", serif;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.check-in-out span {
    font-size: 20px;
    letter-spacing: 2px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
    .contact-info .container {
        padding: 0;
    }
    .check-in-out {
        padding-left: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .contact-info {
        padding: 50px;
    }
    .contact-form__item--20 {
        width: 30%;
    }
    .booking-banner {
        padding: 30px 0;
    }
    .check-in {
        margin-bottom: 20px;
    }
    .check-in-out {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }
    .check-in,
    .check-out {
        width: 100%;
    }
    .check-in-out em {
        font-size: 30px;
    }
    .check-in-out span {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    .contact-info {
        padding: 50px 20px;

    }
    .contact-form {
        flex-direction: column;
        padding: 40px 0 20px 0;
    }
    .contact-form-buttons {
        justify-content: flex-start;
        margin-bottom: 50px;
    }
    .contact-form__item {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
}

/*TEXT PAGE*/

.text-page {
    border-top: 10px solid #c2b68c;
    padding: 40px 0 80px 0;
}
.text-page-section {
    padding-top: 40px;
}
.text-page-subtitle {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}
.text-page p {
    margin-top: 20px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1024px) {
    .text-page {
        padding: 0 0 80px 0;
    }
}


/* REGION */

.region {
    
	position:relative;
}



.region p {
    margin-top: 20px;
	color:#fff;
	opacity:0.8;
}

.region-section {position:relative; border-top: 10px solid #c2b68c; border-bottom: 10px solid #c2b68c;}
.region-img { height:100%; min-height:1000px; width:100%; background-size:cover; background-position:center; }
.region-zadar {background-image:url(../images/regija_zadar.jpg);}
.region-nin {background-image:url(../images/regija_nin.jpg);}
.region-biograd {background-image:url(../images/regija_biograd.jpg);}
.region-fun-park {background-image:url(../images/regija_fun_park.jpg);}
.region-novalja {background-image:url(../images/regija_novalja.jpg);}




.region-wrapper {
background-color: #00172d;
width: 860px;
padding: 50px;
position:absolute; right:130px; top:100px;
}




.region-section-2 {
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 80px 0;
}

.region-section-2 small {color:#727272;}

.region-section-2-text {
    width: 30%;
	padding:0 50px;
}

.region-section-2-text p {color:#727272;}

.villa-offer-title {
    text-align: center;
    margin-bottom: 60px;
}



/*MEDIA QUERIES*/

@media screen and (max-width:1700px) {
	.region-section-2-text {width:50%;}
}

@media screen and (max-width:1270px) {
	.region-section-2-text {width:70%;}
}


@media screen and (max-width:1024px) {
	.region-img {min-height:660px;}
	.region-wrapper {position:relative; width:100%; right:auto; top:auto; }
	.region-section-2 {flex-direction:column-reverse; margin:0;}
	.region-section-2-text {width:100%; padding:50px;}

}

@media screen and (max-width:600px) {
	.region-img {min-height:330px;}
	.region-wrapper {padding:20px 20px 40px 20px;}

}


/* FOOTER */

footer {
    background-color: #00172d;
}
footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.footer-nav__item {
    color: #fff;
    font-size: 18px;
    font-family: "Playfair Display", serif;
    border-right: 1px solid #fff;
    margin-right: 10px;
    padding-right: 10px;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
}
.footer-nav__item:last-child {
    border-right: none;
}
.footer-nav__item:hover {
    color: #beb084;
}

.footer-logo svg {
    height: 150px;
}

.footer-social-media {
    display: flex;
    align-items: center;
}
.footer-social-media p {
    color: #fff;
    font-family: "Playfair Display", serif;
    letter-spacing: 1.5px;
}
.footer-social-media a {
    margin-left: 10px;
}
.footer-social-media svg {
    width: 40px;
}
.footer-social-media svg path {
    transition: all 0.3s ease;
}
.footer-social-media a:hover svg path {
    fill: #fff;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
}
.footer-bottom .container {
    display: flex;
    justify-content: flex-start;
    color: #fff;
    opacity: 0.4;
}
.footer-bottom a {
    color: #fff;
    transition: all 0.3s ease;
}
.footer-bottom span {
    margin-right: 10px;
    font-size: 14px;
}
.footer-bottom a:hover {
    opacity: 0.7;
}

/*MEDIA QUERIES */

@media screen and (max-width: 900px) {
    .footer-logo {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    footer .footer-top {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .footer-nav {
        margin-bottom: 20px;
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .footer-nav__item {
        display: block;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px dashed #fff;
        border-right: none;
    }
    .footer-nav__item:last-child {
        border-bottom: none;
    }
    .footer-bottom .container {
        flex-direction: column;
    }
}


/* Cookies
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.cookies {
    font-family: "Open Sans", sans-serif;
	position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #00172d;
    z-index: 99999999;
    display: none;
	border-top:2px solid #fff;
}
.cookies-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.cookies p {
    font-size: 14px;
    text-align: left;
    color: #fff;
    padding-bottom: 0;
}
.cookies p a {
    text-decoration: underline;
    color: #fff;
}
.cookies p a:hover {
    opacity: 0.8;
}
.cookies a.button {
    padding: 15px 20px;
    font-size: 12px;
    font-weight: 700;
	letter-spacing: 1px;
    margin: 0 0 0 40px;
    background-color: #c2b68c;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.cookies a.button:hover {
    background-color: #fff;
    text-decoration: none;
    color: #c2b68c;
}
@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;
	}
}