@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/******** LANDSCAPE **********/
/******** PORTRAIT **********/
#hamburger {
  position: fixed;
  top: 0;
  z-index: 1020;
  right: 0;
}
@media screen and (min-width: 1200px) {
  #hamburger {
    display: none;
  }
}

.icon-wrapper {
  position: absolute;
  top: 2rem;
  right: 1rem;
  background-color: var(--color-primary);
  z-index: 2;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
.icon-wrapper .nav-icon {
  margin: 10px;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.icon-wrapper .nav-icon span {
  background-color: var(--color-secondary);
  position: absolute;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 140%;
  height: 4px;
  transition-duration: 500ms;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 10px;
  left: -15px;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 20px;
  left: 0px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 30px;
  left: -17px;
}
.icon-wrapper .nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.icon-wrapper .nav-icon.open span:nth-child(2) {
  opacity: 0;
}
.icon-wrapper .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}
.icon-wrapper .nav-icon:not(.open):hover span:nth-child(1) {
  transform: translateY(-4px);
}
.icon-wrapper .nav-icon:not(.open):hover span:nth-child(3) {
  transform: translateY(4px);
}
.icon-wrapper.fixed {
  position: fixed;
}
.icon-wrapper.black {
  background-color: var(--color-text);
}

.blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background: var(--color-gray);
  z-index: 2;
}
.blocker.open {
  display: block;
}

#toggle-menu {
  overflow-y: auto;
  text-transform: uppercase;
  transform: translate(100vw);
  margin-top: 80px;
  position: absolute;
}
#toggle-menu.open {
  transform: translate(0);
  transition: 0.3s ease-in;
  top: 1rem;
  right: 1rem;
  z-index: 3;
}
#toggle-menu div {
  padding: 1rem 1rem 1rem 5rem;
  background-color: var(--color-primary);
  text-align: right;
}
#toggle-menu div a {
  color: var(--color-white);
}
#toggle-menu div a[active] {
  border-bottom: 6px solid var(--color-secondary);
}
#toggle-menu .mobile-menu {
  padding: 3em 1em;
}
#toggle-menu .legal-menu {
  text-align: right;
  padding-top: 3rem;
  font-size: 1.1rem;
}
#toggle-menu .legal-menu div {
  padding: 0.5rem;
}

/************** DESKTOP MENU **************/
.menu {
  display: none;
}
@media screen and (min-width: 1200px) {
  .menu {
    position: absolute;
    display: flex;
    background-color: var(--color-secondary);
    width: 100vw;
    gap: 0.5px;
  }
}
.menu > div {
  background-color: var(--color-primary);
  margin: 0.5px;
  padding: 1rem 2rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .menu > div {
    flex-grow: 1;
  }
}
.menu > div:first-child {
  margin-left: 4rem;
}
@media screen and (min-width: 1800px) {
  .menu > div:first-child {
    margin-left: 15%;
  }
}
.menu > div:last-child {
  margin-right: 4rem;
}
@media screen and (min-width: 1800px) {
  .menu > div:last-child {
    margin-right: 15%;
  }
}
.menu a {
  padding: 1rem;
  display: block;
  color: var(--color-white);
  padding: 0.3rem 0.5rem;
  font-size: 1.3rem;
}
.menu a:hover {
  color: var(--color-white);
}
.menu a[active] {
  border-bottom: 6px solid var(--color-secondary);
}
.menu.fixed {
  top: 0;
  position: fixed;
  z-index: 3;
}

/************** LANGUAGE SWITCHER **************/
.languages .active {
  display: none;
}

@font-face {
  font-family: "BeVietnamPro";
  src: url("../fonts/BeVietnamPro-Regular.woff2") format("woff2"), url("../fonts/BeVietnamPro-Regular.ttf") format("openType");
}
@font-face {
  font-family: "BeVietnamPro Bold";
  src: url("../fonts/BeVietnamPro-Bold.woff2") format("woff2"), url("../fonts/BeVietnamPro-Bold.ttf") format("openType");
}
@font-face {
  font-family: "DellaRespira";
  src: url("../fonts/DellaRespira-Regular.ttf") format("openType");
}
:root {
  --color-text: #02264a;
  --color-primary: #02264a;
  --color-secondary: #e49b08;
  --color-alert: #e40808;
  --color-gray: rgb(2, 38, 74, 0.6);
  --color-white: rgb(238, 245, 248);
  --color-background: #abd2e7;
  --font-headlines: "BeVietnamPro", sans-serif;
  --font-text: "BeVietnamPro", sans-serif;
  --font-bold: "DellaRespira", sans-serif;
  --font-italic: "DellaRespira", sans-serif;
  --font-logo: "DellaRespira", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

/************** GENERAL STYLING **************/
html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-text);
  color: var(--color-text);
  background-color: var(--color-white);
  font-size: 1rem;
  position: relative;
  line-height: 1.6;
  background: linear-gradient(to left, #5373d4 -78%, rgba(86, 198, 203, 0.36), rgba(204, 208, 244, 0.5215686275) 120%);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  body {
    font-size: 1.2;
  }
}
body.block {
  height: 100vh;
  overflow: hidden;
}

h1,
h2 {
  font-family: var(--font-headlines);
  padding: 1rem 0;
  color: var(--color-text);
}

h1 {
  font-size: 1.5rem;
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 1.7rem;
  }
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-family: var(--font-headlines);
  padding-bottom: 1rem;
  color: var(--color-secondary);
}

li {
  margin-left: 2rem;
}

a {
  text-decoration: none;
  color: var(--color-text);
}
a:hover {
  color: var(--color-text);
}

img {
  max-width: calc(100% - 14px);
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

.site-heading {
  display: none;
}

table tr {
  text-align: left;
}
table td {
  padding: 1rem 2rem 2rem 0;
}

/************** HEADER **************/
header {
  padding: 2rem 2rem 1rem;
  position: fixed;
  z-index: 5;
  width: 100vw;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    padding: 50px 4rem;
    height: 150px;
  }
}
@media screen and (min-width: 1200px) {
  header {
    position: relative;
    width: auto;
  }
}
@media screen and (min-width: 1800px) {
  header {
    padding: 50px 15%;
  }
}
header.scrolled {
  background-color: var(--color-background);
  transition: all 0.3s ease-in-out;
}
header.scrolled .logo .subtitle {
  display: none;
}
@media screen and (min-width: 1200px) {
  header.scrolled .logo .subtitle {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  header.scrolled {
    background-color: unset;
  }
}
header .logo {
  cursor: pointer;
}
header .logo .title {
  display: inline-block;
  font-family: var(--font-logo);
  font-size: 1.7rem;
  padding-bottom: 1rem;
  border-bottom: 6px solid var(--color-secondary);
  font-weight: bolder;
}
@media screen and (max-width: 400px) {
  header .logo .title {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  header .logo .title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo .title {
    font-size: 2.5rem;
  }
}
header .logo .subtitle {
  padding-top: 1rem;
  color: var(--color-gray);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1rem;
}
@media screen and (min-width: 576px) {
  header .logo .subtitle {
    font-size: 1.3rem;
  }
}
header .logo .subtitle > div:nth-of-type(2) {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .logo .subtitle > div:nth-of-type(2) {
    display: block;
  }
}

/************** CONTENT **************/
main {
  margin-top: 200px;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main {
    margin-top: 165px;
    padding: 2rem 4rem 6rem;
  }
}
@media screen and (min-width: 1200px) {
  main {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1800px) {
  main {
    padding: 2rem 15% 6rem;
  }
}

.content {
  padding: 2rem 1em;
  margin: 2rem 1rem;
  min-height: 85vh;
  background-color: var(--color-white);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .content {
    padding: 3rem;
  }
}
.content a {
  border-bottom: 4px solid var(--color-secondary);
  transition: color 0.6s ease-in-out;
}
.content a:hover {
  color: var(--color-secondary);
  transition: color 0.1s ease-in-out;
}

/************** CONTACT **************/
.honeypot {
  position: absolute;
  left: -9999px;
}

form > div {
  padding-top: 1rem;
}
form label {
  display: block;
}
form input,
form textarea {
  width: calc(100vw - 6rem);
  border: none;
  padding: 1rem;
}
@media screen and (min-width: 576px) {
  form input,
  form textarea {
    width: 80vw;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  form input,
  form textarea {
    width: 100%;
  }
}
form input:focus,
form textarea:focus {
  outline: none !important;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 5px var(--color-primary);
}
form input::placeholder,
form textarea::placeholder {
  opacity: 0.6;
  color: var(--color-primary);
}
form textarea {
  height: 120px;
}
form #submit-btn {
  width: 10rem;
  margin-top: 2rem;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-family-headlines);
  letter-spacing: 0.03em;
  padding: 1rem;
  border: 2px solid var(--color-secondary);
  float: right;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  form #submit-btn {
    width: 20%;
    margin: 2rem -18px 0 0;
    font-size: 1.3rem;
  }
}

.uniform__potty {
  position: absolute;
  left: -9999px;
}

#privacy-hint {
  font-family: var(--font-family-headlines);
  text-align: end;
  font-size: 0.9em;
}
#privacy-hint a {
  border-bottom: var(--color-text) solid 2px;
}

.alert {
  color: var(--color-secondary);
}
.alert.error {
  color: var(--color-alert);
}

/************** HOME **************/
.page-template-home {
  animation: fadeIn 1.5s ease;
}

.content p {
  padding-bottom: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .content.home, .content.contact {
    display: grid;
    grid-template-columns: 50% 30%;
    gap: 3rem;
  }
}
.content:not(.apartments) > div {
  max-width: 800px;
}
.content h2,
.content h3 {
  padding-top: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .content h2,
  .content h3 {
    padding-top: 2rem;
  }
}

/************** FERIENWOHNUNG **************/
.page-template-ferienwohnungen .content {
  background-color: unset;
  padding: 1rem 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-ferienwohnungen .content {
    display: block;
  }
}
.page-template-ferienwohnungen .content .fewos {
  position: relative;
}
.page-template-ferienwohnungen .content .fewos .fewo-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  background-color: var(--color-white);
  opacity: 0;
  box-shadow: 2px -2px 3px rgba(0, 0, 0, 0.1), -3px 0 0 rgba(0, 0, 0, 0.1);
}
.page-template-ferienwohnungen .content .fewos .fewo-container.active {
  opacity: 1;
  z-index: 1;
}
.page-template-ferienwohnungen .content .tabs {
  display: block;
}
@media screen and (max-width: 400px) {
  .page-template-ferienwohnungen .content .tabs {
    display: grid;
  }
}
.page-template-ferienwohnungen .content .tabcontent {
  padding: 0 2rem;
}
.page-template-ferienwohnungen .content .tabcontent .fewo-info {
  padding: 30px 0;
}
.page-template-ferienwohnungen .content button {
  background-color: rgba(255, 255, 255, 0.3);
  font: inherit;
  cursor: pointer;
  outline: 0;
  padding: 0 1rem;
  border: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-ferienwohnungen .content button {
    padding: 0 2rem;
  }
}
.page-template-ferienwohnungen .content button:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.page-template-ferienwohnungen .content button.active {
  opacity: 1;
  background-color: var(--color-white);
  box-shadow: 2px -2px 3px rgba(0, 0, 0, 0.1), -3px 0 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
  order: 2;
}
.page-template-ferienwohnungen .content button.active h2 span {
  border-bottom: 6px solid var(--color-secondary);
}
.page-template-ferienwohnungen .content button:not(.active) {
  order: 1;
  margin-left: 10px;
}
.page-template-ferienwohnungen .content button:not(.active) h2 {
  opacity: 0.8;
}
.page-template-ferienwohnungen .content button h2 {
  font-size: 1.3rem;
}

/************** GALLERY **************/
.nGY2Viewer {
  background: var(--color-primary) !important;
}
.nGY2Viewer img {
  border: 7px solid var(--color-white);
}

.nGY2 .nGY2GThumbnailLabel {
  padding: 0 0 2rem;
}

.nGY2GThumbnailLabel {
  filter: none !important;
}

.nGY2Icon-ngy2_close2::before {
  content: "";
  width: 54px;
  height: 54px;
  background-image: url("/assets/img/close.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.nGY2Icon-ngy2_chevron_left3::before {
  content: "";
  width: 54px;
  height: 54px;
  background-image: url("/assets/img/prev.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.nGY2Icon-ngy2_chevron_right3::before {
  content: "";
  width: 54px;
  height: 54px;
  background-image: url("/assets/img/next.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center right;
}

.nGY2 .nGY2ViewerAreaNext > i,
.nGY2 .nGY2ViewerAreaPrevious > i {
  background: none !important;
}

.nGY2 .nGY2ViewerAreaNext {
  right: 1rem !important;
}

.nGY2 .nGY2ViewerAreaPrevious {
  left: 1rem !important;
}

.nanogallery_viewertheme_dark_nanogallery2 .nGY2Viewer .toolbar .label .description {
  color: var(--color-secondary) !important;
}

.nanogallery_viewertheme_dark_nanogallery2 .nGY2Viewer .toolbarBackground {
  background: var(--color-text) !important;
}

.nGY2 .toolbarContainer {
  width: auto !important;
  right: 4rem !important;
  left: auto !important;
}

.toolbarContainer.nGEvent {
  opacity: 1 !important;
  bottom: 2rem !important;
}

.nanogallery_gallerytheme_dark_nanogallery-2 .nGY2GThumbnail {
  border-color: var(--color-white) !important;
}

.nanogallery_gallerytheme_dark_nanogallery-1 .nGY2GThumbnail {
  border-color: var(--color-white) !important;
}

/************** MAP **************/
.map iframe {
  max-width: 100%;
  border: 7px solid white !important;
}

/************** FOOTER **************/
footer {
  display: flex;
  justify-content: space-around;
  background-color: var(--color-primary);
}
@media screen and (min-width: 1200px) {
  footer {
    padding-right: 15%;
    justify-content: end;
  }
}
footer a {
  color: var(--color-white);
  transition: all 0.6s ease-in-out;
}
footer a:hover {
  color: var(--color-secondary);
  transition: all 0.3s ease-in-out;
}
footer > div {
  padding: 0.5rem;
}
@media screen and (min-width: 1200px) {
  footer > div {
    padding: 0.5rem 2rem;
  }
}

/*# sourceMappingURL=main.css.map */
