/*
gruen = color:#95CC16
moosgruen = color: #767F61
braun = color:#554513;
*/



@font-face {
  font-family: 'roboto_monoregular';
  src: url(fonts/robotomono-regular-webfont.woff2) format('woff2'), url(fonts/robotomono-regular-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'roboto_monothin';
  src: url(fonts/robotomono-thin-webfont.woff2) format('woff2'), url(fonts/robotomono-thin-webfont.woff) format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'kaushan';
  src: url(fonts/KaushanScript-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'monserrat_light';
  src: url(fonts/Montserrat-Light.ttf) format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html, .pageWrapper {
  height:100%;
}
body {
  padding: 0;
  margin: 0;
  font-family: roboto, sans-serif;
  font-size: 1em;
  font-weight: 100;
  -webkit-animation: fadeIn 2s;
  background:#fff;
  color:#2b2b31;
  height:100%;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}
@keyframes fadeIn {
  from {
  	opacity: 0;
  }
  to {
 	opacity: 1;
  }
}
.mobile, .tablet {
  display: none;
}
.desktop, .fullscreen {
  display:block;
}
.container {
  width: 1200px;
  margin: 0 auto;
  padding:30px 15px;

}
.row {
  width:100%;
}
.container-full {
  margin: 0 auto;
  padding: 0
}
.container > .container {
  padding:0;
}
.contentWrapper {
  margin:60px auto;
}

.flexbox {
  margin: 0 auto;
  display: flex;
  flex-wrap:wrap;
}
.flexbox.txtImg {
  flex-wrap: nowrap;
  align-items: center;
}
.flex-100 {
  width:100%;
}
.flex-75 {
  width:75%;
}
.flex-66 {
  width:66%;
}
.flex-50 {
  width:50%;
}
.flex-33 {
  width:33%;
}
.flex-25 {
  width:25%;
}
.container .flexbox {
  margin:0 -15px;
}
.flexItem, .flex_item {
  padding:15px;
}
.imgList {
  padding:0;
}
.flexJustify-left {
  justify-content: flex-start;
}
.flexJustify-center {
  justify-content: center;
}
.flexJustify-right {
  justify-content: flex-end;
}
.flexJustify-sb {
  justify-content: space-between;
}
.flexJustify-sa {
  justify-content: space-around;
}
.flexJustify-se {
  justify-content: space-evenly;
}
.flexAlign-start {
  align-items: flex-start;
}
.flexAlign-center {
  align-items: center;
}
.flexAlign-baseline {
  align-items: baseline;
}
.flexAlign-end {
  align-items: flex-end;
}
.flexAlign-strech {
  align-items: stretch;
}
.spaceBetween .flexbox {
  justify-content: space-between;
  padding:15px;
}
.noFlex {
  width:100%;
  display:block;
}
.content {
  padding: 50px 0
}

h1, h2 {
  color: #767F61;
}
h1 {
  font-family: 'kaushan';
  font-size:2.6em;
  margin-bottom:0;
}
h2 {
  font-size:1.8em;
  font-family: 'kaushan';
}


h1+h2, h2+h3 {
  margin-top: 0;
  color: #999;
  font-family: 'roboto', sans-serif;
  font-size:2em;
  font-weight:100;
}
.headline {
  color:#767F61;
  font-size:2em;
   font-family: 'kaushan';
  line-height: 1em;
}
a {
  color:#95CC16;
  transition:all 0.4s ease;
  text-decoration: none;
  transition:all 0.4s ease;
}


a.navBtn {
  display: inline-block;
  padding:10px 20px;
  border:solid 1px #95CC16;
}
a.navBtn:hover, a.navBtn:focus {
  background:#95CC16;
  color:#fff;
}
.header_top a {
  color:#fff;
}

a:hover, a:focus {
    color:#767F61;
}
.divider {
  width:100%;
  padding:30px 15px;
}

.article_nav ul {
  padding:0;
  margin:0;
  list-style: none;
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
}

a, li, p {
  font-size: 1.2em;
  line-height:1.3em;
}
label a {
  font-size:1em;
}
.nav li li, li a, p a, span a {
  font-size: 1em
}
.article_nav ul li {
  margin:15px;
}
.mobile {
  display: none
}

img {
  /*width: 100%;*/
  height: auto
}

.text-center, .align-center {
  text-align: center
}

.text-right {
  text-align: right
}

.smallContent {
  max-width: 768px;
}
.text-justify {
  text-align: justify;
}
p.twoCols {
  column-count:2;
  column-gap:30px;
}

.email-show::before {
  content: 'info@'
}

.email-show::after {
  content: 'berchtesgadener-ferienhaus.de'
}

.email-hide {
  display: none
}

.header_top {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  padding: 15px 0;
  width:100%;
  transition:all 0.4s ease;
  color:#fff;
  /* background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0)); */
  background:url(../assets/karo_bg_small_50.png) repeat center center;
  /* box-shadow: 2px 2px 8px rgba(0,0,0,0.6); */
}
.header_top .container {
  padding:0 15px;
}
.header_top .flexbox {
  justify-content:space-between;
  align-items: flex-start;
  width:100%;
}
.header_top .flex_item {
  padding:0 15px;
  position:relative;
}
.nav-up {
  top: -190px
}
.logo img {
  max-width: 200px;
  height:auto;
}
.logo a {
	display:block;
	position:absolute;
	top:0;
	left:0;
}
.info {
  text-align: right;
}
.info span {
  text-align: right;
  display:inline-block;
  padding:0 0 0 15px;
  text-shadow:1px 1px rgba(0,0,0,0.6);
}
.info, .info a {

}
.menu_btn a {
  height: 30px;
  display: block;
  width: 30px;
  margin: 10px 0
}

.menu_btn a span, .menu_btn a:after, .menu_btn a:before {
  content: '';
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 2px 2px rgba(0,0,0,0.6);
  margin: 6px 0;
  display: block;
  transition: all .4s ease
}

.nav li ul, html.mm-opened .menu_btn a span {
  display: none
}

html.mm-opened .menu_btn a:before {
  transform: rotate(45deg)
}

html.mm-opened .menu_btn a:after {
  transform: rotate(-45deg);
  margin-top: -9.5px
}

html.mm-opened .menu_btn a {
  margin-top: 20px
}

.mainNav ul {
  margin: 0;
  padding: 0;
  display:flex;
}

.mainNav li {
  position: relative;
  list-style: none;
}
.mainNav li a {
  padding:15px;
  display:inline-block;
  text-shadow:1px 1px rgba(0,0,0,0.6);
  font-weight: 300;
}
.mainNav li:last-child a {
  padding-right:0;
}
.mainNav li a:hover, .mainNav li a:focus, .mainNav li.active a, .info a:hover, .info a:focus, #page-1 .home {
  color:#95CC16;
}
.mainNav ul.subNav {
  opacity:0;
  transition:all 0.4s ease;
  visibility: hidden;
  width:100%;
  display:block;
}
.subNav li a {
  font-size:0.65em;
  background:rgba(49,49,49,1);
  width:100%;
  display:block;
}
.mainNav li:hover > ul.subNav, .mainNav li:focus > ul.subNav {
    visibility: visible;
    opacity:1;
}
.mail, .phone {
  font-weight: 300;
  font-size: 1.2em;
}

.mainNav li ul {
  position: absolute;
  left: 0;
  z-index: 500
}


/*slider*/
.headSlider, .headSliderSub {
  position: relative;
  overflow:hidden;
}
.headSlider .slick-slider, .headSliderSub .slick-slider {
  margin:0;
}
.arrowDown {
  width:50px;
  height:50px;
  background:url(/custom/assets/arrow-down.png) center center no-repeat;
  background-size:contain;
  position: absolute;
  left:50%;
  margin-left:-25px;
  bottom:15%;
  z-index: 100;
  cursor:pointer;
  transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.95);
	}
}
.sliderItem,  .parallaxTxt {
  position:relative;
}
.sliderItem {
  height:100vh;
  background-size:cover !important;
}
.headSliderSub .sliderItem {
  height:600px;
  background-size:100% auto !important;
}
.sliderItem .flexbox, .parallaxTxt .flexbox {
  position: absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  justify-content: center;
  align-items: flex-end;
}
.parallaxTxt .flexbox {
  align-items: center;
}
.sliderItem .linkWrapper {
  text-align: center;
  position: relative;
  z-index:100;
}

.sliderTxt {
  max-width: 50%;
  background:rgba(118,127,97,0.7);
  padding:30px;
  position: relative;
  margin-bottom:30px;
}
.slick-active .sliderTxt {
    -webkit-animation: fadeIn 2s;
    animation: fadeIn 2s;
}
.sliderTxtInner p{
  color:#fff;
  font-family: 'kaushan';
  font-size:1.6em;
  text-shadow: 1px 1px rgba(0,0,0,0.6);
  text-align: center;
  margin:5px;
  font-weigth:100;
}
.parallaxTxt {
  color:#767F61;
  font-family: 'roboto', sans-serif;
  font-size:2.5em;
  font-weight:400;
  text-shadow: 1px 1px rgba(0,0,0,0.6);
  text-align: center;
  margin:5px;
}

 .buttonGreen, .buttonWhite, .buttonLight {
  padding:10px 20px;
  font-size:1.2em;
  transition:all 0.4s ease;
  text-decoration: none;
  display:inline-block;
  margin-top:15px;
  cursor:pointer;
  /* box-shadow: 2px 2px 6px rgba(0,0,0,0.6); */
}
.buttonGreen {
  color:#95CC16;
  border: 1px solid #95CC16;
}
.buttonWhite {
  color:#fff;
  border: 1px solid #fff;
}
.buttonLight {
  color:#95CC16;
  border: 1px solid #95CC16;
}
.buttonLight:hover, .buttonLight:focus {
  color:#fff;
  background:#95CC16;
}
.buttonGreen:hover, .buttonGreen:focus {
  color:#fff;
  background:#95CC16;
}
.buttonWhite:hover, .buttonWhite:focus {
  color:#567781;
  background:#fff;
  text-shadow: none;
}
.headSlider .slick-dots, .headSliderSub .slick-dots {
  bottom:10px;
}
.headSlider .slick-dots li button::before, .headSliderSub .slick-dots li button::before {
  content:'';
  border:1px solid #95CC16;

}
/*contentSlider*/
.sliderContent {
  margin:100px 0;
}
.contentSliderItem .flex_item {
  width:50%;
  height:500px;
  padding:30px 60px 30px 30px;
}
.fullImg .contentSliderImg {
  height:500px;
  background-size:100% auto !important;
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
}
.contentSliderLink {
  width:100%;
}
.fullImg .contentSliderTxt, .fullImg .contentSliderTxt h2, .fullImg .contentSliderTxt h3 {
  color:#fff;
  text-shadow:1px 1px rgba(0,0,0,0.6);
}
.fullImg .contentSliderTxt {
  height:500px;
  z-index:100;
  position: relative;
  text-align: center;
}
.contentSliderTxt .flexbox {
  height: 100%;
  align-items: center;
  justify-content: center;
}
.contentSliderTxtInner {
  width:100%;
}
.contentSliderItem {
  position: relative;
}
.contentSliderItem .nextItem {
  height:60px;
  width:30px;
  background:url(/custom/assets/arrow-next.png) no-repeat center center;
  background-size:contain;
  position: absolute;
  top:50%;
  margin-top:-30px;
  right:30px;
  z-index:100;
  cursor:pointer;
}

/*content*/

#apartmentIframeAll {
  width:50%;
}
.icons {
  justify-content: center;
}
.contentWrapper .row {
  position: relative;
}
.contentSliderTxt.lightgreen, .darkArea {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#767f61+0,51820e+100 */
background: #767f61; /* Old browsers */
background: -moz-linear-gradient(-45deg,  #767f61 0%, #51820e 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  #767f61 0%,#51820e 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  #767f61 0%,#51820e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#767f61', endColorstr='#51820e',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  color:#fff;
}
.darkArea {
  color:#2b2b31;
}
.contentSliderTxt.grey {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#999999+1,999999+100&0.37+0,1+100 */
  background: -moz-linear-gradient(-45deg,  rgba(153,153,153,0.37) 0%, rgba(153,153,153,0.38) 1%, rgba(153,153,153,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,  rgba(153,153,153,0.37) 0%,rgba(153,153,153,0.38) 1%,rgba(153,153,153,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg,  rgba(153,153,153,0.37) 0%,rgba(153,153,153,0.38) 1%,rgba(153,153,153,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5e999999', endColorstr='#999999',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  color:#2b2b31;
}
.right .contentSliderTxt {
  text-align:right;
}
.iconInner {
  text-align:center;
}
.iconTitle {
  display:block;
  padding:10px 0;
}
/*parallax*/
.parallaxItem {
  height:500px;
  background-size:cover !important;
  background-attachment: fixed !important;
  overflow:hidden;
  position: relative;
}
.parallaxTxt {
  height:100%;
}
.parallaxTxt h2, .parallaxTxt h3 {
  color:#fff;
}
.parallaxItem::before, .headSlider::before, .headSliderSub::before {
  content:'';
  position: absolute;
  background:rgba(0,0,0,0.4);
  top:-20px;
  left:0;
  right:0;
  height:40px;
  border-radius: 50%;
  filter: blur(12px);
  z-index: 100;
}
.parallaxItem::after, .headSlider::after, .headSliderSub::before {
  content:'';
  position: absolute;
  background:rgba(0,0,0,0.4);
  bottom:-20px;
  left:0;
  right:0;
  height:40px;
  border-radius: 50%;
  filter: blur(12px);
  z-index: 100;
}
.price td {
	padding:5px 15px;
	font-size:1.2em;
}
.price tr:nth-child(odd	) {
	background:#95CC16;
}
/*accordion*/
.trigger {
  position: relative;
  cursor:pointer;
}
.trigger h3 {
  margin:0;
  padding:15px;
  background:#8daab3;
  color:#fff;
}
.trigger::after {
  content:'';
  height:25px;
  width:25px;
  border-bottom:solid 2px #fff;
  border-left:solid 2px #fff;
  transform:rotate(-45deg);
  position: absolute;
  top:5px;
  right:15px;
  transition:all 0.4s ease;
}
.trigger.open:after {
    transform:rotate(135deg);
    top:25px;
}
.toggle_container {
  width:100%;
  padding:30px 15px 15px;
  position: relative;
}
.toggle_container::before {
  content:'';
  width:100%;
  height:1px;
  background: linear-gradient(to right, rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));
  position: absolute;
  top:5px;
  left:0;
}
.twoCols {
  column-count:2;
  column-gap:15px;
}

/*flipbox*/
.flipbox {
  background:transparent;
  cursor:pointer;
}
.flipboxInner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  /* overflow: hidden; */
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flipbox img {
  width:100%;
  height:auto;
  display:block;
}
.flipbox .headline {
  display: block;
  text-align: center;
  padding:15px;
  color:#fff;
}
/* Do an horizontal flip when you move the mouse over the flip box container */


/* Position the front and back side */
 .flipboxBack {
  position: absolute;
  width: 100%;
  height: 100%;
  padding:15px;
  top:0;
  left:0;
  border-radius: 6px;
	background: #767f61; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #767f61 0%, #51820e 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #767f61 0%,#51820e 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #767f61 0%,#51820e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransfor  border:1px solid #567781;
  color:#fff;
  opacity:0;
  display:flex;
  align-items: center;
  transition:all 0.4s ease;
}
.flipbox:hover .flipboxBack {
	opacity:1;
}
.flipboxFront {
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: 6px;
  border:1px solid #767F61;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#767f61+0,51820e+100 */
	background: #767f61; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #767f61 0%, #51820e 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #767f61 0%,#51820e 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #767f61 0%,#51820e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransfor  border:1px solid #567781;
}

/*Video*/
.plyr {
  min-width: 500px;
  margin:15px;
}
/*fadIn effect*/
.fade-in {
  opacity: 0;
  transform: translateY(20vh);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
  will-change: opacity, visibility;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.yform {
  padding:15px;
  width:80%;
  margin:0 auto;
}
.form-group {
  margin-bottom:15px;
  display: flex;
  align-items: center;
}
.control-label {
  padding:5px 15px;
  width:30%;
  text-align: right;
  font-size:1.2em;
  color:#767F61;
}

.form-control {
  padding:5px 15px;
  background:transparent;
  border:1px solid #767F61;
  border-radius: 0;
  width:60%;
  font-size:1.2em;
  color:#666;
  background: #eee;
}

.form-control.datepicker {
  width:20%;
}
.qRequest {
  width:80%;
  margin:0 auto;
}
.qRequest label {
  display:none;
}
.qRequest .form-control.datepicker, .qRequest .btn {
  width:100%;
  background:transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:1px solid #767F61;
  color:#fff;
  font-weight: 100 !important;
  margin:15px 0;
  font-family: 'roboto';
}


.yform .btn {
  color:#666;
  padding:10px 20px;
  font-size:1.2em;
  font-weight:400;
  border:1px solid #767F61;
  background:transparent;
  margin-left:30%;
  cursor:pointer;
  transition:all 0.4s ease;
}
.yform .qRequest .btn, .pinkBtn {
  border:1px solid #767F61;
  padding:10px 20px;
  font-size:1.2em;
  color:#767F61;
  border-radius:0;
  margin:15px 0;
}
.button:hover, .button:focus, .yform .btn:hover, .yform .btn:focus, .yform .qRequest .btn:hover,  .yform .qRequest .btn:focus, .yform .btn:hover, .yform .btn:focus  {
  background:#767F61;
  color:#313131;
  border-color:#767F61;
}
.formcheckbox label {
  margin-left: 30%;

}
.formcheckbox {
    margin-bottom:15px;
}

.contentImg {
  width:400px;
  height:auto;
}
.imgList {
  align-items: center;
}
.listImg img:not([width]) {
  width:100%;
  height:auto;
}
/* .gallery.flexbox {
  justify-content: center;
  align-items: center;
  padding:30px 0;
} */

.gallery a {
  display: inline-block;
  padding:5px 0;
}
.gallery a img {
  display:block;
}

/*footer*/

footer {
  padding-bottom:10px;
  margin:60px 0 0 0;
  border-top:5px solid #8daab3;
  border-bottom:5px solid #B7C6CA;
}
.footer {
  position: relative;
}
.footer a {

}
.footer a:hover, .footer a:focus {
   color:#fff;
}


.footer .flexbox {
  justify-content: space-between;
  align-items: flex-end;
  margin:0 -15px;
}
.fLinks {
  margin-top:30px;
}
.footer .flex_item {
  width:50%;
}
.fLogo img {
  width:250px;
  height:auto;
}
.fLogo {
  padding:15px;
}
.navFooter ul {
  margin:0;
  padding:0;
  display:flex;
}
.navFooter ul li {
  padding:0 15px 0 0;
  display:inline-block;
}
.rex-navi1 li {
  list-style: none;
}
.copyWrapper {
  text-align: right;
}
.copyWrapper p {
  margin:0;
}

/*mediaqueries*/
@media screen and (max-width:1400px) {
  .flipbox {
    width:50%;
  }
}
@media screen and (max-width:1350px) {
  body {
    font-size:1em;
  }
  .container {
    width:100%;
    max-width:1024px;
  }
  .container .flexbox {
    margin:0;
  }
  .header_top .container {
    max-width: 100%;
  }

}
@media screen and (max-width:1200px) {
  .logo img {
    max-width:160px;
  }
  .flipbox .headline {
    font-size:2em;
    padding:10px 15px;
  }
}
@media screen and (max-width:1024px) {
  .fullscreen {
    display:none;
  }
  .tablet {
    display: block;
  }
  .mainNav li a {
    padding:15px 10px;
  }
  .mobile {
    display:block;
  }
  .desktop {
    display:none;
  }
  .headSliderSub .sliderItem {
    height:500px;
  }
  .info span {
    display: block;
  }
  .fullImg .contentSliderImg {
    background-size:cover !important;
  }
  .flex-75 {
    width:100%;
  }
  .flipbox {
    font-size:0.9em;
    width:75%
  }
  .formcheckbox label {
    margin-left: 0;
  }
    .headline {
      font-size: 2em;
    }
}
@media screen and (max-width:800px) {
	  .headSliderSub .sliderItem {
    height:400px;
  }
  .sliderTxt {
	  max-width:80%;
  }
  	.listImg.flex-25 {
		width:33%;
	}
}
@media screen and (max-width:768px) {

  .header_top {
    position: absolute;
  }
  p, li, a {
    /* font-size: 1em; */
  }

  .mobile .email-show:after, .mobile .email-show::before {
    display:none;
  }
  .mobile .mail {
    background:url(/custom/assets/mail.png) center center no-repeat;
    background-size:contain;
    position: relative;
  }
  .mobile .mail a {
    display: block;
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
  .rex-yform {
    padding:15px 0;
  }
  .control-label {
    width:30%;
  }
  .contentImg {
    width:100%;
  }
  .headSliderSub .sliderItem {
    height:350px;
  }

  .fullImg .contentSliderTxt {
    background:linear-gradient(135deg, rgba(86,119,129,0.37) 0%,rgba(86,119,129,0.38) 1%,rgba(141,170,179,1) 100%);
    text-shadow: none;
  }
  .contentSliderItem .flex_item, .fullImg .contentSliderImg, .fullImg .contentSliderTxt {
    width:100%;
    height:350px;
    position:relative;
  }
  .flexbox.txtImg {
	  flex-wrap:wrap;
  }
	.listImg.flex-25 {
		width:50%;
	}
  .info {
    font-size: 0.9em;
  }
  .yform {
    width:100%;
  }
}
@media screen and (max-width:600px) {

  .form-group {
    flex-wrap:wrap;
  }
  .form-control, .control-label, .form-control.datepicker {
    width:100%;
  }
  .control-label {
    padding:5px 0;
        text-align: left;
  }
  .rex-yform .btn {
    margin-left:0;
  }
  #rex-9 .flexbox {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #rex-9 .imgList img {
    max-width:100%;
  }
  .info {
    display:none;
  }
  .headSliderSub .sliderItem {
    height:300px;
    background-size:cover !important;
  }
  .flipbox {
    width:100%;
    font-size:0.8em;
  }
  .flipbox .flipTitle {
    padding:30px 15px;
  }
  .flipboxBack .flipTitle {
    padding:10px 15px 0 15px;
  }
  .contentSliderItem .flex_item, .fullImg .contentSliderImg, .fullImg .contentSliderTxt {
    height:500px;
  }
}
@media screen and (max-width:500px) {

  .footer .flex_item {
    width:100%;
    text-align: center;
  }
  .navFooter ul {
    justify-content: center;
  }
}
