@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-color: rgba(0,0,0,0.1);
    --primary-color: rgba(26, 72, 66, 1);
    --secondary-color: rgba(210, 177, 108, 1);
    --bg-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--font-color);
  text-decoration: none;
  transition: 0.3s;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--font-color);
  background-color: var(--bg-color);
}

.container {
  width: 80%;
  max-width: 1320px;
  margin: 0 auto;
}

.main-menu-navbar {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 10px;
  background-color: var(--primary-color);
	top: 0;
	position: relative;
}

.main-menu-navbar.scrolled {
	
  position: fixed;
	background: var(--primary-color) !important;
  z-index: 999;
}

.main-menu-navbar .logo {
  width: auto;
  height: 30px;
}

.main-menu-navbar .logo img {
  width: auto;
  height: 40px;
}

.main-menu-navbar .menu li {
  display: inline;
  margin-right: 20px;
}

.main-menu-navbar .menu li a {
  color: var(--bg-color);
  font-weight: 600;
  font-size: 14px;
}

.main-menu-navbar .menu li a:hover {
  color: var(--secondary-color);
}

.main-menu-navbar .selectors {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-menu-navbar .selectors span {
	color: #fff;
}

.main-menu-navbar .selectors a {
  color: var(--bg-color);
}

.main-menu-navbar .selectors a:hover {
  color: var(--secondary-color);
}

.main-menu-navbar .selectors .tel {
  color: var(--secondary-color);

}

.main-menu-navbar .selectors .tel:hover {
  color: var(--bg-color);
}

.selectors .lang-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

.upper-footer {
  width: 100%;
/*   height: 510px; */
	height: auto;
  background-image: url('https://dreamestate.pl/wp-content/uploads/2025/09/nowe_tlo.jpg');
  background-repeat: no-repeat;
	padding: 64px 0 35px 0;
}

.upper-footer .logo {
  width: auto;
  height: 40px;
}

.upper-footer .logo img {
  width: auto;
  height: 40px;
}

.upper-footer-inner {
  padding: 65px 0 35px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 75px;
  color: var(--bg-color);
}

.main-footer {
  width: 100%;
  background: rgba(47, 47, 47, 1);
  padding: 13px 0;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: var(--bg-color);
}

.main-footer-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.main-footer-inner > div {
  width: 50%;
}

.main-footer-inner .menu {
  width: 100%;
  text-align: right;
}

.main-footer-inner .menu li {
  display: inline;
  margin-left: 35px;
}

.main-footer-inner .menu li a {
  color: var(--bg-color);
}

.main-footer-inner .menu li a:hover {
  color: var(--secondary-color);
}

/* CONTACT */

.form-group p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}

.form-group input,
.form-group .wpcf7-form-control-wrap {
  width: 100%;
}

.form-group input,
.single-input input,
.wpcf7-textarea {
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1%;
  color: rgba(60, 60, 60, 1);
  background-color: transparent;
  border: none;
  padding: 8px 9px;
  border-bottom: 2px solid rgba(0, 0, 0, 1);
  margin-bottom: 10px;
}

.full-width-input textarea {
	width: 100%;
}

.form-group select,
.single-input select {
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: rgba(0, 0, 0, 1);
  padding: 12px 16px;
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 1);
  margin: 10px 0;
}

.form-texts p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgba(36, 36, 36, 1);
  margin-bottom: 15px;
}

.primarybutton,
.wpcf7-submit {
  background: rgba(0, 0, 0, 1);
  padding: 10px 32px;
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
  text-align: center;
  border: none;
  color: #fff;
  text-transform: uppercase;
}

.hero {
  width: 100%;
/*   height: 780px; */
	height: 85vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-wrapper {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
  height: 100%;
}

.hero-slider-left-arrow,
.hero-slider-right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.hero-slider-left-arrow {
  left: 90px;
}
.hero-slider-right-arrow {
  right: 90px;
}

.hero-slider-left-arrow img,
.hero-slider-right-arrow img {
  width: auto;
  height: 33px;
  cursor: pointer;
}

.hero .hero-item {
	display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
	background-position: center center;
}

.hero-item.active {
  display: flex;
}

.hero .hero-content {
  font-family: Montserrat;
  font-weight: 800;
/*   font-size: 148px; */
	font-size: 110px;
  line-height: 124px;
  text-align: center;
  color: var(--bg-color);
}

.search-offers .search-form {
  background-color: var(--bg-color);
  border-radius: 21px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 60px;
  position: relative;
  z-index: 2;
  top: -58px;
}

.search-offers {
	position: relative;
}

.search-offers .search-form .form-row {
	display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.search-offers .search-form .form-row.bottom {
	justify-content: unset;
	margin-top: 20px;
}

.search-offers .search-form .form-row.hidden {
	display: none;
}

.search-form .form-group label {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #000;
}

.search-form .more-filters {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: rgba(47, 47, 47, 1);
	margin-top: 15px;
}

.search-form button {
  background: rgba(26, 72, 66, 1);
  padding: 15px 65px;
  font-size: 14px;
	margin-top: 15px;
}

.search-form .rooms {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rooms input[type="checkbox"] {
  display: none;
}

.search-form .rooms label {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: rgba(47, 47, 47, 1);
	background: #fff;

  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(47, 47, 47, 1);
	cursor: pointer;
}

.search-form .rooms label:hover,
.search-form .rooms input[type="checkbox"]:checked + label{
  border-color: rgba(210, 177, 108, 1);
  color: rgba(210, 177, 108, 1);
}

.home-features {
  width: 100%;
  height: 393px;
  background: rgba(26, 72, 66, 1);
  position: relative;
  z-index: 1;
  top: -130px;
}

.home-features-inner {
  width: 100%;
  height: 393px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.feature {
  flex: 0 0 12.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.feature img {
  width: 69px;
  height: 64px;
}

.card-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.card {
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.card .card-image,
.card .card-image > img {
  width: 100%;
  height: auto;
	position: relative;
	min-height: 211px;
	max-height: 211px;
}

.card .card-image .badge {
	display: flex;
	position: absolute;
	top: 12px;
	right: 0;
	z-index: 1;
}

.card .card-image .badge span {
	width: auto;
	height: 28px;
	padding: 0 20px;
	line-height: 28px;
	background: #D2B16C;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
}

.card .card-content {
  padding: 12px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .card-content.post-content {
	justify-content: space-between;
}

.card-content .card-title a {
  color: rgba(0, 0, 0, 1);

  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
}

.card-content .card-price {
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: rgba(0, 0, 0, 1);
}

.card-content .card-meta {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

.card-content .card-meta > span {
	display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

.card-content .card-meta .card-dot {
	background: #1A4842;
	width: 3px;
	height: 3px;
	display: block;
	border-radius: 50%;
}

.feature p {
  color: #fff;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}

.section.first {
  padding: 0 0 100px 0;
}

.section.center .section-heading {
  justify-content: center;
}

.section.center .section-heading .section-title {
  color: #000;
}

.section .primarybutton {
  background: rgba(26, 72, 66, 1);
}

.section .primarybutton:hover {
  color: rgba(210, 177, 108, 1);
}

.section {
  width: 100%;
  display: block;
  padding: 100px 0;
}

.section .section-heading {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-heading .section-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: rgba(26, 72, 66, 1);
}

.section.dark .section-heading .section-title {
  color: #fff;
}

.section.dark .primarybutton {
  background: rgba(210, 177, 108, 1);
}

.section.dark .primarybutton:hover {
  color: rgba(26, 72, 66, 1);
}

.cta-section {
  width: 100%;
  display: block;
  color: #000;
	margin-bottom: 100px;
    padding: 50px 0 100px 0;
}

.cta-section-inner {
  width: 100%;
  display: block;
  position: relative;
}

.cta-section-inner .cta-image {
  width: 483px;
  height: 322px;
  border: 4px solid rgba(26, 72, 66, 1);
  position: relative;
  z-index: 1;
}

.cta-section-inner .cta-content {
  width: 100%;
  padding: 32px;
  max-width: 1017px;
  position: absolute;
  z-index: 2;
  top: 53px;
  right: 0;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cta-section-inner .cta-content .cta-why {
  max-width: 332px;
  display: flex;
  flex-direction: column;
}

.cta-section-inner .cta-content .cta-why h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 48px;
  color: #000;  
}

.cta-section-inner .cta-content .cta-why p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 20px;
}

.cta-section-inner .cta-content .cta-why a {
  background: rgba(26, 72, 66, 1);

}

.cta-section-inner .cta-content .cta-stats {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.cta-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-stats-item img {
  width: auto;
  height: 64px;
}

.cta-stats-item p {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}

.steps {
  width: 100%;
  height: 1064px;
}

.steps-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps .steps-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 48px;
  color: rgba(26, 72, 66, 1);
  width: 100%;
  text-align: center;
  margin-top: 65px;
}

.step {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.step .step-number {
  flex: 0 0 50%;
  font-weight: 800;
  font-size: 264px;
  line-height: 264px;
  color: rgba(26, 72, 66, 1);
}

.step .step-number.to-right {
  text-align: right;
}

.step .step-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 1);
  padding: 36px;
  justify-content: center;
}

.step .step-content.to-right {
  text-align: right;
}

.step .step-content h3 {
  font-weight: 600;
  font-size: 21px;
  line-height: 30px;
  color: rgba(26, 72, 66, 1);
  
}

.step .step-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 1);

}

.card-post-meta {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.card-post-meta span {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: rgba(26, 72, 66, 1);
}

.card-post-content {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: rgba(0, 0, 0, 1);
}

.card-post-action {
  margin: 10px 0 24px 0;
}

.partners {
  width: 100%;
  display: grid;
	grid-template-columns: repeat(6, 1fr);
  gap: 33px;
}

.partners img {
  width: auto;
  height: 76px;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.partners a:hover img {
  filter: grayscale(0%);
}

.faqs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #000;
}

.faq-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item .faq-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: 2px solid rgba(0, 0, 0, 1);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
}

.faq-item .faq-content  {
  border: 2px solid rgba(0, 0, 0, 1);
  padding: 12px 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.hidden {
  display: none;
}

.estate-groups {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 160px;
  justify-content: center;
  align-items: center;
}

.estate-item {
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #000;
  text-align: center;
}

.estate-item h4 {
  font-size: 16px;
}

.estate-item img {
  width: 200px;
  height: auto;
}

.offers_shortcode_list .card-list {
	margin-bottom: 18px;
}

.offers_shortcode_list .actions {
	width: 100%;
	margin: 30px 0 0 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.offers_shortcode_list .actions a { 
	background-color: rgba(26, 72, 66, 1) !important;

}

.offers_page_search {
	width: 100%;
	padding: 50px 0;
	background: rgba(26, 72, 66, 0.05);
}

.offers_page_search .search-form {
	width: 100%;
	display: flex
;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.other_offers_custom .other_offers_title {
	width: 100%;
	font-weight: 600;
	font-size: 32px;
	line-height: 32px;
	text-align: center;
color: rgba(26, 72, 66, 1);
	margin-bottom: 20px;
}

.offer-table table {
      width: 100%;
      border-collapse: collapse;
      background-color: #fff;
      overflow: hidden;
    }

    .offer-table th, td {
font-weight: 400;
line-height: 21px;
	padding: 11px 0;
    }

    .offer-table th {
      color: rgba(26, 72, 66, 1);

font-size: 21px;
    }

.offer-table tr {
	border-bottom: 1px solid rgba(26, 72, 66, 1)
}

.offer-table td {
	font-weight: 600;
	font-size: 21px;
	color: rgba(26, 72, 66, 1);

}

    .offer-table tbody tr:nth-child(even) {
      background-color: #fafafa;
    }

    .offer-table tbody tr:hover {
      background-color: #f1f8ff;
    }

    .offer-table a {
      color: #f28c3d;
      text-decoration: none;
      font-weight: bold;
    }

    .offer-table .status {
      font-weight: bold;
    }

    .offer-table .status.dostepne {
      color: #2d9c4b;
    }

    .offer-table .status.niedostepne {
      color: #888;
    }

.home-contact-form {
	width: 100%;
	display: flex;
box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
	color: rgba(36, 36, 36, 1);
 
}

.home-contact-form .contact-form {
	padding: 60px 45px 0 45px;
}

.home-contact-form .contact-form h3 {
	color: rgba(0, 0, 0, 1);
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 15px;
}

.home-contact-form .contact-form p {
	font-size: 16px;
	line-height: 24px;
}

.wpcf7-acceptance {
	font-size: 11px;
	line-height: 16px;
}

.wpcf7-submit {
	margin-top: 15px;
}
.contact-form-wrapper .wpcf7-text {
	   width: calc(49% - 20px);
    margin-right: 3%;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 1);
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    padding: 5px 10px;
    display: inline;
	margin-bottom: 10px;
	margin-top: 10px;
	color: #3C3C3C;
    font-family: "Montserrat", sans-serif;
}

.contact-form-wrapper textarea {
	width: 100%;
	font-weight: 300;
    padding: 12px 13px;
	 font-size: 16px;
	font-style: italic;
	border: 2px solid rgba(0, 0, 0, 1);
	margin-bottom: 20px;
	margin-top: 30px;
	color: #3C3C3C;
    font-family: "Montserrat", sans-serif;
}

.upper-footer-inner.bottom {
	padding: 20px 0 35px 0;
}

.upper-footer-inner a {
	color: #fff;
font-weight: 300;
font-size: 13px;
line-height: 13px;
display: block;
	width: 100%;
	margin-top: 10px;
}

.upper-footer-inner .logo {
	margin-bottom: 20px;
}

.upper-footer-inner h5 {
	color: #fff;
font-weight: 600;
font-size: 13px;
line-height: 13px;
margin-bottom: 10px;
	margin-top: 10px;
}

body.home .main-menu-navbar {
  position: fixed;
  z-index: 1000;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.upper-footer-main {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 49px 77px;
	color: #fff;
}

.footer-company-name {
	margin: 16px 0;
font-weight: 600;
font-size: 13px;
line-height: 19px;

}

.footer-company-address {
font-weight: 500;
font-size: 14px;
line-height: 17px;
	margin-bottom: 10px;
}

.footer-company-email {
	display: flex;
	gap: 5px;
	margin-bottom: 10px;
font-weight: 400;
font-size: 14px;
line-height: 18px;
color: #fff;
}

.footer-company-email:hover {
	color: #fff !important;
}

.footer-company-nip {
	display: flex;
	gap: 5px;
	font-weight: 400;
font-size: 14px;
line-height: 18px;
}

.footer-company-location {
	display: flex;
	gap: 5px;
	font-weight: 400;
font-size: 14px;
line-height: 18px;
	margin: 8px 0 0 0;
}

.footer-company-location img {
	width: 20px !important;
	height: 20px !important;
}

.footer-company-phone {
	display: flex;
	gap: 5px;
	font-weight: 400;
font-size: 14px;
line-height: 18px;
	margin: 5px 0 0 0;
	color: #fff;
}

.footer-company-phone a {
	color: #fff;
}

.footer-column__title {
font-weight: 600;
font-size: 14px;
line-height: 19px;

}

.footer-column__subtitle {
font-weight: 600;
font-size: 14px;
line-height: 19px;
margin-top: 21px;
}

.footer__column-content-title {
font-weight: 600;
font-size: 13px;
line-height: 13px;
margin-bottom: 14px;
}

.footer__column-content a {
font-weight: 300;
font-size: 13px;
line-height: 13px;
display: block;
	margin-bottom: 8px;
	color: #fff;
}

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

.footer__column-content-subtitle {
	margin-top: 22px;
font-weight: 600;
font-size: 13px;
line-height: 13px;
margin-bottom: 14px;
}

.footer__column-socials {
	display: flex;
	gap: 12px;
	margin-bottom: 21px;
}

.footer__column-socials-action {
	padding: 8px 18px;
	background: #D2B16C;
	color: #1A4842;
font-weight: 700;
font-size: 12px;
line-height: 12px;
}

.hamburger-menu {
	display: none;
}

.newsletter {
	background: #1A48420D;
}

.newsletter-grid {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 60px;
}

.newsletter-grid .newsletter-grid-content {
	flex: 0 0 30%;
}

.newsletter-grid-content h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 38px;
	color: #1A4842;
}

.newsletter-grid-content h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 38px;
	color: #D2B16C;
}

.newsletter-grid-content p {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 16px;
	color: #1A4842;
	margin-top: 13px;
}

.newsletter-grid-form p {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #1A4842;
}

.newsletter-grid-form .inputs-group {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-top: 15px;
}

.newsletter-grid-form .inputs-group input {
	min-width: 450px;
	border: 2px solid #2F2F2F;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	color: #A0A0A0;
	padding: 11px 12px;
}

.newsletter-grid-form label {
	color: #242424;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	margin-top: 30px;
	width: 100%;
	display: block;
}

.elementor-533 .elementor-element.elementor-element-835b42f .elementor-repeater-item-a312855,
.elementor-533 .elementor-element.elementor-element-835b42f .elementor-repeater-item-37807de {
	grid-row: span 2;
}

.elementor-533 .elementor-element.elementor-element-835b42f .elementor-pagination {
	margin-top: 45px;
font-weight: 700;
font-size: 14px;
line-height: 12px;
letter-spacing: 6%;
	color: #1A4842;
}

.elementor-533 .elementor-element.elementor-element-835b42f .elementor-pagination a {
	font-weight: 700;
font-size: 14px;
line-height: 12px;
letter-spacing: 6%;
	color: #1A4842 !important;
}

.elementor-533 .elementor-element.elementor-element-835b42f .elementor-pagination .current {
	font-weight: 700;
font-size: 14px;
line-height: 12px;
letter-spacing: 6%;
	background: #1A4842 !important;
	color: #fff !important;
	padding: 10px 14px;
}

.menu li {
  position: relative;
}

.menu .sub-menu {
  display: none;
  position: absolute;   /* żeby submenu wysuwało się pod rodzicem */
  background-color: rgba(26, 72, 66, 1);
  margin: 0;
  padding: 20px 10px;
  list-style: none;
	max-width: 250px;
  min-width: 180px;     /* szerokość submenu */
  z-index: 999;
	top: 100%;
	left: 0px;
}

/* Pokaż submenu po najechaniu */
.menu li:hover > ul {
  display: block;
}

/* Linki w submenu */
.menu .sub-menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
}

/* Efekt hover na linkach submenu */
.menu ul ul li a:hover {
  background-color: rgba(26, 72, 66, 0.85);
  color: #ddd;
}

.menu .menu-item-has-children > a::after {
  content: url(https://dreamestate.pl/wp-content/uploads/2025/08/Vector-59.png);
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    top: -5px;
    position: relative;
}

.menu .menu-item-has-children {
	position: relative;
}

.custom-grid-gallery .e-gallery-grid *:nth-child(1),
.custom-grid-gallery .e-gallery-grid *:nth-child(4) {
	grid-column: span min(2, 4);
  	grid-row: span 2;
}

.custom-home-page-form-inputs {
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	gap: 20px;
}

.contact-form-wrapper .custom-home-page-form-inputs .wpcf7-text {
	width: 100% !important;
}

.custom-home-page-form-inputs__button {
	margin-bottom: 20px;
}

.blog__entry__content h2,
.blog__entry__content h3,
.blog__entry__content h4,
.blog__entry__content h5 {
	color: #1A4842;
	margin-bottom: 20px;
}

.blog__entry__content p {
	margin-bottom: 20px;
}

.custom__testimonial__widget .elementor-testimonial__cite {
	display: none;
}

.custom__testimonial__widget .swiper-pagination-bullet {
    width: 56px !important;
    height: 6px !important;
    display: inline-block !important;
    border-radius: 0 !important;
    background: #D9D9D9 !important;
}


.custom__testimonial__widget .swiper-pagination-bullet-active {
	background: #D2B16C !important;
}

.custom__testimonial__widget .swiper-pagination-horizontal {
	display: flex;
	justify-content: flex-start;
}

.custom__testimonial__widget .swiper-slide {
	padding: 0 !important;
}

.custom__testimonial__widget .elementor-main-swiper {
	width: 100% !important;
}

.sorting_offers_select label {
	display: block;
	width: 100%;
font-weight: 600;
font-size: 12px;
line-height: 16px;
letter-spacing: 1%;
color: #2F2F2F;
	margin-bottom: 5px;
}

.sorting_offers_select select {
border: 2px solid #2F2F2F;
font-weight: 600;
font-size: 16px;
line-height: 16px;
letter-spacing: 1%;
color: #2F2F2F;
padding: 12px 16px;
}



.custom-slider {
  position: relative;
  overflow: hidden;
}
.custom-slider img {
  display: none;
  width: 100%;
}

.custom-slider .prev img,
.custom-slider .next img {
	display: block;
}

.custom-slider img.active {
  display: block;
	min-height: 211px;
	max-height: 211px;
}
.custom-slider .prev,
.custom-slider .next {
      position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: unset;
    color: #fff;
    border: none;
    padding: 100px 14px 100px 22px;
    cursor: pointer;
}
.custom-slider .prev { left: 0 !important;  }
.custom-slider .next { right: 0 !important; }

.custom__offer__thumbnails__slider .swiper-slide img {
	width: 100%;
	height: 670px;
	object-fit: cover;
  object-position: center;
}

.custom__offer__thumbnails__slider .elementor-swiper-button.elementor-swiper-button-prev {
	padding: 350px 100px 350px 100px;
	background: linear-gradient(270deg, rgba(2, 2, 2, 0) 0%, rgba(1, 1, 1, 0.32) 39.12%, rgba(0,0,0,0.8) 91.62%);
	left: 0 !important;
}

.custom__offer__thumbnails__slider .elementor-swiper-button.elementor-swiper-button-next {
	padding: 350px 100px 350px 100px;
	background: linear-gradient(90deg, rgba(2, 2, 2, 0) 0%, rgba(1, 1, 1, 0.32) 39.12%, rgba(0,0,0,0.8) 91.62%);
	right: 0 !important;
}

.custom__offer__thumbnails__slider .elementor-image-carousel-wrapper {
	position: relative !important;
}

.shortcuts {
	position: fixed;
	top: 50%;
	right: 0;
	display: flex;
	flex-direction: column;
	z-index: 1000;
}

.shortcuts a {
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(26, 72, 66, 0.5);
	padding: 15px;
	transition: 0.3s;
}

.shortcuts a:hover {
	background: rgba(26, 72, 66, 0.9);
	transition: 0.3s;
}

.shortcuts a img {
	width: 35px;
	height: auto;
}

.custom__offer_fullscreen__button img {
	cursor: pointer;
}

.offer__item__slider .swiper-slide img {
	width: auto;
	height: 201px !important;
}

.custom__offer__container {
	width: 300px !important;
}

.custom_site_badge {
	display: flex;
}

.custom_site_badge span {
	width: auto;
    height: 28px;
    padding: 0 20px;
    line-height: 28px;
    background: #D2B16C;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.card-list-inwestycje {
	display: grid;
	grid-template-columns: repeat(4, 1fr)
}

.home-best-offers .card {
	flex: 1 1 calc(25% - 20px);
}

.home-form-acceptance label {
	margin-bottom: 10px;
	display: block;
}

.custom-form-offer-with-acceptance a {
	color: #1A4842 !important;
}

.custom-flat-widget-item.even {
	background: #1A48420D;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 50px;
  margin: 20px 0;
}

.spec-grid .spec-item {
  display: flex;
  flex-direction: row;
	justify-content: space-between;
	padding: 20px 10px;
	border-bottom: 1px solid rgba(26, 72, 66, 1);
	align-items: center;
}

.spec-grid .spec-item:nth-child(4n-1),
.spec-grid .spec-item:nth-child(4n) {
  background: rgba(26, 72, 66, 0.05);
}

.spec-grid .hidden-spec {
  display: none;
}

.spec-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 2%;
  color: rgba(26, 72, 66, 1);
}

.spec-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  color: rgba(26, 72, 66, 1);
}

.spec-toggle {
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(26, 72, 66, 1);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  transition: background 0.3s;
}

.spec-toggle:hover {
  background: rgba(20, 55, 50, 1);
}

.spec-toggle-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.custom__editor__offer__styles ul {
	margin: 0 0 10px 20px;
}

.custom__editor__offer__styles p {
	display: block;
	margin-bottom: 10px;
}

.search-offers.custom-single-page {
	width: 100%;
    padding: 50px 0;
    background: rgba(26, 72, 66, 0.05);
}

.search-offers.custom-single-page .search-form {
    background-color: unset !important;
    border-radius: 0 !important;
    box-shadow: unset !important;
    padding: 0 !important;
    position: relative;
    z-index: 2;
    top: 0px !important;
}

.search-offers.custom-single-page .search-form .form-row {
	justify-content: unset !important
}

.elementor-widget-text-editor ul {
	margin-left: 15px;
}

.card-slider-home.newest-section__section .slide {
	display: flex;
    gap: 0;
    justify-content: space-between;
    min-width: 100%;
    padding: 0 5px;
}

/* MOBILE */

.mobile-visible {
	display: none;
}

@media (max-width: 700px) {
	.mobile-visible {
		display: block;
	}
	.mobile-hidden {
		display: none;
	}
	.hero {
		height: 40vh;
	}
	
	.hero .hero-item {
		background-position: center center;
		padding: 20px 0;
		background-size: cover;
	}
	.mobile-contact-container {
		width: 100%;
	}
	.home-contact-form .contact-form {
		padding: 25px 25px 0 25px;
	}
	.hero .hero-content {
		font-size: 32px;
		line-height: 40px;
	}
	.search-offers {
		width: 100%;
		display: block;
	}
	.search-offers .container {
		width: 100%;
	}
	.search-offers .search-form {
		top: 0;
		border-radius: 0;
	}
	.search-offers .search-form .form-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.home-features {
		top: 0;
		padding: 50px 0;
	}
	.home-features-inner {
		height: auto;
	}
	.main-menu-navbar {
		padding: 20px;
    	gap: 10px;
	}
	.main-menu-navbar .logo {
		height: 20px;
	}
	.main-menu-navbar .logo img {
		height: 20px;
	}
	.newsletter-grid {
		flex-direction: column;
	}
	.newsletter-grid-form .inputs-group input {
		min-width: 100%;
	}
	.newsletter-grid-form .inputs-group {
		flex-direction: column;
	}
	.custom-home-page-form-inputs {
		grid-template-columns: repeat(1, 1fr);
	}
	.section {
		padding: 50px 0;
	}
	.section .section-heading {
        flex-direction: column;
        gap: 20px;
    }
	.section.first {
		padding: 100px 0 50px 0;
	}
	.main-menu-navbar .menu {
		top: 100%;
	}
	
	.card-list-inwestycje {
		grid-template-columns: repeat(1, 1fr);
	}
	.card-slider-blog .slide > div:not(:first-child),
	.card-slider-home.newest-section__section .slide > div:not(:first-child) {
	  display: none;
	} 
	.card-slider-blog .card,
	.card-slider-home.newest-section__section .card {
		flex: 1 1 100% !important;
    	max-width: 100% !important;
	}
	.custom-blog-button-prev,
	.custom-nowosci-button-prev{
		left: 5px !important;
	}
	.custom-blog-button-next,
	.custom-nowosci-button-next{
		right: 5px !important;
	}
	.main-footer-inner {
		gap: 20px;
	}
	.main-footer-inner > div {
		width: 100%;
	}
	.main-footer-inner ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.main-footer-inner .menu {
		text-align: left;
	}
	.main-footer-inner .menu li {
		margin-left: 0px;
	}
	.search-offers.custom-single-page {
		padding: 20px !important;
	}
	.spec-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.custom__offer__thumbnails__slider .swiper-slide img {
		width: 100%;
		height: 300px;
		object-fit: cover;
	  object-position: center;
	}

	.custom__offer__thumbnails__slider .elementor-swiper-button.elementor-swiper-button-prev {
		padding: 150px 20px 150px 20px;
		background: linear-gradient(270deg, rgba(2, 2, 2, 0) 0%, rgba(1, 1, 1, 0.32) 39.12%, rgba(0,0,0,0.8) 91.62%);
		left: 0 !important;
	}

	.custom__offer__thumbnails__slider .elementor-swiper-button.elementor-swiper-button-next {
		padding: 150px 20px 150px 20px;
		background: linear-gradient(90deg, rgba(2, 2, 2, 0) 0%, rgba(1, 1, 1, 0.32) 39.12%, rgba(0,0,0,0.8) 91.62%);
		right: 0 !important;
	}

	.custom__offer__thumbnails__slider .elementor-image-carousel-wrapper {
		position: relative !important;
	}
	.custom-nowosci-button-prev,
	.custom-nowosci-button-next {
		display: none;
	}
	.container {
		width: 90%;
	}
	.section-action__mobile {
		width: 100%;
    	display: flex;
    	margin-top: 20px;
	}
	.section-action__mobile .primarybutton {
		width: 100%;
	}
	.section.first {
		padding: 50px 0 !important;
	}
	.section .section-heading {
		margin-bottom: 30px;
	}
	
	.mobile-slider .card {
    display: none;
  }

  .mobile-slider .card.active {
    display: block;
  }

  .mobile-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 23px;
  }

  .mobile-slider-dots button {
    width: 56px;
    height: 6px;
    background: #D9D9D9;
    margin: 0 5px;
    cursor: pointer;
	  border: none;
  }

  .mobile-slider-dots button.active {
    background: #D2B16C;
  }
	
.partners {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 50%;
    overflow-x: auto;          
    -webkit-overflow-scrolling: 
    scroll-snap-type: x mandatory;
  }

  .partners > * {
    scroll-snap-align: start;
  }
}

@media (max-width: 1000px) {
	.hamburger-menu {
        display: block;
        position: absolute;
        right: 20px;
        width: 32px;
        height: 32px;
    }
	.hamburger-menu img {
		width: 100%; 
		height: auto;
	}
	.contact-bg img {
		width: 100%;
		height: auto;
	}
	.search-offers .search-form {
		flex-direction: column;
		height: auto;
    	padding: 30px;
	}
	.home-features {
        height: auto;
        background-repeat: repeat;
        padding: 100px 0;
	}
	.home-features-inner {
		display: grid;
		 grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		
	}
	.card-list {
		flex-direction: column;
	}
	.cta-section-inner .cta-image {
		width: 100%;
		height: auto;
	}
	.cta-section-inner .cta-content {
		width: 90%;
		padding: 20px;
		max-width: 1017px;
		position: absolute;
		z-index: 2;
		top: 80%;
		right: 5%;
		background-color: #fff;
		display: flex
	;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}
	.cta-section-inner .cta-content .cta-stats {
		margin-top: 20px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.cta-section-inner .cta-content .cta-why h3 {
		font-size: 24px;
		line-height: 32px;
	}
	.cta-section-inner .cta-content .cta-why p {
		font-size: 14px;
		line-height: 19px;
	}
	.steps {
		background-color: unset !important;
		background-image: unset !important;
		height: auto !important;
		position: relative;
        margin-top: 400px;
	}
	.steps .steps-title {
		font-size: 24px;
		line-height: 32px;
		text-align: left;
	}
	.step {
		gap: 0px;
		flex-direction: column;
	}
	.step .step-content {
		    flex: 0 0 100%;
		padding: 0;
	}
	.step .step-content.to-right {
		text-align: left;
	}
	.step .step-number {
		display: none !important;
	}
	.partners {
		grid-template-columns: repeat(2, 1fr);
	}
	.card-slider-blog .card {
		flex: 1 1 calc(100% - 20px);
	}
	.home-contact-form {
		flex-direction: column;
	}
	.estate-groups {
		flex-direction: column;
		gap: 40px;
	}
	.upper-footer-main {
		grid-template-columns: repeat(1, 1fr);
	}
	.upper-footer {
		height: auto;
		background-repeat: repeat;
	}
	
	.main-footer-inner {
		flex-direction: column;
	}
	.main-menu-navbar .menu {
		width: 100%;
    display: none;
    position: absolute;
            background-color: var(--primary-color);
        left: 0;
        top: 100%;
		padding: 20px;
		z-index: 100;
	}
	
	.menu .sub-menu {
		position: relative;
		background-color: unset;
	}
	
	.offers_page_search .search-form {
		flex-direction: column;
	}
	
	.main-menu-navbar .menu li a {
		color: #000;
	}
	
	.main-menu-navbar .menu a {
		color: #fff !important;
	}
	
	.main-menu-navbar .menu li {
		display: block;
		width: 100%;
		margin: 0 0 20px 0;
	}
	.main-menu-navbar .selectors {
		display: none;
	}
	
	
}

@media print {
	.custom__offer__thumbnails__slider,
	.custom__offer__header,
	.custom__offer__map,
	.custom__offer__form,
	.custom__offer__person,
	.custom__offer__more--offers,
	.grecaptcha-logo,
	.upper-footer,
	.main-footer,
	.main-menu-navbar,
	.spec-toggle,
	.shortcuts {
		display: none !important;
	}
	.spec-grid .hidden-spec {
		display: flex !important;
	}
	.spec-grid {
		grid-template-columns: repeat(1, 1fr);
	}
  img {
    display: none !important;
  }

	i {
		display: none !important;
	}
	.cky-consent-container {
		display: none !important;
	}
	.grecaptcha-badge {
		box-shadow: unset !important;
	}
}

.pum-theme-5714 {
	background-color: rgba(0,0,0,0.7) !important;
}

#popmake-5723 {
	background-color: rgba(26, 72, 66, 1);
	color: #fff !important;
	max-width: 600px !important;
}

.pum-theme-5714 .pum-content, .pum-theme-motyw-domyslny .pum-content {
	padding: 40px;
	color: #fff !important;
} 

.pum-theme-5714 .pum-content a, .pum-theme-motyw-domyslny .pum-content a {
	color: rgba(210, 177, 108, 1) !important;
}

.pum-theme-5714 .pum-content p, .pum-theme-motyw-domyslny .pum-content p {
	margin-bottom: 15px;
}