/* 
Theme Name: Citybay Business
Author: Portalworks
Version: 1.0
*/

:root {
  --primary-col: #05182e;
  --secondary-col: #b8aca2;
  --main-font-inter: "Inter", serif;
  --bs-gutter-x: 1.5rem;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_24pt-ExtraLight.ttf");
  font-weight: 200;
  font-style: normal;
}

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

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

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_18pt-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

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

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

* {
  font-family: var(--main-font-inter);
}

body {
  overflow-x: hidden;
}

.zuz-text{
	padding: 20px 8px 0px 8px;
	color: var(--secondary-col);
}

h1 {
  font-size: 24px;
  font-weight: 400; 
  letter-spacing: 0.8px;
  line-height: 40px;
}

h2 {
  font-size: 24px;
  font-weight: 400; 
  letter-spacing: 0.8px;
  line-height: 40px;
}

h3 {
  font-size: 20px;
}

h4 {
  color: var(--secondary-col);
  font-size: 18px;
}

.dark-col {
  --color-type: var(--primary-col);
}

.light-col {
  --color-type: var(--secondary-col);
}

.custom-container {
  width: 100%;
}

.smaller-container {
  margin: 0 10px;
}

/************************
        HERO SECTION
  ************************/
.hero-section {
  background-color: var(--primary-col);
  padding: 10px 0 40px 0;
}

.text-col-dark {
  color: var(--primary-col);
}

.text-col-light {
  color: var(--secondary-col);
}

/**************
      LOGO
  **************/

.logo-container {
  max-width: 150px;
  height: auto;
}

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

.logo-img {
  max-width: 225px;
  height: auto;
}

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

/**************
      NAVBAR
  **************/
.big-menu {
  padding-top: 40px;
}
.nav-links .menu-item a,
.navbar-nav .menu-item a {
  color: var(--color-type);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 17px;
  display: inline-block;
}

.nav-links .menu-item a:hover {
  color: var(--color-type);
}

.nav-links .menu-item {
  list-style: none;
  padding: 0;
}

.nav-link::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--color-type);
  top: 0;
  left: 0;
  transition: width 0.4s;
}

.nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--color-type);
}

.navbar-container {
  height: 50px;
  background: rgba(5, 24, 46, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
  transition: height 0.3s ease-in-out;
}

.navbar-container.expanded {
  height: 400px;
}

.hero-swiper-section {
  min-height: 800px;
  padding: 120px 0 60px 0;
  background-color: var(--primary-col);
}

/* HOME NAV SMALL SCREEN */

.small-screen-nav {
  padding-bottom: 90px;
}

.fixed-nav {
  top: 40px;
}

.menu-links {
  visibility: hidden;
  opacity: 0;
  top: 70px;
  bottom: 0;
  flex-direction: column;
  transform: translateY(-20px);
  transition: visibility 0s, opacity 0.2s ease-in-out,
    transform 0.3s ease-in-out;
}

.menu-links.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease-in-out;
}

.fixed-part {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.menu-btn {
  font-size: 14px;
  color: var(--secondary-col);
}

.btn-custom {
  background: none;
  border: none;
}

.menu-lines {
  width: 29px;
  height: 29px;
  position: relative;
  cursor: pointer;
  z-index: 1055;
}

.line {
  height: 1px;
  border-radius: 10px;
  background-color: var(--secondary-col);
  transition: all 0.3s ease;
}

.menu-lines.active .line:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.menu-lines.active .line:nth-child(2) {
  transform: rotate(-45deg);
  top: 50%;
}

.menu-lines .line:nth-child(1) {
  top: 25%;
}

.menu-lines .line:nth-child(2) {
  top: 75%;
}

/**************
      SWIPER
  **************/

.swiper {
  margin: 0;
}

.swiper-big {
  width: 100%;
}

.swiper-small-left .swiper-wrapper {
  width: 100%;
}

.image-slide-box-big img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.image-slide-box img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  bottom: 0;
  top: auto;
  background-color: var(--color-type);
  width: 35px;
  height: 35px;
}

.swiper-button-next.dark-arrow,
.swiper-button-prev.dark-arrow {
  color: var(--primary-col);
}

.swiper-button-next.light-arrow,
.swiper-button-prev.light-arrow {
  color: var(--secondary-col);
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: 0;
  left: auto;
  display: flex;
  flex-direction: column;
  width: 35px;
  height: fit-content;
  background-color: var(--color-type);
  transform: unset;
  place-items: center;
  padding: 6px 0;
}

.swiper-big-pagination {
  right: 0;
}

.swiper-small-pagination {
  left: 0;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  margin: 6px 0;
}

.swiper-pagination-bullet {
  border-radius: 50%;
  opacity: 1;
}

.swiper-dark .swiper-pagination-bullet {
  background: var(--primary-col);
  box-shadow: 0 0 0 2px var(--secondary-col);
}

.swiper-light .swiper-pagination-bullet {
  background: var(--secondary-col);
  box-shadow: 0 0 0 2px var(--primary-col);
}

.swiper-light .swiper-pagination-bullet-active {
  background: var(--primary-col);
  box-shadow: 0 0 0 2px var(--secondary-col), 0 0 0 4px var(--primary-col);
}

.swiper-dark .swiper-pagination-bullet-active {
  background: var(--secondary-col);
  box-shadow: 0 0 0 2px var(--primary-col), 0 0 0 4px var(--secondary-col);
}

.overlay-container {
  height: 30%;
  background: transparent linear-gradient(0deg, #04182e 0%, #80808000 100%) 0%
    0%;
  mix-blend-mode: multiply;
  opacity: 1;
}

/**************
    CIRCLE LINK
  **************/

.circle-link {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--secondary-col);
  z-index: 10;
  overflow: hidden;
  left: 30px;
  bottom: 20%;
  text-transform: uppercase;
  text-decoration: none;
}

.circle-content {
  z-index: 12;
  color: var(--primary-col);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
}

.arrow-right {
  width: 30px;
  height: 30px;
  margin-top: 8px;
}

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

.arrow-transform {
	transform: translateY(-50%);
}

.scroll-down-btn {
  color: var(--secondary-col);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.4px;
	min-height: 250px;
}

.scroll-down-btn .scroll-line {
  margin-top: 10px;
  background: var(--secondary-col);
  transition: all 0.35s;
  width: 3px;
  height: 0px;
  background-color: var(--secondary-col);
  transition: all 0.25s ease-in-out;
}

.scroll-down-btn:hover .scroll-line {
  height: 60px;
}

.scroll-down-btn:hover .arrow-box img {
  transition: transform 0.3s ease-in-out;
}

.arrow-box img {
  transition: transform 0.3s ease-in-out;
}

.scroll-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 300;
}

/**********************
        SWIPER TEXT
  **********************/
.swiper-text {
  padding: 40px 0;
  background-color: var(--color-type, #fff);
}

.text-container {
  color: var(--color-type);
}

.swiper-text-desc {
  padding: 25px 0;
}

.uppercase-links {
  text-transform: uppercase;
  list-style: none;
  padding-left: 0;
  font-weight: 400;
  gap: 30px 80px;
  flex-wrap: wrap;
}

.uppercase-links .link a {
  position: relative;
  color: var(--color-type);
  text-decoration: none;
  list-style: none;
  font-size: 14px;
  margin: 0;
  padding-top: 10px;
  margin-right: 0;
  letter-spacing: 1.8px;
}

.uppercase-links .link a::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--color-type);
  top: 0;
  left: 0;
  transition: width 0.4s;
}

.uppercase-links .link a:hover::before {
  width: 100%;
}

/******************
       TABLE ROW
  ******************/
.table-row {
  padding: 80px 0 0 0;
}

.table-dark {
  background-color: var(--primary-col);
}

.table-content {
  padding-top: 30px;
}

.table-divs {
  max-width: 560px;
  margin-bottom: 70px;
}

.table-divs .title h3 {
	font-weight: 400;
	letter-spacing: 0.6px;
}

.table-divs .table-description {
  font-size: 16px;
  padding-bottom: 40px;
  line-height: 32px;
  letter-spacing: 0.4px;
}

.link-img img {
	max-width: 25px;
	height: auto;
}

.table-divs .table-description a {
	font-size: 16px;
}

.table-description .table-logo {
  max-width: 250px;
  height: auto;
}

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

.table-description-link {
  color: var(--color-type);
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 20px;
}

.no-items {
	color: var(--color-type);
}

.hover-link-container {
  bottom: -34px;
}

.hover-link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding-top: 10px;
  letter-spacing: 1.4px
}

.hover-link::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--color-type, --primary-col);
  top: 0;
  left: 0;
  transition: width 0.4s;
}

.hover-link:hover::before {
  width: 100%;
}

/******************
       TABLE ROW
  ******************/
.contact-section {
  padding: 40px 0;
}

.form-container {
  padding-top: 50px;
}

.form-row .form-field {
  margin-right: 16px;
}

.form-row .form-field:last-child {
  margin-right: 0;
}

.form-field {
  border: 1px solid var(--color-type);
  height: 65px;
  padding-left: 10px;
  font-size: 19px;
  background-color: transparent;
  color: var(--color-type);
}

.form-field::placeholder {
  font-size: 19px;
  color: var(--color-type);
  opacity: 0.6;
}

.form-container input:focus-visible,
.form-container textarea:focus-visible {
  outline: none;
}

.checkbox-text {
  color: var(--color-type);
  font-weight: 200;
  letter-spacing: 1.4px;
}

.form-row textarea {
  padding-top: 10px;
  min-height: 195px;
  resize: vertical;
  overflow-y: auto;
}

.form-row .checkbox {
  font-size: 14px;
  margin-right: 15px;
  min-width: 28px;
  height: 28px;
  border: 1px solid var(--color-type);
  appearance: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 6px;
}

.form-row .checkbox:checked {
	background-color: var(--color-type);
}

.form-row .checkbox:checked::after {
  content: '✔'; 
  font-size: 14px; 
  color: white; 
  line-height: 1;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-checkbox label,
.wpcf7-list-item label {
  display: flex;
  align-items: start;
}

.wpcf7 form .wpcf7-response-output {
	color: var(--color-type);
	margin: 0;
	margin-bottom: 50px;
}

span.wpcf7-list-item-label {
  text-align: start;
  color: var(--color-type);
  letter-spacing: 1.4px;
  word-break: break-word;
  hyphens: auto;
}

.wpcf7 .wpcf7-submit {
  border: none;
  padding: 22px 0;
  background-color: var(--primary-col);
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.8px; 
  font-weight: 400;
}

.wpcf7 .wpcf7-submit:disabled {
	opacity: 0.8;
}

.light-form .wpcf7 .wpcf7-submit {
  padding: 22px 0;
  background-color: transparent;
  color: var(--secondary-col);
  border: 1px solid var(--secondary-col);
}

.light-form .wpcf7 .wpcf7-submit:disabled{
	background-color: #182738;
}

.check {
  text-decoration: none;
}

.check:hover {
  text-decoration: underline;
}

.form-row a {
  color: var(--color-type);
}

.form-btn button {
  background-color: var(--primary-col);
  height: 65px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.8px;
  transition: all 0.2s ease-in-out;
}

.form-btn-light button {
  background-color: transparent;
  height: 65px;
  color: var(--secondary-col);
  font-size: 18px;
  letter-spacing: 1.8px;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--secondary-col);
}

.form-btn button:hover,
.form-btn-light button:hover {
  background-color: var(--secondary-col);
  color: var(--primary-col);
}

/*************
       MAP 
  *************/
.map-circle {
  aspect-ratio: 1; /* Ensures the map container is a square */
  border-radius: 50%;
}

#map {
  width: 100%;
  height: 100vh;
}

.gmnoprint {
  display: none;
}

.section-footer {
  padding: 30px 0;
}

.footer-links {
  flex-wrap: wrap;
  list-style: none;
  color: var(--primary-col);
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  margin-right: 20px;
  color: var(--primary-col);
  line-height: 1;
  position: relative;
  letter-spacing: 1.4px
}

.footer-links .menu-item:last-child a {
  margin-right: 0;
}

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

.footer-links .menu-item:first-child a::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 1px;
  height: 100%;
  background-color: var(--primary-col);
}

.footer-logo {
  max-width: 164px;
  height: auto;
}

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

/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
  padding: 0;
}
/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}
/* padding for main container */
.mfp-no-margins .mfp-container {
  padding: 0;
}
/**********************
      TABLE  
**********************/
.filter-section {
  padding-bottom: 50px;
}

.table-left {
  padding-bottom: 60px;
}

.table-left h2 {
  color: var(--secondary-col);
  align-self: flex-start;
}

.table-left .building-img {
  max-width: 630px;
  height: auto;
  padding-top: 120px;
}

.table-left .building-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-select {
  border: 1px solid var(--secondary-col);
  color: var(--secondary-col);
  background-color: var(--primary-col);
  padding: 10px;
  font-size: 16px;
}

.dropdown-toggle::after {
  content: "";
  border: 0;
  width: 20px;
  height: 20px;
  background-image: url("assets/images/arrowdown.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.dropdown-menu.show {
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--secondary-col);
  background-color: var(--primary-col);
  padding: 20px 30px;
}

.dropdown-menu .form-check-input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--secondary-col);
}

.form-check-input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: var(--primary-col);
}

.form-check-input:checked {
  background-color: var(--secondary-col);
  border-color: var(--secondary-col);
  outline: none;
}

.form-check-label {
  color: var(--secondary-col);
  font-size: 20px;
}

/**********************
        TABLE  
  **********************/

.flats-table-container table {
	table-layout: auto;
/* 	width: auto; */
}

.flats-table-container th,
.flats-table-container td {
  font-size: 18px;
  white-space: nowrap;
  vertical-align: middle;
  color: var(--secondary-col);
  background-color: transparent;
  border: 0;
}

.flats-table-container td {
  padding-top: 40px;
}

.table-pdf-icon img {
  width: 15px;
  height: auto;
}

.flats-table-container .table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 30px 0;
  background-color: var(--primary-col);
}

.flats-table-container th:first-child {
  text-align: start;
}

.flats-table-container tbody:first-child,
.flats-table-container tbody:last-child {
  text-align: center;
  padding-right: 0;
}

.flats-table-container th:last-child {
  text-align: end;
}

.flats-table-container tr .nr-field,
.flats-table-container tr .etage-field,
.flats-table-container tr .preis-field,
.flats-table-container tr .bezug-field {
	text-align: start;
}

.flats-table-container th.flache-field {
	text-align: center;
}

.flats-table-container .free-field,
.flats-table-container .nutzung-field,
.flats-table-container .flache-field,
.flats-table-container .preis-field,
.flats-table-container .bezug-field {
	padding-right: 20px !important;
	padding-left: 0;
}

.flats-table-container .nr-field,
.flats-table-container .etage-field {
	padding-right: 30px !important;
	padding-left: 0;
}

.flats-table-container tbody tr {
  border-bottom: 1px solid var(--secondary-col);
}

.flats-table-container table tbody tr:hover td {
  background-color: #020e1b;
}

.flats-table-container::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}

.flats-table-container {
  scrollbar-width: none;
  overflow-y: auto;
}

.free-flat {
  width: 20px;
  height: 20px;
  background-color: #85d099;
}

.taken-flat {
  width: 20px;
  height: 20px;
  background-color: #ff5a5a;
}

.reserved-flat {
  width: 20px;
  height: 20px;
  background-color: var(--secondary-col);
}

.flats-info {
  padding: 20px 8px 0 8px;
}

.flats-info-text {
  color: var(--secondary-col);
  font-size: 20px;
  padding-left: 10px;
}

.info-text-sm {
  color: var(--secondary-col);
  font-size: 14px;
  font-weight: 200;
  padding-top: 35px;
}

/*********************
       SWIPER QUOTE 
  *********************/
.swiper-quote-section {
  padding: 100px 0;
  background-color: var(--color-type);
}

.swiper-quote {
  min-height: 300px;
}

.quote-img {
  max-width: 48px;
  height: auto;
}

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

.quote-text {
  color: var(--color-type);
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.6px;
}

.writer-name {
  color: var(--color-type);
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 1.4px;
  padding-top: 15px;
}

.swiper-pagination.swiper-pagination-quote {
  position: relative;
  display: flex;
  flex-direction: row;
  text-align: center;
  height: auto !important;
  width: 100% !important;
  justify-content: center;
  background-color: transparent;
  padding-top: 30px !important;
}

.swiper-pagination.swiper-pagination-quote .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 20px !important;
  background: transparent !important;
  box-shadow: 0 0 0 2px var(--color-type) !important;
}

.swiper-pagination.swiper-pagination-quote .swiper-pagination-bullet-active {
  background: var(--color-type) !important;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-type) !important;
}

.swiper-pagination.swiper-pagination-quote.light
  .swiper-pagination-bullet-active {
  box-shadow: 0 0 0 2px var(--primary-col), 0 0 0 4px var(--color-type) !important;
}

/******************
       TABLE BIG 
  *******************/
.table-big-container {
  padding: 80px 0 100px 0;
}

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

.big-table {
  scrollbar-width: none;
  overflow-y: auto;
}

.big-table th {
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
  text-align: start;
  padding: 40px 20px 20px 20px;
  color: var(--color-type);
  border: 0;
  letter-spacing: 1.4px;
}

.big-table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--primary-col);
}

.big-table tbody tr td:first-child {
  padding-left: 0;
}

.big-table table tbody tr:hover td {
  background-color: #dfdfdf;
}

.big-table td {
  padding: 10px 20px;
  color: var(--color-type);
  transition: all 0.1s ease-in-out;
  white-space: nowrap;
  border-bottom: none;
}

.big-table tbody tr:hover {
  background-color: #8f8f8f;
}

.gallery-row {
  width: 100%;
}

.small-img-container {
  height: 250px;
}

.big-img-container {
  height: 250px;
}

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

.zoom-img-container {
  width: 35px;
  aspect-ratio: 1 / 1;
  background-color: var(--primary-col);
}

.zoom-img {
  width: 25px;
  height: auto;
}

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

/* errror  */
.error-privacy {
  min-height: 1000px;
  background-color: var(--primary-col);
}

.error-message {
  color: var(--secondary-col);
  min-height: 100vh;
}

.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;
}

.back-to-home {
  background-color: transparent;
  border: 1px solid var(--secondary-col);
  font-size: 18px;
  padding: 10px 30px;
  margin-top: 30px;
  text-decoration: none;
  color: var(--secondary-col);
  transition: all 0.2s ease-in-out;
}

.back-to-home:hover {
  color: var(--primary-col);
  background-color: var(--secondary-col);
}

.privacy-container {
  padding: 140px 0;
  width: 100%;
}

.privacy-container h2 {
  color: var(--secondary-col);
}

.privacy-text-container {
  padding-top: 40px;
  color: var(--secondary-col);
}

.privacy-info {
  padding-top: 10px;
  font-weight: 300;
}

.privacy-text-container .privacy-info a {
  color: var(--secondary-col);
  text-decoration: underline;
}

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

@media (min-width: 576px) {
	.navbar-container {
  height: 60px;
}
	
	.logo-img {
     max-width: 270px;
    }

  .big-menu {
    margin-bottom: 0;
    gap: 18px;
  }
	
  .navbar-container.expanded {
    height: 460px;
  }

  .menu-item {
    padding-bottom: 0;
  }

  .small-img-container {
    height: 300px;
  }

  .big-img-container {
    height: 300px;
  }
}

@media (min-width: 768px) {
  h1 {
	font-size: 40px;
	line-height: 55px;	
  }
  h2 {
    font-size: 40px;
	line-height: 55px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 22px;
  }

  /************************
        HERO SECTION
    ************************/

  /**************
        NAVBAR
    **************/
  .navbar-container.expanded {
    height: 200px;
  }

  .big-menu {
    padding-top: 50px;
  }
	
  .wpcf7-checkbox label,
  .wpcf7-list-item label {
    display: flex;
    align-items: center;
}
	
  .form-row .checkbox {
    position: relative;
    top: 0;
}
	
	 /**************
        QUOTES
    **************/
	.quote-text {
		width: 85%;
	}
	
}

@media (min-width: 992px) {
  .vertical-line {
    position: relative;
  }

  .vertical-line::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: var(--color-type, --primary-col);
  }

  .vertical-line:last-child::after {
    display: none;
  }

  .vertical-line:not(:first-child) {
    margin-top: 0;
  }

  .table-divs {
    margin-bottom: 0;
  }

  .table-divs .table-description {
    font-size: 20px;
    min-height: 350px;
  }
	
	.table-divs .table-description a {
		font-size: 20px;
	}

  .hover-link-container {
    bottom: 0;
  }
	
	/******************
       TABLE ROW
  ******************/
  .table-row {
    padding: 166px 0;
  }
	
	.table-content {
    padding-top: 124px;
  }
}

@media (min-width: 1200px) {
  .custom-container {
    max-width: 1120px;
  }

  .smaller-container {
    margin: 0 140px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .hero-swiper-section {
    padding: 240px 0 100px 0;
  }

  /**************
        NAVBAR
    **************/
  .fixed-nav {
    top: 80px;
  }

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

  /**************
        NAVBAR
    **************/
  .navbar-container {
    height: 80px;
  }

  .navbar-container.expanded {
    height: 240px;
  }

  .big-menu {
    padding-top: 100px;
  }

  .nav-links .menu-item a {
    font-size: 20px;
    transition: 0.4s;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .nav-links.home-menu {
    padding: 60px 0;
  }

  .nav-links.home-menu a {
    text-wrap: nowrap;
  }

  /**************
      SWIPER
    **************/

  .swiper-text-container-left {
    margin-left: 150px;
  }
	
	.swiper-text-container-left.hero {
		margin-left: 100px;
	}

  .swiper-big {
    max-width: 800px;
  }

  .swiper-small-left .swiper-wrapper {
    max-width: 600px;
  }

  /**************
      CIRCLE LINK
    **************/
  .circle-link {
    width: 160px;
    height: 160px;
    left: -89.5px;
    bottom: 45%;
  }

  .circle-content {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 2px;
  }

  .arrow-right {
    margin-top: 12px;
  }

  .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
  }
	
  .right-container {
    max-width: 500px;
  }

  .table-divs {
    max-width: 468px;
  }
	
	.swiper-quote {
      min-height: 420px;
    }

  .quote-text {
    font-size: 30px;
    line-height: 55px;
    letter-spacing: 0.6px;
  }
	
  .swiper-pagination.swiper-pagination-quote {
    padding-top: 100px !important;
   }
	
  .swiper-pagination.swiper-pagination-quote .swiper-pagination-bullet {
    width: 17px !important;
    height: 17px !important;
  }

  .gallery-row {
    max-width: 1220px;
  }

  .small-img-container {
    height: 180px;
  }

  .big-img-container {
    height: 180px;
  }

/*   .zoom-img-container {
    width: 60px;
  }

  .zoom-img {
    width: 42px;
  }
 */
  .section-footer {
    padding: 71px 0;
  }

  .custom-scrollbar__bar {
    position: absolute;
    top: 135px;
    bottom: 0;
    right: -43px;
    background-color: #00070e;
    width: 16px;
    height: 100%;
    overflow: hidden;
    max-height: 435px;
  }

  .custom-scrollbar__knob {
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: var(--secondary-col);
    opacity: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: top;
  }

  .privacy-container {
    padding: 240px 0;
    width: 60%;
  }

  .left-container-big {
    width: 700px;
    margin-right: 120px;
  }

  .left-container-gallery {
    max-width: 700px;
    margin-right: 120px;
    max-height: 600px;
  }

  .left-container {
    max-width: 600px;
    /* margin-right: 100px; */
  }

  .right-container {
    max-width: 450px;
    margin-right: 125px;
  }

  .table-margin {
    margin-right: 140px;
  }
}

@media (min-width: 1400px) {
  .container-xxl {
    max-width: 100%;
  }
  .custom-container {
    max-width: 1300px;
  }

  /************************
          HERO SECTION
    ************************/
  .hero-section {
    padding: 80px 0 150px 0;
  }

  /**************
        NAVBAR
    **************/

  .nav-links .menu-item a {
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 17px;
  }

  /**************
      SWIPER
    **************/
  .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 10px 0;
  }

  .swiper-big {
    max-width: 970px;
  }

  .swiper-small-left .swiper-wrapper {
    max-width: 750px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 60px;
    height: 60px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    width: 60px;
    height: fit-content;
    padding: 10px 0;
  }

  /**************
      CIRCLE LINK
    **************/
  .circle-link {
    width: 235px;
    height: 235px;
    left: -117.5px;
    bottom: 40%;
  }

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

  .arrow-right {
    margin-top: 15px;
  }

  /**********************
        SWIPER TEXT
  **********************/
  .swiper-text {
    padding: 80px 0;
  }

  .contact-section {
    padding: 145px 0;
  }

  /* TABLE */

  .big-table th {
    padding: 80px 20px 50px 20px;
  }

  .big-table td {
    padding: 20px;
  }

  .table-left {
    padding-bottom: 0;
	padding-right: 50px;
  }
}

@media (min-width: 1600px) {
	.container {
    max-width: 1580px;
  }

  /**************
        SWIPER
    **************/

  .swiper-big {
    max-width: 1200px;
  }

  .swiper-small-left .swiper-wrapper {
    max-width: 950px;
  }

  .swiper-text-desc p {
    font-size: 20px;
    line-height: 1.7;
	letter-spacing: 0.4px;
  }

  /**************
      LOGO
    **************/
  .logo-container {
    max-width: 220px;
  }
	
  .right-container {
    max-width: 650px;
  }	

  .small-img-container {
    height: 230px;
  }

  .big-img-container {
    height: 230px;
  }

  .flats-info {
    width: 80%;
  }

  .custom-scrollbar__bar {
    width: 20px;
    max-height: 510px;
  }

  .custom-scrollbar__knob {
    width: 20px;
    height: 20px;
  }

.flats-table-container .nr-field,
.flats-table-container .etage-field {
	padding-right: 18px !important;
	padding-left: 0;
}
}

@media (min-width: 1920px) {
  .container {
    max-width: 1840px;
  }

  .scroll-down-btn:hover .scroll-line {
    height: 100px;
  }

  /**************
        NAVBAR
    **************/
  .nav-links .menu-item a {
    padding-bottom: 27px;
  }

  /*************
       MAP 
  *************/
  .map-circle {
    margin-left: 170px;
  }

  .small-img-container {
    height: 400px;
  }

  .big-img-container {
    height: 400px;
  }

  .filter-select {
    padding: 15px 30px;
    font-size: 18px;
  }

  .flats-info {
    width: 70%;
  }

  .swiper-text-container-right {
    margin-left: 175px;
  }

  .left-container {
    max-width: 900px;
  }

  .right-container {
    max-width: 975px;
  }

  .left-container-gallery {
    max-width: 950px;
  }
	
	.flats-table-container th,
.flats-table-container td {
  font-size: 20px;
}
}

@media (min-width: 2200px) {
	.container {
    max-width: 2424px;
  }
	 /************************
          HERO SECTION
    ************************/
  .hero-section {
    padding: 80px 0 270px 0;
  }

  /**************
        LOGO
    **************/
  .logo-container {
    max-width: 300px;
  }

  /**************
        SWIPER
    **************/
  .swiper-big {
    max-width: 1756px;
  }

  .swiper-small-left .swiper-wrapper {
    max-width: 1273px;
  }
	
.flats-table-container .free-field,
.flats-table-container .nutzung-field,
.flats-table-container .flache-field,
.flats-table-container .preis-field,
.flats-table-container .bezug-field {
	padding-right: 40px !important;
	padding-left: 0;
}

.flats-table-container .nr-field,
.flats-table-container .etage-field {
	padding-right: 75px !important;
	padding-left: 0;
}
}

@media (min-width: 2400px) {
	.flats-table-container .free-field,
.flats-table-container .nutzung-field,
.flats-table-container .flache-field,
.flats-table-container .preis-field,
.flats-table-container .bezug-field {
	padding-right: 65px !important;
	padding-left: 0;
}
}
