/* 
Theme Name: Foyer Zug
Author: Portalworks
Version: 1.0
*/

:root {
  --main-font: "Montserrat", serif;
  --primary-col: #000;
  --light-col: #f5f6f7;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

* {
  font-family: var(--main-font);
  color: var(--primary-col);
}

body {
  padding-top: 140px;
}

body.home {
  padding-top: 0;
}

.container-fluid {
  padding-left: 10px;
  padding-right: 10px;
}

.row {
  --bs-gutter-x: 1rem;
}

.foyer-header {
  width: 100%;
  padding-top: 60px;
}

.foyer-header-privacy {
  padding-top: 98px;
}

.table-row {
  padding-top: 60px;
}

.foyer-header h1 {
  font-size: 40px;
  letter-spacing: auto;
  line-height: 1.3;
  margin-bottom: 22px;
  font-weight: 400;
}

.foyer-header-table h1 {
  margin-bottom: 0;
  font-size: 40px;
  letter-spacing: auto;
  line-height: 1.3;
  font-weight: 400;
  padding-bottom: 22px;
}

.foyer-header-kontakt h1 {
  font-size: 40px;
  letter-spacing: auto;
  line-height: 1.3;
  margin-bottom: 22px;
  font-weight: 400;
}

.flat-info-modal h2 {
  font-size: 35px;
  letter-spacing: auto;
  line-height: 1.3;
  font-weight: 400;
  padding-bottom: 30px;
}

/************
    Video
************/
.video-container {
  height: 100vh;
}

.video-block {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center right;
}

.video-block iframe {
  width: 100vw;
  height: 100vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
}

.video-block iframe.small {
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-block iframe.big {
  right: 0;
  transform: translate(0%, -50%);
}

/**********
  Navbar 
**********/

.navbar-container {
  background-color: var(--light-col);
  padding: 20px 0;
  height: 140px;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.navbar-container.small {
  padding: 20px 0;
  height: 140px;
}

.logo-img {
  max-width: 109px;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.logo-img.small {
  max-width: 109px;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  z-index: 2001;
  right: 0;
  transform: translateY(0);
  top: 0;
}

.opened-menu {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	background: #fff;
	height: 140px;
}

.button-part {
	position: absolute;
	top: 65px;
	right: 16px;
}

.button-part.scroll {
	top: 55px;
}

.lang-buttons {
  margin-right: 30px;
}

.lang-buttons li {
  list-style: none;
}

.lang-buttons li a {
  color: var(--primary-col);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.lang-buttons li.current-lang a {
  font-weight: 600;
}

.lang-buttons li:first-child a::after {
  content: "/";
  font-weight: 300;
  padding: 0 6px;
}

/***********
 Hamburger menu
***********/

.menu-toggle {
  position: relative;
  display: block;
  width: 56px;
  height: 30px;
  background: transparent;
  border: none;
  border-top: 3px solid var(--primary-col);
  border-bottom: 3px solid var(--primary-col);
  color: var(--primary-col);
  transition: all 0.25s ease-in-out;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--primary-col);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease-in-out;
}

.menu-toggle.is-active {
  border-color: transparent;
}

.menu-toggle.is-active::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-active::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/**********
 Menu Popup
**********/
.menu-popup {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  background-color: #fff;
  z-index: 20;
  transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
  height: 100vh;
}

.menu-popup.open {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  overflow-y: auto;
}

.links-container {
  padding: 130px 0;
}

.menu-popup ul {
  list-style: none;
  text-align: center;
  gap: 35px;
  padding: 30px 0;
  margin:0
}

.menu-popup a {
  text-decoration: none;
  color: var(--primary-col);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.menu-popup a:hover {
  font-weight: 400;
}

/* Show menu popup when active */
.menu-popup.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*************
  Projekt Section
*************/
.projekt-section {
  padding-bottom: 80px;
}

.privacy-section {
  padding-bottom: 90px;
}

.projekt-section-impressionen {
  padding-bottom: 60px;
}

.lines-img {
  top: 140px;
  max-width: 235px;
  height: auto;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.lines-img-modal {
  max-width: 235px;
  height: auto;
}

.menu-lines {
  max-width: 487px;
  height: auto;
}

.kontakt-lines {
  max-width: 395px;
  height: auto;
}

.lines-img.scroll {
  top: 235px;
}

.lines-img img,
.lines-img-modal img,
.menu-lines img,
.kontakt-lines img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-container {
  padding-bottom: 22px;
}

.title-desc-sm p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  padding-bottom: 20px;
  margin: 0;
}

.description-container h3,
.table-container h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  padding-bottom: 20px;
  margin: 0;
}

.flat-table-container h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  padding-bottom: 22px;
  margin: 0;
}

.description-container .big-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  padding-bottom: 25px;
}

.link-btns {
  gap: 20px;
  align-items: stretch;
}

.table-btns {
  padding-bottom: 40px;
}

.link-btns .link-btn {
  display: block;
  background-color: var(--primary-col);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 18px;
  width: auto;
  text-align: center;
  transition: all 0.1s ease-in-out;
  border-radius: 0;
}

.link-btns .link-btn:hover {
  background-color: #1a1a1a;
}

/************
    Table
************/
.table-container {
  padding-top: 60px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table thead th,
.table tbody td {
  padding: 15px 0;
}

.table thead th {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.table tbody tr {
	cursor: pointer;
}

.table tbody .street-name {
	cursor: auto;
}

.table tbody td {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
  vertical-align: middle;
}

.table thead th:first-child,
.table tbody td:first-child {
  padding-left: 10px;
}

.table thead th:last-child,
.table tbody td:last-child {
  padding-right: 10px;
}

.table thead {
  position: sticky;
  top: 0;
  border-bottom: none;
  outline: none;
  border-style: hidden;
}

.table tfoot {
  display: table-row-group;
  border-bottom: none;
  outline: none;
}

.table tfoot td {
  border: none;
  padding: 20px 0 0 10px;
}

.table tbody {
  border-color: var(--primary-col);
}

.street-name th {
  font-size: 16px;
  top: 0;
  font-weight: 300;
  padding: 30px 0 10px;
  border-color: var(--primary-col);
}

.img-sticky {
  top: 140px;
}

.isometry-image {
  max-width: 100%;
  height: auto;
  padding-bottom: 50px;
  padding-top: 30px;
  margin: 0 auto;
}

.isometry-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdf-td a {
  display: block;
  width: 22px;
  height: auto;
}

.pdf-td a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.table-flats .status {
  width: 17px;
  height: 17px;
}

.status-info {
  padding: 0 0 40px;
  gap: 15px 50px;
}

.status-info .value {
  font-size: 16px;
  font-weight: 300;
}

.free {
  background: #e8e8e8;
}

.reserved {
  background: #7e7e7e;
}

.taken {
  background: #000;
}

.text-under-table p {
  font-size: 19px;
  font-weight: 300;
  padding-bottom: 22px;
  margin: 0;
}

.objekt-th,
.objekt-td,
.bezeichnung-th,
.bezeichnung-td,
.miete-th,
.miete-td {
  display: none;
}

/******************
     Gallery 
******************/

.gallery-section {
  padding: 40px 0 60px 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  grid-template-rows: repeat(3, 150px);
  gap: 5px;
}

.gallery-img:nth-of-type(5n + 1) {
  grid-column: span 10;
}

.gallery-img:nth-of-type(5n + 2) {
  grid-column: span 10;
}

.gallery-img:nth-of-type(5n + 3) {
  grid-column: span 20;
  grid-row: span 1;
}

.gallery-img:nth-of-type(5n + 4) {
  grid-column: span 10;
}

.gallery-img:nth-of-type(5n + 5) {
  grid-column: span 10;
}

.image-in-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfp-image-holder .mfp-content {
  margin: 0 15px;
}

.mfp-img-mobile .mfp-close {
  background: transparent !important;
}

.mfp-img-mobile button.mfp-close {
  position: fixed;
  bottom: 10px;
  top: unset;
  right: 5px;
}

button.mfp-close img {
  width: 25px;
  height: 25px;
}

.mfp-wrap {
  z-index: 2002;
}

.mfp-arrow.mfp-arrow-left {
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  margin-left: 40px;
  width: 40px;
  height: 40px;
  background-image: url("assets/images/back.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}

.mfp-arrow.mfp-arrow-left::before,
.mfp-arrow.mfp-arrow-left::after {
  display: none;
}

.mfp-arrow.mfp-arrow-right {
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  margin-right: 40px;
  width: 40px;
  height: 40px;
  background-image: url("assets/images/next.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}

.mfp-arrow.mfp-arrow-left,
.mfp-arrow.mfp-arrow-right {
  transform: translateY(50%);
  margin-top: -40px;
}

.mfp-arrow.mfp-arrow-right::before,
.mfp-arrow.mfp-arrow-right::after {
  display: none;
}

.mfp-img-mobile .mfp-counter {
  position: fixed !important;
  bottom: 0;
  left: 0;
  padding: 20px;
  top: unset;
  font-size: 20px;
  background-color: var(--primary-col);
  width: 100%;
  max-height: 60px;
}

/***************
    Video 
***************/

.video-section-projekt {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-container-projekt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.video-container-projekt iframe {
  width: 100%;
  aspect-ratio: 16/9;
  position: absolute;
  top: 51%;
  left: 49.9%;
  right: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Map */
.map-container {
  aspect-ratio: 3/2;
  padding-bottom: 35px;
}

.map-container #map {
  width: 100%;
  aspect-ratio: 3/2;
}

.map-pin {
  width: 20px;
  height: 20px;
  background-color: black;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/************
    Modal 
*************/

.modal-content {
  width: 100vw;
  height: 100vh;
}

.modal-close {
  background: url("assets/images/close-btn.png");
  background-size: contain;
  width: 40px;
  height: 40px;
  border: 0;
}

.modal-content {
  border-radius: 0;
}

.modal-container {
  gap: 70px;
}

.building-img-modal {
  max-width: 500px;
  height: auto;
}

.building-img-modal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-btns {
  padding-bottom: 80px;
}

.modal-btns a {
  font-size: 17px !important;
  letter-spacing: 2px;
  padding: 3px 20px;
}

.flat-table-modal table td {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
  display: grid;
  grid-template-columns: 14ch auto;
  padding-bottom: 10px;
}

.flat-table-modal table td::before {
  content: attr(data-cell);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

/****************
 Gallery Impressionen
******************/

.swiper-section {
  padding-bottom: 60px;
}

.swiper-wrapper {
  padding-bottom: 66px;
}

.swiper-next-impressionen,
.swiper-prev-impressionen {
  top: unset;
  width: 40px;
  height: 40px;
  background-color: var(--primary-col);
  z-index: 2;
}

.swiper-prev-impressionen {
  left: calc(50% - 60px);
  transform: translateX(-50%);
  margin-right: 30px;
}

.swiper-next-impressionen {
  right: calc(50% - 60px);
  transform: translateX(50%);
}

.swiper-prev-impressionen::after,
.swiper-next-impressionen::after {
  content: "";
  display: block;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 28px;
  aspect-ratio: 1/2;
}

.swiper-prev-impressionen::after {
  background-image: url("assets/images/left-arrow.png");
}

.swiper-next-impressionen::after {
  background-image: url("assets/images/right-arrow.png");
}

.swiper-pagination-nums {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  bottom: 10px;
  z-index: 1;
}

.gallery-container-impressionen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, 130px);
  gap: 5px;
}

.swiper .gallery-container-impressionen {
	gap: 10px;
}

.gallery-img-impressionen:nth-of-type(7n + 1) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-img-impressionen:nth-of-type(7n + 2) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-img-impressionen:nth-of-type(7n + 3) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-img-impressionen:nth-of-type(7n + 4) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-img-impressionen:nth-of-type(7n + 5) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-img-impressionen:nth-of-type(7n + 6) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-img-impressionen:nth-of-type(7n + 7) {
  grid-column: span 2;
  grid-row: span 1;
}

/****************
  Contact Section
****************/

.contact-section {
  padding-bottom: 90px;
}

.contact-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  padding-bottom: 40px;
}

.contact-info {
  padding: 0;
}

.contact-info li {
  list-style: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

.wincasa-logo-container {
  max-width: 200px;
  height: auto;
  padding-bottom: 30px;
}

.wincasa-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-info li a {
  color: #000;
  font-weight: 300;
  font-size: 18px;
  transition: all 0.15s ease-in-out;
}

.contact-info li a:hover {
  color: #383838;
}

/*************
  Impressum
**************/

.impressum-container {
  list-style: none;
  padding: 0;
  margin-bottom: 27px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}

.impressum-container li p {
  margin-bottom: 0;
}

.impressum-container li:first-child p {
  font-weight: 700;
}

.impressum-container li a,
.impressum-container p a {
  color: #000;
  transition: all 0.15s ease-in-out;
}

.impressum-container li a:hover,
.impressum-container p a:hover {
  color: #383838;
}

/************
  Footer  
*************/

.footer-section {
  padding: 30px 0;
  background-color: var(--light-col);
}

.footer-content {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  gap: 3px;
}

.footer-logo {
  max-width: 243px;
  height: auto;
  padding: 20px 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-info {
  gap: 3px;
}

.footer-info a {
  text-decoration: none;
  color: var(--primary-col);
  transition: all 0.2s ease-in-out;
}

.footer-info a:hover {
  text-decoration: underline;
}

.links-footer a {
	text-align: center;
}

/* .links-footer a:first-child {
  position: relative;
  padding-right: 5px;
}

.links-footer a:last-child {
  padding-left: 10px;
}

.links-footer a:first-child::after {
  content: "•";
  position: absolute;
  padding: 0 5px;
  pointer-events: none;
  text-decoration: none;
} */

/***********
  Error 
***********/
.error-privacy {
  min-height: 700px;
}

.error-message h2 {
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.error-message h3 {
  font-weight: 400;
  letter-spacing: 1.5px;
}

.error-message .small-message {
  font-size: 18px;
  font-weight: 200;
}


@media (min-width: 480px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  body {
    padding-top: 160px;
  }

  .foyer-header h1 {
    margin-bottom: 28px;
  }

  .foyer-header-table h1 {
    padding-bottom: 28px;
  }

  .lines-img {
    top: 160px;
    max-width: 349px;
  }

  .lines-img-modal {
    max-width: 349px;
  }

  .navbar-container {
    height: 160px;
  }

  .logo-img {
    max-width: 131px;
  }

  .lang-buttons {
    margin-right: 40px;
  }

  .menu-popup ul {
    gap: 40px;
  }

  .menu-popup a {
    font-size: 40px;
  }

  .title-container {
    padding-bottom: 28px;
  }

  .description-container h3 {
    padding-bottom: 30px;
  }

  .flat-table-container h3 {
    padding-bottom: 28px;
  }

  .description-container .big-desc {
    font-size: 20px;
    padding-bottom: 25px;
  }

  .link-btns .link-btn {
    font-size: 20px;
  }

  /* Gallery */

  .gallery-container {
    grid-template-rows: repeat(2, 150px);
    gap: 5px;
  }

  .gallery-img:nth-of-type(5n + 1) {
    grid-column: span 6;
  }

  .gallery-img:nth-of-type(5n + 2) {
    grid-column: span 6;
  }

  .gallery-img:nth-of-type(5n + 3) {
    grid-column: span 8;
    grid-row: span 2;
  }

  .gallery-img:nth-of-type(5n + 4) {
    grid-column: span 6;
  }

  .gallery-img:nth-of-type(5n + 5) {
    grid-column: span 6;
  }

  /* Gallery Impressionen */
  .swiper-pagination-nums {
    font-size: 19px;
  }

  .gallery-container-impressionen {
    grid-template-columns: repeat(21, minmax(0, 1fr));
    grid-template-rows: repeat(6, 70px);
    gap: 10px;
  }

  .gallery-img-impressionen:nth-of-type(7n + 1) {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 2) {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 3) {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 4) {
    grid-column: span 14;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 5) {
    grid-column: span 7;
    grid-row: span 4;
  }

  .gallery-img-impressionen:nth-of-type(7n + 6) {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 7) {
    grid-column: span 7;
    grid-row: span 2;
  }

  /* Table */
  .isometry-image {
    max-width: 390px;
  }

  .link-btns {
    width: max-content;
  }

  .objekt-th,
  .objekt-td {
    display: table-cell;
  }

  .street-name th {
    font-size: 20px;
  }

  .status-info .value {
    font-size: 20px;
  }

  /* Map */
  .map-container {
    aspect-ratio: 16/9;
  }

  .map-container #map {
    aspect-ratio: 16/9;
  }

  .footer-content {
    font-size: 20px;
  }
}

@media (min-width: 576px) {
  .bezeichnung-th,
  .bezeichnung-td {
    display: table-cell;
  }

  .isometry-image {
    max-width: 500px;
  }

  .status-info {
    padding: 0 0 60px;
  }

  .impressum-container {
    font-size: 19px;
  }
}

@media (min-width: 768px) {
  body {
    padding-top: 180px;
  }

  .foyer-header h1,
  .foyer-header-table h1,
  .foyer-header-kontakt h1 {
    font-size: 55px;
    letter-spacing: 2px;
  }

  .flat-info-modal h2 {
    font-size: 45px;
    letter-spacing: 4px;
  }

  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }

  .navbar-container {
    height: 180px;
  }

  /* logo */
  .logo-img {
    max-width: 153px;
  }

  /* menu */
  .menu {
    transform: translateY(0);
    z-index: 2001;
  }
	
  .button-part {
	transition: all 0.15s ease-in-out;
	top: 30px;
	right: 50px;
  }

  .button-part.scroll {
    top: 55px;
  }
	
  .button-part.scroll {
	top: 55px;
  }

  .lang-buttons {
    margin-right: 80px;
  }

  .menu-popup ul {
    gap: 65px;
  }

  .menu-popup a {
    font-size: 50px;
  }

  .title-desc-sm p {
    font-size: 25px;
  }

  .description-container h3 {
    font-size: 20px;
  }

  .lines-img {
    top: 180px;
    max-width: 465px;
  }

  .lines-img-modal {
    max-width: 465px;
  }

  /* Gallery */
  .gallery-container {
    grid-template-rows: repeat(2, 200px);
    gap: 10px;
  }

  /* Gallery Impressionen */
  .gallery-container-impressionen {
    grid-template-columns: repeat(20, minmax(0, 1fr));
    grid-template-rows: repeat(6, 100px);
    gap: 10px;
  }

  .gallery-img-impressionen:nth-of-type(7n + 1) {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 2) {
    grid-column: span 8;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 3) {
    grid-column: span 5;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 4) {
    grid-column: span 13;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 5) {
    grid-column: span 7;
    grid-row: span 4;
  }

  .gallery-img-impressionen:nth-of-type(7n + 6) {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 7) {
    grid-column: span 6;
    grid-row: span 2;
  }

  /* Map */
  .map-container {
    aspect-ratio: 100/37;
  }

  .map-container #map {
    aspect-ratio: 100/37;
  }

  /* Table */
  .miete-th,
  .miete-td {
    display: table-cell;
  }

  .flat-table-container h3 {
    font-size: 20px;
  }

  .flat-table-modal table td {
    grid-template-columns: 20ch auto;
  }
}

@media (min-width: 992px) {
	.h-lg-100 {
		height: 100%;
	}
	
  .foyer-header {
    width: 40%;
  }

  .foyer-header h1,
  .foyer-header-kontakt h1 {
    font-size: 44px;
    margin-bottom: 25px;
  }

  .foyer-header-table h1 {
    font-size: 44px;
  }

  .button-part {
    right: 45px;
  }

  .link-btns .link-btn {
    font-size: 16px;
  }

  .title-desc-sm p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
  }

  .title-container {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .description-container h3 {
    font-size: 16px;
    padding-bottom: 40px;
  }

  .description-container .big-desc {
    padding-bottom: 0;
    font-size: 16px;
  }

  /* table */
  .flat-table-container h3 {
    font-size: 16px;
    padding-bottom: 40px;
  }

  .street-name th {
    font-size: 16px;
  }

  .status-info {
    padding: 0 0 140px;
  }

  .status-info .value {
    font-size: 16px;
  }

  .table thead {
    position: unset;
  }

  .table tbody td {
    font-size: 14px;
  }

  .table thead th {
    font-size: 14px;
  }

  .text-under-table p {
    font-size: 15px;
  }

  .swiper-pagination-nums {
    font-size: 16px;
  }

  .impressum-container {
    font-size: 16px;
  }

  .footer-content {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }

  body {
    padding-top: 291px;
  }

  .lines-img {
    top: 291px;
  }

  .foyer-header h1,
  .foyer-header-kontakt h1 {
    font-size: 61px;
    letter-spacing: 6px;
    margin-bottom: 30px;
  }

  .foyer-header-table h1 {
    font-size: 61px;
    letter-spacing: 6px;
  }

  .title-desc-sm p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.4;
    padding-bottom: 25px;
  }

  .description-container h3 {
    font-size: 19px;
  }

  .description-container .big-desc {
    font-size: 19px;
  }

  .navbar-container {
    padding: 50px 0;
    height: 291px;
  }
	
  .lang-buttons li a {
	font-size: 20px;	
  }

  /* logo */
  .logo-img {
    max-width: 209px;
  }

  .link-btns .link-btn {
    font-size: 19px;
  }

  /* Gallery */
  .gallery-container {
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
  }

  .gallery-img:nth-of-type(5n + 1) {
    grid-column: span 4;
  }

  .gallery-img:nth-of-type(5n + 2) {
    grid-column: span 7;
  }

  .gallery-img:nth-of-type(5n + 3) {
    grid-column: span 9;
    grid-row: span 2;
  }

  .gallery-img:nth-of-type(5n + 4) {
    grid-column: span 7;
  }

  .gallery-img:nth-of-type(5n + 5) {
    grid-column: span 4;
  }

  .swiper-pagination-nums {
    font-size: 19px;
  }

  .gallery-container-impressionen {
    grid-template-columns: repeat(20, minmax(0, 1fr));
    grid-template-rows: repeat(6, 150px);
    gap: 15px;
  }

  .gallery-img-impressionen:nth-of-type(7n + 1) {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 2) {
    grid-column: span 8;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 3) {
    grid-column: span 5;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 4) {
    grid-column: span 13;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 5) {
    grid-column: span 7;
    grid-row: span 4;
  }

  .gallery-img-impressionen:nth-of-type(7n + 6) {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-img-impressionen:nth-of-type(7n + 7) {
    grid-column: span 6;
    grid-row: span 2;
  }

  .video-section-projekt {
    aspect-ratio: 50/19;
  }

  .video-container-projekt iframe {
    aspect-ratio: 50/19;
    min-width: 177.77vw;
  }

  /* table */
  .isometry-image {
    max-width: 100%;
  }

  .flat-table-container h3 {
    font-size: 19px;
  }

  .street-name th {
    font-size: 19px;
  }

  .status-info .value {
    font-size: 19px;
  }

  .table tbody td {
    font-size: 16px;
  }

  .table thead th {
    font-size: 16px;
  }

  .text-under-table p {
    font-size: 18px;
  }

  .impressum-container {
    font-size: 19px;
  }

  .footer-content {
    font-size: 19px;
  }
}

@media (min-width: 1400px) {
  .container-fluid {
    max-width: 1850px;
  }
}

@media (min-width: 1920px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }

  .button-part {
    right: 85px;
  }
}
