body, h1, h2, h3, h4, h5, h6, ul, li, ol, div, p, a, img {
    margin: 0;
    padding: 0;
}


header, section, article, nav, footer, address, aside, dialog {
  font-variant:normal;
  font-style:normal;
  margin: 0;
  padding: 0;
  display: block;
   
}

figcaption, figure, main {
  display: block;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}


html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

table, table td { 
    border:none;
    border-collapse:collapse;
}

a              { text-decoration: none !important; outline:none !important; }
a:link         { text-decoration: none !important; outline:none !important; }
a:visited      { text-decoration: none !important; outline:none !important; }
a:hover        { text-decoration: none !important; outline:none !important; }
a:active       { text-decoration: none !important; outline:none !important; }

img {
  vertical-align:top;
  border:0;
  max-width:100%;
}

.img-responsive{
  width: 100% !important;
  height: auto;
}

.responsive-img img {
  width: 100% !important;
  height: auto;
}

#page {
	width:100%;
	max-width:100%;
	height:auto;
	overflow:hidden;
}

html {
  height: 100%;
}


h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
}


.display-flex {
	display:-webkit-flex;display:-ms-flexbox;display:flex;
}

.flex-row {
	-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;
}

.flex-column {
	-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;
}

.flex-wrap {
	-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;
}

.justify-content-start {
	-webkit-justify-content:flex-start;-ms-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;
}

.justify-content-end {
	-webkit-justify-content:flex-end;-ms-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;
}

.justify-content-center {
	-webkit-justify-content:center;-ms-justify-content:center;-ms-flex-pack:center;justify-content:center;
}

.justify-content-between {
	-webkit-justify-content:space-between;-ms-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;
}

.align-items-center {
	-webkit-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;
}

.align-items-start {
	-webkit-align-items:flex-start;-ms-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;	
}



.parallax-container {
  position: relative;
  overflow: hidden;
  z-index:4;
}

.parallax-container .parallax {
  position: absolute;
  top: 0;
  left: -0.5px;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.parallax-container .parallax img {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.parallax-container .parallax video {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mb-7 {
	margin-bottom:7rem;
}



/* Feel free to change duration  */ 
.animated  {
  -webkit-animation-duration : 1000 ms  ;
  animation-duration : 1000 ms  ;
  -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}  
/* .owl-animated-out - only for current item */ 
/* This is very important class. Use z-index if you want move Out item above In item */ 
.owl-animated-out {
  z-index : 1 
   }
/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */ 
.owl-animated-in {
  z-index : 0 
   }
/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */ 
.fadeOut  {
  -webkit-animation-name : fadeOut  ;
  animation-name : fadeOut  ;
}  
@-webkit-keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}
@keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}




/* Scroll to top
---------------------------------- */
.scrollToTop {
  color: #ffffff;
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1005;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
}

.scrollToTop.fadeToTop {
  -webkit-animation-name: fadeToTop;
  animation-name: fadeToTop;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeToTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeToTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.scrollToTop.fadeToBottom {
  -webkit-animation-name: fadeToBottom;
  animation-name: fadeToBottom;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeToBottom {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeToBottom {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.scrollToTop i {
  line-height: 48px;
  font-size: 26px;
}

.scrollToTop:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
  .scrollToTop {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .scrollToTop i {
    line-height: 40px;
    font-size: 20px;
  }
}


/* Fixed navigation
---------------------------------- */

.header.fixed {
	position:fixed;
	z-index: 1006;
	left:0;
	top:0;
	width:100%;	
}


.fixed-header-on .header.fixed,
.fixed-header-on header.header.transparent-header-on {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1006;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.fixed-header-on .header.fixed.object-visible {
  opacity: 1;
  filter: alpha(opacity=100);
}

.fixed-header-on .header.fixed.hc-element-visible {
  opacity: 1;
  filter: alpha(opacity=100);
}

.transparent-header .sticky-wrapper {
  position: absolute;
  width: 100%;
  left: 0;
}

.fixed-header-on .header.fixed.animated {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}



/* pagestart 
---------------------------------- */

.pagestart{
	width:50px;
	height:50px;
	text-align:center;
}

.pagestart i{
	color:rgba(255,255,255, 0.75);
	font-size:40px;
	font-weight:400;
	line-height:47px;
	display:block;
	cursor:pointer;
}

.pagestart-box {
	position: absolute;
	left:50%;
	bottom:60px;
	z-index:50;
	margin-left:-25px;
}



/*Images and Overlays
---------------------------------- */
.overlay-container {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);  
}

.overlay-link {
  position: absolute;
  z-index: 10;
  top: 0;
  padding: 15px;
  bottom: 0px;
  left: 0;
  right: 0px;
  background-color: rgba(30, 30, 30, 0.5);
  overflow: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  color: #ffffff;
}

.overlay-link i {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 80px;
  height: 80px;
  border: 1px solid #ffffff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  font-size: 32px;
  line-height: 80px;
}

.overlay-link i:hover {
  background-color: #ffffff;
  color: #777777;
}

.overlay-link.small i {
  width: 25px;
  height: 25px;
  margin: -12.5px 0 0 -12.5px;
  font-size: 14px;
  line-height: 25px;
}

.overlay-container:hover .overlay-link {
  height: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}


/* Columnize 
---------------------------------- */
.columnize-2 {
	margin: 0 0 1.313em;

	-webkit-column-count: 2;
	   -moz-column-count: 2;
			column-count: 2;

	-webkit-column-gap: 4em;
	   -moz-column-gap: 4em;
			column-gap: 4em;


	-webkit-column-rule: 1px solid #f0eceb;
	   -moz-column-rule: 1px solid #f0eceb;
			column-rule: 1px solid #f0eceb;
}

.columnize-3 {
	margin: 0 0 1.313em;

	-webkit-column-count: 3;
	   -moz-column-count: 3;
			column-count: 3;

	-webkit-column-gap: 3em;
	   -moz-column-gap: 3em;
			column-gap: 3em;


	-webkit-column-rule: 0px solid rgba(0,0,0,0.05);
	   -moz-column-rule: 0px solid rgba(0,0,0,0.05);
			column-rule: 0px solid rgba(0,0,0,0.05);
}


@media only screen and (max-width: 992px) {
	.columnize-2,
	.columnize-3{

		-webkit-column-count: 1;
		   -moz-column-count: 1;
				column-count: 1;
	}
}

.content-body p:last-child {
	padding-bottom:0;
}



.btn-all,
.btn-display {
  display: inline-block;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-text{
	display:-webkit-flex;display:-ms-flexbox;display:flex;
	-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;
	margin-left:-0.25em;
	margin-left:-0.25em;
	padding-bottom:2em;
	padding-top:1em;
    white-space: nowrap;
}


.btn-text .btn-link,
.btn-text .btn-textlink {
	margin-left:0.25em;
	margin-right:0.25em;
}



.btn-link,
.btn-textlink {
  font-size:0.85em;
  letter-spacing:0.02em;
  color:#fff;
  background-color:#355630;	/* dunkelgrün */
  
  padding:0.25em;
  display: inline-block;
  margin-bottom:0.5em;
  text-transform:uppercase;
}

.btn-link span,
.btn-textlink span {
    padding:0.25em 1.5em 0.3em 1.5em;
	display:block;
}

@media (min-width: 1551px) {

.btn-link,
.btn-textlink {
  font-size:0.95em;
}

}

@media (min-width: 576px) and (max-width: 992px){
	
.elements-71 .btn-text .btn-textlink {
	width:48%;
	text-align:center;
}

.elements-71 .btn-text {
	-webkit-justify-content:center;-ms-justify-content:center;-ms-flex-pack:center;justify-content:center;
}

}




.btn-text a:hover {
  background-color:#333333;
}

@media (max-width: 575px) {
	.btn-text{
	  -webkit-flex;display:-ms-flexbox;display:flex;	
	  -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;
	}
	
	.btn-link,
	.btn-textlink {
		text-align:center
	}
									
}


.header-slider {
	padding-top:60px;
}

/* carousel */
.header-slider-bg picture img {
	width: 100%;
	height: auto;	
}

@media (min-width: 992px) {

.header-slider-translucent-bg {
  position: relative;
}
.header-slider-translucent-bg:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.header-slider-translucent-bg:after {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#103045+0,103045+100&0.65+0,0+100 */
background: -moz-linear-gradient(left,  rgba(16,48,69,0.65) 0%, rgba(16,48,69,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(16,48,69,0.65) 0%,rgba(16,48,69,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(16,48,69,0.65) 0%,rgba(16,48,69,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6103045', endColorstr='#00103045',GradientType=1 ); /* IE6-9 */




}


@media (min-width: 992px) {

.header-slider {
	padding-top:0;
}

}


.boxshwow-lang{
  position:relative;
  z-index: 60;
}

.boxshwow-lang .icon-bar {
  position:absolute;
  top:120px;
  right:0;   
}

.icon-bar a {
  width:45px;	
  display: block;
  text-align: center;
  padding: 8px;
  transition: all 0.3s ease;
  color:#fff;
  font-size: 16px;
  margin-bottom:2px;
  background-color:#a72439;
}

.icon-bar a:hover {
  background-color:#726763;
}

@media (max-width: 575px) {
	
.boxshwow-lang .icon-bar {
  position:absolute;
  top:75px;
  right:0;   
}

.icon-bar a {
  width:35px;	
  padding: 4px;
  font-size: 12px;
  margin-bottom:4px;
}	


}

@media (max-width: 991px) {
	
.boxshwow-lang{
	display:none;
}	

}

.fixed-footer-nav-button {
	position:fixed;
	z-index:50;
	width:100%;
	left:0;
	bottom:0;
	background:#a61b32;	
	font-size:19px;
	line-height:19px;
}

.fixed-footer-nav-button-flex {
	display:-webkit-flex;display:-ms-flexbox;display:flex;
	-webkit-justify-content:space-between;-ms-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;
	width:900px;
	max-width:90%;
	margin-left:auto;
	margin-right:auto;
}

.btn-fixed-footer {
	padding:12px 10px;
	color:#fff;
}

.box-justify-center {
	height:100%;
	display:-webkit-flex;display:-ms-flexbox;display:flex;
	-webkit-justify-content:center;-ms-justify-content:center;-ms-flex-pack:center;justify-content:center;
	-webkit-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;
}



.video-responsiv-iframe-content {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-responsiv-iframe-content iframe,
.video-responsiv-iframe-content object,
.video-responsiv-iframe-content embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* zimmer preise 
---------------------------------- */

.content-container-preise {
 margin-bottom:20px;
}


.content-zimmer-preise {
  clear:both;
  width:100%;
}

.content-zimmer-preise-box {
  margin-bottom:5px;
  margin-right:5px;
  height:85px;
  display:block;    
}


.content-zimmer-preise-info {
  height:150px;
  display:block;
  margin-bottom:5px;
  margin-right:5px;
	
}


@media (min-width: 1551px) {
.content-zimmer-preise-info {
  height:155px;
}

}


.preise-info-table {
  display: table-cell;
  height:140px;
  padding:10px;
  padding-left:0;
  vertical-align: bottom;
}

.zimmer-preise-image {
  float:left;
}

.zimmer-preise-image img {
  width:auto;
  height:85px;
  padding:5px;
  padding-right:0;
  display:inline-block;
}

@media (max-width: 767px) {
	.zimmer-preise-image {
	  display:none !important;
	}
}

.zimmer-preise-text {
  padding-left:10px;
  display: table-cell;
  height:85px; 
  vertical-align:middle;
}

.owl-featured-item  {
	margin-right:5px;
	margin-bottom:20px;  
}

.owl-featured-item .preise-owl ul {
	margin:0 !important; 
	padding:0 !important;
	width:100%;
	list-style:none !important;
    text-align:center;  
}

.owl-featured-item .preise-owl li {
	width:100%;
	height:85px;
	line-height:85px;
	text-align:center;
	list-style:none !important;
	margin-bottom:5px;		
}

.owl-featured-item .preise-owl li.li-preis {
	line-height:105px;
}


.owl-featured-item .datum {
	width:100%;
	height:120px;
	padding-top:10px;

}

.owl-featured-item .preise-owl li.li-preis-flex {
	display:-webkit-flex;display:-ms-flexbox;display:flex;
	-webkit-justify-content:center;-ms-justify-content:center;-ms-flex-pack:center;justify-content:center;
	-webkit-align-items:center;-ms-align-items:center;-ms-flex-align:center;align-items:center;
}



/* Carousel*/
.item {
  position: relative;
}

.item .cover {
  position: absolute;
  width: 100%;
  height: 100%;  
  top: 0;
  left: 0;
  display: flex;
  align-items: center;

}

.owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}



.xsfooterhg{
	width:100%;
	position:fixed;
	left:0;
	bottom:0;
	z-index:999999999999999925;
}

.xsfooter-hg-flex{
	display:-webkit-flex;display:-ms-flexbox;display:flex;
	-webkit-justify-content:center;-ms-justify-content:center;-ms-flex-pack:center;justify-content:center;
}

.xsfooter-hg-flex .btn-xsfooter{
	width:33%;
	text-align:center;	
}

.xsfooter-hg-flex .mail{
	border-left:2px solid rgba(255,255,255, 0.05);	
	border-right:2px solid rgba(255,255,255, 0.05);	
}

.xsfooter-hg-flex .btn-xsfooter a{
	padding:0.35em 0.25em 0.10em 0.25em;
	font-size:22px;
	display:block;
}	

@media (min-width: 576px) {

.xsfooterhg{
	display:none;
}

}


