:root {
--main-accent-color: #A89038;
--font-color: #FFFFFF;
--font-accent-color: #F2DB87;
--main-background: #272727;
--second-background: #2D2D2D;
--red-color-map: #B85656;
}
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Bodoni 72';
transition: .3s;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
overflow-x: hidden;
}
body {
background: var(--main-background);
overflow-x: hidden;
}
p,
a,
button {
color: var(--font-color);
}
h2,
h3,
h4 {
color: var(--font-accent-color);
}
a:hover {
color: var(--font-accent-color);
}
button {
border: none;
background: transparent;
cursor: pointer;
}
.cta-button {
background: var(--main-accent-color);
width: 100%;
max-width: 230px;
height: 55px;
padding: 0 1rem;
text-transform: uppercase;
font-weight: 400;
font-size: 21px;
line-height: 34px;
letter-spacing: 0%;
text-align: center;
}
.container {
max-width: 1200px;
width: 100%;
margin: auto;
padding: 4rem 2rem;
}
.animate-on-scroll {
opacity: 0;
transition: transform .8s ease-out, opacity .8s ease-out;
}
.fade-up {
transform: translateY(100%);
}
.fade-down {
transform: translateY(-100%);
}
.fade-left {
transform: translateX(-100%);
}
.fade-right {
transform: translateX(100%);
}
.animate-on-scroll.is-visible {
opacity: 1;
transform: translate(0, 0);
}
@media (max-width: 1024px) {
.container {
padding: 2rem;
}
}.homepage-header {
background: linear-gradient(180deg, #000000 0%, rgba(9, 9, 9, 0.52) 48%, rgba(0, 0, 0, 0) 100%);
height: 93px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0px;
left: 0px;
z-index: 10;
.header-content {
width: 100%;
max-width: 1440px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 10px;
.logo {
width: 330px;
height: auto;
img {
width: 100%;
}
}
.menu {
display: flex;
justify-content: space-around;
align-items: center;
gap: 40px;
a {
font-size: 21px;
line-height: 34px;
font-weight: 400x;
text-decoration: none;
color: #fff;
transition: 0.3s;
&:hover {
text-decoration: underline;
}
}
.contact-button-container {
position: relative;
.contact-hover {
background-color: #a89038;
height: 55px;
width: 230px;
display: flex;
justify-content: center;
align-items: center;
font-size: 21px;
line-height: 34px;
font-weight: 700;
color: #fff;
}
.contact-button-content {
position: absolute;
max-width: 230px;
width: 100%;
background-color: #3E3D3DB2;
backdrop-filter: blur(2px);
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
top: 55px;
overflow: hidden;
max-height: 0px;
padding: 0px;
transition: 0.3s;
a {
color: #fff;
font-size: 21px;
line-height: 34px;
&:nth-child(2) {
font-size: 17px;
}
}
}
.show {
max-height: 150px;
padding-bottom: 15px;
padding-top: 15px;
}
}
}
.menu-mobile {
display: none;
}
}
}
@media (max-width: 1150px) {
.homepage-header {
.header-content {
.logo {
width: 250px;
}
.menu {
gap: 30px;
}
}
}
}
@media (max-width: 1024px) {
.homepage-header {
z-index: 3;
.header-content {
height: 100%;
padding: 0px;
.logo {
padding-left: 20px;
}
.menu {
display: none;
}
.menu-mobile {
display: flex;
position: relative;
height: 100%;
z-index: 8;
.hamburger-menu-buttom {
display: flex;
flex-direction: column;
gap: 3px;
justify-content: center;
z-index: 20;
padding-right: 20px;
span.hamburger-span {
display: block;
width: 17px;
height: 2px;
background-color: var(--main-accent-color);
}
}
.hamburger-menu-content {
width: 400px;
background-color: #343434CC;
backdrop-filter: blur(13px);
height: 100%;
transform: translateX(400px);
position: fixed;
top: 0px;
right: 0px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 50px;
z-index: 10;
.hamburger-first-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 50px;
.menu-links {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 40px;
a {
text-decoration: none;
}
}
}
.contact-button-container {
position: relative;
.contact-click {
background-color: var(--main-accent-color);
height: 55px;
width: 230px;
display: flex;
justify-content: center;
align-items: center;
font-size: 21px;
line-height: 34px;
font-weight: 700;
color: var(--font-color);
}
.mobile-button-content {
position: absolute;
max-width: 230px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
bottom: 55px;
overflow: hidden;
max-height: 0px;
padding: 0px;
transition: 0.3s;
a {
color: #fff;
font-size: 21px;
line-height: 34px;
text-decoration: none;
&:nth-child(2) {
font-size: 17px;
}
}
}
.show-contact {
max-height: 150px;
padding-bottom: 15px;
padding-top: 15px;
bottom: 55px;
}
}
}
.hamburger-menu-content.open-menu {
transform: translate(0px);
}
}
}
}
.page-blur {
position: fixed;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
z-index: 1;
background-color: #00000033;
backdrop-filter: blur(8px);
display: none;
}
.page-blur.show-page-blur {
display: block;
}
.black-header {
background-color: #000;
}
}
@media (max-width: 768px) {
.homepage-header {
.header-content {
.menu-mobile {
.hamburger-menu-content {
width: 100vw;
transform: translateX(100%);
.hamburger-first-container {
gap: 70px;
}
}
.hamburger-menu-content.open-menu {
transform: translate(0%);
}
}
}
}
.page-blur.show-page-blur {
display: none;
}
}.site-footer {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 40px;
.footer-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
max-width: 1440px;
gap: 40px;
.f-line {
width: 100%;
max-width: 900px;
height: 3px;
border-radius: 3px;
background-color: var(--font-accent-color);
}
.logo {
img {
width: 475px;
height: auto;
}
}
.f-section-contact, .f-section-nota {
display: flex;
flex-direction: column;
gap: 20px;
h3.f-header-text {
font-size: 34px;
line-height: 55px;
font-weight: 700;
color: var(--font-accent-color);
text-align: center;
}
.f-text {
color: var(--font-color);
font-size: 21px;
line-height: 34px;
max-width: 1000px;
text-align: center;
display: flex;
flex-direction: column;
a {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}
.f-section-nota {
padding: 20px 0px;
}
.f-policy-designed-by {
color: var(--font-color);
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
max-width: 1000px;
span.stellar {
display: flex;
gap: 10px;
a {
text-decoration: none;
display: flex;
align-items: center;
gap: 5px;
&:hover {
text-decoration: underline;
}
}
}
}
}
}
@media (max-width: 1024px) {
.site-footer {    
.footer-content {
.f-line {
max-width: 500px;
}
.f-section-contact, .f-section-nota {
h3.f-header-text {
font-size: 21px;
line-height: 34px;
}
.f-text {
color: var(--font-color);
font-size: 18px;
line-height: 21px;
max-width: 600px;
}
}
.f-policy-designed-by {
max-width: 600px;
span {
font-size: 15px;
line-height: 21px;
text-align: center;
}
}
}
}
}
@media (max-width: 768px) {
.site-footer {
.footer-content {
.logo {
img {
width: 300px;
}
}
.f-section-contact, .f-section-nota {
.f-text {
max-width: 350px;
}
}
.f-policy-designed-by {
flex-direction: column;
gap: 20px;
}
}
}
}.gallery {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
width: 100%;
#mainImage {
width: 100%;
max-width: 1440px;
}
.thumbs {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
img {
width: 260px;
height: 145px;
object-fit: contain;
&:hover {
transform: scale(1.05);
cursor: pointer;
}
}
.lightbox-button {
width: 260px;
height: 145px;
border: 5px solid var(--font-accent-color);
color: var(--font-accent-color);
font-size: 34px;
line-height: 55px;
&:hover {
transform: scale(1.05);
cursor: pointer;
}
}
}
}
#lightbox {
display: none;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
backdrop-filter: blur(2px);
justify-content: center;
align-items: center;
flex-direction: column;
gap: 30px;
z-index: 999;
.close {
position: absolute;
top: 30px;
right: 30px;
color: white;
font-size: 30px;
cursor: pointer;
z-index: 999;
padding: 20px;
}
.lightbox-content {
position: relative;
width: 100%;
max-width: 1440px;
max-height: 80%;
display: flex;
justify-content: center;
align-items: center;
.lightbox-item {
width: 100%;
max-width: 1200px;
max-height: 800px;
height: 100%;   
object-fit: contain;
display: none;
}
.lightbox-item.active {
display: block;
}
.nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
color: white;
font-size: 20px;
cursor: pointer;
user-select: none;
padding: 0 20px;
}
.nav.left {
left: 10px;
}
.nav.right {
right: 10px;
}
}
.lightbox-thumbs {
display: flex;
flex-wrap: wrap;
max-width: 1440px;
width: 100%;
justify-content: center;
gap: 10px;
img {
width: 120px;
height: 80px;
object-fit: cover;
cursor: pointer;
border: 2px solid var(--font-color);
&:hover {
transform: scale(1.05);
cursor: pointer;
}
}
img.active {
border: 2px solid var(--font-accent-color);
}
}
}
#lightbox.open {
display: flex;
}
@media (max-width: 1024px) {
#lightbox {
.lightbox-thumbs {
height: 150px;
overflow-y: scroll;
img {
width: 80px;
height: 60px;
}
}
.close {
padding: 10px;
right: 0;
font-size: 50px;
}
}
}.first-section-container {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 810px;
width: 100%;
position: relative;
.first-section-shadow {
position: absolute;
top: 0px;
left: 0px;
height: 810px;
width: 100%;
background-color: #00000080;
}
.first-section-content {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
gap: 30px;
h1.fs-tekst {
position: relative;
font-size: 89px;
line-height: 89px;
border-left: 8px solid var(--main-accent-color);
border-top: 8px solid var(--main-accent-color);
border-bottom: 8px solid var(--main-accent-color);
text-shadow: 4px 4px 8px #000;
padding: 20px;
padding-right: 0px;
color: var(--font-color);
width: auto;
max-width: 950px;
text-wrap: nowrap;
&:after {
display: block;
position: absolute;
content: "";
width: 8px;
height: 30px;
top: 0px;
right: 0px;
background-color: var(--main-accent-color);
}
&:before {
display: block;
position: absolute;
content: "";
width: 8px;
height: 30px;
bottom: 0px;
right: 0px;
background-color: var(--main-accent-color);
}
}
.fs-info-container {
display: flex;
flex-direction: row;
gap: 20px;
z-index: 0;
.fs-info {
width: 120px;
height: 120px;
background-color: var(--main-accent-color);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
gap: 5px;
span {
color: var(--font-color);
font-weight: 400;
&:nth-child(1) {
font-size: 34px;
line-height: 34px;
}
&:nth-child(2) {
font-size: 21px;
line-height: 24px;
}
}
}
}
}
}
.second-section-container {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding-top: 70px;
padding-bottom: 70px;
.second-section-content {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
.sc-img-container {
position: relative;
display: flex;
justify-content: space-between;
.sc-img-border {
border-right: 8px solid var(--main-accent-color);
border-bottom: 8px solid var(--main-accent-color);
position: absolute;
width: 450px;
height: 450px;
top: 50px;
left: 50px;
}
img {
width: 450px;
height: 450px;
object-fit: cover;
object-position: 15%;
}
}
.sc-text {
display: flex;
flex-direction: column;
gap: 30px;
width: 50%;
p {
font-size: 21px;
line-height: 34px;
color: var(--font-color);
span {
color: var(--font-accent-color);
}
}
}
}
}
.third-section-container {
width: 100%;
display: flex;
justify-content: center;
padding-top: 70px;
padding-bottom: 70px;
.third-section-content {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 20px;
.ts-haeder-text {
color: var(--font-accent-color);
font-size: 34px;
line-height: 55px;
text-align: center;
}
.ts-text {
color: var(--font-color);
font-size: 21px;
line-height: 34px;
text-align: center;
display: flex;
flex-direction: column;
gap: 10px;
width: 100%;
max-width: 900px;
}
.ts-icons-container {
position: relative;
padding-top: 60px;
.ts-border {
width: 8px;
height: 420px;
position: absolute;
left: -60px;
top: 60px;
background-color: var(--main-accent-color);
}
.ts-icons {
display: grid;
grid-template-columns: repeat(3, auto);
gap: 10px;
.ts-icon {
width: 230px;
height: 230px;
display: flex;
flex-direction: column;
align-items: center;
&:nth-child(1),
&:nth-child(2),
&:nth-child(3) {
gap: 10px;
}
img {
width: 150px;
height: 150px;
object-fit: contain;
}
span {
text-align: center;
color: var(--font-accent-color);
width: 200px;
}
&:hover {
img {
transform: translateY(-20px);
}
}
}
}
}
}
}
.fourth-section-container {
background: var(--second-background);
.fourth-section-content {
display: flex;
.fourth-section-content-col-1:has(.btn-parter-container button.active):has(.left-plan-container.hidden) 
.parter-info {
opacity: 1;
}
.fourth-section-content-col-1:has(.btn-poddasze-container button.active):has(.left-plan-container.hidden) 
.poddasze-info {
opacity: 1;
}
.fourth-section-content-col-1:has(.left-plan-container:not(.hidden)) 
.parter-info,
.fourth-section-content-col-1:has(.left-plan-container:not(.hidden)) 
.poddasze-info {
opacity: 0;
}
.fourth-section-content-col-1 {
width: 40%;
.info-section {
min-height: 420px;
#info-title {
font-weight: 700;
font-size: 26.77px;
line-height: 26.77px;
}
#info-area {
font-weight: 400;
font-size: 26.77px;
line-height: 26.77px;
margin: 1rem 0;
}
#info-desc {
font-weight: 400;
font-size: 16.54px;
line-height: 26.77px;
letter-spacing: 0;
&:has(ul) {
white-space: nowrap;
li {
padding: .5rem 0;
}
}
}
}
.fourth-section-content-col-1-buttons {
display: flex;
gap: .5rem;
position: relative;
button {
font-weight: 400;
font-size: 26.77px;
line-height: 43.31px;
letter-spacing: 0;
text-align: center;
color: var(--font-color);
border: 4px solid transparent;
width: 220px;
}
button.active {
color: var(--font-accent-color);
border: 4px solid var(--font-accent-color);
}
.parter-info,
.poddasze-info {
background: #6E5F2833;
color: var(--font-color);
width: 220px;
text-align: center;
padding: .8rem;
opacity: 0;
span {
display: block;
};
.parter-info-sekcja-1,
.poddasze-info-sekcja-1 {
color: var(--font-accent-color);
font-size: 16.54px;
line-height: 43.31px;
}
.parter-info-sekcja-2 {
color: var(--font-accent-color);
font-weight: 700;
font-size: 43.31px;
line-height: 43.31px;
margin-bottom: 2rem;
}
.poddasze-info-sekcja-2 {
color: var(--font-accent-color);
font-weight: 700;
font-size: 43.31px;
line-height: 43.31px;
margin-bottom: 1rem;
}
.parter-info-sekcja-3,
.parter-info-sekcja-4,
.parter-info-sekcja-5 {
font-size: 16.54px;
line-height: 26.77px;
text-align: left;
li {
margin-left: 1rem;
}
}
.parter-info-sekcja-5 {
margin-top: 2rem;
}
.parter-info-sekcja-6,
.poddasze-info-sekcja-6 {
font-weight: 700;
font-size: 26.77px;
line-height: 43.31px;                      
}
}
}
.left-plan-container {
position: relative;
width: 400px;
height: 400px;
margin-top: -350px;
&.hidden {
opacity: 0;
}
#left-dot {
position: absolute;
transition: .8s;
}
.left-dot--parter-default {display: none;}
.left-dot--salon_z_jadalnia {top: 180px; left: 70px;}
.left-dot--klatka_schodowa {top: 75px; left: 197px;}
.left-dot--spizarnia {top: 185px; left: 217px;}
.left-dot--lazienka_parter {top: 95px; left: 273px;}
.left-dot--hol {top: 185px; left: 268px;}
.left-dot--kotlownia {top: 90px; left: 342px;}
.left-dot--wiatrolap {top: 170px; left: 335px;}
.left-dot--kuchnia {top: 266px; left: 308px;}
.left-dot--poddasze-default {display: none;}
.left-dot--pokoj_dla_dziecka {top: 100px; left: 80px;}
.left-dot--komfortowa_sypialnia {top: 235px; left: 55px;}
.left-dot--garderoba {top: 270px; left: 145px;}
.left-dot--lazienka_poddasze {top: 270px; left: 225px;}
.left-dot--komunikacja {top: 190px; left: 200px;}
.left-dot--dodatkowa_sypialnia {top: 240px; left: 325px;}
.left-dot--gabinet {top: 110px; left: 305px;}
}
}
.fourth-section-content-col-2 {
width: 60%;
.floor-visual {
position: relative;
#floor-image {
width: 800px;
aspect-ratio: 1/1;
}
.hotspot {
position: absolute;
cursor: pointer;
width: 35px;
&:hover {
transform: scale(1.15);
transition: .5s;
}
&[data-spot="salon_z_jadalnia"] {top: 250px; left: 260px;}
&[data-spot="klatka_schodowa"] {top: 220px; left: 470px;}
&[data-spot="spizarnia"] {top: 322px; left: 381px;}
&[data-spot="lazienka_parter"] {top: 315px; left: 485px;}
&[data-spot="hol"] {top: 360px; left: 395px;}
&[data-spot="kotlownia"] {top: 363px; left: 563px;}
&[data-spot="wiatrolap"] {top: 400px; left: 495px;}
&[data-spot="kuchnia"] {top: 473px; left: 378px;}
&[data-spot="pokoj_dla_dziecka"] {top: 115px; left: 365px;}
&[data-spot="komfortowa_sypialnia"] {top: 204px; left: 204px;}
&[data-spot="garderoba"] {top: 275px; left: 235px;}
&[data-spot="lazienka_poddasze"] {top: 360px; left: 300px;}
&[data-spot="komunikacja"] {top: 287px; left: 360px;}
&[data-spot="dodatkowa_sypialnia"] {top: 480px; left: 370px;}
&[data-spot="gabinet"] {top: 322px; left: 545px;}
}
}
}
}
}
.fifth-section-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 4rem 2rem;
.fifth-section-content {
width: 100%;
max-width: 1440px;
display: flex;
flex-direction: column;
align-items: center;
gap: 100px;
.fifth-info {
display: flex;
flex-direction: column;
position: relative;
width: 100%;
max-width: 1200px;
.border {
position: absolute;
left: -60px;
top: 30px;
border-left: 8px solid var(--main-accent-color);
border-bottom: 8px solid var(--main-accent-color);
height: 240px;
width: 100%;
max-width: 750px;
}
.fifth-header-text {
color: var(--font-accent-color);
font-size: 34px;
line-height: 55px;
font-weight: 400;
}
p {
font-size: 21px;
line-height: 34px;
color: var(--font-color);
margin-top: 30px;
}
ul {
li {
color: var(--font-color);
font-size: 21px;
line-height: 34px;
font-weight: 400;
margin-left: 20px;
span {
font-weight: 700;
}
}
}
}
.map-section {
width: 100%;
display: flex;
gap: 50px;
justify-content: center;
.map-content {
width: 850px;
height: 800px;
position: relative;
img {
width: 850px;
height: 800px;
}
.in-map-icons {
.object-container {
width: 40px;
height: 40px;
background-color: var(--red-color-map);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
object {
width: 25px;
height: 25px;
}
&:hover {
transform: scale(1.1);
}
&:nth-child(1) { bottom: 110px; right: 20px; } 
&:nth-child(2) { top: 360px; right: 272px; }
&:nth-child(3) { bottom: 160px; right: 20px; }
&:nth-child(4) { top: 10px; left: 215px; }
&:nth-child(5) { top: 10px; left: 165px; }
&:nth-child(6) { bottom: 220px; right: 175px; }
&:nth-child(7) { top: 355px; left: 420px; }
&:nth-child(8) { top: 20px; left: 260px; transform: rotate(176deg);}
&:nth-child(9) { bottom: 192px; right: 50px; }
&:nth-child(7) {
background-color: unset;
object {
width: 60px;
height: 60px;
}
}
&:nth-child(8), &:nth-child(9) {
background-color: unset;
&:hover {
transform: scale(1);
}
object {
width: 50px;
height: 50px;
}
}
&:nth-child(8) {
&:hover {
transform: rotate(176deg);
}
}
}
span.text {
color: var(--font-color);
font-size: 21px;
line-height: 34px;
font-weight: 700;
position: absolute;
}
.glogowska-text {
width: auto;
height: 33px;
background-color: var(--red-color-map);
padding: 5px;
transform: rotate(31deg);
top: 122px;
left: 410px;
display: flex;
justify-content: center;
align-items: center;
}
.centrum-text {
top: 0px;
left: 270px;
}
.ns-text {
right: 0px;
bottom: 65px;
}
}
}
.map-info {
display: flex;
flex-direction: column;
gap: 30px;
h4.map-info-header-text {
font-size: 34px;
line-height: 55px;
font-weight: 400;
}
.map-info-icons {
margin-top: 20px;
display: flex;
flex-direction: column;
gap: 15px;
padding-left: 15px;
.svg-with-text {
display: flex;
align-items: center;
gap: 20px;
white-space: nowrap;
.object-container {
position: relative;
width: 55px;
height: 55px;
display: flex;
align-items: center;
&:before {
position: absolute;
content: "";
background-color: var(--red-color-map);
width: 55px;
height: 55px;
border-radius: 55px;
top: 0px;
left: 0px;
z-index: -1;
transition: width 0.6s cubic-bezier(0.4, 1.2, 0.6, 1)
}
&:hover {
&:before {
width: 350px;
}
}
}
object {
width: 30px;
height: 30px;
margin-left: 13px;
}
p {
color: var(--font-color);
font-size: 21px;
line-height: 34px;
font-weight: 400;
span {
font-weight: 700;
}
}
}
}
.map-info-text {
font-size: 21px;
line-height: 34px;
color: var(--font-color);
font-weight: 400;
}
}
}
}
}
.seventh-section-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
.seventh-section-content {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
.seventh-column {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
max-width: 450px;
gap: 20px;
h4.seventh-header-text {
font-size: 34px;
line-height: 55px;
font-weight: 700;
text-align: center;
}
.seventh-text {
color: var(--font-color);
font-size: 21px;
line-height: 34px;
}
}
.seventh-column.left {
.seventh-text {
display: flex;
flex-direction: column;
gap: 40px;
}
}
.seventh-column.right {
h4.seventh-header-text {
color: var(--font-color);
font-weight: 400;
}
ul {
display: flex;
flex-direction: column;
gap: 20px;
li {
list-style-type: none;
position: relative;
span {
padding-left: 30px;
font-weight: 700;
}
&:before {
position: absolute;
width: 20px;
height: 20px;
display: block;
content: "✅";
left: -5px;
}
}
}
}
}
}@media (max-width: 1366px) {
.fifth-section-container {
.fifth-section-content {
.fifth-info {
max-width: 1000px;
.border {
left: -50px;
top: 50px;
}
}
.map-section {
align-items: center;
flex-direction: column;
.map-info {
max-width: 1000px;
}
}
}
}
}
@media (max-width: 1200px) {
.second-section-container {
.second-section-content {
.sc-text {
width: 45%;
}
}
}
.fourth-section-container {
.fourth-section-content-col-2 {
scale: 0.9;
}
}
.fifth-section-container {
.fifth-section-content {
.fifth-info {
max-width: 900px;
}
}
}
}@media (max-width: 1024px) {
.first-section-container {
height: 470px;
.first-section-shadow {
height: 470px;
}
.first-section-content {
justify-content: end;
gap: 15px;
padding-bottom: 20px;
h1.fs-tekst {
font-size: 34px;
line-height: 55px;
max-width: 400px;
padding: 15px;
&:after {
height: 18px;
}
&:before {
height: 18px;
}
}
.fs-info-container {
gap: 10px;
.fs-info {
width: 77px;
height: 77px;
span {
&:nth-child(1) {
font-size: 22px;
line-height: 22px;
}
&:nth-child(2) {
font-size: 14px;
line-height: 16px;
}
}
}
}
}
}
.second-section-container {
padding-top: 0px;
padding-bottom: 0px;
.second-section-content {
.sc-img-container {
justify-content: center;
gap: 70px;
width: 750px;
.sc-img-border {
border-right: 6px solid var(--main-accent-color);
border-bottom: 6px solid var(--main-accent-color);
width: 300px;
height: 300px;
top: 50px;
left: 60px;
}
img {
width: 325px;
height: 325px;
}
}
.sc-text {
width: 50%;
p {
font-size: 18px;
line-height: 25px;
}
}
}
}
.third-section-container {
padding-top: 0px;
padding-bottom: 0px;
.third-section-content {
.ts-header-text {
font-size: 21px;
line-height: 34px;
}
.ts-text {
font-size: 18px;
line-height: 25px;
max-width: 600px;
}
.ts-icons-container {
padding-top: 40px;
.ts-border {
width: 6px;
height: 100%;
left: -40px;
top: 40px;
}
.ts-icons {
display: grid;
grid-template-columns: repeat(3, auto);
gap: 10px;
.ts-icon {
width: 160px;
height: 160px;
img {
width: 100px;
height: 100px;
}
span {
width: 140px;
font-size: 17px;
}
&:hover {
img {
transform: translateY(0px);
}
}
}
}
}
}
}
.fourth-section-container {
.fourth-section-content {
flex-direction: column-reverse;
align-items: center;
.fourth-section-content-col-1 {
width: 100%;
display: flex;
gap: 30px;
.info-section {
min-height: 420px;
#info-title {
font-weight: 700;
font-size: 21px;
line-height: 34px;
}
#info-area {
font-weight: 400;
font-size: 21px;
line-height: 34px;
margin: 1rem 0;
}
#info-desc {
font-weight: 400;
font-size: 18px;
line-height: 25px;
letter-spacing: 0;
&:has(ul) {
white-space: unset;
li {
padding: .5rem 0;
}
}
}
}
.fourth-section-content-col-1-buttons {
z-index: 2;
.btn-poddasze-container {
margin-left: -178px;
position: relative;
}
button {
width: 170px;
height: 55px;
font-size: 21px;
line-height: 34px;
border: 3px solid transparent;
}
button.active {
border: 3px solid var(--font-accent-color);
}
.parter-info {
display: grid;
grid-template-columns: repeat(2, 50%);
column-gap: 20px;
}
.parter-info,
.poddasze-info {
width: 350px;
.parter-info-sekcja-1,
.poddasze-info-sekcja-1 {
font-size: 18px;
line-height: 25px;
}
.parter-info-sekcja-2 {
font-size: 21px;
margin: 0px;
grid-column-start: 1;
margin-top: -25px;
}
.poddasze-info-sekcja-2 {
font-size: 21px;
margin: 0px;
}
.parter-info-sekcja-3 {
grid-column-start: 2;
grid-row-start: 1;
}
.parter-info-sekcja-4 {
grid-column-start: 2;
}
.parter-info-sekcja-3,
.parter-info-sekcja-4,
.parter-info-sekcja-5 {
font-size: 18px;
line-height: 25px;
margin: 0px;
li {
margin: 0px;
}
}
.parter-info-sekcja-5 {
display: none;
}
.parter-info-sekcja-6 {
grid-column-start: 1;
grid-row-start: 3;
margin-top: -30px;
}
.parter-info-sekcja-6,
.poddasze-info-sekcja-6 {
font-size: 18px;
line-height: 25px;                      
}
}
.poddasze-info {
position: absolute;
left: -180px;
}
}
.left-plan-container {
scale: 0.9;
position: absolute;
margin-top: 0px;
transform-origin: left;
z-index: 1;
}
}
.fourth-section-content-col-2 {
width: 100%;
display: flex;
justify-content: center;
scale: 1;
}
}
}
.fifth-section-container {
.fifth-section-content {
.fifth-info {
max-width: 700px;
.border {
left: -20px;
top: 50px;
border-left: 5px solid var(--main-accent-color);
border-bottom: 5px solid var(--main-accent-color);
height: 130px;
width: 100%;
max-width: 700px;
}
.fifth-header-text {
font-size: 21px;
line-height: 34px;
}
p {
font-size: 18px;
line-height: 25px;
}
ul {
li {
font-size: 18px;
line-height: 25px;
}
}
}
.map-section {
flex-direction: row;
align-items: start;
gap: 30px;
.map-content {
width: 470px;
height: 445px;
position: relative;
img {
width: 470px;
height: 445px;
}
.in-map-icons {
.object-container {
width: 22px;
height: 22px;
object {
width: 14px;
height: 14px;
}
&:hover {
transform: scale(1);
}
&:nth-child(1) { bottom: 90px; right: 10px; } 
&:nth-child(2) { top: 195px; right: 145px; }
&:nth-child(3) { bottom: 60px; right: 10px; }
&:nth-child(4) { top: 5px; left: 115px; }
&:nth-child(5) { top: 5px; left: 85px; }
&:nth-child(6) { bottom: 125px; right: 90px; }
&:nth-child(7) { top: 200px; left: 230px; }
&:nth-child(8) { top: 10px; left: 142px; transform: rotate(176deg);}
&:nth-child(9) { bottom: 109px; right: 30px; }
&:nth-child(7) {
background-color: unset;
object {
width: 33px;
height: 33px;
}
}
&:nth-child(8), &:nth-child(9) {
background-color: unset;
&:hover {
transform: scale(1);
}
object {
width: 30px;
height: 30px;
}
}
&:nth-child(8) {
&:hover {
transform: rotate(176deg);
}
}
}
span.text {
font-size: 13px;
line-height: 25px;
}
.glogowska-text {
height: 25px;
width: 100px;
transform: rotate(31deg);
top: 53px;
left: 200px;
}
.centrum-text {
top: 0px;
left: 155px;
}
.ns-text {
right: -5px;
bottom: 35px;
}
}
}
.map-info {
gap: 10px;
h4.map-info-header-text {
font-size: 21px;
line-height: 34px;
}
.map-info-icons {
margin-top: 5px;
display: flex;
flex-direction: column;
gap: 5px;
padding-left: 0px;
.svg-with-text {
display: flex;
align-items: center;
gap: 10px;
.object-container {
width: 30px;
height: 30px;
&:before {
width: 30px;
height: 30px;
border-radius: 30px;
}
&:hover {
&:before {
width: 30px;
}
}
}
object {
width: 17px;
height: 17px;
margin-left: 6.5px;
}
p {
font-size: 18px;
line-height: 25px;
}
}
}
.map-info-text {
font-size: 18px;
line-height: 25px;
}
}
}
}
}
.gallery {
gap: 20px;
.thumbs {
gap: 5px;
img {
width: 170px;
height: 50px;
object-fit: cover;
border: 1px solid #ffffff50;
&:hover {
transform: scale(1);
}
}
.lightbox-button {
width: 170px;
height: 50px;
border: 2px solid var(--font-accent-color);
font-size: 21px;
line-height: 34px;
&:hover {
transform: scale(1);
}
}
}
}
.seventh-section-container {
.seventh-section-content {
justify-content: center;
align-items: start;
gap: 50px;
.seventh-column {
max-width: 340px;
h4.seventh-header-text {
font-size: 21px;
line-height: 34px;
}
.seventh-text {
font-size: 18px;
line-height: 25px;
}
}
.seventh-column.left {
.seventh-text {
gap: 30px;
}
}
.seventh-column.right {
ul {
gap: 20px;
li {
span {
padding-left: 20px;
font-weight: 700;
}
}
}
}
}
}
}@media (max-width: 768px) {
.first-section-container {
height: 360px;
.first-section-shadow {
height: 360px;
}
.first-section-content {
align-items: center;
gap: 15px;
padding-bottom: 20px;
position: relative;
h1.fs-tekst {
padding: 10px;
&:after {
height: 15px;
}
&:before {
height: 15px;
}
}
.fs-info-container {
position: absolute;
bottom: -100px;
left: 50%;
transform: translateX(-50%);
}
}
}
.second-section-container {
padding-top: 100px;
.second-section-content {
.sc-img-container {
flex-direction: column;
width: 100%;
max-width: 350px;
&:before {
display: block;
content: "";
width: 300px;
height: 300px;
border-right: 6px solid var(--main-accent-color);
border-bottom: 6px solid var(--main-accent-color);
margin-bottom: -100px;
margin-top: 30px;
margin-left: 40px;
}
img {
margin-top: -320px;
}
.sc-img-border {
display: none;
}
}
.sc-text {
width: 100%;
p {
font-size: 18px;
line-height: 25px;
}
}
}
}
.third-section-container {
padding-top: 0px;
padding-bottom: 0px;
.third-section-content {
padding-right: 0px;
width: 100%;
display: grid;
.ts-header-text {
font-size: 21px;
line-height: 34px;
max-width: 350px;
}
.ts-text {
font-size: 18px;
line-height: 25px;
max-width: 600px;
grid-row-start: 3;
text-align: left;
max-width: 350px;
}
.ts-icons-container {
padding-top: 0px;
padding-left: 10px;
width: 100%;
overflow-x: scroll;
&::-webkit-scrollbar {
display: none;
}
.ts-border {
width: 6px;
height: 100%;
left: 0px;
top: 0px;
}
.ts-icons {
display: grid;
grid-template-columns: repeat(2, auto);
gap: 0px;
width: 100%;
overflow: auto;
.ts-icon {
width: 150px;
height: 150px;
img {
width: 90px;
height: 90px;
}
span {
width: 130px;
font-size: 15px;
}
&:hover {
img {
transform: translateY(0px);
}
}
}
}
}
}
}
.fourth-section-container {
.fourth-section-content {
flex-direction: column-reverse;
align-items: center;
.fourth-section-content-col-1 {
width: 100%;
display: flex;
flex-direction: column;
margin-top: 350px;
gap: 30px;
.info-section {
min-height: 420px;
margin-top: 40px;
#info-title {
font-weight: 700;
font-size: 21px;
line-height: 34px;
}
#info-area {
font-weight: 400;
font-size: 21px;
line-height: 34px;
margin: 1rem 0;
}
#info-desc {
font-weight: 400;
font-size: 18px;
line-height: 25px;
letter-spacing: 0;
&:has(ul) {
white-space: unset;
li {
padding: .5rem 0;
}
}
}
}
.fourth-section-content-col-1-buttons {
z-index: 2;
display: flex;
.btn-poddasze-container {
margin-left: -178px;
position: relative;
}
button {
width: 170px;
height: 55px;
font-size: 21px;
line-height: 34px;
border: 3px solid transparent;
}
button.active {
border: 3px solid var(--font-accent-color);
}
.parter-info {
display: grid;
grid-template-columns: repeat(2, 50%);
column-gap: 20px;
}
.parter-info,
.poddasze-info {
width: 350px;
.parter-info-sekcja-1,
.poddasze-info-sekcja-1 {
font-size: 18px;
line-height: 25px;
}
.parter-info-sekcja-2 {
font-size: 21px;
margin: 0px;
grid-column-start: 1;
margin-top: -25px;
}
.poddasze-info-sekcja-2 {
font-size: 21px;
margin: 0px;
}
.parter-info-sekcja-3 {
grid-column-start: 2;
grid-row-start: 1;
}
.parter-info-sekcja-4 {
grid-column-start: 2;
}
.parter-info-sekcja-3,
.parter-info-sekcja-4,
.parter-info-sekcja-5 {
font-size: 18px;
line-height: 25px;
margin: 0px;
li {
margin: 0px;
}
}
.parter-info-sekcja-5 {
display: none;
}
.parter-info-sekcja-6 {
grid-column-start: 1;
grid-row-start: 3;
margin-top: -30px;
}
.parter-info-sekcja-6,
.poddasze-info-sekcja-6 {
font-size: 18px;
line-height: 25px;                      
}
}
.poddasze-info {
position: absolute;
left: -180px;
}
}
.left-plan-container {
scale: .5;
margin-top: 50px;
transform-origin: left top;
}
}
.fourth-section-content-col-2 {
width: 100%;
display: flex;
justify-content: center;
scale: 1;
.floor-visual {
position: absolute;
transform-origin: center top;
scale: 0.5;
margin-top: -40px;
}
}
}
}
.fifth-section-container {
.fifth-section-content {
.fifth-info {
max-width: 700px;
.border {
top: unset;
bottom: -20px;
}
.fifth-header-text {
font-size: 21px;
line-height: 34px;
}
p {
font-size: 18px;
line-height: 25px;
}
ul {
li {
font-size: 18px;
line-height: 25px;
padding: .5rem 0;
}
}
}
.map-section {
flex-direction: column;
align-items: center;
.map-content {
scale: 0.8;
transform-origin: top;
margin-top: -70px;
margin-bottom: -70px;
}
.map-info {
.map-info-icons {
display: grid;
overflow-x: scroll;
max-width: 350px;
gap: 15px;
column-gap: 30px;
&::-webkit-scrollbar {
display: none;
}
}
}
}
}
}
.gallery {
gap: 20px;
.thumbs {
gap: 5px;
img {
width: 170px;
height: 50px;
object-fit: cover;
border: 1px solid #ffffff50;
&:hover {
transform: scale(1);
}
}
.lightbox-button {
width: 170px;
height: 50px;
border: 2px solid var(--font-accent-color);
font-size: 21px;
line-height: 34px;
&:hover {
transform: scale(1);
}
}
}
}
.seventh-section-container {
.seventh-section-content {
flex-direction: column;
}
}
}.tabela {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding-left: 30px;
@media (max-width: 768px) {
overflow-x: scroll;
align-items: start;
justify-content: start;
}
#stellar-tabela {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 30px;
padding-top: 90px;
padding-left: 0px;
@media (max-width: 768px) {
width: 750px;
align-items: start;
}
table {
border-collapse: collapse;
border: 2px solid var(--font-accent-color);
th {
color: var(--font-accent-color);
}
td {
color: #fff;
&.stellar-status--wolny {
color: #00CA4E;
}
&.stellar-status--rezerwacja {
color: #FFBD44;
}
&.stellar-status--sprzedany {
color: #FF605C;
}
}
th,td {
font-size: 21px;
line-height: 34px;
text-align: center;
padding: 10px 20px;
border: 2px solid var(--font-accent-color);
white-space: nowrap;
@media (max-width: 768px) {
font-size: 17px;
line-height: 24px;
}
button {
font-size: 21px;
line-height: 34px;
@media (max-width: 768px) {
font-size: 17px;
line-height: 24px;
}
}
}
}
}
}
#stellar-modal {
display: flex;
justify-content: center;
align-items: center;
@media (max-width: 768px) {
padding: 10px;
}
#stellar-modal-box {
background-color: #2D2D2D;
border: 2px solid var(--font-accent-color);
border-radius: 10px;
padding: 20px;
display: flex;
justify-content: center;
flex-direction: column;
gap: 10px;
width: 100%;
max-width: 650px;
.stellar-modal-content {
color: #fff;
}
.button-content {
position: relative;
button {
font-size: 34px;
font-weight: 800;
top: -50px;
right: 0px;
position: absolute;
}
}
h3 {
font-size: 28px;
@media (max-width: 768px) {
font-size: 21px;
}
}
ul {
display: flex;
flex-direction: column;
gap: 10px;
li {
color: #fff;
list-style-type: none;
}
}
}
}