
:root{
    --color-1: #0f1016;
    --text-color: #f0f0f0;
    --accent-color: #006aff;
    --background-color: #fff;
    --logo-color: #000;
}
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: var(--background-color);
    min-height: 100vh;
}
html{
    font-size: 12pt;
    font-family: "Lato", "Inconsolata", sans-serif;
}

@keyframes scaleAnimation {
  from {scale: 0;}
  to {scale: 1;}
}
@keyframes opacityAnimation {
    from{opacity: 0;}
    to{opacity: 1;}
}
@keyframes slideLeft {
    from{transform: translateX(-500px);}
    to{transform: translateX(0);}
}
@keyframes tracking-in-contract{
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: 5px;
    opacity: 1;
  }
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--color-1);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 8;
}
.sidebar-active-logo{
    display: none;
}
.links-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
nav a{
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

nav .home-link{
    margin-right: auto;
}
nav svg{
    fill: var(--text-color);
}
#sidebar-active{
    display: none;
}
.open-sidebar-button, .close-sidebar-button{
    display: none;
}

.end{
    padding: 50px 0;
    margin-top: 300px;
    margin-bottom: 150px;
    width: 100vw;
    display: flex;
    flex-direction: row;
    background-color: var(--color-1);
    color: #fff;
    justify-content: space-evenly;
}
.section{
    max-width: 300px;
}
.section span{
    font-weight: 600;
    font-size: 18px;
}
.section li{
    list-style: none;
}
.section li:first-child{
    font-weight: 600;
    font-size: 18px;
}

.nav-wycena{
    background-color: var(--accent-color);
    border-radius: 10px;
    height: 60%;
    font-weight: 600;
    margin-right: 1em;
    transition: background-color .3s ease, color .3s ease;
}
.nav-wycena:hover{
    background-color: #fff;
    color: #000;
}
.nav-wycena svg{
    margin-right: 5px;
    transition: fill .3s ease;
}
.nav-wycena:hover svg{
    fill: #000;
    animation: tilt-shaking .4s ease;
}

@keyframes tilt-shaking {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0eg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}


.nav-underline {
  position: relative;
  text-decoration: none;
  color: #fff;
}

.nav-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-underline:hover::after {
  transform: scaleX(1);
}





@media(max-width: 930px){
    .links-container{
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 250px;
        background-color: var(--color-1);
        box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
        transition: 0.5s ease-out;
    }
    nav a{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    }
    .open-sidebar-button, .close-sidebar-button{
    display: block;
    padding: 20px;
    }
    #sidebar-active:checked ~ .links-container{
        right: 0;
    }
    .home-link{
        display: none;
    }
    .sidebar-active-logo{
        display: flex;
    }
    #sidebar-active:checked ~ #overlay{
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }
    .nav-wycena{
    height: auto;
}
}
.header{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    animation: opacityAnimation 2s ease;
}
.header svg{
    width: 5%;
    height: 5%;
}


.start{
    width: 100vw;
}
.start img{
    max-width: 100%;
    height: auto;
    animation-name: opacityAnimation;
    animation-duration: 2s;
    
}
.start-text{
    position: absolute;
    top: 35%;
    left: 10%;
    font-size: 70px;
    font-family: Inconsolata;
    color: #f0f0f0;
    font-weight: 900;
    text-shadow: 8px 8px 30px rgba(0, 0, 0, 1);
}

.tiles-header{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 180px;
    font-size: 40px;
    text-shadow: 0px 0px 2px rgba(66, 68, 90, 1);
    opacity: 0;
}
.tiles-header.animate{
    animation: tracking-in-contract 0.8s ease-out forwards;
}

.tiles{
    margin-top: 180px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.tile-text{
    width: 20vw;
    border-radius: 16px;
    font-size: 20px;
    padding: 20px;
    background: #fefefe;
    -webkit-box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
}
.tile-text:hover{
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.fade-in{
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.tiles div p{
    text-align: center;
    font-size: 32px;
}
.tile-svg{
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tile-svg svg{
    fill: var(--logo-color);
    width: 50px;
    height: 50px;
}

.oferta-button{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.oferta-button a{
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--accent-color);
    padding: 40px;
    border-radius: 15px;
    font-size: 20px;
    -webkit-box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.oferta-button svg{
    fill: var(--text-color);
    transition: fill 0.3s ease;
}
.oferta-button a:hover{
    background-color: #fefefe;
    color: var(--logo-color);
}
.oferta-button a:hover svg{
    fill: var(--logo-color);
}
.elewacja{
    margin-top: 150px;
    display: flex;
    flex-direction: row;
}
.box1 img{
    width: 50vw;
    height: auto;
}
.box2{
    width: 50vw;
    display: flex;
    flex-direction: column;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.box2 svg{
    fill: var(--logo-color);
    width: 4vw;
    height: 4vw;
}

.leaves{
    background-image: url(img/leaves.webp);
    padding: 100px 0;
}
#contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;;
}
.form-button{
    width: 70%;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    border: none;
    background-color: #fff;
}
.form-button:focus{
    outline:  none;
    background-color: #eee;
}
.form-button:focus::placeholder{
    color: transparent;
}
#contact-form button{
    width: 70%;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    border: none;
    font-family: Lato;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#contact-form button:hover{
    cursor: pointer;
    background-color: var(--accent-color);
    color: #fff;
}
#contact-form textarea{
    height: 15vh;
    resize: none;
}
#contact-form svg{
    width: 15%;
    height: 15%;
    fill: #fff;
}
#contact-form a{
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}
#contact-form a span{
    font-weight: 800;
}

.animated-underline{
  position: relative;
  text-decoration: none;
  color: black;
}

.animated-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #fff;

  transition: width 0.5s ease;
}

.animated-underline:hover::after {
  width: 100%;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;

  z-index: 1000;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
    padding: 50px 20px;
    width: 30vw;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    background: rgba(15, 16, 22, 0.85);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(15, 16, 22, 0.3);
}

.modal-content p{
    text-align: center;
    font-size: 30px;
    color: #fff;
}

.modal.show .modal-content {
  transform: scale(1);
}

#closeModal {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
}
.modal-bold{
    color: #0294de;
    font-weight: 900;
}


.kontakt-header{
    opacity: 0;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 5px;
}
.kontakt-header.animate{
    animation: tracking-in-contract 0.8s ease-out forwards;
}
.kontakt-tiles{
    width: 100vw;
    margin-top: 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.kontakt-tiles div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20vw;
    height: 30vh;
    background-color: var(--color-1);
    color: #fff;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    -webkit-box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 15px -5px rgba(66, 68, 90, 1);
    transition: background-color 0.5s ease, color 0.5s ease;
    animation: opacityAnimation;
    animation-duration: 2s;
}
.kontakt-tiles a{
    text-decoration: none;
}
.kontakt-tiles div svg{
    width: 35%;
    height: 35%;
    transition: fill 0.5s ease;
}
.kontakt-tiles div:hover{
    background-color: #fff;
    color: #000;
}
.kontakt-tiles div:hover svg{
    fill: #000;
}

.loader {
    display: block;
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: var(--color-1);
    animation: l15 1s infinite linear;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50vh;
}
.loader::before,
.loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
}
.loader::after {
    margin: 8px;
    animation-duration: 3s;
}
@keyframes l15{ 
    100%{transform: rotate(1turn)}
}

.all{
    display: none;
}

.carousel-wrapper {
  width: 90%;
  margin: 100px auto;
  overflow: hidden;
  position: relative;
  
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color), rgba(255,255,255,0));
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color), rgba(255,255,255,0));
}

.carousel {
  display: flex;
  gap: 2em;
}

.card {
  flex: 0 0 20%;
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
}

@media (max-width: 1024px) { .card { flex: 0 0 25%; } }
@media (max-width: 768px) { .card { flex: 0 0 40%; } }
@media (max-width: 480px) { .card { flex: 0 0 60%; } }

.realizacje-box{
    margin-top: 300px;
    display: flex;
    flex-direction: row;
}
.realizacje-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
}
.realizacje-logo svg{
    fill: #000;
    width: 25vw;
    height: 25vh;
    opacity: 0;
}

.realizacje-logo.bounce svg {
  animation: bounce-in-bck 1.5s both;
  opacity: 1;
}
.realizacje-text{
    letter-spacing: 2px;
    margin-right: auto;
    max-width: 50vw;
    font-size: 1.5em;
    background: var(--color-1);
    border: 1px solid #000;
    color: #fff;
    padding: 2rem;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.realizacje-text.slide-left{
    -webkit-animation: slide-in-left 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-left 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


@-webkit-keyframes bounce-in-bck {
  0% {
    -webkit-transform: scale(7);
            transform: scale(7);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(1.24);
            transform: scale(1.24);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-bck {
  0% {
    -webkit-transform: scale(7);
            transform: scale(7);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(1.24);
            transform: scale(1.24);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

.grid-tile img{
    border-radius: 10px;
    width: 450px;
    height: auto;
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.25);
    opacity: 0;
}
.grid-container{
    margin-top: 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 450px);
    gap: 50px;
    justify-content: center;
}
.grid-tile.slide-bottom img{
	-webkit-animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}



.oferta-bg{
    margin-top: 100px;
    width: 100vw;
    background-image: url(img/ravenna.png);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.oferta-tile{
    width: 25vw;
    margin: 80px 0;
    min-height: 400px;
    background: #fff;
    border-radius: 15px;
    padding: 20px 30px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    opacity: 0;
}
.oferta-tile h1{
    text-align: center;
    font-size: 1.5em;
    letter-spacing: 2px;
}
.oferta-tile ul{
    margin-left: 15px;
}
.oferta-tile li{
    font-size: 1.2em;
    margin: 10px 0;
}
.oferta-tile-button{
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}
.oferta-tile-button button{
    width: 12vw;
    height: 5vh;
    border: none;
    border-radius: 10px;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, color 0.3s ease;
}
.oferta-tile-button button:hover{
    cursor: pointer;
    background: #fff;
    color: #000;
}
.oferta-tile.slide-bottom{
    -webkit-animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}



.call-us-button{
    display: flex;
    background-color: var(--accent-color);
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 13vw;
    height: 8vh;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: background-color .3s ease, color .3s ease;
    animation: call-us-slide 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.call-us-button:hover{
    background-color: #fff;
    color: #000;
}
.call-us-button svg{
    transition: fill .3s ease;
}
.call-us-button:hover svg{
    fill: #000;
}


@keyframes call-us-slide {
  0% {
            transform: translate(-50%, 100px);
    opacity: 0;
  }
  100% {
            transform: translate(-50%, 0px);
    opacity: 1;
  }
}
.cennik-header-img{
    position: relative;
    width: 100vw;
}
.cennik-header-img img{
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(40%);
}
.cennik-header-text{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-align: center;
    text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.50);
    letter-spacing: 2px;
    font-size: clamp(14px, 2vw, 60px);
}
.cennik-header-text span{
    font-size: .5em;
    color: #0294de;
    font-weight: 900;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 1.00);
}
.cennik-header-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 20vw;
  height: 2px;
  background: #0294de;
}
.cennik-header-smalltext{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d8cfcf;
    font-weight: bold;
    text-align: center;
    text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.50);
    font-size: clamp(6px, .7vw, 60px);
    letter-spacing: 1px;
}
.cennik-header-smalltext span{
    color: #0294de;
    font-weight: 900;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 1.00);
}


.cennik-tile-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
}
.cennik-tile{
    width: 20vw;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    position: relative;
    animation: slide-in-bottom .8s ease;
}
.cennik-tile-img{
    background-color: #deeffa;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    border-radius: 10px;
}
.cennik-tile-title{
    margin-top: 50px;
    font-size: 25px;
    font-weight: 900;
}
.cennik-tile-price{
    margin-top: 40px;
    font-size: 20px;
    font-weight: 600;
    
}
.cennik-tile-price span{
    font-size: 48px;
    color: #0294de;
    font-weight: 900;
}
.cennik-tile-caption{
    margin-top: 40px;
    color: #696969;
    letter-spacing: 1px;
}
.cennik-tile-bottom{
    font-size: 16px;
    width: 70%;
    height: 40px;
    background-color: #deeffa;
    padding: 25px;
    color: #4e4e4e;
    border-left: 5px solid #0294de;
    border-radius: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.cennik-czynniki-container{
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.cennik-czynniki{
    width: 40%;
    display: flex;
    flex-direction: column;
}
.cennik-czynniki ul{
    list-style: none;
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.cennik-czynniki li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.cennik-czynniki li svg{
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: #0294de;
}



.cennik-box{
    margin-top: 200px;
    width: 100%;
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),url("img/kostka-brukowa.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 50px 0;
    gap: 50px;
}
.cennik-box-text{
    display: flex;
    flex-direction: column;
    width: 50%;
    color: #fff;
}
.cennik-box-wycena{
    display: flex;
    flex-direction: column;
    width: 20%;
    color: #fff;
    background-color: #0294de;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    align-items: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.cennik-box-wycena button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 12vw;
    margin-top: 50px;
    background-color: var(--color-1);
    color: #fff;
    padding: 15px 10px;
    border: none;
    border-radius: 10px;
    gap: 10px;
    font-weight: 600;
    transition: background-color .3s ease, color .3s ease;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.cennik-box-wycena button svg{
    width: 30px;
    fill: #fff;
    transition: fill .3s ease;
}
.cennik-box-wycena button:hover{
    cursor: pointer;
    background-color: #fff;
    color: #000;
}
.cennik-box-wycena button:hover svg{
    fill: #000;
}




.faq-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
    gap: 30px;
}
.faq{
    display: flex;
    align-items: center;
    text-align: center;
    border: 2px solid #696969;
    border-radius: 10px;
    padding: 15px 20px;
    width: 50vw;
    gap: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.faq-answer{
    margin-left: auto;
    color: #696969;
    margin-right: 50px;
    font-weight: 600;
}
.faq-header{
    font-weight: 600;
    font-size: 3em;
    margin: 40px 0;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.30);
}


@media (max-width: 900px){
    .cennik-box{
        height: 900px;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
    }
    .cennik-box-text{
        width: 80%;
    }
    .cennik-box-wycena{
        width: 80%;
    }
    .cennik-box-wycena button{
        width: 80%;
    }
    .faq-section{
        width: 100vw;
    }
    .faq{
        width: 95vw;
        font-size: .7em;
        gap: 0;
        padding: 20px 5px;
    }
    .faq-answer{
        margin-right: 0;
    }
    .faq-header{
        font-size: 2em;
    }
        
}





@media (max-width: 1900px){
    .start-text{
        font-size: 60px;
        top: 25%;
    }
}
@media (max-width: 900px){
    .start-text{
        font-size: 25px;
        top: 23%;
        left: 5%;
    }
    .tiles{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    .tile-text{
        width: 80vw;
    }
    .tiles-header{
        font-size: 28px;
    }
    .box2{
        font-size: 18px;
    }
    .header svg{
        width: 15%;
        height: 15%;
    }
    .modal-content{
        width: 80vw;
    }
    .openModal{
        width: 40vw;
        top: 85vh;
        left: 55vw;
        border-radius: 10px;
        font-size: 16px;
    }
    .end{
    font-size: 7px;
    padding: 50px 15px;
    }
    .section{
        max-width: 120px;
    }
    .section span{
        font-size: 10px;
    }
    .section li:first-child{
        font-size: 10px;
    }
    .kontakt-tiles{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }
    .kontakt-tiles div{
        width: 70vw;
    }
    .kontakt-header{
        font-size: 20px;
        text-align: center;
    }
    .realizacje-text{
        font-size: 0.8em;
    }
    .realizacje-box{
    margin-top: 150px;
    }
    .grid-tile img{
    width: 350px;
    }
    .grid-container{
        margin-top: 200px;
        grid-template-columns: repeat(auto-fit, 350px);
    }
    .oferta-bg{
        flex-direction: column;
        gap: 50px;
        padding: 50px 0;
    }
    .oferta-tile{
        width: 75vw;
        margin: 0 20px;
    }
    .oferta-tile-button button{
        width: 50vw;
    }
    .oferta-tile-button{
        margin: 0;
    }
    .call-us-button{
        width: 60vw;
        height: 8vh;
    }
    .cennik-header-img img{
        height: 200px;
        width: auto;
    }
    .cennik-tile-container{
        flex-direction: column;
        width: 100vw;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .cennik-tile{
        width: 70%;
    }
}


