/**
* template:  Shiftify

TABLE OF CONTENTS

        + Global
        + Header
        + Header Content
        + Edge
        + About Us
        + Services
        + Fleet
        + FAQ
        + Booking
        + Contact

*/

@import 'reset.css';
@import 'all.min.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';



@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Space+Grotesk:wght@300..700&display=swap');


@font-face {
    font-family: 'Bebas Neue';
    src: url("../webfonts/BebasNeue.otf")format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Ballet Harmony einbinden */
@font-face {
    font-family: 'Ballet Harmony';
    src: url('../webfonts/Ballet Harmony.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
	--color-gold: #FECC00;
	--color-light-dark: #2f2f2f;
	--color-dark: #232323;
	--color-gray: #dddddd;
	--color-title: #444444;
	--color-white: #ffffff;
}

::-moz-selection {
	background-color: var(--color-gold);
	color: var(--color-white);
}

::selection {
	background-color: var(--color-gold);
	color: var(--color-white);
}

body {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Bebas Neue", sans-serif;
	
	font-style: normal;
	line-height: 1.2;
	color: var(--color-title);
	margin-bottom: 30px;
}

h7 {
	font-family: "Ballet Harmony", sans-serif;

	font-style: normal;
	line-height: 1.2;
	color: var(--color-title);
	margin-bottom: 30px;
}

h1 {
	color: var(--color-white);
	font-size: 40px;
    letter-spacing: 2px;
	
	margin-bottom: 50px;
}

h7 {
	color: var(--color-white);
	font-size: 80px;
	margin-top: -50px;
	margin-bottom: 50px;
}

h2 {
	font-size: 50px;
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

a {
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

img {
	display: block;
	outline: none;
	height: auto;
	margin-left: auto;
  margin-right: auto;

}

.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

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

.social-link li {
	margin-left: 20px;
}

.social-link li a {
	color: var(--color-gray);
}

.social-link li a:hover {
	color: var(--color-gold);
}

.suptitle {
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-family: "Bebas Neue", sans-serif;
	color: var(--color-gold);
	margin-bottom: 20px;
	display: block;
}

.btn {
	padding: 10px 10px;
	text-transform: uppercase;
	color: var(--color-white);
	background-color: var(--color-gold);
	border-radius: 3px;
	border: 1px solid var(--color-gold);
	letter-spacing: 3px;
	margin-bottom: 35px;
}

.btn:hover {
	background-color: var(--color-dark);
}

.ptb {
	padding-top: 100px;
	padding-bottom: 100px;

}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px 20px;
}

#scroll-top:hover {
	background-color: var(--color-dark);
}

#openmenu,
#closemenu {
	color: var(--color-white);
	font-size: 30px;
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-gold);
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
	background-color: var(--color-dark);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#preload img {
	display: block;
	width: 32px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.res-booking {
	display: none;
	font-size: 14px;
	margin-top: 20px;
}

.res-booking .error {
	color: #ff0000;
}

.res-booking .send {
	color: var(--color-white);
}


/**************************************
*
*         HEADER   
*
***************************************/


header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.fixedmenu {
	background-color: var(--color-dark);
}

#logo img {
	max-width: 100%;
}

#logo {
	margin-right: 50px;
}

.wrapper-header {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.wrapper-logo-navigation {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: auto;
  margin-right: auto;
}

.menu li {
	float: left;
	margin-right: 30px;
}

.menu li a {
	color: var(--color-gray);
	font-size: 20px;
	text-transform: uppercase;
	font-family: "Bebas Neue", sans-serif;
	
}

.menu li a:hover {
	color: var(--color-gold);
}


/**************************************
*
*         HEADER CONTENT  
*
***************************************/


.wrapper-header-content {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
	background-attachment: fixed;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 1000px;
}


/**************************************
*
*         EDGE   
*
***************************************/


.edge {
	background-color: var(--color-dark);
}

.wrapper-edge {
	padding-top: 80px;
	padding-bottom: 80px;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.single-edge {
	width: 33.333333%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}

.single-edge span {
	color: var(--color-gold);
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	font-size: 50px;
	float: left;
	margin-right: 20px;
}

.single-edge h3 {
	color: var(--color-white);
	margin-bottom: 10px;
	font-size: 25px;
}


/**************************************
*
*         ABOUT US   
*
***************************************/


.aboutus-img {
	width: 30%;
}

.aboutus-img img {
	width: 100%;
}

.aboutus-content {
	width: 70%;
	padding: 0px 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.aboutus-content p {
	margin-bottom: 20px;
	color: var(--color-dark);
}

.wrapper-singnature {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 50px;
}

.wrapper-singnature>img {
	width: 80px;
	height: auto;
	margin-right: 20px;
	border-radius: 50%;
}

.wrapper-singnature h3 {
	margin-bottom: 0px;
}

.signature-content img {
	max-width: 100px;
}


/**************************************
*
*         SERVICE   
*
***************************************/


#service {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
	background-attachment: fixed;
}

#service h2 {
	color: var(--color-white);
}

.wrapper-services article {
	width: calc(33.333333% - 20px);
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 10px;
}

.wrapper-services article h3 {
	color: var(--color-white);
	margin-bottom: 10px;
	font-size: 25px;
}

.wrapper-services article img {
	max-width: 70px;
	margin: 0 auto;
	margin-bottom: 30px;
}


/**************************************
*
*         FLEET  
*
***************************************/


.single-fleet img {
	margin-bottom: 10px;
}

.fleet-single-content h3 {
	font-size: 18px;
	margin-bottom: 10px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
}

.wrapper-characteristics {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.wrapper-characteristics p {
	margin: 0px 20px;
	color: var(--color-title);
}

.wrapper-characteristics p i {
	color: var(--color-gold);
	margin-right: 10px;
}


/**************************************
*
*         FAQ
*
***************************************/


#faq {
	background-position: left bottom;
	background-size: cover;
	background-attachment: fixed;
}

#faq h2 {
	color: var(--color-white);
}

.faq-block-content {
	width: 55%;
	padding: 100px 20px 100px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.faq-img {
	width: 45%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.faq-img img {
	width: 100%;
}

.wrapper-accordion h3 {
	padding: 20px;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	font-size: 22px;
	text-transform: capitalize;
	color: var(--color-gray);
	border-left: 2px solid var(--color-gold);
	margin-bottom: 0px;
}

.wrapper-accordion h3:hover {
	color: var(--color-gold);
}

.wrapper-accordion h3 i {
	margin-right: 10px;
}

.content-accordion {
	display: none;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--color-gray);
	border-left: 2px solid var(--color-gray);
}

.content-accordion p {
	margin-bottom: 5px;
	color: var(--color-gray);
}

.wrapper-accordion h3 i {
	font-size: 14px;
}


/**************************************
*
*         BOOKING
*
***************************************/


.booking-content {
	width: 50%;
	padding-right: 70px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.booking-content p {
	margin-bottom: 20px;
	color: var(--color-dark);
}

.booking-form {
	width: 50%;
	background-color: var(--color-dark);
}

.wrapper-booking-phone {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 30px 0;
}

.wrapper-booking-phone p {
	margin-bottom: 0px;
	color: var(--color-gold);
}

.wrapper-booking-phone i {
	color: var(--color-gold);
	font-size: 40px;
	margin-right: 10px;
}

.wrapper-booking-phone a {
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	color: var(--color-title);
	font-size: 22px;
}

.wrapper-booking-phone a:hover {
	color: var(--color-gold);
}

.wrapper-app a {
	margin: 10px;
}

.booking-form {
	padding: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.booking-form input {
	border: none;
	outline: none;
	width: 100%;
	
	padding: 20px;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: var(--color-gray);
	color: var(--color-dark);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.booking-form .wrapper-input {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.booking-form .wrapper-input input {
	width: 48%;
}

.booking-form input::-webkit-input-placeholder {
	color: var(--color-dark);
}

.booking-form input::-moz-placeholder {
	color: var(--color-dark);
}

.booking-form input:-ms-input-placeholder {
	color: var(--color-dark);
}

.booking-form input::-ms-input-placeholder {
	color: var(--color-dark);
}

.booking-form input::placeholder {
	color: var(--color-dark);
}

.booking-form input:focus {
	background-color: var(--color-white);
}

.booking-form button {
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}


/**************************************
*
*         CONTACT
*
***************************************/


#contacts {
	background-color: var(--color-dark);
}

#contacts h2 {
	color: var(--color-white);
}

.wrapper-contact>div h3 {
	color: var(--color-white);
	font-size: 25px;
}

.wrapper-contact>div h3 i {
	margin-right: 15px;
	color: var(--color-gold);
	font-size: 20px;
}

.wrapper-contact>div {
	width: 33%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--color-gray);
}

.wrapper-contact>div .social-link li {
	margin-left: 0px;
	margin-right: 20px;
}

.wrapper-contact>div p {
	margin-bottom: 10px;
}

.wrapper-contact>div p a {
	color: var(--color-gray);
}

.wrapper-contact>div p a:hover {
	color: var(--color-gold);
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
	display: block;
}

.copyright {
	background-color: var(--color-dark);
	padding: 30px 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	font-size: 14px;
	color: var(--color-gray);
}


strong {
  font-weight: 700;
}