/* 
Theme Name: Tribschen Office
Author: Portalworks
Version: 1.0
*/

:root {
  --primary-col: #645550;
  --secondary-col: #8a8978;
  --light-col: #d4cbc8;
  --button-col: #bca791;
  --offcanvas-col: #d6c8a4;
  --main-font: "Poppins", sans-serif;
}

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

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

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

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

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

html {
	scroll-padding-top: 80px;
}

/* PREDEFINED CLASSES */

h1 {
  font-size: 28px;
  line-height: 1.1;
  color: var(--primary-col);
  font-weight: 500;
}

.st0, .st4{
	mix-blend-mode: multiply;
}

h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--primary-col);
  line-height: 1.2;
}

h3 {
  color: var(--primary-col);
  line-height: 1.2;
  font-size: 21px;
  font-weight: 700;
}

h4 {
  color: var(--primary-col);
  line-height: 1.2;
  font-size: 18px;
  font-weight: 700;
}

.classic-text p {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.35;
}

.bolder {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: #000;
}

.title-spacing {
  margin-bottom: 8px;
}

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

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

.btn-custom {
  background-color: var(--button-col) !important;
  color: #fff !important;
  padding: 12px 24px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  font-size: 18px;
  font-weight: 700;
}

.btn-custom:active {
  background-color: var(--secondary-col) !important;
  color: #fff !important;
}

.btn-custom:hover {
  background-color: var(--secondary-col) !important;
  color: #fff !important;
}

.text-spacing {
  margin-bottom: 24px;
}

.text-spacing-big {
  margin-bottom: 32px;
  margin-top: 48px;
}

.small-title-link {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  font-style: italic;
  text-transform: uppercase;
  color: var(--primary-col);
}

.footer-spacing {
  padding: 80px 0;
}

.table-iso tbody .no-results-message td {
  padding: 20px 0 !important;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.wpcf7-list-item label {
  display: flex !important;
  align-items: center;
}

.form-check p {
  margin-bottom: 0 !important;
}

form p:has(.btn-custom) {
  display: flex;
  flex-direction: column;
}

#BorlabsCookieDebugConsole {
	display: none !important;
}


/* Navbar */
.navbar {
  background-color: #fff;
  z-index: 10;
}

.navbar-container,
.offcanvas-header {
  min-height: 62px;
}

.navbar-nav .nav-link {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-col);
  padding: 8px 0;
  transition: all 0.2s ease-in-out;
}

.navbar-nav .nav-item:first-child a {
  padding-top: 0 !important;
}

.navbar-nav .nav-item:last-child a {
  padding-bottom: 0 !important;
}

.footer-menu .nav-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  padding: 0;
}

.navbar-nav .nav-link:hover {
  font-weight: 700;
  color: var(--primary-col);
}

.offcanvas-body .links-body .navbar-nav {
  margin-bottom: 80px;
}

.offcanvas-body {
  padding-inline: 55px;
}

.navbar-shadow {
  box-shadow: 0px 5px 20px 0px #00000040;
  transition: box-shadow 0.3s ease;
}

.scroll-logo-active {
	max-width: 45px;
	max-height: 45px;
	width: auto;
	height: auto;
}

.scroll-logo-active img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.navbar-brand img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offcanvas-custom {
  width: 100% !important;
  background-color: var(--offcanvas-col);
  border: none !important;
}

.navbar-toggler:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.navbar-toggler {
  border: 0;
  padding-right: 0;
}

.btn-close:focus {
  box-shadow: none;
}

/* HERO */
.colored-container {
  background-color: var(--light-col);
  width: 100%;
  height: auto;
  bottom: 0;
  top: 50px;
  z-index: -1;
}

.colored-container::before {
  content: "";
  position: absolute;
  background-color: var(--light-col);
  right: 0;
  bottom: 0;
  width: 3840px;
  height: 100%;
  z-index: -1;
}

.colored-container::after {
  content: "";
  position: absolute;
  background-color: var(--light-col);
  left: 0;
  bottom: 0;
  width: 3840px;
  height: 100%;
  z-index: -1;
}

.hero-big-img {
  max-width: 910px;
  max-height: 655px;
}

.hero-big-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
/*   border: 2px solid #fff; */
}

.hero-small-img {
  margin-top: -45px;
  max-width: 530px;
  max-height: 400px;
}

.hero-small-img img {
  max-height: 100%;
  width: 100%;
  object-fit: cover;
  border: 2px solid #fff;
  border-left: none !important;
}

.hero-big-img::before {
  content: "";
  position: absolute;
  border-top: 2px solid #fff;
  width: 100%;
  left: 0;
  bottom: 43px;
  display: none;
}

.hero-big-img::after {
  content: "";
  position: absolute;
  border-right: 2px solid #fff;
  height: 54px;
  right: 46px;
  bottom: -10px;
  display: none;
}

.hero-small-img::before {
  content: "";
  position: absolute;
  border-top: 2px solid #fff;
  width: 100%;
  left: 0;
  top: 43px;
  display: none;
}

.hero-small-img::after {
  content: "";
  position: absolute;
  border-left: 2px solid #fff;
  height: 45px;
  right: 34px;
  top: 0;
  display: none;
}

.heading-container {
  padding-top: 24px;
}

.heading-container-bottom {
  padding: 32px 0;
}

.heading-container-bottom p {
	margin-bottom: 0;
}

/* TABLE */
.table-section {
  background-color: var(--light-col);
}

.isometry-container {
  margin: 40px 0 32px;
}

.building-svg {
  width: 100%;
  height: 100%;
}

.building-svg img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.table-iso thead th {
  background-color: var(--primary-col);
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  padding: 15px 0;
  vertical-align: middle;
}

.table-iso tbody td {
  padding: 0 2px !important;
  border-top: 3px solid var(--light-col);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
}

.table-iso table tbody td:first-child {
	text-align: center;
}

.table-iso table tbody td:last-child {
	padding-top: 2px !important;
	padding-bottom: 2px !important;
	text-align: end;
}

.table-iso tbody tr:hover td {
  background-color: var(--button-col);
}

.pdf-btn {
  background-color: var(--primary-col);
  padding: 7px 9px;
  display: inline-block;
}

.no-pdf {
	height: 37px;
}

.pdf-btn img {
  width: 16px;
  height: auto;
}

td:has(.pdf-btn) {
  width: 48px;
}

.checkbox-btn {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  border-radius: 2px;
  cursor: pointer;
  background-color: transparent;
  vertical-align: middle;
}

.checkbox-btn:checked {
  position: relative;
}

.checkbox-btn:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter p {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.filter-container {
  margin-bottom: 50px;
}

.filter-line {
  height: 3px;
  background-color: var(--button-col);
}

.filter-point {
  width: 12px;
  height: 12px;
  position: relative;
  background-color: var(--button-col);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.1s ease;
}

.filter-point:hover {
  background-color: var(--primary-col);
}

.filter-point.selected {
  background-color: var(--primary-col);
}

.filter-point::after {
  content: attr(data-value);
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

.filter-point:first-child::after {
  left: 0;
  transform: none;
  text-align: right;
}

.filter-point:last-child::after {
  left: auto;
  right: 0;
  transform: none;
  text-align: left;
}

/* HOVER CARDS */
.hover-card {
/*   background-color: var(--secondary-col); */
  min-height: 290px;
  padding: 45px 20px 0;
  overflow: hidden;
}

.hover-svg {
  width: 180px;
  height: 168px;
  transition: all 0.3s ease;
}

.hover-card:hover .hover-svg {
  opacity: 0;
}

.hover-svg img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.hover-text {
  padding-top: 15px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  transition: all 0.4s ease;
}

.hover-text p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  margin: 0 0 15px;
  z-index: 1;
}

.hover-card:hover .hover-text {
  transform: translateY(-120px);
}

.hover-desc {
  font-size: 24px;
  font-weight: 300;
  opacity: 0;
  transition: all 0.4s ease;
}

.hover-card:hover .hover-desc {
  opacity: 1;
}

/* map */
#map {
  width: 100%;
  aspect-ratio: 1/1;
}

/* tabs */
.tabs {
  margin-top: 20px;
}

.tab-buttons {
  margin-bottom: 13px;
}

.tab-button {
  margin-right: 24px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  background-color: transparent;
  padding-inline: 0;
  padding-bottom: 8px;
  color: #000;
}

.tab-button.active {
  border-bottom: 2px solid #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-text {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  color: #000;
  margin-top: 24px;
}

.transport-table {
  table-layout: auto;
  border-collapse: collapse;
}

.transport-table th {
  padding: 15px 0;
  border: none;
	
}

.transport-table th img{
	padding-left: 4px !important;
}

.transport-table td {
  padding: 2px 0px;
  border: none;
  text-wrap: nowrap;
}

.transport-table td:first-child {
	text-wrap: wrap;
}

.transport-table tr td:not(:first-child) {
	text-align: start;
	padding: 2px 4px;
}

.transport-img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.transport-text {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  color: #000;
  margin-bottom: 6px;
}

/* swiper */
.swiper {
  width: 100%;
  height: 100%;
  margin-top: 40px;
  margin-inline: auto;
}

.swiper-slide {
  text-align: center;
  color: #000;
  font-size: 20px;
  line-height: 1.35;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-height: 720px;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
}

.swiper-tribsche-next,
.swiper-tribsche-back {
  color: #fff;
  width: 22px;
  height: auto;
  background-size: contain;
  top: calc(50% - 40px);
}

.swiper-tribsche-next {
  right: 34px;
}

.swiper-tribsche-back {
  left: 34px;
}

.swiper-tribsche-next::after,
.swiper-tribsche-back::after {
  font-size: 35px;
  font-weight: 700;
}

.swiper-text {
  padding: 24px 0;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-col) !important;
}

.swiper-pagination-bullet {
  background: var(--light-col);
  opacity: 1;
}

/* download */
.download-text p {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  color: #000;
}

.download-links a {
  margin-top: 42px;
  padding-inline: 32px;
}

/* angebot small */
.angebot-small-section {
  background-color: #ffd70020;
}

#angebot{
	background: rgba(214, 200, 164, 0.4);
}

/* contact */
.contact-img {
  margin-top: 48px;
  width: 280px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.contact-info {
  margin-top: 48px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.contact-info p,
.contact-info .contact-detail {
  margin-bottom: 8px;
}

.contact-info .name p {
  font-weight: 700;
  margin-bottom: 4px;
}

.svg-icon {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-data a {
  color: #000;
  text-decoration: none;
}

.contact-data a:hover {
  text-decoration: underline;
}

.form-heading p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.form-control {
  border: none;
  border-bottom: 1px solid #666666;
  border-radius: 0;
  min-height: 67px;
  padding-left: 0;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #666666;
}

.form-control::placeholder {
  color: #00000066;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
}

.form-check {
  padding: 0;
  font-size: 16px;
}

.form-check-label a {
  color: var(--button-col);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.form-check .checkbox-btn {
  margin-right: 19px;
	aspect-ratio: 1;
}

.form-check-input {
  border: 3px solid #000;
  width: 18px;
  height: 18px;
}

.form-check-input:focus {
  box-shadow: none;
  outline: none;
}

.form-check-input:checked {
  background-color: transparent;
  border-color: #000;
  outline: none;
}

.form-check a {
	color: var(--button-col);
	text-decoration: none;
}

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

.chosen-flats table {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.chosen-flats table td {
  border: 0;
  border-collapse: collapse;
  padding-inline: 0;
  color: #000000cc;
}

.chosen-flats table td:last-child {
  text-align: end;
}

.chosen-flats table tfoot {
  font-weight: 700;
  border-bottom: 3px solid #666666;
}

.styled-table-form {
  font-size: 14px;
  font-weight: 400;
  color: #000000cc;
}

.st3 > g {
    -o-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -ms-transition: all .6s ease;
}

.st3 > g.moveup {
    -ms-transform: translate(0, -75px);
    transform: translate(0, -75px);
    -webkit-transform: translate(0, -75px);
}

/* .st3 > g > g.active-flat > polygon, .st3 > g > g.active-flat > polyline, .st3 > g > g.active-flat *, .st3 > g > path.active-flat, .st3 > g > path.active-flat > polyline, .st3 > g > path.active-flat *  {
    fill:  var(--button-col) !important;
} */

.st3 path.active-flat,
/* .st3 polygon.active-flat, */
.st3 polyline.active-flat {
	fill: var(--button-col) !important;
}

.table-iso td.hovered-cell {
    background-color: var(--button-col);
    color: #fff;
    transition: background-color 0.3s ease;
}

.st3 > g > image {
    pointer-events: none;
}

footer {
  background-color: var(--primary-col);
}

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

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

.footer-data p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.f-data {
	margin-bottom: 32px;
}

.f-data .footer-bold p {
  font-size: 14px;
  font-weight: 700;
}

.footer-data a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

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

.footer-icons {
  width: 13px;
  height: auto;
  object-fit: contain;
}

.social-media ul {
  list-style: none;
  margin-top: 32px;
}

.footer-links li {
  margin: 0 10px;
  position: relative;
  color: #fff;
}

.footer-links li:last-child {
  margin-right: 0;
}

.footer-links li:first-child {
  margin-left: 0;
}

.footer-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.footer-links li:first-of-type::after {
  content: "|";
  position: absolute;
  top: 0;
  right: -12px;
}

/* privacy */
.back-to-home {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.35;
  width: fit-content;
}

.back-to-home:hover {
  text-decoration: underline;
}

.back-to-home img {
  width: 16px;
  height: auto;
  object-fit: contain;
}

.privacy-content h2 {
  margin: 24px 0;
}

.privacy-content ul {
  list-style: initial;
}

.privacy-content p,
.privacy-content a,
.privacy-content li {
  color: #000;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
}

.privacy-content a {
  text-decoration: none;
}

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

.privacy-text p {
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .hero-small-img {
    margin-top: -65px;
  }
	
	.contact-img {
  		width: 336px;
	}

  .hero-big-img::before {
    bottom: 63px;
  }

  .hero-big-img::after {
    height: 69px;
    right: 70px;
    bottom: -5px;
  }

  .hero-small-img::before {
    top: 63px;
  }

  .hero-small-img::after {
    height: 65px;
    right: 64px;
  }

  /* TABLE */
  .filter-point::after {
    font-size: 20px;
  }

  /* tab */
  #makro .transport-table tr td {
    width: 25%;
  }

  #makro .transport-table tr td:first-child {
    width: 50% !important;
  }
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: fixed !important;
    }
}

@media (max-width: 768px) {
	.container {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	
	.download-links a {
  	margin-top: 32px;
  	padding-inline: 0;
  	margin-inline: 24px;
}
	

}

@media (min-width: 768px) {
  /* Navbar */
  .offcanvas-custom {
    width: 50% !important;
  }

  /* HERO */
  .hero-small-img::after {
    right: 94px;
  }

  /* contact */
  .contact-info {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
	html {
	scroll-padding-top: 50px;
}
	
  /* Navbar */
  .navbar-container,
  .offcanvas-header {
    min-height: 112px;
  }

  .navbar-brand {
    top: 35px;
  }

  .navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--primary-col);
    margin: 0 20px !important;
	padding: 0 !important;
  }
	
  .navbar-nav li.nav-item:last-child .nav-link {
	 margin-right: 0 !important;
  }

  .navbar-nav li.nav-item:first-child a {
    padding-left: 0 !important;
  }

  .navbar-nav li.nav-item:last-child a {
    padding-right: 0 !important;
  }
	
  .offcanvas-body .links-body .navbar-nav {
    margin-bottom: 0;
  }

  /* HERO */
  .heading-container {
    margin-top: 158px;
    padding-top: 38px;
  }

  .hero-big-img img {
/*     border: 13px solid #fff; */
    border-top: none;
  }

  .hero-small-img img {
    border: 13px solid #fff;
  }

  .hero-big-img::before {
    border-top: 13px solid #fff;
    bottom: 152px;
  }

  .hero-big-img::after {
    border-right: 13px solid #fff;
    height: 165px;
    right: 181px;
    bottom: -10px;
  }

  .hero-small-img::before {
    border-top: 13px solid #fff;
    top: 152px;
  }

  .hero-small-img::after {
    border-left: 13px solid #fff;
    height: 155px;
    right: 123px;
  }

  .hero-small-img {
    margin-top: -165px;
    max-width: 530px;
    max-height: 500px;
  }

  .heading-container {
    margin-top: 50px;
    padding-top: 38px;
  }

  .colored-container {
    top: 50px;
  }

  .heading-container-bottom {
    padding: 40px 20px 95px;
  }
	
/* filter */
	.filter p {
  font-size: 20px;

}
	
/* table */
	.table-iso tbody td {
		padding-top: 2px !important;
		padding-bottom: 2px !important;
		font-size: 16px;
	}
	
	.pdf-btn {
  padding: 12px 14px;
}
	
	.no-pdf {
	height: 52px;
}

  /* footer */
	.f-data p:not(.footer-bold p) {
		margin-bottom: 0;
	}

	.f-data {
		margin-bottom: 0px;
	}

	.f-data .footer-bold p {
		font-size: 20px;
	}

	.privacy-content h2 {
		margin: 56px 0;
	}
}

@media (min-width: 1200px) {
  /* PREDEFINED CLASSES */

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 48px !important;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 24px;
  }
	
	.navbar-nav .nav-link {
    margin: 0 25px !important;	
  }
	
	.small-title-link {
		font-size: 21px;
	}

  .section-padding-small {
    padding: 96px 0;
  }

  .section-padding-big {
    padding: 128px 0;
  }

  .footer-spacing {
    padding: 64px 0;
  }

  .bolder {
    font-size: 24px;
  }
  /* Navbar */
  .navbar-brand {
    top: 64px;
  }
	
	.scroll-logo-active {
		max-width: 104px;
		max-height: 104px;
	}

  .navbar-brand img {
    max-width: 313px;
    max-height: 136px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  /* HERO */
  .colored-container {
    top: 158px;
  }

  .hero-small-img::after {
    right: 152px;
    top: 0;
  }

  .heading-container {
    margin-top: 158px;
    padding-top: 38px;
  }

  /* Tab */
  .tab-button {
    font-size: 24px;
  }
  .tab-text {
    font-size: 20px;
    margin-top: 32px;
  }
  .transport-text {
    font-size: 20px;
  }

  .privacy-content p,
  .privacy-content a,
  .privacy-content li {
    font-size: 20px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1624px;
  }
	
	.hero-big-img {
		max-width: 1060px;
		width: 100%;
	}
	
	.hero-big-img img {
		width: 100%;
	}

  .hero-small-img {
/*     margin-top: -154px; */
	  margin-top: -50%;
	  width: 100%;
	  max-width: 655px;
  }

  .hero-big-img::before {
    bottom: 141px;
  }

  .hero-big-img::after {
    height: 160px;
    bottom: -10px;
  }

  .hero-small-img::before {
    top: 143px;
  }
}

@media only screen and (max-width: 1600px) and (min-width: 1400px) {
  .hero-small-img::after {
    height: 155px;
    right: 196px;
    top: 0;
  }
}

@media (min-width: 1600px) {
  /* PREDEFINED CLASSES */
  .offset-xxxl-0 {
    margin-left: 0;
  }

  h1 {
    font-size: 64px;
  }


  h3 {
    font-size: 37px;
  }

  h4 {
    font-size: 28px;
  }

  .back-to-home {
    font-size: 26px;
  }
  .privacy-content p,
  .privacy-content a,
  .privacy-content li {
    font-size: 26px;
  }

  .classic-text p {
    font-size: 26px;
  }

  .bolder {
    font-size: 30px;
  }

  .hero-small-img::after {
    height: 150px;
    right: 99px;
    top: 0;
  }

  .hero-small-img::before {
    left: 0;
    top: 143px;
  }

  /* Tab */
  .tab-button {
    font-size: 32px;
  }
  .tab-text {
    font-size: 26px;
  }
  .transport-text {
    font-size: 26px;
  }

  /* swiper */
  .swiper-slide img {
    max-height: 880px;
  }

  /* contact */
  .contact-info {
    font-size: 26px;
  }

  .svg-icon {
    width: 32px;
    height: 32px;
  }

  .form-heading p {
    font-size: 28px;
  }

  .chosen-flats table {
    font-size: 26px;
  }
}
