@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Light.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Light.woff') format('woff'),
        url('../fonts/SourceSansPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Regular.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Regular.woff') format('woff'),
        url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/SourceSansPro-SemiBoldItalic.woff') format('woff'),
        url('../fonts/SourceSansPro-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-LightItalic.woff2') format('woff2'),
        url('../fonts/SourceSansPro-LightItalic.woff') format('woff'),
        url('../fonts/SourceSansPro-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-SemiBold.woff2') format('woff2'),
        url('../fonts/SourceSansPro-SemiBold.woff') format('woff'),
        url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Italic.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Italic.woff') format('woff'),
        url('../fonts/SourceSansPro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Black.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Black.woff') format('woff'),
        url('../fonts/SourceSansPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box; /* Safari/Chrome, andere WebKit-Browser */
    -moz-box-sizing: border-box; /* Firefox, andere Gecko-Browser */
    box-sizing: border-box; /* Opera/IE 8+ */
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
    background-color: #ffffff;
    font-family: 'Source Sans Pro';
    font-weight: normal;
    font-style: normal;
    color: #000000;
}
.pagewrap {
	float:left;
	width:100%;
	height:100vh;
	position:relative;
	
}
.header {
    float: left;
    width: 100%;
    height: auto;
    position: relative;
    background: #ffffff;
    padding: 0;
}
.header_wrap {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 20px;
}
.header a {
    outline: none;
}
.header .logo {
    float: left;
    width: 250px;
    height: auto;
    margin: 20px 0 10px 0;
}
.header .logo img {
    width: 100%;
    height: auto;
    display: block;
}
.header .rechts {
    float: left;
    width: 100%;
    height: auto;
    margin: 10px 0px 20px 0px;
    position: relative;
}
.header .suchbereich {
    float: right;
    width: 200px;
    height: auto;
    margin: 14px 0 0 0;
}
.header .suchbereich input {
    float: left;
    width: calc(100% - 40px);
    height: 34px;
    padding: 5px 10px;
    font-size: 15px;
    line-height: 22px;
    font-weight: normal;
    background: #ffffff;
    outline: none;
    box-shadow: none;
    border: solid 1px #999999;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.header .suchbereich button {
    float: left;
    width: 40px;
    height: 34px;
    background-color: #ffffff;
    background-image: url(../img/icon_search.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 16px;
    outline: none;
    box-shadow: none;
    border: solid 1px #999999;
    border-left: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 0.3s ease;  
}
.header .suchbereich button:hover {
    background-size: 20px;
}
.header .buchungshotline {
    float: left;
    width: auto;
    height: auto;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    background-image: url(../img/icon_hotline.png);
    background-position: 0px 6px;
    background-repeat: no-repeat;
    background-size: 22px;
    margin: 11px 20px 0 0;
    padding: 0 0 1px 30px;
}
.header .buchungshotline a {
    outline: none;
    text-decoration: none;
    color: #000000;
}
.header .buchungshotline .tel {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
}
.header .buchungshotline a:hover {
    color: #008cd3;
}
.menu_icon {
	position:absolute;
	right:20px;
	top:20px;
	width:50px;
	height:50px;
	display:block;
	z-index:999;
	transition:all 0.3s ease;
}
.menu_icon.active {
	position:absolute;
	right:20px;
	top:20px;
	width:50px;
	height:50px;
	display:block;
	z-index:999;
	transition:all 0.3s ease;
}
.menu_icon label {
	display:flex;
	flex-direction:column;
	width:50px;
	cursor:pointer;
	padding:6px 0px;
	transition:all 0.2s linear;
}
.menu_icon label span{
    width: 100%;
  background: #008cd3;
  border-radius:2px;
  height:2px;
  margin: 5px 0;
  transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.menu_icon label span:nth-child(1){
  width:90%;
  margin: 5px 0px 5px 10%;
}
.menu_icon label span:nth-child(2){
  width:100%;
  margin: 5px 0px 5px 0%;
  background: #008cd3;    
}
.menu_icon label span:nth-child(3){
  width:100%;
  margin: 5px 0% 5px 0%;
  background: #008cd3;
}
.menu_icon label span:nth-child(4){
  width:100%;
  margin: 5px 0px 5px 0%;
  background: #008cd3;
}
.menu_icon input[type="checkbox"]{
  display:none;
}
.menu_icon label:hover span:nth-child(2){
  width:80%;
  margin: 5px 0px 5px 20%;
}
.menu_icon label:hover span:nth-child(3){
  width:80%;
  margin: 5px 20% 5px 0%;
}
.menu_icon label:hover span:nth-child(4){
  width:90%;
  margin: 5px 0px 5px 10%;
}
.menu_icon input[type="checkbox"]:checked ~ span:nth-of-type(1){
  transform-origin:bottom;
  transform:rotatez(45deg) translate(8px,8px);
  width:100%;
  margin: 5px 0px 5px 0%;
  height:3px;
  background: #ffffff;
}
.menu_icon input[type="checkbox"]:checked ~ span:nth-of-type(2){
  width:0%;
  background:none;
}
.menu_icon input[type="checkbox"]:checked ~ span:nth-of-type(3){
  transform-origin:top;
  transform:rotatez(-45deg) translate(8px,-8px);
  width:100%;
  margin: 5px 0px 5px 0%;
  height:3px;
  background: #ffffff;
}

.navigation {
    right: 0;
    top: 0;
    float:none;
	position:fixed;
	width:100%;
	height:100vh;
    min-height: 100vh;
	margin:0px;
	padding:80px 30px 20px 30px;
	background:#008cd3;
	opacity:1;
	transition:all 0.3s ease;
	transform:translateX(120%);
    z-index: 990;
}
.navigation.active {
    right: 0;
    top: 0;
    float:none;
	position:fixed;
	width:100%;
	height:100vh;
    min-height: 100vh;
	margin:0px;
	padding:80px 30px 20px 30px;
	/*background:rgba(255,43,88,0.88);*/
    background:#008cd3;
	opacity:1;
	transition:all 0.5s ease;
	transform:translateX(0);
    z-index: 990;
}
.navigation ul {
    list-style: none;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
}
.navigation ul li {
    float: left;
    width: 100%;
    height: auto;
    margin: 20px 0;
    list-style: none;
    text-align: center;
}
.navigation ul li a {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: 22px;
    line-height: 32px;
    text-decoration: none;
    outline: none;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.75;
    transition: all 0.4s ease;
}
.navigation ul li a:hover {
    opacity: 1;
    color: #ffe119;
}
.navigation ul li .icon {
    float: left;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0 11px 0 0;
}
.navigation ul li .icon img {
    width: 100%;
    height: auto;
    display: block;
}



.teaser {
    float: left;
    width: 100%;
    height: auto;
    position: relative;
}
.teaser .bildblock {
    float: left;
    width: 26%;
    height: 140px;
    margin: 0;
    object-fit: cover;
}
.teaser .block_eins {
    float: left;
    width: 18%;
    height: 140px;
    margin: 0;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}
.teaser .block_zwei {
    float: left;
    width: 32%;
    height: 140px;
    margin: 0;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}
.teaser .block_drei {
    float: left;
    width: 18%;
    height: 140px;
    margin: 0;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}
.teaser .block_vier {
    float: left;
    width: 32%;
    height: 140px;
    margin: 0;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}
.teaser .block_fuenf {
    float: left;
    width: 23%;
    height: 140px;
    margin: 0;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    display: none;
}
.teaser .box {
    float: left;
    width: 100%;
    height: 140px;
    background-size:cover;
	background-repeat:no-repeat;
	background-position:50% 50%;
}
.teaser .box img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.reisefinder_start {
    float: left;
    margin: 15px 20px 15px 20px;
    width: calc(100% - 40px);
    height: auto;
    background: #008cd3;
    z-index: 950;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    transform: translateX(0%);
}
.reisefinder_start .top {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    padding: 9px 14px;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #2f2583;
}
.reisefinder_start .innen {
    float: left;
    width: 100%;
    height: auto;
    padding: 4px 14px 13px 14px;
}
.reisefinder_start .form_wrap {
    float: left;
    width: 100%;
    height: auto;
    margin: 4px 0% 10px 0;
}

.reisefinder_start label {
    float: left;
    width: 100%;
    height: auto;
    color: #ffffff;
    font-size: 14px;
    line-height: 16px;
    margin: 2px 0 0 0;
    padding: 0 0 0 2px;
}
.reisefinder_start select {
    float: left;
    width: 100%;
    height: 34px;
    padding: 0 6px;
    font-size: 15px;
    background: #ffffff;
    border:solid 1px #ffffff;
    transition: all 0.3s ease;
}
.reisefinder_start select:hover, .reisefinder_start select:focus {
    border:solid 1px #ffe119;
    background: #ffe119;
}

.bereich_wrap {
    float: left;
    width: 100%;
    height: auto;
    margin: 0px 0px 0px 0px;
}
.bereich_links {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
}
.bereich_rechts {
    float: left;
    width: 100%;
    height: auto;
}

.start_wrapper {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 20px;
}
.start_slick_boxen {
    float: left;
    width: calc(100% - 50px);
	height: auto;
	margin: 0px 25px 0px 25px;
    position: relative;
    overflow-y: visible;
}
.start_reisen_slick_bereich {
    float: left;
    width: 100%;
    height: auto;
    padding: 10px 20px 10px 20px;
    margin: 0px 0;
    position: relative;
}
.box_slick_next {
	position: absolute;
	top: calc(50% - 16px);
	right: 0px;
	width: 32px;
	height: 32px;
	text-align: center;
	text-decoration: none;
	background: url("../img/slide_nav_next_arr.png") no-repeat center center;
	background-size: 32px;
	opacity: 0.6;
	transition:all 0.2s linear;
	outline: none;
}
.box_slick_next:hover {
	opacity: 1;
	cursor: pointer;
}
.box_slick_prev {
	position: absolute;
	top: calc(50% - 16px);
	left: 0px;
	width: 32px;
	height: 32px;
	text-align: center;
	text-decoration: none;
	background: url("../img/slide_nav_prev_arr.png") no-repeat center center;
	background-size: 32px;
	opacity: 0.6;
	transition:all 0.2s linear;
	outline: none;
}
.box_slick_prev:hover {
	opacity: 1;
	cursor: pointer;
}
.start_bereich_reisen {
    float: left;
    width: 100%;
    height: auto;
    margin: 40px 0 10px 0;
}
.start_bereich_reisen .reisebox {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0px;
    padding: 0px;
    display: flex;
}

.start_bereich_reisen .reisebox .bild {
    float: left;
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 0px;
}
.start_bereich_reisen .reisebox .bild img {
    object-fit: cover;
    width: 100%;
    height: 250px;
}
.start_bereich_reisen .reisebox .daten {
    float: left;
    display: flex;
    width: 100%;
    height: auto;
    padding: 20px 30px 35px 30px;
    align-items:center;
    background: #ebf4f9;
    border: solid 1px #ebf4f9;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 0px;
    border-left: none;
}
.start_bereich_reisen .reisebox .daten .innen {
    width: 100%;
    height: auto;
}
.start_bereich_reisen .reisebox .daten .innen .datum {
    float: left;
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
    color: #000000;
    margin: 0 0 2px 0;
    padding: 0;
}
.start_bereich_reisen .reisebox .daten .innen h2 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 900;
    color: #000000;
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 4px 0;
    padding: 0;
}
.start_bereich_reisen .reisebox .daten .innen h3 {
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #000000;
}
.start_bereich_reisen .reisebox .daten .innen .preis {
    float: left;
    width: 100%;
    height: auto;
    font-size: 22px;
    line-height: 30px;
    font-weight: 900;
    color: #008cd3;
    margin: 5px 0 0px 0;
    padding: 0;
}
.start_bereich_reisen .reisebox .daten .buttons {
    float: left;
    width: 100%;
    height: auto;
    margin: 20px 0 0 0;
}
.start_bereich_reisen .reisebox .daten .buttons .merken {
    float: left;
    width: auto;
    height: auto;
    padding: 11px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    outline: none;
    background: #cccccc;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0 16px 0 0;
    transition: all 0.3s ease;
}
.start_bereich_reisen .reisebox .daten .buttons .merken:hover {
    background: #aaaaaa;
}
.start_bereich_reisen .reisebox .daten .buttons .details {
    float: left;
    width: auto;
    height: auto;
    padding: 11px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    outline: none;
    background: #008cd3;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}
.start_bereich_reisen .reisebox .daten .buttons .details:hover {
    background: #2f2583;
}
.start_bereich_btn_allereisen {
    float: left;
    width: 100%;
	height: auto;
	margin: 10px 0px 55px 0px;
    text-align: right;
}
.start_bereich_btn_allereisen a {
    outline: none;
    text-decoration: underline;
    color: #008cd3;
    font-size: 14px;
    line-height: 22px;
}
.start_bereich_btn_allereisen a:hover {
    color: #000000;
}

.start_bereich_text {
    float: left;
    width: 100%;
    height: auto;
    margin: 0px 0 40px 0;
    background: #ffffff;
    border: solid 1px #cccccc;
    padding: 25px 25px 10px 25px;
    border-radius: 10px;
}
.start_bereich_text p {
    float: left;
    width: 100%;
    height: auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    margin: 0 0 16px 0;
}
.start_bereich_text strong {
    font-weight: 600;
}
.box_katalog_anfordern {
    float: left;
    width: 100%;
    height: auto;
    background: #2f2583;
    border:solid 1px #2f2583;
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
    text-align: left;
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 50px 0;
}
.box_katalog_anfordern .bild {
    float: left;
    width: 140px;
    height: auto;
}
.box_katalog_anfordern .bild img {
    width: 100%;
    height: auto;
    display: inline-block;
    transform: rotate(-3deg);
}
.box_katalog_anfordern .text {
    float: left;
    width: calc(100% - 140px);
    height: auto;
    margin: 0 0 0 0;
    padding: 0 0 0 35px;
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    hyphens: auto;
}
.box_katalog_anfordern .text strong {
    float: left;
    width: 100%;
    height: auto;
    font-weight: 900;
    font-size: 26px;
    line-height: 32px;
    margin: 0 0 6px 0;
}
.box_katalog_anfordern .text .button {
    float: left;
    width: 100%;
    height: auto;
    margin: 20px 0 15px 0;
}
.box_katalog_anfordern .text .button a {
    float: left;
    width: 100%;
    height: auto;
    padding: 10px;
    background: #008cd3;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-decoration: none;
    outline: none;
    color: #ffffff;
    transition: all 0.3s ease;
}
.box_katalog_anfordern .text .button a:hover {
    background: #ffffff;
    color: #2f2583;
}

.box_reisegutschein_anfordern {
    float: left;
    width: 100%;
    height: auto;
    background-color: #2f2583;
    background-image: url(../img/gutschein.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 29px 50%;
    border-radius: 10px;
    padding: 0 0 0 190px;
    text-align: left;
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 50px 0;
}
.box_reisegutschein_anfordern .bild {
    float: left;
    width: 36%;
    height: auto;
    margin: 0;
    padding: 0;
}
.box_reisegutschein_anfordern .bild img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 !important;
    padding: 0 0 0 10px;
}
.box_reisegutschein_anfordern .text {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    padding: 20px 30px 30px 0px;
    hyphens: auto;
}
.box_reisegutschein_anfordern .text strong {
    float: left;
    width: 100%;
    height: auto;
    font-weight: 900;
    font-size: 26px;
    line-height: 32px;
    margin: 0 0 6px 0;
}
.box_reisegutschein_anfordern .text .button {
    float: left;
    width: 100%;
    height: auto;
    margin: 20px 0 15px 0;
}
.box_reisegutschein_anfordern .text .button a {
    float: left;
    width: 100%;
    height: auto;
    padding: 10px;
    background: #008cd3;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-decoration: none;
    outline: none;
    color: #ffffff;
    transition: all 0.3s ease;
}
.box_reisegutschein_anfordern .text .button a:hover {
    background: #ffffff;
    color: #2f2583;
}
#flex-container {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#flex-container-us {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.kat_links_bereich {
    float: left;
    width: 100%;
    height: auto;
    margin: 30px 0 30px 0;
    text-align: center;
}
.kat_links_bereich ul {
    float: left;
    width: 100%;
    height: auto;
    list-style: none;
}
.kat_links_bereich ul li {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 10px 3px;
    margin: 2px 0;
    border-right: none;
}
.kat_links_bereich ul li:last-of-type {
    border-right: none;
}
.kat_links_bereich ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    padding: 6px 6px;
    outline: none;
    background: #008cd3;
    border-radius: 3px;
}
.kat_links_bereich ul li a:hover {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    background: #008cd3;
    border-radius: 3px;
}

.footer_logos_bereich {
    float: left;
    width: 100%;
    height: auto;
    margin: 30px 0 30px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo_lho {
    display: inline-block;
    width: 125px;
    height: auto;
    margin: 0 10px 0 0px;
    padding: 8px;
    border-radius: 6px;
    border: solid 1px #ffffff;
    transition: all 0.3s ease;
    filter: grayscale(1);
}
.logo_lho img {
    width: 100%;
    height: auto;
}
.logo_lho:hover {
    border: solid 1px #008cd3;
    filter: grayscale(0);
}
.logo_gb {
    display: inline-block;
    width: 210px;
    height: auto;
    margin: 0 10px 0 5px;
    padding: 8px;
    border-radius: 6px;
    border: solid 1px #ffffff;
    transition: all 0.3s ease;
    filter: grayscale(1);
}
.logo_gb img {
    width: 100%;
    height: auto;
}
.logo_gb:hover {
    border: solid 1px #008cd3;
    filter: grayscale(0);
}
.logo_fb {
    display: inline-block;
    width: 55px;
    height: auto;
    margin: 0 0px 0 3px;
    padding: 8px;
    border-radius: 6px;
    border: solid 1px #ffffff;
    transition: all 0.3s ease;
    filter: grayscale(1);
}
.logo_fb img {
    width: 100%;
    height: auto;
}
.logo_fb:hover {
    border: solid 1px #008cd3;
    filter: grayscale(0);
}

.footer {
    float: left;
    width: 100%;
    height: auto;
    padding: 50px 20px 60px 20px;
    background: #008cd3;
    margin: 20px 0 0 0;
}
.footer .blocka {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0% 60px 0;
    padding: 0 0px 0 0;
}
.footer .blockb {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0% 50px 0%;
    padding: 0 0px 0 0;
}
.footer .blockc {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 50px 0;
    padding: 0 0px 0 0;
}
.footer .blockd {
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 0px 0 0;
}
.footer .fhead {
    float: left;
    width: 100%;
    height: auto;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #ffffff;
    background: #2f2583;
    padding: 5px 10px;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer .ftext_kontakt {
    float: left;
    width: 100%;
    height: auto;
    font-size: 17px;
    line-height: 32px;
    font-weight: normal;
    color: #ffffff;
    padding: 0 10px;
}
.footer .ftext_kontakt a {
    outline: none;
    text-decoration: none;
    color: #ffffff;
}
.footer .ftext_kontakt a:hover {
    text-decoration: underline;
}
.footer .ftext {
    float: left;
    width: 100%;
    height: auto;
    font-size: 17px;
    line-height: 32px;
    font-weight: normal;
    color: #ffffff;
    padding: 0 0px;
}
.footer .ftext ul {
    float: left;
    width: 100%;
    height: auto;
    list-style: none;
}
.footer .ftext ul li {
    float: left;
    width: 100%;
    height: auto;
    margin: 0px 0 15px 0;
}
.footer .ftext ul li a {
    text-decoration: none;
    color: #ffffff;
    outline: none;
    padding: 5px 10px 5px 25px;
    background-image: url(../img/icon_farrow.png);
    background-position: 8px 50%;
    background-repeat: no-repeat;
    background-size: 12px;
    font-size: 18px;
    line-height: 32px;
    border: solid 1px #008cd3;
    border-radius: 5px;
}
.footer .ftext ul li a:hover {
    text-decoration: none;
    cursor: pointer;
    background-image: url(../img/icon_farrow_white.png);
    background-position: 8px 50%;
    background-repeat: no-repeat;
    background-size: 12px;
    border: solid 1px #ffffff;
    border-radius: 5px;
}
.footer_unten {
    float: left;
    width: 100%;
    height: auto;
    padding: 30px 40px;
    background: #2f2583;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    font-weight: normal;
}
.footer_unten .seitenanfang {
    float: left;
    width: 100%;
    height: auto;
    margin: 40px 0 0 0;
}
.footer_unten a {
    color: #ffffff;
    text-decoration: underline;
    outline: none;
    font-size: 16px;
    line-height: 24px;
}

.us_wrap {
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px 20px;
}

.reise_titelbereich {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
}
.reise_titelbereich .bild {
    float: left;
    width: 100%;
    height: 250px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0px;
}
.reise_titelbereich .leistungen {
    float: left;
    width: 100%;
    height: auto;
    background: #eeeeee;
    padding: 20px 27px 24px 27px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 10px;
}
.reise_titelbereich .leistungen .head {
    float: left;
    width: 100%;
    height: auto;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    color: #2f2583;
}
.reise_titelbereich .leistungen ul {
    float: left;
    width: 100%;
    height: auto;
    list-style: none;
    margin: 0 0 20px 0;
}
.reise_titelbereich .leistungen ul li {
    float: left;
    width: calc(100% - 15px);
    height: auto;
    list-style: disc outside;
    margin: 0 0 12px 15px;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
}
.reise_titelbereich .leistungen p {
    float: left;
    width: 100%;
    height: auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
}
.reise_textbereich {
    float: left;
    width: 100%;
    height: auto;
}
.reise_optbereich {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
    padding: 0 0 0 0px;
}
.reise_textbereich .ihrereise {
    float: left;
    width: 100%;
    height: auto;
    color: #2f2583;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.reise_textbereich h1 {
    float: left;
    width: 100%;
    height: auto;
    color: #000000;
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    margin: 0 0 5px 0;
    padding: 0;
    text-transform: uppercase;
}
.reise_textbereich h2 {
    float: left;
    width: 100%;
    height: auto;
    color: #000000;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}
.reise_textbereich h3 {
    float: left;
    width: 100%;
    height: auto;
    color: #666666;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.reise_textbereich p {
    float: left;
    width: 100%;
    height: auto;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    margin: 0 0 15px 0;
}
.reise_textbereich .rahmen {
    float: left;
    width: 100%;
    height: auto;
    border: solid 1px #cccccc;
    border-radius: 8px;
    padding: 15px 15px;
    margin: 15px 0 15px 0;
}
.reise_textbereich .rahmen strong {
    font-weight: 600;
    color: #2f2583;
}
.reise_textbereich .rot {
    color: #e30613;
    font-weight: 600;
}
.reise_textbereich a {
    outline: none;
    text-decoration: none;
    color: #008cd3;
}
.reise_textbereich a:hover {
    text-decoration: underline;
}
.preise_box {
    float: left;
    width: 100%;
    height: auto;
    padding: 10px 15px 5px 15px;
    border: solid 1px #aaaaaa;
    background: #ffffff;
    margin: 5px 0 20px 0;
    border-radius: 6px;
}
.preise_box .head {
    float: left;
    width: 100%;
    height: auto;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: #2f2583;
    margin: 0 0 5px 0;
}
.preise_box .datum {
    float: left;
    width: 100%;
    height: auto;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0px 0;
}
.preise_box .eintrag_wrap {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 0px 0;
}
.preise_box .eintrag {
    float: left;
    width: 65%;
    height: auto;
    font-size: 18px;
    line-height: 26px;
    font-weight: normal;
    color: #000000;
    margin: 0 0 10px 0;
    text-align: left;
}
.preise_box .preis {
    float: left;
    width: 35%;
    height: auto;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0px 0;
    text-align: right;
}

.btn_anfragen {
    float: left;
    width: 100%;
    height: auto;
    padding: 14px 20px;
    background: #008cd3;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.5px;
    border: none;
    margin: 0 0 15px 0;
    outline: none;
    transition: all 0.3s ease;
}
.btn_anfragen:hover {
    cursor: pointer;
    background: #2f2583;
}
.btn_merken {
    float: left;
    width: 100%;
    height: auto;
    padding: 14px 20px;
    background: #777777;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.5px;
    border: none;
    margin: 0 0 15px 0;
    outline: none;
    transition: all 0.3s ease;
}
.btn_merken:hover {
    cursor: pointer;
    background: #2f2583;
}
.btn_drucken {
    float: left;
    width: auto;
    height: auto;
    padding: 10px 10px 10px 43px;
    background-color: #ffffff;
    background-image: url(../img/icon_printer.png);
    background-repeat: no-repeat;
    background-size: 34px;
    background-position: 0 50%;
    color: #333333;
    text-align: left;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    border: none;
    margin: 5px 20px 10px 0;
    outline: none;
    transition: all 0.3s ease;
}
.btn_drucken:hover {
    cursor: pointer;
    text-decoration: underline;
}
.btn_empfehlen {
    float: left;
    width: auto;
    height: auto;
    padding: 10px 10px 10px 43px;
    background-color: #ffffff;
    background-image: url(../img/icon_mail.png);
    background-repeat: no-repeat;
    background-size: 34px;
    background-position: 0 50%;
    color: #333333;
    text-align: left;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    border: none;
    margin: 5px 0 10px 0;
    outline: none;
    transition: all 0.3s ease;
}
.btn_empfehlen:hover {
    cursor: pointer;
    text-decoration: underline;
}
.us_breadcrumbs {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    font-size: 13px;
    line-height: 18px;
    color: #666666;
    font-weight: 600;
}
.us_breadcrumbs .trenner {
    color: #aaaaaa;
    margin: 0 6px;
}
.us_breadcrumbs a {
    color: #999999;
    text-decoration: none;
    outline: none;
    font-weight: normal;
}
.us_breadcrumbs a:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #008cd3;
}

@media only screen and (min-width: 890px) {

.header .logo {
    float: left;
    width: 290px;
    height: auto;
    margin: 20px 0 10px 0;
}
.header .logo img {
    width: 100%;
    height: auto;
    display: block;
}
.header .rechts {
    float: left;
    width: calc(100% - 380px);
    height: auto;
    margin: 15px 20px 20px 0px;
    position: relative;
}
.header .buchungshotline {
    float: right;
    width: auto;
    height: auto;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    background-image: url(../img/icon_hotline.png);
    background-position: 0px 6px;
    background-repeat: no-repeat;
    background-size: 22px;
    margin: 11px 50px 0 0;
    padding: 0 0 1px 30px;
}
.reisefinder_start .form_wrap {
    float: left;
    width: 31.33333333%;
    height: auto;
    margin: 0 3% 0 0;
}
.reisefinder_start .form_wrap:nth-of-type(2n+2) { margin: 0 3% 0 0; }
.reisefinder_start .form_wrap:nth-of-type(3n+3) { margin: 0 0 0 0; }

.box_katalog_anfordern .bild {
    float: left;
    width: 160px;
    height: auto;
}
.box_katalog_anfordern .bild img {
    width: 100%;
    height: auto;
    display: inline-block;
    transform: rotate(-3deg);
}
.box_katalog_anfordern .text {
    float: left;
    width: calc(100% - 160px);
    height: auto;
    margin: 0 0 0 0;
    padding: 30px 0 0 55px;
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    hyphens: auto;
}
.box_reisegutschein_anfordern {
    float: left;
    width: 100%;
    height: auto;
    background-color: #2f2583;
    background-image: url(../img/gutschein.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 35px 50%;
    border-radius: 10px;
    padding: 30px 0 20px 230px;
    text-align: left;
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 50px 0;
}
.box_reisegutschein_anfordern .bild {
    float: left;
    width: 45%;
    height: auto;
    margin: 0;
    padding: 0;
}
.box_reisegutschein_anfordern .bild img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 !important;
    padding: 0 0 0 10px;
}
.footer_logos_bereich {
    float: left;
    width: 100%;
    height: auto;
    margin: 30px 0 30px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo_lho {
    display: inline-block;
    width: 125px;
    height: auto;
    margin: 0 20px 0 0px;
    padding: 8px;
    border-radius: 6px;
    border: solid 1px #ffffff;
    transition: all 0.3s ease;
    filter: grayscale(1);
}
.logo_lho img {
    width: 100%;
    height: auto;
}
.logo_lho:hover {
    border: solid 1px #008cd3;
    filter: grayscale(0);
}
.logo_gb {
    display: inline-block;
    width: 210px;
    height: auto;
    margin: 0 20px 0 15px;
    padding: 8px;
    border-radius: 6px;
    border: solid 1px #ffffff;
    transition: all 0.3s ease;
    filter: grayscale(1);
}
.logo_gb img {
    width: 100%;
    height: auto;
}
.logo_gb:hover {
    border: solid 1px #008cd3;
    filter: grayscale(0);
}
.logo_fb {
    display: inline-block;
    width: 55px;
    height: auto;
    margin: 0 8px 0 8px;
    padding: 8px;
    border-radius: 6px;
    border: solid 1px #ffffff;
    transition: all 0.3s ease;
    filter: grayscale(1);
}
.logo_fb img {
    width: 100%;
    height: auto;
}
.logo_fb:hover {
    border: solid 1px #008cd3;
    filter: grayscale(0);
}
.footer_block_wrap {
    float: left;
    width: 100%;
    height: auto;
}
.footer .blocka {
    float: left;
    width: 48%;
    height: auto;
    margin: 0 2% 50px 0;
    padding: 0 0px 0 0;
}
.footer .blockb {
    float: left;
    width: 48%;
    height: auto;
    margin: 0 0% 40px 2%;
    padding: 0 0px 0 0;
}
.footer .blockc {
    float: left;
    width: 48%;
    height: auto;
    margin: 0 2% 0px 0;
    padding: 0 0px 0 0;
}
.footer .blockd {
    float: left;
    width: 48%;
    height: auto;
    margin: 0;
    padding: 0 0px 0 2%;
}
.reise_titelbereich .bild {
    float: left;
    width: 100%;
    height: 320px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0px;
}
.reise_titelbereich .leistungen ul {
    float: left;
    width: 100%;
    height: auto;
    list-style: none;
    margin: 0 0 20px 0;
}
.reise_titelbereich .leistungen ul li {
    float: left;
    width: calc(100% - 15px);
    height: auto;
    list-style: disc outside;
    margin: 0 0 12px 15px;
    font-size: 17px;
    line-height: 25px;
    font-weight: normal;
}
.reise_titelbereich .leistungen p {
    float: left;
    width: 100%;
    height: auto;
    font-size: 17px;
    line-height: 25px;
    font-weight: normal;
}
}

