

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

@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;
}

/*
  blue = color:#00547a;
*/
* {
  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:#B5C3D0;
  color:#333;
  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;
}
.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 {
  font-family: 'mrDafoe';
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 100
}
h2, h3 {
  font-weight: 300;
  color:#00547a;
}

h1 {
  font-size: 2.5em;
  color:#00547a;
}

h1+h2, h2+h3 {
  margin-top: 0
}
.mrDafoe {
  font-family: 'mrDafoe';
}
.mrDafoeBlue {
  color:#00547a;
  font-family: 'mrDafoe';
  font-size:1.2em;
}
q.mrDafoeBlue {
  font-size: 1.5em;
}
.blue {
  color:#00547a;
}
blockquote {
  font-size:1.2em;
  font-weight: 400;
}
a {
  color:#00547a;
  transition:all 0.4s ease;
  text-decoration: none;
  transition:all 0.4s ease;
}
a.navBtn {
  display: inline-block;
  padding:10px 20px;
  border:solid 1px #00547a;
  margin-bottom:10px;
}
.sliderTxtInner a.navBtn {
    background:rgba(255,255,255,0.8)
}

a.navBtn:hover, a.navBtn:focus {
  background:#00547a;
  color:#fff;
}
.header_top a {
  color:#fff;
}
.footer a {
  color:#c3c3c3;
}
a:focus, a:hover, .mainNav li a:hover, .mainNav li a:focus, .mainNav li.active a {
  color: #666;
}
.divider {
  width:100%;
  padding:30px 15px;
}
.divider.white {
  padding:0 15px
}
.divider img {
  height:50px;
  width:auto;
}
.divider .flexbox, .footer .divider .flexbox {
  align-items: center;
  justify-content: center;
}
.divider .leftLine, .divider .rightLine {
  width:30%;
  margin:0 10px;
  height:1px;
}
.divider .leftLine {
  background:linear-gradient(to right, rgba(0,84,122, 0), rgba(0,84,122, 0.8));
}
.divider .rightLine {
  background:linear-gradient(to right, rgba(0,84,122, 0.8), rgba(0,84,122, 0));
}
.divider.white .leftLine {
  background:linear-gradient(to right, rgba(255,255,255, 0), rgba(255,255,255, 0.8));
}
.divider.white .rightLine {
  background:linear-gradient(to right, rgba(255,255,255, 0.8), rgba(255,255,255, 0));
}
.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
}
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 {
  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: 'ts-ballonfahrten.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;
}

.header_top .flexbox {
  justify-content:space-between;
  align-items: flex-start;
  width:100%;
}
.info .flexbox {
  justify-content: flex-end;
  align-items:center;
}
.header_top .flex_item {
  padding:0 15px;
}
.logo {
  padding-left:15px;
}
.nav-up {
  top: -190px
}
.info span {
  display: block;
  text-align: right;
  display:inline-block;
  padding:5px 0 5px 15px;
  text-shadow:1px 1px rgba(0,0,0,0.6)
}
.menu_btn a {
  height: 40px;
  display: block;
  width: 40px;
}
.menu_btn span {
    text-shadow:1px 1px rgba(0,0,0,0.6);
}
.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: 10px 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: -12.5px
}

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

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

.mainNav li {
  position: relative;
  list-style: none;
}

/* .mainNav li a {
  padding: 10px 20px;
  color:#00547a;
  font-weight: 400;
  text-decoration: none;
} */
.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;
  top:64%;
  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:500px;
  /* 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;
}

.sliderTxt {
  max-width: 1200px;
  width:100%;
  padding:15px 30px 60px 15px;
}
.slick-active .sliderTxt {
    -webkit-animation: fadeIn 2s;
    animation: fadeIn 2s;
}
.sliderTxtInner p, .parallaxTxt {
  color:#fff;
  font-family: 'roboto', sans-serif;
  font-size:2.5em;
  text-shadow: 1px 1px rgba(0,0,0,0.6);
  text-align: right;
  margin-bottom:0;
}
.sliderTxtInner p + p {
  margin-top:0;
}
.sliderItem .button {
  padding:10px 20px;
  font-size:1.2em;
  color:#fff;
  border: 1px solid #fff;
  transition:all 0.4s ease;
  text-decoration: none;
  /* box-shadow: 2px 2px 6px rgba(0,0,0,0.6); */
}
.sliderItem .button:hover, .sliderItem .button:focus, .yellowBtn:hover, .yellowBtn:focus {
  background:#00547a;
}
.headSlider .slick-dots, .headSliderSub .slick-dots {
  bottom:10px;
}
.headSlider .slick-dots li button::before, .headSliderSub .slick-dots li button::before {
  content:'';
  border:1px solid #fff;
  border-radius:15px;
}
/*contentSlider*/
.sliderContent {
  margin:60px 0;
}
.contentSliderItem .flex_item {
  width:50%;
  height:400px;
  padding:30px 60px 30px 30px;
}
.fullImg .contentSliderImg {
  height:400px;
  background-size:100% auto !important;
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
}
.fullImg .contentSliderTxt, .fullImg .contentSliderTxt h2, .fullImg .contentSliderTxt h3 {
  color:#fff;
  text-shadow:1px 1px rgba(0,0,0,0.6);
}
.fullImg .contentSliderTxt {
  height:400px;
  z-index:100;
  position: relative;
  text-align: center;
}
.contentSliderTxt .flexbox {
  height: 100%;
  align-items: center;
  justify-content: center;
}
.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:200;
  cursor:pointer;
}

/*content*/

.contentWrapper .row {
  position: relative;
}
.contentSliderTxt.blue {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00344c+0,00547a+100 */
  background: #00344c; /* Old browsers */
  background: -moz-linear-gradient(-45deg,  #00344c 0%, #00547a 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,  #00344c 0%,#00547a 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg,  #00344c 0%,#00547a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00344c', endColorstr='#00547a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  color:#fff;
}
.contentSliderTxt h2, .contentSliderTxt h3, .contentSliderTxt a  {
  color:#fff;
}
.contentSliderTxt .mrDafoe {
  font-size:1.5em;
}
.contentSliderTxt a.button {
  display:inline-block;
  padding:10px 20px;
  border:1px solid #fff;
  transition:all 0.4s ease;
}
.contentSliderTxt a.button:hover, .contentSliderTxt a.button:focus {
  color:#00547a;
  background:#fff;
}

.contentSliderTxt.grey {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#545454+0,878787+100 */
  background: #545454; /* Old browsers */
  background: -moz-linear-gradient(-45deg,  #545454 0%, #878787 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,  #545454 0%,#878787 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg,  #545454 0%,#878787 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#545454', endColorstr='#878787',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  color:#fff;
}
/*preisliste*/

.container .tableRow.flexbox {
  padding:5px 15px;
  font-size:1.2em;
  font-weight: 300;
  margin:0;
  justify-content: space-around;
}
.tableRow .flex_item {
  width:50%;
}
.persons {
  text-align: left;
}
.price {
  text-align: right;
}
.table > div:nth-child(odd) {
  background:#eee;
}
/*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;
}
/*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;
}
.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:#00547a;
}
#yform-vaucherForm-mwst .control-label, #yform-vaucherForm-price .control-label {
  width:70%;
}
#yform-vaucherForm-mwst .form-control, #yform-vaucherForm-price .form-control {
  width:20%;
}
.form-control {
  padding:5px 15px;
  background:transparent;
  border:1px solid #00547a;
  border-radius: 4px;
  width:60%;
  font-size:1.2em;
  color:#666;
  background: #eee;
}

.form-control.datepicker {
  width:20%;
}
.yform .btn {
  color:#666;
  padding:10px 20px;
  font-size:1.2em;
  font-weight:400;
  border:1px solid #666;
  background:transparent;
  margin-left:30%;
  cursor:pointer;
  transition:all 0.4s ease;
}
.yform .btn:hover, .yform .btn:focus {
  background:#00547a;
  color:#fff;
}
.formcheckbox label {
  margin-left: 30%;

}
.formcheckbox {
    margin-bottom:15px;
}
.vaucherForm {
  width:80%;
  position:relative;
}
.alert-danger {
    color:red;
    padding:15px;
    box-shadow:2px 2px 8px rgba(0,0,0,0.6);
    border-radius:5px;
    font-weight:700;
    font-size:1.2em;
}

.topLabel {
  font-size:1.2em;
  font-weight: 300;
  color:#00547a;
  padding:15px 0 ;
  position: relative;
  margin-bottom:15px;
}
.topLabel::after {
  content:'';
  background:linear-gradient(to right, rgba(0,84,122, 0), rgba(0,84,122, 0.8), rgba(0,84,122, 0));
  position: absolute;
  bottom:0;
  left:0;
  right:0;
  height:1px;
}
.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: block;
}
.emailBtn {
  display:inline-block;
  padding:10px 30px;
  background: #00547a;
  color:#fff;
  border:solid 1px #00547a;
}
.emailBtn:hover, .emailBtn:focus {
  background:transparent;
  color: #00547a;
}
/*customers quote*/
.cBallon {
  width:30px;
}
.bgBlue, .customerName {
  background:#00547a;
  color:#fff;
  align-items: center;
  margin:0;
}
.customer {
  border:1px solid #00547a;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom:15px;
}
.customer .txt {
  background: linear-gradient(to top, rgba(255,255,255,0.9),rgba(255,255,255,0.5));
  padding:15px;
}
q {
  font-size:1.5em;
}
/*footer*/
footer {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00344c+0,00547a+100 */
  background: #00344c; /* Old browsers */
  background: -moz-linear-gradient(-45deg,  #00344c 0%, #00547a 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,  #00344c 0%,#00547a 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg,  #00344c 0%,#00547a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00344c', endColorstr='#00547a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  color:#fff;
}
.footer {
  position: relative;
}
.footer::before {
  content:'';
  width:100%;
  height:1px;
  top:15px;
  left:0px;
  position: absolute;
}
.footer h3 {
  color:#fff;
}
.footer .flexbox {
  justify-content: space-between;
  align-items: flex-end;
  margin:0 -15px;
}
.footer .flex_item {
  width:33%;
}
.logoFooter {
  text-align:center;
}
.logoFooter span {
  display:block;
  padding:15px 0;
}
.navFooter {
  text-align:right;
}
.rex-navi1 li {
  list-style: none;
}
.copyWrapper {
  background:#fff;
  color:#00547a;
  text-align: center;
  padding:5px 15px;
}
.copyWrapper p {
  margin:0;
}
/*mediaqueries*/

@media screen and (max-width:1350px) {
  body {
    font-size:1em;
  }
  .container {
    width:100%;
    max-width:1024px;
  }

}
@media screen and (max-width:1200px) {
  .logo img {
    height:150px;
    width:auto;
  }
  .sliderItem {
      height:600px;
  }

  .flex-50 {
    width:80%;
  }
  .parallaxItem {
    height:400px;
  }
  .CatNav .flexbox {
    justify-content: center;
  }
  .parallaxItem {
    background-size:auto !important;
    background-attachment: scroll !important;
  }
}
@media screen and (max-width:1024px) {
  .fullscreen {
    display:none;
  }
  .tablet {
    display: block;
  }
  .flex-50 {
    width:100%;
  }
  .parallaxItem {
    height:350px;
  }
  .sliderTxtInner p, .parallaxTxt {
    font-size:1.8em;
  }
   .sliderItem, .headSliderSub .sliderItem {
      height:400px;
  }
}
@media screen and (max-width:768px) {
  .mobile {
    display:block;
  }
  .desktop {
    display:none;
  }
  .header_top {
    position: absolute;
  }
  p, li, a {
    /* font-size: 1em; */
  }

  .mobileInfo .flexbox {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 100px;
  }
  .mobileInfo span {
    display:block;
    max-width:30px;
    margin:5px 15px 5px 5px;
  }
  .mobileInfo img {
    width:100%;
    height:auto;
  }
  .rex-yform {
    padding:15px 0;
  }
  .control-label {
    width:30%;
  }
  .contentImg {
    width:100%;
  }
  .gallery .listImg {
    padding:5px;
  }
  .gallery .listImg img {
      width:100%;
      height:auto;
  }

  .contentSliderItem .flexbox {
    flex-wrap:wrap;
    position: relative;
  }
  .contentSliderItem .flex_item {
    width:100%;
  }
  .contentSliderTxt, .contentSliderTxt.blue  {
    background:rgba(0,84,122,0.4);
    transition:all 0.4s ease;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
  }
  .fullImg .contentSliderImg {
    background-size:auto auto !important;
  }
  .fullImg .contentSliderTxt {
    padding:30px 60px 30px 30px;
  }
  .contentSliderTxt:hover, .contentSliderTxt.blue:hover, .contentSliderTxt:focus, .contentSliderTxt.blue:focus  {
    background:rgba(0,84,122,0.7);
  }
  .vaucherForm {
    width:100%;
  }
  .form-control {
    width:70%;
  }
  #yform-vaucherForm-mwst .form-control, #yform-vaucherForm-price .form-control {
    width:30%;
  }
}
@media screen and (max-width:600px) {

  .form-group {
    flex-wrap:wrap;
  }
  .form-control, .control-label {
    width:100%;
  }
  .control-label {
    padding:5px 0;
        text-align: left;
  }
  .rex-yform .btn {
    margin-left:0;
  }
  .formcheckbox label, .yform .btn {
    margin-left:0;
  }
  .CatNav .flex_item {
    width:100%;
  }
  .CatNav .navBtn {
    display:block;
    text-align: center;
  }
  .flexbox.txtImg {
    flex-wrap: wrap;
  }
  .txtImg .flex_item {
    padding:15px 0;
  }
  .imgLIst, .images {
    width:100%;
    text-align: center;
  }
  .gallery .flex-25, .gallery .flex-33 {
    width:50%;
  }
  .sliderTxtInner p, .parallaxTxt {
    font-size:1.2em;
  }
  .footer .flexbox {
    flex-wrap:wrap;
  }
  .footer .flex_item {
    width:100%;
  }
  .navFooter ul {
    display:flex;
    justify-content: center;
    padding:0;
    margin:0;
  }
  .navFooter li {
    padding:5px 15px;
  }
  .navFooter {
    position: relative;
  }
  .navFooter::before {
    content:'';
    position: absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  }
}
@media screen and (max-width:500px) {
   .sliderItem, .headSliderSub .sliderItem {
      height:300px;
  }
}
 @media screen and (max-width:380px) {

    .logo img {
        height:120px;
    }

}