/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 
/ 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 
/ 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98


brand color: #26aded
white text: #e9f7fd
black text: #0b3447
background-color 2  #e9f7fd

Shadows:
  box-shadow: 0rem 0.8rem 1.6rem rgba(195, 216, 223, 0.548);
  
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  background-color: #e9f7fd;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  color: #0b3447;
}
/* main fixed header
main {
  margin-top: 7.3rem;
}

*/
/* ********************** */
/* General Reusable Compontents */
/* ********************** */

.no-scroll {
  height: 100vh;
  overflow: hidden !important;
}

.background-white {
  background-color: #fff;
}

.grid--1-cols {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  gap: 5rem;
}
.grid--2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 5rem;
}
.grid--3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 5rem;
}
.grid--4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 5rem;
}
.grid--5-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  gap: 5rem;
}

.standard-text {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.standard-ul {
  list-style: none;
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
}

.standard-li:not(:last-child) {
  margin-bottom: 1rem;
}

.standard-li:before {
  content: "- ";
}

.heading-primary {
  font-size: 4.4rem;
  margin-bottom: 4.4rem;
}

.heading-secondary {
  padding: 1.2rem 0;
  font-size: 3rem;
  font-weight: 600;
  color: #26aded;
}

.heading-tertiary {
  font-weight: 500;
  color: #26aded;
  font-size: 2rem;
  margin-bottom: 2.4rem;
}

.heading-4 {
  font-weight: 500;
  color: #26aded;
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
}

.btn,
.btn:link,
.btn:visited {
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
  text-align: center;
}

.btn--full:link,
.btn--full:visited {
  background-color: #26aded;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #1e8abe;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #08232f;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 3px #fff;
}

.btn-read-more:link,
.btn-read-more:visited {
  text-decoration: none;
  color: #e9f7fd;
  font-weight: 700;
  background-color: #08232f;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-read-more:hover,
.btn-read-more:active {
  background-color: #0f455f;
}

.btn--form {
  background-color: #26aded;
  color: #fff;
  align-self: end;
  padding: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: 0rem 0.8rem 1.6rem rgba(195, 216, 223, 0.548);
}

.header-image-container {
  width: 100%;
  height: auto;
  max-height: 100rem;
  overflow: hidden;
  margin-bottom: 4.4rem;
  transition: all 0.3s ease;
}

.header-image {
  width: 100%;
}

.img-and-text-inhalt {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  justify-content: space-between;
}

.img-and-text-text-box {
  color: #08232f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  font-size: 1.8rem;
}

.img-and-text-text-content {
  margin-top: 1.8rem;
  margin-bottom: 3.2rem;
  line-height: 1.4;
}
.img-and-text-img {
  width: 50%;
  max-width: 40rem;
  border-radius: 12px;
}

.btn--full--small:link,
.btn--full-small:visited {
  text-decoration: none;
  padding: 0.8rem 2.4rem;
  font-weight: 400;
}
.btn--full--small:hover,
.btn--full-small :active {
  color: #e9f7fd;
}

.container {
  max-width: 120rem;
  padding: 8rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  justify-content: center;
  width: 100%;
}

.section {
  display: flex;
  justify-content: center;
}

.margin-bottom-small {
  margin-bottom: 2rem;
}

.margin-bottom-medium {
  margin-bottom: 6rem;
}

.margin-bottom-big {
  margin-bottom: 10rem;
}

.center-text {
  text-align: center;
}
/**********************/
/* Navigation*/
/**********************/

/* header fixed
.header {
  position: fixed;
  width: 100%;
  height: 7.2rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.5rem 3.2rem;
  transition: all 0.3s ease;
  box-shadow: 0rem 0.8rem 1.6rem rgba(195, 216, 223, 0.24);
}

*/

.header {
  position: relative;
  width: 100%;
  height: 7.2rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.5rem 3.2rem;
  transition: all 0.3s ease;
  box-shadow: 0rem 0.8rem 1.6rem rgba(195, 216, 223, 0.24);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-items: center;
  background-color: #fff;
  font-size: 2.4rem;
  padding: 0.3rem 0;
  justify-content: center;
  gap: 4rem;
}

.mobile-nav-logo {
  display: none;
}

.nav-logo {
  height: 6rem;
  width: 6rem;
  display: inline-block;
  justify-self: flex-start;
}

.nav-logo-link {
  display: inline-block;
}

.main-nav-list {
  list-style: none;
  display: flex;
  gap: 3.2rem;
  align-items: center;
  padding: 0 3.2rem;
}
.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  color: #0f455f;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  display: inline-block;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #1e8abe;
}

.header-hidden .header {
  transform: translateY(-7.2rem);
  box-shadow: none;
}

/**********************/
/* Hero*/
/**********************/

.hero {
  background-image: linear-gradient(#2b2b2b4f, #2b2b2b4f),
    url("/Bilder/Home_Hero.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  transition: all 0.3s ease;
}

.hero-inhalt {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  color: #e9f7fd;
  font-size: 2rem;
}
.hero-inhalt-inner {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.heading-header {
  font-size: 5.2rem;
  line-height: 1;
  margin-bottom: 2.4rem;
  letter-spacing: 0px;
}

.hero-text {
  margin-bottom: 3.2rem;
  line-height: 1.2;
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/**********************/
/* Testimonial*/
/**********************/

.testimonial {
  height: 20rem;
  max-width: 80rem;
  padding: 8rem;
  text-align: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #26aded;
  font-weight: bold;
  font-size: 3.6rem;
  justify-self: center;
}

/**********************/
/* USP Section*/
/**********************/

.usp-section-inhalt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}

.usp {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usp-icon {
  font-size: 3.2rem;
  color: #17688e;
  margin-bottom: 2rem;
  align-self: center;
}

.usp-heading {
  color: #26aded;
  font-size: 2rem;
  margin-bottom: 3.2rem;
  letter-spacing: 0px;
}

.usp-text {
  color: #0b3447;
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
}

/**********************/
/* Review section*/
/**********************/

.review-section {
  background-color: #fff;
}

.review-star {
  font-size: 2.4rem;
  color: #fbbe0c;
}

.review-section-inhalt {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-content: space-between;
  margin: auto;
  gap: 2.4rem;
  padding: 8rem;
}

.review-card {
  color: #08232f;
  min-height: 25rem;
  max-width: 25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2em 1.2rem;
  box-shadow: 0rem 0.8rem 1.6rem rgba(195, 216, 223, 0.548);
  border-radius: 12px;
  transition: 0.3s ease;
  line-height: 1.1;
}

.review-card:hover {
  box-shadow: 0rem 0.8rem 2rem rgba(195, 216, 223, 0.623);
  transform: translateY(-10px);
}

.review-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.review-author {
  font-weight: 500;
  margin-bottom: 1.2rem;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-text {
  margin-bottom: 1.6rem;
}

.btn-read-more.rezension-ansehen {
  margin-top: auto;
}

.profile-pic {
  font-size: 2.4rem;
}
/**********************/
/* Product Cards*/
/**********************/

.angebot {
  background-color: white;
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0rem 0.8rem 1.6rem rgba(195, 216, 223, 0.548);
  color: #08232f;
  overflow: hidden;
}

.angebot-bild {
  width: 100%;
}

.angebot-titel {
  font-weight: bold;
  color: #26aded;
  font-size: 2.4rem;
  padding: 1rem 2.4rem;
  text-align: center;
  /* margin-bottom: 12px; */
}

.angebot-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
.angebot-features ul {
  list-style: none;
  text-align: center;
}

.angebot-features li {
  margin-bottom: 12px;
  font-size: 1.8rem;
}
.angebot-buy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2.4rem;
}

.angebot-buy-box p {
  font-weight: bold;
  font-size: 2rem;
}
.buy-box-button {
  display: inline-block;
}

.angebot-buy-box a:link,
.angebot-buy-box a:visited {
  text-decoration: none;
  background-color: #26aded;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  color: #e9f7fd;
  font-weight: bold;
  text-align: center;
}
.angebot-buy-box a:active,
.angebot-buy-box a:hover {
  background-color: #1e8abe;
}

/**********************/
/* Footer*/
/**********************/

.footer {
  background-color: #26aded;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  padding: 3.2rem;
  gap: 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
  column-gap: 4rem;
}
.heading-footer {
  color: #e9f7fd;
  font-size: 2.4em;
  margin-bottom: 2.4rem;
}

.footer-menu {
  list-style: none;
  font-size: 1.8rem;
}

.footer-menu-element {
  margin-bottom: 1rem;
}

.footer-menu-element p {
  font-size: 1.8rem;
  color: #bee6fa;
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.social-icon {
  height: 3rem;
  width: 3rem;
  color: #bee6fa;
}

.footer-logo {
  border-radius: 12px;
  height: 10rem;
  margin-bottom: 2rem;
}

.footer-socials {
  margin-bottom: 2.4rem;
}

.kontaktinfos {
  font-size: 1.8rem;
  color: #bee6fa;
}
.footer-menu-link {
  color: #bee6fa;
}
.footer-menu-link:link,
.footer-menu-link:visited {
  text-decoration: none;
}
.footer-menu-link:hover,
.footer-menu-link :active {
}

.copyright {
  color: #e9f7fd;
}

/**********************/
/* Kontaktformular*/
/**********************/

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.form.container {
  padding-top: 4rem;
}

.form-field {
  border: none;
  height: 6rem;
  padding: 0 3.2rem;
  border-radius: 12px;
  box-shadow: 0rem 0.8rem 1.6rem rgba(195, 216, 223, 0.548);
}

.form-nachricht {
  height: 30rem;
  grid-column: 1/-1;
}

/**********************/
/* Prüfungsanmeldung*/
/**********************/
.form-prüfungsteil,
.form-checkbox {
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
  padding-right: 0px;
  height: 12rem;
}

.form-nachricht--prüfungsanmeldung {
  height: 6rem;
}

.checkboxes {
  display: flex;
  flex-direction: column;
}

/* step section */
.step-number {
  color: #7dcef4;
  font-size: 5.2rem;
  margin-bottom: 2rem;
}

/* Boot details */
.schiff-details-list {
  list-style: none;
}

.schiff-details-list-item {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  font-size: 2rem;
}

.schiff-details-list-item:not(:last-child) {
  margin-bottom: 2rem;
}

.schiff-details-icon {
  font-size: 4.4rem;
  color: #17688e;
}

.iframe {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0rem 0.8rem 1.6rem rgba(195, 216, 223, 0.548);
  min-width: 400px;
  min-height: 400px;
}
