:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --theme-color: #003655;
    --skin-color: #cca386;
    --txt-color: #606060;
    --light-gray: #cacaca;
    --bg-skin: #f6f0ea;
    --footer-txt-color: #c1ddec;
}

@font-face {
    font-family: 'Montserrat Alternates';
    src: url('../fonts/MontserratAlternates-Regular.eot');
    src: url('../fonts/MontserratAlternates-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MontserratAlternates-Regular.woff2') format('woff2'),
        url('../fonts/MontserratAlternates-Regular.woff') format('woff'),
        url('../fonts/MontserratAlternates-Regular.ttf') format('truetype'),
        url('../fonts/MontserratAlternates-Regular.svg#MontserratAlternates-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-Medium.eot');
    src: url('../fonts/Lora-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lora-Medium.woff2') format('woff2'),
        url('../fonts/Lora-Medium.woff') format('woff'),
        url('../fonts/Lora-Medium.ttf') format('truetype'),
        url('../fonts/Lora-Medium.svg#Lora-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Alternates';
    src: url('../fonts/MontserratAlternates-Light.eot');
    src: url('../fonts/MontserratAlternates-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MontserratAlternates-Light.woff2') format('woff2'),
        url('../fonts/MontserratAlternates-Light.woff') format('woff'),
        url('../fonts/MontserratAlternates-Light.ttf') format('truetype'),
        url('../fonts/MontserratAlternates-Light.svg#MontserratAlternates-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-Regular.eot');
    src: url('../fonts/Lora-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lora-Regular.woff2') format('woff2'),
        url('../fonts/Lora-Regular.woff') format('woff'),
        url('../fonts/Lora-Regular.ttf') format('truetype'),
        url('../fonts/Lora-Regular.svg#Lora-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

::-moz-selection {
  color: #fff; background: var(--skin-color);
}

::-webkit--selection {
  color: #fff; background: var(--skin-color);
}

::selection {
  color: #fff; background: var(--skin-color);
}

body{
    margin: 0px;
    padding: 0px;
    font-size: 21px;
    line-height: 36px;
    color: var(--txt-color);
    font-family: 'Montserrat Alternates';
    font-weight: 400;
}

h1 , h2 , h3 , h4 , h5 , h6{
    font-family: 'Lora';
    font-weight: 400;
    margin: 0 0 15px 0;
}

h1 span , h2 span , h3 span , h4 span , h5 span , h6 span{
    color: var(--theme-color);
}

h1 i , h2 i , h3 i , h4 i , h5 i , h6 i{
    font-size: 28px;
    letter-spacing: -5.6px;
    color: var(--light-gray);
    font-style: normal;
}

h1{
    font-size: 58px;
    line-height: 68px;
}

.banner-inner-txt h1,
h2{
    font-size: 48px;   
    line-height: 58px;
}

.banner-inner-txt h1 {
	color:#fff;
}

h3{
    font-size: 42px;      
    line-height: 52px;
}

h4{
    font-size: 30px;
    line-height: 40px;   
}

h5{
    font-size: 26px;
    line-height: 36px;   
}

h6{
    font-size: 22px;
    line-height: 32px;   
}

p{
    margin: 0 0 30px 0;
}

a , a:hover , a:focus , a:visited , input , button{
    outline: none !important;
    text-decoration: none !important;
}

img{
    max-width: 100%;
}

ul , ol{
    margin: 0 0 20px 15px;
    padding: 0px;
}

ul li , ol li{
    margin: 0 0 0px 15px;
    padding: 0px;
}

section:before , section:after{
    clear: both;
    display: table;
    content: "";
}

section{
    position: relative;
    clear: both;
    padding: 140px 0;
}


/* ---- Button ---- */
.theme-btn{
	position:relative;
    display: inline-block;
    width: auto;
    min-width: 250px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-family: 'Lora';
    font-weight: 500;
    font-size: 21px;
    color: var(--white-color);
    /*background: rgba(0, 54, 85, 0.90);*/
    padding: 0 30px;
	overflow:hidden;
	z-index:2;
}

.theme-btn:before {
	position:absolute;
	background: var(--theme-color);
	width:100%;
	height:100%;
	top:0;
	left:0;
	content:" ";
	z-index:-2;
}

.theme-btn:hover {
	color:#fff;
}

.theme-btn:hover:after {
	bottom:0;
}

.theme-btn:after {
	position:absolute;
	background: #cca386;
	width:100%;
	height:100%;
	bottom:-100%;
	left:0;
	content:" ";
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
	z-index:-1;
}

.theme-btn:hover:after,
.welcome-house-list-blog:hover .theme-btn:after{
	bottom:0;
}
/*
.theme-btn:hover{
    background: var(--theme-color);
    color: var(--white-color);
}*/

.theme-btn.theme-btn-skin{
   color:#fff !important;
}

.theme-btn.theme-btn-skin:before{
    background: #cca386;
}

.theme-btn.theme-btn-skin:hover:after,
.welcome-house-list-blog:hover .theme-btn.theme-btn-skin:after{
    background: var(--theme-color);  
}

.theme-btn.theme-btn-border{
    display: inline-block;
    width: auto;
    min-width: 250px;
    height: 60px;
    line-height: 58px;
    font-size: 21px;
    color: var(--theme-color);
    background: transparent;
    border: 1px solid #cca386;
	-webkit-transition: color 0.3s ease 0s;
    -moz-transition: color 0.3s ease 0s;
    -ms-transition: color 0.3s ease 0s;
    -o-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

.theme-btn.theme-btn-border:before{
    background: transparent;
}

.theme-btn.theme-btn-border:after{
    background: #cca386;
}

.theme-btn.theme-btn-border:hover{
    color: #fff;
}

.welcome-house-list-blog .theme-btn {
	opacity:.9;
}

.welcome-house-list-blog:hover .theme-btn {
	opacity:1;
}

.banner-bg{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.header-part{
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
    font-family: 'Lora';
    font-weight: 400;
    -webkit-transition: background 0.5s ease 0s;
    -moz-transition: background 0.5s ease 0s;
    -ms-transition: background 0.5s ease 0s;
    -o-transition: background 0.5s ease 0s;
    transition: background 0.5s ease 0s;
    background: transparent;
}

.header-part.sticky-fixed{
	background:#fff;
	-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,.3); 
	box-shadow: 0px 5px 15px 5px rgba(0,0,0,.3);
}

.logo{
    max-width: 20%;
    flex: 0 0 20%;
}

.header-inner{
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

.header-right-part{
    display: flex;
    width: auto;
    align-items: center; 
    max-width: 80%;
    flex: 0 0 80%;
    justify-content: flex-end;
}

.main-menu ul , .main-menu li{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.main-menu li{
    display: inline-block;
    width: auto;
    margin-right: 28px;
}

.main-menu li:last-child{
    margin-right: 0px;
}

.main-menu li a{
    display: block;
    color: var(--white-color);
    -webkit-transition: color 0.5s ease 0s;
    -moz-transition: color 0.5s ease 0s;
    -ms-transition: color 0.5s ease 0s;
    -o-transition: color 0.5s ease 0s;
    transition: color 0.5s ease 0s;
}
.main-menu li.active a,
.header-part.sticky-fixed .main-menu li a {
	color: var(--theme-color);
}

.main-menu li.active a {
	font-weight:500;
}

.main-menu li:hover a {
	color: var(--skin-color);
}

.header-part.sticky-fixed .main-menu li.active a,
.header-part.sticky-fixed .main-menu li:hover a {
    color: var(--skin-color);
}

.banner-part{
    height: 840px;
    color: var(--white-color);
}

.book-btn{
    width: 100%;
    max-width: 255px;
    margin-left: 38px;
}

.book-btn a{
	position:relative;
    display: block;
    width: 100%;
    height: 60px;
    background: transparent;
    color: var(--white-color);
    font-family: 'Lora', bold;
    font-weight: 500;
    text-align: center;
    line-height: 60px;
	overflow:hidden;
	z-index:1;
}

.book-btn a:before{
	position:absolute;
    display: block;
    width: 100%;
	height:100%;
	left:0;
	top:0;
    background: var(--skin-color);
    content:"";
	z-index:-2;
}

.book-btn a:after{
	position:absolute;
    display: block;
    width: 100%;
	height:100%;
	left:0;
	bottom:-100%;
    background: var(--theme-color);
    content:"";
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
	z-index:-1;
}

.book-btn a:hover:after, .book-btn a.active:after{
    bottom:0;
}

.overlay-show:before{
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: #504b3e;
    opacity: 0.41;
    content: "";
}

.banner-part-txt{
    display: flex;
    width: 100%;
    align-items: center;
    height: 100%;
    z-index: 2;
    position: relative;
    text-align: center;
}

.banner-part-txt-vertical{
	position:absolute;
    display: flex;
    width: 100%;
    height: 100%;
	top:0;
	left:0;
    align-items: center;
    text-align: center;   
    z-index: 10;
}

.fix-btn-top-right{
    position: fixed;
    right: 0px;
    top: 221px;
    width: 80px;
    height: 80px;
    background: var(--theme-color);
    text-align: center;
    line-height: 80px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 99;
}

.fix-btn-top-right:hover{
    background: var(--skin-color);
}

.banner-part-txt .container{
    position: relative;
    z-index: 3;
}

.banner-part .slick-track{
    height: 100%;
}

.banner-part .slick-slider{
    display: flex;
    height: 100%;
}

.banner-inner-txt {
    max-width: 775px;
    /*margin: 0 auto 80px;*/
    margin: 0 auto 0px;
    -webkit-transition: opacity 0.5s ease 0.5s;
    -moz-transition: opacity 0.5s ease 0.5s;
    -ms-transition: opacity 0.5s ease 0.5s;
    -o-transition: opacity 0.5s ease 0.5s;
    transition: opacity 0.5s ease 0.5s;
    opacity: 1;
    visibility: visible;
}

.banner-part.banner-part-disappear.disappear .banner-inner-txt{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease 0.5s;
    -moz-transition: all 0.5s ease 0.5s;
    -ms-transition: all 0.5s ease 0.5s;
    -o-transition: all 0.5s ease 0.5s;
    transition: all 0.5s ease 0.5s;
}

.banner-inner-txt h1:last-child, .banner-inner-txt h2:last-child , .banner-inner-txt p:last-child{
    margin-bottom: 0px;
}

.banner-part:after{
    background: url('../images/overlap-divider.png') no-repeat center center;
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 205px;
    width: 100%;
    content: "";
    z-index: 2;
    background-size: 100% 205px;
}

.title-center{
    text-align: center;
    margin-bottom: 15px;
}

.light-title{
    text-align: center;
    color: #515151;
}

.light-title h4{
    font-family: 'Montserrat Alternates';
    font-weight: 300;
}

.divider-top , .divider-bottom{
    display: block;
}

.divider-bottom{
    margin-top: 25px;
}

.banner-part-txt .divider-bottom{
    margin-top: 12px;
}

.top-minus {
    /*margin-top: -110px;*/
    position: relative;
    z-index: 11;
}

.welcome-house-list-blog{
    position: relative;
}

.welcome-house-list-blog-main{
    margin-bottom: 30px;
}

.welcome-house-list .row{
    margin: 0 -20px;
}

.welcome-house-list .col-xs-12{
    padding: 0 20px;
}

.welcome-house-list{
    margin: 54px 0 40px 0;
}

.box-border{
    height: 85%;
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border: 1px solid var(--white-color);
    opacity: 0.70;
    z-index: 1;
}

.house-btn {
    position: absolute;
	height: 60px;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.container-small:before , .container-small:after{
    clear: both;
    display: table;
    content: "";
}

.container-small{
    max-width: 810px;
    margin: 0 auto;
}

.welcome-house-list-blog-main p{
    margin: 30px 0 0 0;
}

.welcome-house-list-blog-main .theme-btn.theme-btn-border{
    margin-top: 30px;
	z-index:1;
}

.bg-skin-show{
    background: var(--bg-skin);
}

.bg-skin-show .theme-btn-border{
    border-color: #cca386;
}
/*
.bg-skin-show .theme-btn-border:hover{
    background: #d1beb0;
}*/

.bg-skin-show{
    padding: 50px 0 70px 0;
}

.bg-skin-show:before{
    position: absolute;
    left: 0px;
    top: -97px;
    width: 100%;
    height: 97px;
    background: url('../images/skin-divider.png') no-repeat center bottom;
	
    background-size: 100% auto;
    content: "";
}

.padding-remove{
    padding: 0px !important;
}

.padding-remove-top{
    padding-top: 0px !important;
}

.padding-remove-bottom{
    padding-bottom: 0px !important;
}

.footer-part{
    background: var(--theme-color);
    color: var(--footer-txt-color);
    padding: 88px 0 45px 0;
    position: relative;
    font-family: 'Lora';
    font-weight: 400;
    font-size: 24px;
}

.footer-part:before{
    position: absolute;
    left: 0px;
    top: -87px;
    width: 100%;
    height: 88px;
    background: url('../images/theme-divider.png') no-repeat center bottom;
    background-size: 100% auto;
    content: "";
}

.footer-part a{
    color: var(--white-color);
}

.footer-part a:hover{
    color: var(--footer-txt-color);
}

.footer-top{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-top-right ul , .footer-top-right li{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-top-right li{
    display: inline-block;
    width: auto;
    margin-left: 35px;
}

.footer-top-right li a{
    display: block;
}

.footer-top{
    margin-bottom: 62px;
}

/* Mobile Menu */

.mean-container a.meanmenu-reveal {
    padding: 13px 15px 11px 15px;
    top: 14px;
    height: 13px;
}

.mean-container a.meanmenu-reveal span{
    position: relative;
    background: var(--white-color);
}

.mean-container a.meanmenu-reveal span:before{
    position: absolute;
    top: -6px;
    height: 3px;
    background: var(--white-color);
    content: "";
    width: 22px;
    left: 0px;
}

.mean-container a.meanmenu-reveal span:after{
    position: absolute;
    bottom: -6px;
    height: 3px;
    background: var(--white-color);
    content: "";
    width: 22px;
    left: 0px;
}

.meanmenu-reveal.meanclose {
    top: 8px !important;
}

.welcome-blog-top{
    max-width: 600px;
    margin: -260px auto 0;
}

.welcome-house-txt-title{
    font-size: 24px;
    color: var(--white-color);
    font-family: 'Montserrat Alternates';
    position: absolute;
    left: 0px;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
}

.welcome-blog-top .welcome-house-list-blog {
	border: 3px solid transparent;
}

.welcome-blog-top .welcome-house-list-blog.active{
    border: 3px solid #b99f8c;
}

.ul-custom , .ul-custom li{
    list-style: none;
    padding: 0px;
    margin: 0px;
    position: relative;
}

.ul-custom li{
    padding-left: 15px;
}

.ul-custom li:before{
    position: absolute;
    left: 0px;
    top: 0px;
    content: "·";
    color: var(--theme-color);
}

.box-border-skin{
    border-color: var(--skin-color);
}

.property-wrap-left-top {
    margin-bottom: 55px;
}

.play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 2;
}

.product-slider.owl-theme .owl-nav [class*="owl-"] {
    margin: 0px;
    padding: 0px;
    background: var(--theme-color);
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-indent: -100000px;
}

.product-slider.owl-theme .owl-nav .owl-prev{
    left: -27px;
    background: var(--theme-color) url('../images/prev-arrow.png') no-repeat center center;
}

.product-slider.owl-theme .owl-nav .owl-next{
    right: -27px;
    background: var(--theme-color) url('../images/next-arrow.png') no-repeat center center;
}

.property-wrap-right-price{
    text-align: right;
    margin-top: 120px;
}

.property-wrap-right-price h4 strong{
    font-family: 'Montserrat Alternates';
    font-weight: 300;   
    font-size: 26px;
}

.property-wrap-right-price h4 small{
    font-size: 17px;
}

.welcome-house-list-blog > img{
    width: 100%;
	height:auto;
	-ms-transition:.7s ease;
	-o-transition:.7s ease;
	-moz-transition:.7s ease;
	-webkit-transition:.7s ease;
	transition:.7s ease;
}

#html5-watermark{
    display: none !important;
}

#toggle-btn {
    background-image: url("/images/cell-email.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    top: 150px;
    width: 60px;
    height: 60px;
    line-height: 40px;
	cursor:pointer;
    z-index: 99;
}

#toggle-btn.active {
    background-image: url("/images/closer-white.png");
    top: 150px;
    right: 380px;
}

#contactslide {
    position:fixed;
    right: -380px;
    top: 150px;
    width: 380px;
    height: 450px;
    background: var(--theme-color);
    line-height: 40px;
    text-align: left;
	padding:0px 30px;
    transition: .5s;
    z-index: 99;
}

#contactslide.active {
    position:fixed;
    right: 0px;
    top: 150px;
    transition: .5s;
}

#contactslide h4 {
    padding-top: 19px;
    font-size: 30px;
    line-height: 40px;
}

#contactslide p, #contactslide h4, #contactslide a {
    display: block;
    color: white !important;
    text-decoration: none !important;
}
#contactslide a {
	displaY:inline-block;
    color: var(--skin-color) !important;
}
#contactslide a:hover,
#contactslide a:focus,
#contactslide a:active {
	text-decoration:underline !important;
}
.text-center {
    display: block;
    text-align: center;
}
.text-center h4 {
    color: var(--text-color);
}

/* additional Styles JPI */
.wrapper {
	max-width:2560px;
	margin:0 auto;
}

.banner-subpage {
	height:600px;
}

.banner-subpage .banner-part-txt {
	padding-bottom:50px;
}

.slick-slider .slick-track, .slick-slider .slick-list {
	width:100%;
	height:100%;
}

.welcome-house-list-blog {
	overflow:hidden;
	cursor:pointer;
}

.welcome-house-list-blog:hover img{
	-ms-transform:scale(1.02);
	-moz-transform:scale(1.02);
	-webkit-transform:scale(1.02);
	transform:scale(1.02);
}

p a {
	color: var(--theme-color) !important;
	text-decoration:underline !important;
}

p a:hover {
	color: var(--skin-color) !important;
	text-decoration:none !important;
}

.banner1 {
	background-image:url("../images/banner1.jpg");
}
.banner2 {
	background-image:url("../images/banner2.jpg");
}
.banner3 {
	background-image:url("../images/banner3.jpg");
}
.banner4 {
	background-image:url("../images/banner4.jpg");
}
.banner5 {
	background-image:url("../images/banner5.jpg");
}
.banner6 {
	background-image:url("../images/banner6.jpg");
}
.banner7 {
	background-image:url("../images/banner7.jpg");
}
.banner8 {
	background-image:url("../images/banner8.jpg");
}
.banner9 {
	background-image:url("../images/banner9.jpg");
}

.owl-stage-outer {
	margin-top:10px;
}

.form-control {
	border-radius:0;
	border:1px solid var(--skin-color);
	background:var(--bg-skin);
}

.form-control:focus,
.form-control:active {
	background:#ffF;
	border:1px solid transparent;
	border-bottom:1px solid #ccc;
	box-shadow:none;
	outline:3px solid var(--skin-color);
}

textarea.form-control {
	padding-top:5px;
	padding-bottom:5px;
}

textarea.form-control:focus {
	background:#ffF;
	border:1px solid transparent;
	border-bottom:1px solid #ccc;
	box-shadow:none;
	outline:3px solid var(--skin-color);
}

input.form-control,
select.form-control {
	height:50px;
}

select.form-control option {
	padding:5px;
	line-height:30px;
	height:30px;
}

button[type="submit"] {
	background:transparent;
	outline:0;
	border:0;
}

label.error {
	color:red;
}

label.checkbox p{
	display:inline-block;
	margin-bottom:0;
}

label.checkbox input{
	display:inline-block;
}

.form-group p.small {
	line-height:1.5em;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
	border: 1px solid var(--skin-color);
    background: var(--skin-color);
    color: #fff;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid var(--theme-color);
    background: var(--theme-color);
    font-weight: normal;
    color: #fff;
}

.impressionen {
	font-size:0.9em;
	text-align:center;
	margin-top:40px;
}

.impressionen > div {
	margin-bottom:30px;
}

.impressionen img {
	width:100%;
	height:auto;
}

.impressionen p {
	background:rgba(0,0,0,.1);
	background:#e6d9cf;
	margin-bottom:0;
	padding:10px 0;
}

hr {
	margin-bottom:2rem;
}

.aktivitaeten .text-right img{
		margin-top:10px;
}

.aktivitaeten .light-title {
	max-width:1140px;
	margin:0 auto 5rem;
}

.imp_dse h2{
	font-size:36px;
	line-height:42px;
	color:var(--theme-color);
}

.imp_dse h3{
	font-size:30px;
	line-height:38px;
}

.booking .theme-btn {
	font-size:20px;
}
.mfp-counter {
	display:none;
}

#html5-lightbox-box {
	margin:0 auto;
	max-width:1200px;
}

ul li.booking {
	background:var(--skin-color);
}

ul li.booking:hover,
ul li.booking:focus {
	background:#cca386;
}
