/*=================
 Basic Setup
===================*/

:root {
	--main-color: #d98f4b;
	--title-color: #161616;
	--paragraph-color: #626060;
	--title-font: "Cardo", serif;
}
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	color: var(--paragraph-color);
	font-size: 16px;
	font-weight: normal;
	font-family: "Outfit", sans-serif;
	line-height: 1.6;
}
h1, h2, h3, h4, h5, h6{
	color: var(--title-color);
	font-weight: bold;
	font-family: "Cardo", serif;
	line-height: 1.3;
	margin: 0px;
}
h1{
	font-size: 45px;
}
h2{
	font-size: 36px;
}
h3{
	font-size: 24px;
}
h4{
	font-size: 20px;
}
h5{
	font-size: 18px;
}
h6{
	font-size: 16px;
}
ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
a{
	text-decoration: none;
	transition: 0.4s;
}
p{
	margin: 0px;
}

@media (min-width: 1400px) {

	.container{
		max-width: 1314px;
	}
}

/* ===Menu-Button=== */

.menu-btn a{
	position: relative;
  display: inline-block;
  color: #fff;
  background-color: transparent;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 13px 35px;
  border: 1px solid var(--main-color);
  overflow: hidden;
  vertical-align: top;
  z-index: 1;
  transition: 0.5s;
}
.menu-btn a:hover{
	color: var(--main-color);
}
.menu-btn a::before{
	content: '';
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s;
}
.menu-btn a:hover::before{
	left: -50%;
}
.menu-btn a::after{
	content: '';
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  right: 0;
  z-index: -1;
  transition: 0.5s;
}
.menu-btn a:hover::after{
  right: -50%;
}

/*=== Section Button ===*/

.section-btn a{
	position: relative;
  display: inline-block;
  color: var(--main-color);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--main-color);
  padding: 13px 35px;
  z-index: 1;
  overflow: hidden;
}
.section-btn a:hover{
	color: #fff;
}
.section-btn a::before{
	content: '';
	position: absolute;
	height: 100%;
	background-color: var(--main-color);
	width: 50%;
	top: 0;
	left: -50%;
	z-index: -1;
	transition: 0.5s;
}
.section-btn a:hover::before{
	left: 0;
}
.section-btn a::after{
	content: '';
	position: absolute;
	height: 100%;
	background-color: var(--main-color);
	width: 50%;
	top: 0;
	right: -50%;
	z-index: -1;
	transition: 0.5s;
}
.section-btn a:hover::after{
	right: 0;
}

/*=================
 Site Header
===================*/

.site-header{
	position: relative;
	z-index: 99;
}
.site-header .menu-bar{
	position: absolute;
	padding-top: 2px;
	z-index: 99;
	width: 100%;
}
.site-header .menu-bar .menu-content{
	display: flex;
	justify-content: space-between;
	align-items: center;	
}

.site-header .menu-bar .main-menu ul li{
	display: inline-block;
}
.site-header .menu-bar .main-menu ul li:last-child{
	margin-right: 0px;
}
.site-header .menu-bar .main-menu ul li a{
	display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 36px 11px;
	text-transform: capitalize;
}
.site-header .menu-bar .main-menu ul li a:hover{
	color: var(--main-color);
}
.site-header .menu-bar .main-menu ul li a i{
	font-size: 10px;
  margin-left: 3px;
}
.site-header .menu-bar .menu-content .component{
	display: flex;
	align-items: center;
}
.site-header .menu-bar .menu-content .component .menu-btn a{
	padding: 13px 30px;
}
.site-header .menu-bar .menu-content .component .search-icon{
	margin-right: 30px;
}
.site-header .menu-bar .menu-content .component .search-icon i{
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}
.site-header .menu-bar .menu-content .component .search-icon i:hover{
	color: var(--main-color);
}

/* === Dropdown Menu Bar === */

.site-header .menu-bar .main-menu ul li.dropdown{
	position: relative;
}
.site-header .menu-bar .main-menu ul li.dropdown .sub-menu{
	position: absolute;
	background-color: #fff;
  width: 270px;
  left: 0;
  top: 130%;
  padding: 10px 0;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  opacity: 0;
 	visibility: hidden;
}
.site-header .menu-bar .main-menu ul li.dropdown:hover .sub-menu{
	top: 100%;
	opacity: 1;
	visibility: visible;
}
.site-header .menu-bar .main-menu ul li.dropdown .sub-menu li{
	display: block;
	margin-right: 0px;
}
.site-header .menu-bar .main-menu ul li.dropdown .sub-menu li a{
	color: var(--title-color);
	text-transform: capitalize;
	padding: 10px 20px;
	transition: 0.5s;
}
.site-header .menu-bar .main-menu ul li.dropdown .sub-menu li a:hover{
	color: var(--main-color);
}


/*=================
 Mobail Menu
===================*/

.mobile-menu{
	position: relative;
	z-index: 99;
}
.mobile-menu .menu-bar{
	display: flex;
	justify-content: space-between;
	padding: 20px 30px;
	align-items: center;
	background-color: #fff;
}
.mobile-menu .menu-bar .site-logo a{
	display: inline-block;
}
.mobile-menu .menu-toggle {
	cursor: pointer;
}
.mobile-menu .menu-toggle i {
  color: var(--main-color);
  font-size: 24px;
}
.mobile-menu .menu-content {
	display: block;
	position: absolute;
	width: 100%;
	background: #fff;
	padding: 30px 30px 40px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	z-index: 99;
}
.mobile-menu .menu-content .menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--title-color);
	font-weight: 600;
	padding: 10px 10px;
	transition: 0.4s;
	text-transform: capitalize;
}
.mobile-menu .menu-content .menu li a i{
	font-size: 20px;
}
.mobile-menu .menu-content .menu li a:hover{
	color: var(--main-color);
}
.mobile-menu .menu-content .menu .mobail-dropdown .mobail-submenu{
	padding-left: 20px;
}
.mobile-menu .menu-content .info {
	margin: 30px 0 0;
}
.mobile-menu .menu-content .menu .mobail-dropdown .mobail-submenu li:last-child{
	border-bottom: 0px;
}
.mobile-menu .menu-content .search-icon i{
	color: var(--title-color);
	cursor: pointer;
	height: 44px;
	width: 44px;
	line-height: 44px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin-right: 15px;
	transition: 0.3s;
}
.mobile-menu .menu-content .search-icon i:hover{
	color: #fff;
	background-color: var(--main-color);
}
.mobile-menu .menu-content .component{
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-top: 30px;
	padding-top: 20px;
}
.mobile-menu .menu-content .component .menu-btn a{
	font-size: 14px;
	padding: 10px 20px;
	letter-spacing: 2px;
}
.mobile-menu{
	display: none;
}
.mobail-submenu{
	display: none;
}
@media (max-width: 1199px) {
	.site-header{
		display: none;
	}
	.mobile-menu {
		display: block;
	}
	.mobile-menu .menu-content{
		display: none;
	}
}

/*
==================
 Preloader
==================
*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    z-index: 99999;
}
.preloader.style1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.preloader.style1 .loader{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader.style1 .loader .ring{
    position: relative;
    height: 150px;
    width: 150px;
    margin: -30px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top: 4px solid #24ecff;
    animation: animate 4s linear infinite;
}
@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.preloader.style1 .loader .ring::before{
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background: #24ecff;
    box-shadow: 0 0 0 5px #24ecff33,
    0 0 0 10px #24ecff22,
    0 0 0 20px #24ecff11,
    0 0 20px #24ecff,
    0 0 50px #24ecff;
}
.preloader.style1 .loader .ring:nth-child(2){
    animation: animate2 4s linear infinite;
    animation-delay: -1s;
    border-top: 4px solid transparent;
    border-left: 4px solid #93ff2d;
}
.preloader.style1 .loader .ring:nth-child(2)::before{
    content: "";
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background: #93ff2d;
    box-shadow: 0 0 0 5px #93ff2d33,
    0 0 0 10px #93ff2d22,
    0 0 0 20px #93ff2d11,
    0 0 20px #93ff2d,
    0 0 50px #93ff2d;
}
@keyframes animate2{
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
.preloader.style1 .loader .ring:nth-child(3){
    position: absolute;
    top: -66.66px;
    border-top: 4px solid transparent;
    border-left: 4px solid #e41cf8;
    animation: animate2 4s linear infinite;
    animation-delay: -3s;
}
.preloader.style1 .loader .ring:nth-child(3)::before{
    content: "";
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background: #e41cf8;
    box-shadow: 0 0 0 5px #e41cf833,
    0 0 0 10px #e41cf822,
    0 0 0 20px #e41cf811,
    0 0 20px #e41cf8,
    0 0 50px #e41cf8;
}
.preloader.style1 .loader p{
    position: absolute;
    color: #fff;
    font-size: 1.5em;
    font-family: consolas;
    bottom: -150px;
    letter-spacing: 0.15em;
}

/*=========================
 Hero Section
===========================*/

.hero-section .hero-content{
	width: 100%;
	padding: 301px 0px 306px;
}
.hero-section .hero-content .slaid-item{
	text-align: center;
}
.hero-section .hero-content .slaid-item .sub-title{
	color: var(--main-color);
  font-size: 50px;
  font-weight: normal;
  font-family: 'Carattere', cursive;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
.hero-section .hero-content .slaid-item .title{
	color: #fff;
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 16px;
}
.hero-section .hero-content .slaid-item .menu-btn{
	margin-top: 33px;
}
.hero-section .hero-content .slaid-item .menu-btn a{
	background-color: rgba(0, 0, 0, 0.3);
}
.hero-section .owl-stage-outer{
	position: relative;
}
.hero-section .owl-nav button{
	position: absolute;
	top: 51%;
}
.hero-section .owl-nav button i{
	color: #fff;
	font-size: 26px;
}
.hero-section .owl-nav button.owl-prev{
	left: 5%;
	height: 70px;
	width: 70px;
	line-height: 70px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.8);
	background-color: rgba(255, 255, 255, 0.2);
	opacity: 0;
	transition: 0.3s;
}
.hero-section:hover .owl-nav button.owl-prev{
	opacity: 1;
}
.hero-section .owl-nav button.owl-next{
	right: 5%;
	height: 70px;
	width: 70px;
	line-height: 70px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.8);
	background-color: rgba(255, 255, 255, 0.2);
	opacity: 0;
	transition: 0.3s;
}
.hero-section:hover .owl-nav button.owl-next{
	opacity: 1;


}


.hero-title-bg {
    background: rgba(255,255,255,0.92);
    display: inline-block;
    padding: 24px 36px 18px 36px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    margin-bottom: 18px;
    text-align: center;
}
.hero-title-bg .title,
.hero-title-bg .sub-title {
    color: #222;
    text-shadow: 0 0 12px #fff, 0 2px 8px #C68E50;
}

/*======= Responsive =======*/

@media (max-width: 1199px) {
	.hero-section .hero-carousel .owl-nav{
		display: none;
	}
}
@media (max-width: 1024px) {
	.hero-section .hero-content .slaid-item .title{
		font-size: 50px;
	}
}
@media (max-width: 767px) {
	.hero-section .hero-content{
		padding: 100px 0px 110px;
	}
	.hero-section .hero-content .slaid-item .title{
		font-size: 40px;
    letter-spacing: 3px;
	}
	.menu-btn a{
		font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 20px;
	}
	.hero-section .hero-content .slaid-item .sub-title{
		font-size: 36px;
	}
}

/*=========================
 Join Section
===========================*/

.join-section{
	margin-top: -73px;
	position: relative;
	z-index: 11;
}
.join-section form .content-box{
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 27px 40px 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.join-section form .content-box label{
	width: 100%;
	font-size: 16px;
}
.join-section form .content-box input{
	color: var(--paragraph-color);
  height: 50px;
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 0;
  font-size: 16px;
  margin-top: 10px;
  padding: 14px 15px;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.join-section form .content-box select{
	color: var(--paragraph-color);
  height: 50px;
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 0;
  font-size: 16px;
  margin-top: 10px;
  padding: 14px 15px;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent url(../images/down.png) no-repeat 100% center;
  background-position-x: 100%;
  background-size: auto;
  background-size: 8px;
  background-position-x: 93%;
}
.join-section form .content-box .check-in{
	width: 20%;
}
.join-section form .content-box .check-out{
	width: 20%;
}
.join-section form .content-box .adult{
	width: 12%;
}
.join-section form .content-box .children{
	width: 15%;
}
.join-section form .content-box .rooms{
	width: 13%;
}
.join-section form .content-box .button{
	width: 20%;
}
.join-section form .content-box .button input{
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	border: 0;
	outline: 0;
	margin-top: 39px;
	background-color: #161616;
	border-radius: 0;
	padding: 0px 20px;
	transition: 0.5s;
}
.join-section form .content-box .button input:hover{
	background-color: var(--main-color);
}

/*======= Responsive =======*/

@media (max-width: 1024px) {
	.join-section{
		margin-top: 100px;
	}
	.join-section form .content-box{
		flex-wrap: wrap;
	}
	.join-section form .content-box .check-in {
  	width: 50%;
  	margin-bottom: 20px;
	}
	.join-section form .content-box .check-out{
		width: 50%;
		margin-bottom: 20px;
	}
	.join-section form .content-box .check-out input{
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}
	.join-section form .content-box .adult {
  	width: 25%;
	}
	.join-section form .content-box .children{
		width: 25%;
	}
	.join-section form .content-box .rooms{
		width: 25%;
	}
	.join-section form .content-box .button{
		width: 25%;
	}
}
@media (max-width: 767px) {
	.join-section{
		margin-top: 80px;
	}
	.join-section form .content-box .adult {
  	width: 50%;
	}
	.join-section form .content-box .children{
		width: 50%;
	}
	.join-section form .content-box .children select{
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}
	.join-section form .content-box .rooms{
		width: 50%;
	}
	.join-section form .content-box .button{
		width: 50%;
	}
}

/*=========================
 About Section
===========================*/

.about-section{
	padding: 120px 0px;
}
.about-section .left-content{
	position: relative;
	width: 90%;
	overflow: hidden;
}
.about-section .left-content::before{
	position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.about-section .left-content:hover::before{
	height: 250%;
  transition: all 900ms linear;
  background-color: transparent;
}
.about-section .left-content img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-section .right-content{
	position: relative;
	height: 100%;
	width: 100%;
}
.about-section .right-content .content{
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(-0%, -50%);
}

/*=== Section Title ===*/

.section-title .sub-title{
	color: var(--main-color);
  font-size: 28px;
  font-weight: normal;
  font-family: 'Carattere', cursive;
  letter-spacing: 3px;
  margin: 0 0 18px;
}
.section-title  .title{
  text-transform: uppercase;
  letter-spacing: 3px;
}
.section-title  .title span{
	color: var(--main-color);
}
.about-section .right-content .content .section-title{
	margin-bottom: 11px;
}
.about-section .right-content .content .discription{
	margin-bottom: 51px;
}
.about-section .right-content .content .about-box{
	display: flex;
	align-items: center;
}
.about-section .right-content .content .about-box .section-btn{
	margin-right: 60px;
}
.about-section .right-content .content .about-box .booking{
	display: flex;
	align-items: center;
}
.about-section .right-content .content .about-box .booking .icon{
	height: 36px;
	width: 36px;
	margin: 5px 15px 0 0;
  line-height: 1;
}
.about-section .right-content .content .about-box .booking .icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-section .right-content .content .about-box .booking .number h4{
	color: var(--paragraph-color);
  font-size: 18px;
  font-weight: normal;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0;
}
.about-section .right-content .content .about-box .booking .number p{
	font-size: 22px;
	color: var(--main-color);
}


/*======= Responsive =======*/

@media (max-width: 1199px) {
	.about-section .left-content{
		width: 100%;
		height: 490px;
	}
	.about-section .right-content .content .about-box{
		flex-wrap: wrap;
	}
}
@media (max-width: 1024px) {
	.section-title .title{
		font-size: 36px;
	}
	.about-section .left-content{
		height: auto;
	}
}
@media (max-width: 991px) {
	.about-section .left-content{
		top: 22%;	}
	.about-section .right-content .content{
		position: static;
		transform: translate(-0%, -0%);
	}
}
@media (max-width: 767px) {
	.section-title .title{
		font-size: 26px;
	}
	.about-section{
	padding: 70px 0px 64px;
	}
	.about-section .left-content{
		top: 0%;
	}
	.about-section .right-content{
		margin-top: 20px;
	}
	.section-btn a{
		font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 20px;
	}
}


/*=========================
 Rooms Section
===========================*/

.room-section{
	padding: 112px 0px 118px 0px;
	background-color: #C68E500D;
}
.room-section .section-title{
	text-align: center;
	margin-bottom: 44px;
}
.room-section .room-carousel .items{
	position: relative;
  transition: 0.4s ease all;
  transform: scale(1);
}
.room-section .room-carousel .items img{
	height: 500px;
	object-fit: cover;
}
.room-section .room-carousel .items .content{
	position: absolute;
	bottom: 20px;
    background-color: rgba(255,255,255,0.7); /* promijenjeno */
	width: 80%;
	left: 0;
	right: 0;
	margin: auto;
	padding: 15px 35px 30px;
	opacity: 0;
	transition: 0.4s;
}
.room-section .room-carousel .items .content .box{
	display: flex;
	align-items: center;
	justify-content: center;
  margin-bottom: 15px;
}
.room-section .room-carousel .items .content .box .text h4{
	font-weight: normal;
  letter-spacing: 2px;
}
.room-section .room-carousel .items .content .box .text p{
	font-size: 13px;
}
.room-section .room-carousel .items .content .box .price span{
	font-size: 14px;
}
.room-section .room-carousel .items .content .box .price p{
	color: var(--main-color);
}
.room-section .room-carousel .items .content .section-btn{
	text-align: center;
}
.room-section .room-carousel .owl-stage{
	margin: 63px 0px;
}
.room-section .room-carousel .owl-item.active.center{
	z-index: 1;
}
.room-section .room-carousel .owl-item.active.center .items{
	opacity: 1;
  transform: scale(1.25);
}
.room-section .room-carousel .owl-item.active.center .items .content{
	opacity: 1;
}
.room-section .room-carousel .owl-item.active.center .items .content .section-btn a{
	display: inline-flex;
	color: var(--title-color);
	font-size: 12px;
	padding: 7px 22px;
	transition: 0.5s;
}
.room-section .room-carousel .owl-item.active.center .items .content .section-btn a:hover{
	color: #fff;
}
.room-section .room-carousel .owl-nav button{
	position: absolute;
	top: 48%;
	color: var(--main-color);
  height: 50px;
  width: 50px;
  background-color: #fff;
  border-radius: 0;
  transition: 0.5s;
}
.room-section .room-carousel .owl-nav button:hover{
	background-color: var(--main-color);
	color: #fff;
}
.room-section .room-carousel .owl-nav button.owl-prev{
	left: 0px;
}
.room-section .room-carousel .owl-nav button.owl-next{
	right: 0px;
}
.counter-item{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 97px 85px 0px ;
}
.counter-item .number{
	display: flex;
	align-items: center;
}
.counter-item .number h2{
	display: inline-block;
  color: var(--main-color);
  font-size: 80px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.counter-item p{
	font-size: 20px;
}

/*======= Responsive =======*/

@media (max-width: 1199px) {
	.room-section .room-carousel .items .content{
		padding: 15px 20px 22px;
	}
}
@media (max-width: 1024px) {
	.counter-item{
		flex-wrap: wrap;
	}
	.counter-item .counter-content{
		width: 34%;
		padding: 10px;
	}
}
@media (max-width: 991px) {
	.room-section .room-carousel .items{
		height: 400px;
	}
	.room-section .room-carousel .items .content{
		padding: 15px 15px 22px;
	}
	.room-section .room-carousel .items .content .box .text h4{
		font-size: 18px;
		letter-spacing: 1px;
	}
}
@media (max-width: 767px) {
	.room-section{
		padding: 66px 0px 70px;
	}
	.room-section .room-carousel .items{
		height: 500px;
	}
	.counter-item{
		padding: 80px 0px 0px;
	}
	.counter-item .number h2{
		font-size: 36px;
	}
	.counter-item .counter-content{
		width: 57%;
		margin: 0 auto;
	}

}

/*=========================
 Feature Section
===========================*/

.feature-section{
	padding: 114px 0px 98px;
}
.feature-section .section-title{
	margin-bottom: 44px;
}
.feature-section .feature-item{
	border: 1px solid rgba(22, 22, 22, 0.1);
  padding: 14px 35px 31px;
  margin-bottom: 20px;
}
.feature-section .feature-item .top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1px;
}
.feature-section .feature-item .top .number{
	color: var(--main-color);
  font-size: 52px;
  font-family: var(--title-font);
  font-weight: bold;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  opacity: 0.3;
  margin-top: 13px;
}
.feature-section .feature-item .title{
	font-weight: normal;
}
.feature-section .feature-item .underline{
	height: 1px;
	width: 60px;
  background-color: var(--main-color);
  opacity: 0.4;
  transition: 0.5s;
  margin: 18px 0px;
}
.feature-section .feature-item:hover .underline{
	width: 100%;
	opacity: 1;
}
.feature-section .feature-item .discription{
	font-size: 16px;
}

/*======= Responsive =======*/

@media (max-width: 768px) {
	.feature-section{
		padding: 66px 0px 70px;
	}
}

/*=========================
 Video Section
===========================*/

.video-section{
	background-image: url("../images/video-bg.jpg");
	padding: 228px 0px 212px;
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.video-section .content-box{
	text-align: center;
}
.video-section .content-box .video .icon{
	position: relative;
  display: inline-block;
  color: #fff;
  width: 100px;
  height: 100px;
  line-height: 90px;
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 40px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
}
.video-section .content-box .video .icon i{
	font-size: 26px;
}
.video-section .content-box .video .icon span{
	position: absolute;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 50%;
	top: 0px;
	left: 0px;
	animation: ripple 3.9s linear 0s infinite;
	animation-play-state: running;
}
.video-section .content-box .video .icon .cricle-2{
	animation-delay: 1.3s;
}
.video-section .content-box .video .icon .cricle-3{
	animation-delay: 2.6s;
}
@keyframes ripple{
  0%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:0}
  20%{-webkit-transform:scale(1.24);-moz-transform:scale(1.24);-o-transform:scale(1.24);transform:scale(1.24);opacity:1}
  100%{-webkit-transform:scale(2.1);-moz-transform:scale(2.1);-o-transform:scale(2.1);transform:scale(2.1);opacity:0}
}
.video-section .content-box .heading{
	color: #fff;
	text-transform: uppercase;
	margin-top: 35px;
}

/*======= Responsive =======*/

@media (max-width: 768px) {
	.video-section{
		padding: 120px 0px 102px 0px;
	}
	.video-section .content-box .heading{
		font-size: 20px;
	}
}

/*=========================
 Service Section
===========================*/

.animated-images{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.animated-images::before{
	position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.animated-images:hover::before{
	height: 250%;
  transition: all 900ms linear;
  background-color: transparent;
}
.animated-images img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service-section{
	background-color: #C68E500D;
	padding: 120px 0px;
}
.service-section .section-title{
	padding-top: 25px;
}
.service-section .section-title .sub-title{
	margin-bottom: 8px;
}
.service-section .section-title .title{
	font-size: 28px;
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.service-section .discription{
	margin-bottom: 31px;
	font-size: 16px;
	width: 90%;
}
.service-section .section-btn a{
	color: var(--title-color);
	font-size: 14px;
	padding: 10px 30px;
	letter-spacing: 2px;
	transition: 0.5s;
}
.service-section .section-btn a:hover{
	color: #fff;
}
.service-section .section-btn a i{
	font-size: 12px;
	margin-left: 5px;
}
.service-section .dining-left{
	width: 95.5%;
}
.service-section .dining-left .animated-images{
	height: 606px;
}
.service-section .dining-right{
	padding-left: 4.5%;
}
.service-section .dining-right .animated-images{
	height: 357px;
}
.service-section .works-right{
	margin-top: 49px;
	padding-left: 4.5%;
}
.service-section .works-right .animated-images{
	height: 605px;
}
.service-section .works-left .animated-images{
	margin-top: 48px;
	width: 95.5%;
	height: 356px;
}

/*======= Responsive =======*/

@media (max-width: 1199px) {
	.service-section .discription{
		width: 100%;
	}
	.service-section .dining-left{
		width: 97%;
	}
	.service-section .dining-right{
		padding-left: 0%;
	}
	.service-section .works-left .animated-images{
		width: 97%;
	}
	.service-section .works-right{
		padding-left: 0%;
	}
}
@media (max-width: 991px) {
	.service-section .dining-left{
		width: 100%;
	}
	.service-section .dining-right{
		display: flex;
		flex-direction: column-reverse;
	}
	.service-section .dining-right .animated-images{
		margin-top: 48px;
	}
	.service-section .works-left .animated-images{
		width: 100%;
	}
}
@media (max-width: 767px) {
	.service-section{
		padding: 70px 0px 69px;
	}
	.service-section .dining-left .animated-images{
		height: auto;
	}
	.service-section .dining-right .animated-images{
		height: auto;
	}
	.service-section .works-left .animated-images{
		height: auto;
	}
	.service-section .works-right .animated-images{
		height: auto;
	}
}

/*=========================
 Testimonials Section
===========================*/

.testimonial-section{
	padding: 114px 0px 120px;
}
.testimonial-section .section-title{
	text-align: center;
	margin-bottom: 44px;
}
.testimonial-section .testimonial-carousel .content-box{
	position: relative;
  margin: 30px 0 35px;
  padding: 45px 40px 67px;
  border: 1px solid rgba(22, 22, 22, 0.1);
}
.testimonial-section .testimonial-carousel .content-box::before{
	content: '';
  position: absolute;
  height: 100%;
  width: 30px;
  left: -30px;
  top: -30px;
  border-top: 1px solid rgba(22, 22, 22, 0.1);
  border-left: 1px solid rgba(22, 22, 22, 0.1);
}
.testimonial-section .testimonial-carousel .content-box::after{
	content: '';
  position: absolute;
  height: 100%;
  width: 30px;
  right: -30px;
  bottom: -30px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.1);
  border-right: 1px solid rgba(22, 22, 22, 0.1);
}
.testimonial-section .testimonial-carousel .content-box .icon{
	position: absolute;
	top: -30px;
  left: 50px;
  padding: 0 15px;
  background-color: #fff;
}
.testimonial-section .testimonial-carousel .content-box p{
	line-height: 1.7;
	font-size: 16px;
}
.testimonial-section .testimonial-carousel .content-box .client-profile{
	position: absolute;
	bottom: -35px;
	right: 60px;
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 0 18px;
}
.testimonial-section .testimonial-carousel .content-box .client-profile .client-img{
	margin-right: 20px;
  padding: 5px;
  border: 1px solid rgba(22, 22, 22, 0.1);
  border-radius: 50%;
}
.testimonial-section .testimonial-carousel .content-box .client-profile .client-img img{
	height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-section .testimonial-carousel .content-box .client-profile .client-bio h5{
	color: #626060;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}
.testimonial-section .testimonial-carousel .content-box .client-profile .client-bio p{
	font-weight: 300;
  line-height: 1.5;
}
.testimonial-section .testimonial-carousel .owl-nav{
	text-align: center;
  margin-top: 40px;
}
.testimonial-section .testimonial-carousel .owl-nav button{
	color: var(--main-color);
  height: 50px;
  width: 50px;
  border: 1px solid var(--main-color);
  border-radius: 0;
  opacity: 0.5;
  transition: 0.5s;
}
.testimonial-section .testimonial-carousel .owl-nav button i{
	font-size: 16px;
}
.testimonial-section .testimonial-carousel .owl-nav button:hover{
	opacity: 1;
}
.testimonial-section .testimonial-carousel .owl-nav button.owl-prev{
	margin-right: 10px;
}

/*======= Responsive =======*/

@media (max-width: 767px) {
	.testimonial-section{
		padding: 65px 0px 70px;
	}
}

/*=========================
 Brand Section
===========================*/

.brand-section .brand-content{
	background-color: #fff;
	box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-bottom: -130px;
  padding: 25px;
  position: relative;
  z-index: 1;
}
.brand-section .brand-content .brand-carousel{
	padding: 60px 0px;
	border: 1px solid #C68E50;
}
.brand-section .brand-content .brand-carousel .brand{
	height: 90px;
}
.brand-section .brand-content .brand-carousel .brand img{
	width: auto;
  object-fit: cover;
  margin: auto;
}

/*======= Responsive =======*/

@media (max-width: 767px) {
	.blog-section{
		padding: 197px 0px 53px;
	}
	.blog-section .blog-carousel .blog-item .blog-content .blog-title a{
		font-size: 22px;
	}
}

/*=========================
 Blog Section
===========================*/

.blog-section{
	background-color: #C68E500D;
	padding: 244px 0px 59px;
	 margin-top: -300px;

}
.blog-section .section-title{
	margin-bottom: 45px;
}
.blog-section .blog-carousel .blog-item {
	height: 430px;
}
.blog-section .blog-carousel .blog-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-section .blog-carousel .blog-item .blog-content{
	background-color: rgb(255, 255, 255);
  box-shadow: rgba(104, 110, 125, 0.08) 0px 10px 30px 2px;
  padding: 30px 35px 23px;
  width: 85%;
  margin: -100px auto 0px;
  position: relative;
  z-index: 1;
}
.blog-section .blog-carousel .blog-item .blog-content .sub-title{
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 15px;
}
.blog-section .blog-carousel .blog-item .blog-content .blog-title{
	font-size: 26px;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.blog-section .blog-carousel .blog-item .blog-content .blog-title a{
	color: var(--title-color);
}
.blog-section .blog-carousel .blog-item .blog-content .blog-title a:hover{
	color: var(--main-color);
}
.blog-section .blog-carousel .blog-item .blog-content .discription{
	font-size: 16px;
	margin-bottom: 10px;
}
.blog-section .blog-carousel .owl-stage{
	margin-bottom: 130px;
}
.blog-section .blog-carousel .owl-nav button{
	position: absolute;
  top: 32.5%;
  color: #fff;
  height: 50px;
  width: 50px;
  background-color: var(--main-color);
  border-radius: 0px;
  transition: 0.5s;
}
.blog-section .blog-carousel .owl-nav button:hover{
	color: var(--main-color);
	background-color: #fff;
}
.blog-section .blog-carousel .owl-nav button.owl-next{
	right: 0;
}
.blog-section .blog-carousel .owl-nav button i{
	font-size: 16px;
}

/*======= Responsive =======*/

@media (max-width: 767px) {
	.blog-section .blog-carousel .owl-stage{
		margin-bottom: 280px;
	}
}

/*=========================
 Footer Section
===========================*/

.footer-section{
	padding-top: 96px;
	position: relative;
  background-image: url("../images/footer-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-section::before{
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #000000;
  opacity: 0.86;
}
.footer-section .footer-content{
	position: relative;
	z-index: 99;
}
.footer-section .footer-content .heading-text{
	color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 18px 0px 42px;
}
.footer-section .footer-content .discription{
	color: #FFFFFFCC;
}
.footer-section .footer-content a{
	color: #FFFFFFCC;
}
.footer-section .footer-content .left-content .discription{
	margin: 26px 0px 36px;
}
.footer-section .footer-content .left-content .social-icons{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.footer-section .footer-content .left-content .social-icons li{
	display: inline-block;
	margin-right: 10px;
}
.footer-section .footer-content .left-content .social-icons li:last-child{
	margin-right: 0px;
}
.footer-section .footer-content .left-content .social-icons li a{
	display: inline-block;
	color: #fff;
	font-size: 14px;
	border: 1px solid #69727d;
	background-color: #FFFFFF00;
	height: 33px;
	width: 33px;
	line-height: 33px;
	text-align: center;
	transition: 0.3s;
}
.footer-section .footer-content .left-content .social-icons li a:hover{
	border: 1px solid #fff;
}
.footer-section .footer-content .links{
	padding-left: 15.7%;
}
.footer-section .footer-content .links ul li{
	margin-bottom: 9px;
}
.footer-section .footer-content .links ul li:last-child{
	margin-bottom: 0px;
}
.footer-section .footer-content .links ul li a{
	transition: 0.3s;
	font-weight: 400;
}
.footer-section .footer-content .links ul li a:hover{
	color:var(--main-color);
}
.footer-section .footer-content .get-in ul li{
	margin-bottom: 9px;
}
.footer-section .footer-content .get-in ul li:last-child{
	margin-bottom: 0px;
}
.footer-section .footer-content .get-in ul li a{
	transition: 0.3s;
}
.footer-section .footer-content .get-in ul li a:hover{
	color: var(--main-color);
}
.footer-section .footer-content .newsletter .discription {
	margin-bottom: 35px;
}
.footer-section .footer-content .newsletter .mail{
	position: relative;
}
.footer-section .footer-content .newsletter .mail input{
	color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  outline: 0;
  background: transparent;
  height: 52px;
  width: 100%;
  margin-bottom: 15px;
  padding: 16px 120px 16px 16px;
  transition: 0.3s;
}
.footer-section .footer-content .newsletter .mail input::placeholder{
	color: #FFFFFFCC;
}
.footer-section .footer-content .newsletter .mail input:focus{
	color: #fff;
	border-color: var(--main-color);
}
.footer-section .footer-content .newsletter .mail button{
	position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.067;
  border: 0;
  outline: 0;
  padding: 18px 20px;
  height: 52px;
  background-color: var(--main-color);
  border-radius: 0;
}
.footer-section .footer-content .end-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 100px;
	border-top: 1px solid #FFFFFF4D;
	padding: 25px 0px;
}
.footer-section .footer-content .end-box .copyright{
	color: #FFFFFFCC;
}
.footer-section .footer-content .end-box .right-content{
	display: flex;
	align-items: center;
}
.footer-section .footer-content .end-box .right-content a{
	color: #FFFFFFCC;
	margin-right: calc(50px / 2);
	margin-left: calc(50px / 2);
	transition: 0.3s;
}
.footer-section .footer-content .end-box .right-content a:hover{
	color: var(--main-color);
}

/*======= Responsive =======*/

@media (max-width: 991px) {
	.footer-section .footer-content .links{
		padding-left: 0%;
		margin-bottom: 20px;
	}
	.footer-section .footer-content .left-content {
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.footer-section{
		padding-top: 80px;
	}
	.footer-section .footer-content .get-in{
		margin-bottom: 20px;
	}
	.footer-section .footer-content .end-box{
		display: block;
	}
	.footer-section .footer-content .end-box .right-content{
		flex-wrap: wrap;
		margin-top: 10px;
	}
	.footer-section .footer-content .end-box .right-content a{
		width: 100%;
		text-align: right;
		margin-left: 0px;
		margin-right: 0px;
	}
}

/*==============
 Breadcrumb
===============*/

.breadcrumb-area{
	background-image:	url(../images/outside/DJI_0495.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 236px 0 242px;
}
.breadcrumb-area .title{
	color: #fff;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.breadcrumb-area .contact-box{
	text-align: center;
}
.breadcrumb-area .contact-box ul li{
	color: #fff;
	font-size: 16px;
  font-weight: normal;
  margin: 0 3px;
  display: inline-block;
}
.breadcrumb-area .contact-box ul li a{
	color: var(--main-color);
  font-size: 16px;
  font-weight: normal;
}

.breadcrumb-area-theater {
background-image:	url(../images/outside/DJI_0489.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 236px 0 242px;

}

/*======= Responsive =======*/

@media (max-width: 767px) {
	.breadcrumb-area{
		padding: 88px 0 92px;
	}
	.breadcrumb-area .title{
		font-size: 34px;
	}
}

/*=========================
 About-2 Section
===========================*/

.about-2{
	background-color: #C68E500D;
	padding-bottom: 106px;
}
.about-2 .counter-item{
	padding-top: 120px;
}

/*======= Responsive =======*/

@media (max-width: 767px) {
	.about-2{
		padding-bottom: 70px;
	}
	.about-2 .counter-item{
		padding-top: 70px;
	}
}

/*=========================
 Team Member Section
===========================*/

.team-section{
	padding: 244px 0px 118px;
	background-color: #C68E500D;
}
.team-section .section-title{
	margin-bottom: 60px;
}
.team-section .member-box{
	transition: 0.5s;
}
.team-section .member-box .member-image{
	height: 313px;
	overflow: hidden;
	position: relative;
	text-align: center;
}
.team-section .member-box .member-image::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(22, 28, 45, 0.4);
	left: 0;
	top: 0;
	opacity: 0;
	transition: 0.5s;
}
.team-section .member-box:hover .member-image::before{
	opacity: 1;
}
.team-section .member-box .member-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-section .member-box .member-image .social-icons{
	position: absolute;
	left: 0;
	right: 0;
	bottom: -60px;
	transition: 0.5s;
}
.team-section .member-box:hover .member-image .social-icons{
	bottom: 30px;
}
.team-section .member-box .member-image .social-icons a{
	display: inline-block;
  color: #fff;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: var(--main-color);
  margin-right: 5px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
}
.team-section .member-box .member-image .social-icons a:hover{
	color: var(--main-color);
	background-color: #fff;
}
.team-section .member-box .team-content{
	padding: 35px 10px 36px 10px;
  box-shadow: 0px 10px 60px 0px rgba(22, 28, 45, 0.06);
  text-align: center;
}
.team-section .member-box .team-content h3{
	font-size: 20px;
	text-transform: capitalize;
}
.team-section .member-box .team-content p{
	font-size: 16px;
	color: var(--main-color);
}

/*======= Responsive =======*/

@media (max-width: 991px) {
	.team-section .member-box{
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.team-section{
		padding: 200px 0px 60px;
	}
}

/*=========================
 Rooms-2 Section
===========================*/

.room-section-2{
	padding: 120px 0px 96px;
}
.room-section-2 .romm-item{
	position: relative;
	margin-bottom: 24px;
}
.room-section-2 .romm-item img{
	height: 500px;
  width: 100%;
  object-fit: cover;
}
.room-section-2 .romm-item .content{
	position: absolute;
  bottom: 20px;
  background-color: #fff;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 25px 35px 30px;
}
.room-section-2 .romm-item .content .box{
	display: flex;
	align-items: center;
	justify-content: space-between;
  margin-bottom: 34px;
}
.room-section-2 .romm-item .content .box .text h4{
	font-size: 24px;
	font-weight: normal;
  letter-spacing: 2px;
}
.room-section-2 .romm-item .content .box .text p{
	font-size: 16px;
}
.room-section-2 .romm-item .content .box .price span{
	font-size: 14px;
}
.room-section-2 .romm-item .content .box .price p{
	color: var(--main-color);
}
.room-section-2 .romm-item .content .section-btn{
	text-align: center;
}
.room-section-2 .romm-item .content .section-btn a{
	padding: 9px 22px;
	color: var(--title-color);
	transition: 0.5s;
}
.room-section-2 .romm-item .content .section-btn a:hover{
	color: #fff;
}

/*======= Responsive =======*/

@media (max-width: 767px) {
	.room-section-2{
		padding: 80px 0px 56px;
	}
}

/*=========================
 Rooms Details Section
===========================*/

.romm-details-section{
	padding: 120px 0px 120px;
}
.romm-details-section .images{
	width: 100%;
	height: 600px;
	object-fit: cover;
	margin-bottom: 20px;
}
.romm-details-section .section-title{
	margin-bottom: 20px;
}
.romm-details-section .content{
	display: flex;
}
.romm-details-section .content .left-content{
	width: 70%;
	padding-left: 20px;   /* dodaje odmak s lijeve strane */
    padding-right: 20px;  /* dodaje odmak s desne strane */

}
.romm-details-section .content .left-content .discription{
	margin-bottom: 45px;
}
.romm-details-section .content .heading{
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 33px;
}
.romm-details-section .content .left-content .Check-box{
 display: flex;
 align-items: center;
 margin-bottom: 40px;
 gap: 100px;
}
.romm-details-section .content .left-content .Check-box .box ul li{
	margin-bottom: 8px;
}
.romm-details-section .content .left-content .Check-box .box ul li i{
	font-size: 22px;
	color: var(--main-color);
	margin-right: 12px;
}
.romm-details-section .content .left-content p{
	margin-bottom: 50px;
}
.romm-details-section .content .left-content .list{
	margin-bottom: 50px;
}
.romm-details-section .content .left-content .list li{
	display: flex;
	align-items: center;
	margin-top: calc(4px/2);
	margin-bottom: calc(4px/2);
}
.romm-details-section .content .left-content .list li i{
	color: var(--main-color);
	margin-right: 12px;
	font-size: 10px;
}
.romm-details-section .content .right-content{
	padding-left: 80px;
}
.romm-details-section .content .right-content ul li{
	margin-bottom: 10px;
}
.romm-details-section .content .right-content ul li img{
	width: 22px;
	height: 16px;
	margin-right: 15px;
}

/*======= Responsive =======*/

@media (max-width: 1199px) {
	.romm-details-section .content .right-content{
		padding-left: 5%;
	}
}
@media (max-width: 991px) {
	.romm-details-section .content .right-content{
		padding-left: 3%;
	}
	.romm-details-section .images{
		height: auto;
	}
}
@media (max-width: 767px) {
	.romm-details-section{
		padding: 80px 0px 70px;
	}
	.romm-details-section .content{
		display: inline-block;
	}
	.romm-details-section .content .left-content{
		width: 100%;
	}
	.romm-details-section .content .left-content .Check-box{
		display: inline-block;
	}
	.romm-details-section .content .right-content{
		margin-top: 40px;
	}
}

/*=========================
 Blog-2 Section
===========================*/

.blog-section-2{
	padding: 100px 0px 70px;
}
.blog-section-2 .blog-item img{
	width: 100%;
	height: 480px;
	object-fit: cover;
}
.blog-section-2 .blog-item .content{
	padding: 30px 40px 30px;
	border: 1px solid rgba(18, 29, 23, 0.1);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	margin-bottom: 30px;
}
.blog-section-2 .blog-item .content .button{
	display: inline-block;
  color: #fff;
  font-size: 14px;
  background-color: var(--main-color);
  padding: 7px 22px;
  margin-bottom: 26px;
}
.blog-section-2 .blog-item .content .title{
	font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.blog-section-2 .blog-item .content .title a{
	color: var(--title-color);
	transition: 0.4s;
}
.blog-section-2 .blog-item .content .title a:hover{
	color: var(--main-color);
}
.blog-section-2 .blog-item .content .meta li{
	margin-right: 20px;
	display: inline-block;
}
.blog-section-2 .blog-item .content .meta li:last-child{
	margin-right: 0px;
}
.blog-section-2 .blog-item .content .meta li i{
	font-size: 8px;
	color: rgba(18, 29, 23, 0.15);
	margin-right: 20px;
}
.blog-section-2 .blog-item .content .meta li a{
	color: #6c7470;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}
.blog-section-2 .blog-item .content .separetor{
	width: 100%;
	height: 1px;
	background-color: rgba(18, 29, 23, 0.1);
	margin-top: 24px;
	margin-bottom: 20px;
}
.blog-section-2 .blog-item .content .discription{
	font-size: 16px;
	margin-bottom: 16px;
}
.blog-section-2 .blog-item .content .continue-btn{
	position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.blog-section-2 .blog-item .content .continue-btn:hover{
	color: var(--main-color);
}
.blog-section-2 .blog-item .content .continue-btn::before{
	content: '';
  position: absolute;
  height: 1px;
  background-color: rgba(18, 29, 23, 0.2);
  bottom: -3px;
  left: 0;
  right: 8px;
  transition: 0.4s;
}
.blog-section-2 .blog-item .content .continue-btn:hover::before{
	background-color: var(--main-color);
}
.blog-section-2 .blog-item .content .continue-btn i{
	transform: rotate(-45deg);
  display: inline-block;
  color: var(--main-color);
  margin-left: 3px;
}
.blog-section-2 .search-box{
	margin-bottom: 40px;
  padding: 35px 40px 35px;
  background-color: #f5f7f6;
}
.blog-section-2 .search-box form label{
	font-size: 16px;
}
.blog-section-2 .search-box form .search{
	display: flex;
	gap: 10px;
}
.blog-section-2 .search-box form .search input{
	padding: 13px 20px;
  border: 1px solid rgba(18, 29, 23, 0.1);
  border-radius: 0;
  min-width: 3rem;
  outline: none;
}
.blog-section-2 .search-box form .search input:focus{
	border: 1px solid rgba(217, 143, 75, 0.5);
}
.blog-section-2 .search-box form .search button{
	color: #fff;
  font-size: 15px;
  font-weight: 500;
  background-color: var(--main-color);
  padding: 16px 30px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.blog-section-2 .content-box{
	margin-bottom: 40px;
  padding: 35px 40px 35px;
  background-color: #f5f7f6;
}
.blog-section-2 .content-box .heading-text{
	position: relative;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 35px;
}
.blog-section-2 .content-box .heading-text::before{
	content: '';
  position: absolute;
  height: 2px;
  width: 40px;
  background-color: var(--main-color);
  left: 0;
  bottom: -10px;
}
.blog-section-2 .content-box ul li{
	position: relative;
	margin-bottom: 5px;
	padding-left: 20px;
}
.blog-section-2 .content-box ul li::before{
	content: '';
  position: absolute;
  height: 6px;
  width: 6px;
  background-color: var(--main-color);
  left: 0;
  top: 11px;
}
.blog-section-2 .content-box ul li a{
	color: var(--paragraph-color);
	font-size: 16px;
}
.blog-section-2 .content-box p{
	font-size: 16px;
}

/*======= Responsive =======*/

@media (max-width: 767px) {
	.blog-section-2{
		padding: 80px 0px 40px;
	}
	.blog-section-2 .blog-item .content{
		padding: 30px 20px 30px;
	}
}

/*=========================
 Blog Details Section
===========================*/

.blog-details-section{
	padding: 100px 0px;
}
.blog-details-section .blog-item .content .blockquote{
	color: var(--title-color);
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  background-image: url(../images/quote-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 40px 0 45px;
  padding: 53px 30px 50px;
  border-left: 4px solid var(--main-color);
}
.blog-details-section .blog-item .content .blockquote p{
	font-size: 16px;
}
.blog-details-section .blog-item .content .blockquote cite{
	color: var(--main-color);
  font-size: 16px;
}
.blog-details-section .tags{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 50px;
}
.blog-details-section .tags span{
	color: var(--title-color);
	font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
} 
.blog-details-section .tags ul li{
	display: inline-block;
	margin-right: 5px;
  margin-bottom: 5px;
}
.blog-details-section .tags ul li a{
	display: inline-block;
  color: var(--paragraph-color);
  border: 1px solid rgba(18, 29, 23, 0.1);
  border-radius: 0;
  padding: 7px 20px;
  transition: 0.4s;
  font-size: 16;
}
.blog-details-section .tags ul li a:hover{
	color: var(--main-color);
}
.blog-details-section .comments .comments-title{
	margin-bottom: 16px;
}
.blog-details-section .comments form p{
	font-size: 16px;
	margin-bottom: 16px;
}
.blog-details-section .comments form p label{
	width: 100%;
}
.blog-details-section .comments form p label span{
	margin-left: 3px;
}
.blog-details-section .comments form p textarea{
	width: 100%;
  padding: 13px 20px;
  border: 1px solid rgba(18, 29, 23, 0.1);
  border-radius: 0;
	transition: 0.3s;
	outline: none;
	height: 175px;
}
.blog-details-section .comments form p textarea:focus{
	border-color: rgba(217, 143, 75, 0.5);
}
.blog-details-section .comments form p input{
	width: 100%;
  padding: 13px 20px;
  border: 1px solid rgba(18, 29, 23, 0.1);
  border-radius: 0;
  transition: 0.3s;
  outline: none;
}
.blog-details-section .comments form p input:focus{
	border-color: rgba(217, 143, 75, 0.5);
}
.blog-details-section .comments form .comment-form-cookies-consent{
	display: flex;
	align-items: center;
	gap: 5px;
}
.blog-details-section .comments form .comment-form-cookies-consent input{
	width: auto;
}
.blog-details-section .comments form button{
	color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  outline: 0;
  padding: 15px 36px;
  border-radius: 0;
  background-color: var(--main-color);
  transition: 0.4s;
}
.blog-details-section .comments form button:hover{
	background-color: var(--title-color);
}

/*======= Responsive =======*/

@media (max-width: 991px) {
	.blog-details-section .search-box{
		margin-top: 44px;
	}
	.blog-details-section .blog-item img{
		height: auto;
	}
}
@media (max-width: 767px) {
	.blog-details-section{
		padding: 80px 0px 40px;
	}
	.blog-details-section .tags{
		display: block;
	}
	.blog-details-section .tags ul li a{
		padding: 7px 15px;
	}
	.blog-details-section .comments form .comment-form-cookies-consent{
		display: block;
	}
}

/*=========================
 Contact Section
===========================*/

.contact-section{
	padding: 120px 0px 120px;
}
.contact-section .section-title{
	text-align: center;
	margin-bottom: 30px;
}
.contact-section .discription{
	width: 83%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 60px;
}
.contact-section .contact-item{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contact-section .left-content{
	padding: 10px;
}
.contact-section .left-content .box{
	margin: 0px 0px 15px 0px;
  padding: 0px 0px 36px 0px;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #DFDFDF;
  display: flex;
  align-items: center;
}
.contact-section .left-content .box:last-child{
	margin: 0px;
	border: none;
	padding: 0px;
}
.contact-section .left-content .box .icon{
	margin-right: 25px;
  line-height: 1;
}
.contact-section .left-content .box .icon i{
	display: inline-block;
  color: var(--main-color);
  font-size: 30px;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  background-color: rgba(255, 116, 38, 0.1);
  border-radius: 50%;
}
.contact-section .left-content .box .content h4{
	color: var(--paragraph-color);
  font-size: 20px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 7px;
}
.contact-section .left-content .box .content p{
	font-size: 16px;
}
.contact-section .right-content{
	padding: 10px 10px 10px 40px;
	width: 66.67%;
}
.contact-section .right-content form {
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 40px 40px 40px;
}
.contact-section .right-content form .input-item{
	display: flex;
	align-items: center;
	margin-bottom: 36px;
}
.contact-section .right-content form .input-item input{
	width: 100%;
	font-size: 14px;
	height: 50px;
	border: 0;
	border-bottom: 1px solid #dfdfdf;
	border-radius: 0;
	padding: 10px 0;
	margin: 0px 12px;
}
.contact-section .right-content form input:focus{
	outline: none;
	border-color: rgba(217, 143, 75, 0.5);
}
.contact-section .right-content form textarea{
	width: 100%;
	font-size: 14px;
  height: 125px;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  border-radius: 0;
  margin: 0px 12px 36px;
  padding: 20px 0;
}
.contact-section .right-content form textarea:focus{
	outline: none;
	border-color: rgba(217, 143, 75, 0.5);
}
.contact-section .right-content form .submit-button{
	color: #fff;
  font-size: 15px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 0;
  outline: 0;
  background-color: var(--main-color);
  padding: 16px 35px;
	transition: 0.3s;
	margin-bottom: 16px;
}
.contact-section .right-content form .submit-button:hover{
	background-color: #0d1e35;
}

/*======= Responsive =======*/

@media (max-width: 767px) {
	.contact-section{
		padding: 80px 0px;
	}
	.contact-section .contact-item{
		display: block;
	}
	.contact-section .right-content{
		width: 100%;
		padding: 48px 10px 0px;
	}
	.contact-section .right-content form .input-item{
		display: block;
	}
	.contact-section .right-content form .input-item input:first-child{
		margin-bottom: 36px;
	}
	.contact-section .right-content form .submit-button{
		font-size: 14px;
    letter-spacing: 2px;
    padding: 14px 20px;
	}
}

/*================
 Thank You page
==================*/

.thank-you-page {
    padding: 120px 0 120px;
}
.thank-you-page .text {
    text-align: center;
}
.thank-you-page .text .icon {
    margin-bottom: 20px;
}
.thank-you-page .text .icon i {
    color: #003B5A;
    font-size: 60px;
}
.thank-you-page .text .button {
    position: relative;
    display: inline-block;
    color: #fff;
    background-color: transparent;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 30px;
    padding: 13px 35px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    vertical-align: top;
    z-index: 1;
    transition: 0.5s;
}
.thank-you-page .text .button:hover{
	color: var(--title-color);
}
.thank-you-page .text .button::before {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
}
.thank-you-page .text .button:hover::before {
    left: -50%;
}
.thank-you-page .text .button::after {
    content: '';
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    transition: 0.5s;
}
.thank-you-page .text .button:hover::after {
  right: -50%;
}

/*================
 Search Popup
==================*/

.search-window{
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateY(-100%);
	background-color: rgba(0,0,0,0.90);
	-webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.search-active .search-window{
	transform: translateY(0%);
	margin-top: 0;
}
.search-window .search-close {
	position: absolute;
	right: 40px;
	top: 40px;
	margin: 0;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	border: 0;
	padding: 0;
	border-radius: 0;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-active .search-window .search-close{
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 1500ms;
	-moz-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	transition-delay: 1500ms;
}
.search-window .search-close i{
	display: inline-block;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	background-color: var(--main-color);
	border-radius: 0;
}
.search-window form{
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin:-35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: #111111;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.search-active .search-window form{
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}
.search-window .form-group{
	position:relative;
	margin:0px; 
	overflow: hidden;
}
.search-window .form-group input[type="text"],
.search-window .form-group input[type="search"]{
	position:relative;
	display: block;
	font-size: 18px;
	line-height: 50px;
	height: 70px;
	width: 100%;
	padding: 10px 170px 10px 30px;
	background-color: #ffffff;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	border: 0;
	outline: 0;
	border-radius: 0;
}
.search-window .form-group input[type="submit"],
.search-window .form-group button {
	position: absolute;
	right: 0;
	top: 0px;
	height: 70px;
	width: 140px;
	line-height: 70px;
	background: var(--main-color);
	text-align: center;
	font-size: 24px;
	color: #fff;
	padding: 0;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
	border-radius: 0;
}
.search-window .form-group input[type="submit"]:hover,
.search-window .form-group button:hover{
	color: #000000;
}
.search-window input::placeholder,
.search-window textarea::placeholder{
	color:#000000;
}

/* Galerija slika */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}
.gallery .main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 24px;
    padding: 8px 14px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: background 0.2s;
}
.gallery-arrow.left { left: 10px; }
.gallery-arrow.right { right: 10px; }
.gallery-arrow:hover { background: #C68E50; color: #fff; }
.gallery .thumbnails {
    display: flex;
    gap: 10px;
}
.gallery .thumbnails img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
}
.gallery .thumbnails img:hover {
    border: 2px solid #C68E50;
}

/* Lightbox stilovi */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: #C68E50;
}
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 32px;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10001;
    border-radius: 50%;
    transition: background 0.2s;
    color: #333;
}
.lightbox-arrow.left { left: 30px; }
.lightbox-arrow.right { right: 30px; }
.lightbox-arrow:hover { background: #C68E50; color: #fff; }


.sticky-btn {
    margin-top: 30px;           /* razmak iznad gumba */
    position: sticky;
    top: 30px;                  /* udaljenost od vrha ekrana kad je sticky */
    z-index: 10;
    background: #fff;           /* po želji, da gumb ne bude proziran */
    padding-bottom: 10px;       /* po želji */
}


.number a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.number a:hover {
     color: #ffb36b;
    font-size: 1.18em;
    transition: color 0.3s, font-size 0.3s;
}


.discription {
    text-align: justify;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    letter-spacing: 0.01em;
}

.contact-popup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}
.contact-popup.active {
    display: flex;
}
.contact-popup .popup-content {
    background: #fff;
    padding: 40px 32px 32px 32px;
    border-radius: 18px;
    max-width: 700px;
    width: 95vw;
    min-width: 320px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
    position: relative;
    transition: box-shadow 0.2s;
}
.contact-popup .close-popup {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 32px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.contact-popup .close-popup:hover {
    color: #C68E50;
}
.contact-popup form {
    width: 100%;
}
.contact-popup .input-item {
    margin-bottom: 18px;
}
.contact-popup input,
.contact-popup textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1em;
    font-family: inherit;
    background: #fafafa;
    transition: border 0.2s;
    box-sizing: border-box;
}
.contact-popup input:focus,
.contact-popup textarea:focus {
    border: 1.5px solid #C68E50;
    outline: none;
    background: #fff;
}
.contact-popup textarea {
    min-height: 90px;
    resize: vertical;
}
.contact-popup .ask-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px 0;
    background: #C68E50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(198,142,80,0.10);
}
.contact-popup .ask-btn:hover {
    background: #a06b2c;
}

@media (max-width: 600px) {
    .contact-popup .popup-content {
        max-width: 98vw;
        padding: 18px 6vw 18px 6vw;
    }
    .contact-popup .ask-btn {
        font-size: 1em;
        padding: 12px 0;
    }
}