* {
  font-family: "montserratregular", sans-serif;
  box-sizing: border-box;
}

html,
body {
  --background: white;
  --main: rgb(48, 123, 173);
  --mainfaint: rgb(248, 248, 252);
  --accent: #54b0cc;
  --error: #cc5454;
  --textLight: #bfbfbf;
  --textDark: #333333;
  --gradient: linear-gradient(to right, var(--main) 20%, var(--accent) 150%);
  --boxShadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  --border: 3px solid var(--main);
  --lineHeight: 1.8rem;
  --borderRLarge: 26px;
  --borderRSmall: 3px;
  --navSize: 100vw;
  --margin: 2rem;
  --bodySize: 100vw;
  --cont: calc(var(--profilImg) + var(--margin));
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media only screen and (min-width: 800px) {
  html,
  body {
    --navSize: 800px;
    --margin: 3rem;
    --bodySize: 800px;
  }
}
@media only screen and (min-width: 1200px) {
  html,
  body {
    --navSize: 1100px;
    --margin: 4rem;
    --bodySize: 1100px;
  }
}
html a,
body a {
  text-decoration: none;
}
html p,
body p {
  line-height: var(--lineHeight);
}
html h2,
html h3,
body h2,
body h3 {
  font-size: 1rem;
}

body {
  position: relative;
  min-height: 100vh;
  width: 99.3vw;
  background-color: var(--mainfaint);
}
body section {
  position: relative;
  width: var(--bodySize);
  margin: auto;
  border-left: none;
  border-right: none;
}
@media screen and (min-width: 600px) {
  body section {
    border-left: var(--border);
    border-right: var(--border);
  }
}

.break {
  width: 100%;
  height: 1px;
  display: block;
  clear: both;
}

.buffer {
  width: 100%;
  height: 6rem;
  display: block;
  clear: both;
}

.hide {
  display: none;
}

.show {
  display: block;
}

@media only screen and (min-width: 800px) {
  .hide {
    display: block;
  }
}
.imgLeft,
.imgRight {
  max-width: 100%;
  min-width: 250px;
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 2rem;
  float: left;
  border-top: var(--border);
  border-bottom: var(--border);
}
@media screen and (min-width: 600px) {
  .imgLeft,
  .imgRight {
    max-width: 40%;
    min-width: 200px;
    min-height: 270px;
  }
}

.imgLeft {
  float: left;
  margin-left: 0;
  border-radius: var(--borderRSmall);
}

.imgRight {
  float: right;
  margin-right: 0;
  border-radius: var(--borderRSmall);
}

header {
  position: relative;
  max-height: 230px;
}
header img {
  max-height: 230px;
  min-height: 230px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header span {
  position: absolute;
  font-family: "amatic_scregular";
  bottom: 2rem;
  left: 2rem;
  font-size: 4rem;
  color: white;
  font-weight: 400;
}

nav {
  width: 100%;
  overflow: hidden;
  background-color: var(--main);
}
nav a,
nav .icon {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 1rem 2rem 1rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  min-width: 19%;
  /* background-color: var(--main); */
  text-transform: uppercase;
  transition: all 600ms ease;
}
nav a img,
nav .icon img {
  width: 100%;
  min-width: 30px;
}

nav a:hover,
footer a:hover {
  /* background-color: var(--accent); */
  color: white;
}

nav a.active {
  background-color: #4caf50;
  color: white;
}

nav .icon {
  display: none;
  color: white;
}

@media screen and (max-width: 600px) {
  nav a:not(:first-child) {
    display: none;
  }
  nav a.icon {
    float: right;
    display: block;
    margin-top: -0.5rem;
  }
}
@media screen and (max-width: 600px) {
  nav.responsive {
    position: relative;
  }
  nav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1rem 4rem 1rem 2rem;
  }
  nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
main {
  padding: var(--margin);
  width: 100%;
  background-color: var(--background);
  border-radius: var(--borderRSmall);
}
main p {
  text-align: justify;
}

footer {
  width: 100%;
  overflow: hidden;
  background-color: var(--main);
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  footer {
    padding-bottom: 2.75rem;
  }
}
footer a {
  float: right;
  padding: 1rem 1.5rem;
  color: white;
}

.wave-container {
  position: fixed;
  z-index: -200;
  width: 100vw;
  bottom: -20%;
}

@keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
.wave-container > svg {
  display: block;
}

.sectionTitle {
  width: 100%;
  background-color: var(--main);
  padding: 0.5rem 2rem;
  color: white;
  display: block;
  clear: both;
  border-radius: var(--borderRSmall);
  margin-bottom: 2rem;
  font-family: "amatic_scregular";
  font-size: 2rem;
}

.gallery {
  display: block;
  clear: both;
  width: 100%;
  max-height: 200vh;
  overflow: scroll;
}
.gallery .thumbnail {
  width: 100%;
  max-width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
  border-radius: var(--borderRSmall);
  border-top: var(--border);
  border-bottom: var(--border);
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .gallery .thumbnail {
    width: 200px;
    max-width: 45%;
    height: 240px;
  }
}
.gallery .thumbnail:hover {
  box-shadow: 0 0 4px var(--main);
}

#pageUp {
  position: fixed;
  bottom: 2em;
  right: 2em;
  width: 55px;
  height: 55px;
  padding: 15px;
  background-color: var(--main);
  color: white;
  cursor: pointer;
  border-radius: var(--borderRSmall);
  opacity: 0;
  transition: opacity 1s;
  z-index: 20;
}
#pageUp img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.directLinks {
  background-color: var(--main);
  width: calc(var(--bodySize) - 3px);
  position: fixed;
  display: flex;
  justify-content: space-around;
  top: auto;
  bottom: 0;
  z-index: 1;
}
@media only screen and (min-width: 900px) {
  .directLinks {
    top: 0;
    bottom: auto;
  }
}
.directLinks a {
  color: white;
  padding: 1rem 0;
  font-size: 0.9rem;
}
@media screen and (min-width: 600px) {
  .directLinks a {
    padding: 0.75rem 0;
  }
}
.directLinks a a:hover {
  color: var(--mainfaint);
}
.directLinks a i {
  padding-right: 1rem;
}

.contactBox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2rem;
}

.contact,
#contactForm {
  width: 100%;
  padding: 0;
  margin: 0;
}

.contact a {
  color: black;
}

input[type=text],
input[type=date],
textarea,
#wohnung,
#erwachsene,
#kinder {
  width: 100%;
  display: block;
  padding: 5px;
}

tr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 100%;
  margin-bottom: 1rem;
}

th {
  padding-right: 1rem;
}

label {
  font-weight: normal;
  width: 100%;
  padding: 5px;
  text-align: right;
  display: block;
}

.pageNav {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 0 0 2rem 0;
}
@media screen and (min-width: 600px) {
  .pageNav {
    flex-direction: row;
  }
}
.pageNav a {
  color: var(--main);
  text-align: center;
  font-family: "amatic_scregular";
  font-size: 2.4rem;
  font-weight: bold;
  text-decoration: underline;
  padding: 0.5rem 0;
}
@media screen and (min-width: 600px) {
  .pageNav a {
    padding: 0;
  }
}

.priceTable {
  border: 3px solid var(--main);
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  font-size: 0.85rem;
}
@media screen and (min-width: 600px) {
  .priceTable {
    font-size: 1rem;
  }
}
.priceTable tr {
  margin: 0;
  width: 100%;
  display: inline-block;
  border: 1px solid var(--main);
}
.priceTable td,
.priceTable th {
  padding: 5px 4px;
  margin: 0;
  width: 32%;
  max-width: 32%;
  min-width: 32%;
  display: inline-block;
}
.priceTable tbody td {
  text-align: center;
  padding: 2rem 0;
}
.priceTable thead {
  background: var(--main);
  border-bottom: 3px solid var(--main);
}
.priceTable thead th {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

.btn {
  background-color: var(--main);
  background-image: var(--gradient);
  outline: none;
  border: none;
  color: white;
  border-radius: 36px;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
  cursor: pointer;
}
.btn span {
  padding: 0;
  margin: 0;
}

.btn:hover {
  color: white;
  animation: shadow-pulse 2s infinite;
}

#popup {
  position: absolute;
  max-width: 90%;
  z-index: 300;
  right: 1em;
  top: 3rem;
  padding: 0.5rem 2rem;
  color: white;
  background-color: var(--main);
  border-radius: var(--borderRSmall);
  border: 2px solid white;
  transition: opacity 1s;
  pointer-events: none;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar:horizontal {
  display: none;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--mainfaint);
}

nav::-webkit-scrollbar {
  width: 0px;
}

noscript + img {
  display: none;
}

.icon {
  filter: invert(98%) sepia(98%) saturate(0%) hue-rotate(346deg) brightness(101%) contrast(104%);
  height: 35px;
  width: 35px;
}

.iconSmall {
  height: 1rem;
  width: 1rem;
  margin: 0.25rem 0.75rem 0 1rem;
}

#cookieContainer {
  width: 100%;
  z-index: 900000;
  min-height: 170px;
  padding-top: 0.5rem;
  background-color: #e9e9e9;
  position: fixed;
  bottom: 0;
  text-align: center;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
}
#cookieContainer button {
  padding: 1rem 3rem;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  margin: 0.5rem;
}
#cookieContainer button:hover {
  filter: brightness(110%) saturate(90%);
}
#cookieContainer #cookieBtnAgree {
  background-color: var(--main);
  color: #ebeff4;
}
#cookieContainer #cookieBtnDeny {
  background-color: gray;
  color: white;
}

.hr {
  height: 1px;
  font-size: 1px;
  cursor: default;
  outline: none;
  border: none;
  opacity: 0;
}/*# sourceMappingURL=main.css.map */