* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-family: Arial, sans-serif;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
a {
    text-decoration: none;
}
/* nav */
div.nav-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
    border: 1px solid #e7e7e7;
}
nav {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

nav .logo {
    float: left;
    margin-top: 20px;
    margin-bottom: 20px;
}
@media(max-width:1005px){
    .logo img {
        width: 150px;
    }
}
nav .nav {
    float: left;
    margin-left: 200px;
    margin-top: 55px;
}
@media(max-width:1300px){
    nav .nav {
        margin-left: 120px;
    }
}
@media(max-width:1205px){
    nav .nav {
        margin-left: 80px;
    }
}
@media(max-width:1161px){
    nav .nav {
        margin-left: 50px;
    }
}
@media(max-width:1005px){
    nav .nav {
        margin-left: 50px;
    }
}
.nav ul{
    list-style: none;
}
.nav li {
    display: inline-block;
}
.nav li a{
    text-decoration: none;
    text-transform: uppercase;
    padding-right: 40px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #ffa41b;
    transition: 0.2s;
}
@media(max-width:1005px){
    .nav li a {
        font-size: 14px;
    }
}
.nav li a:hover {
    color: #d18109;
}
nav .ikony {
    position: relative;
}
nav .nav-linia {
    content: '';
    display: block;
    width: 2px;
    height: 45px;
    background-color:#ffa41b;
    position: absolute;
    bottom: -83px;
    left: 1035px;
    z-index: 1;
    margin: auto;
    border: none;
}
@media(max-width:1300px){
    nav .nav-linia {
        left: 955px;
    }
}
@media(max-width:1205px){
    nav .nav-linia {
        left: 915px;
    }
}
@media(max-width:1161px){
    nav .nav-linia {
        left: 885px;
    }
}
@media(max-width:1130px){
    nav .nav-linia {
        left: 780px;
    }
}
@media(max-width:1005px){
    nav .nav-linia {
        display: none;
    }
}

nav .mail {
    float: left;
    background-color: #ffa41b;
    border-radius: 50%;
    margin-left: 140px;
    margin-top: 40px;
    transition: 0.2s;
}

@media(max-width:1130px){
    nav .mail {
        margin-left: 30px;
    }
}
@media(max-width:1005px){
    nav .mail {
        margin-left: 10px;
    }
}
nav .mail button {
    background-color: #ffa41b;
    border-radius: 50%;
    border:#ffa41b;
}
nav .mail button:hover {
    color: #ffa41b;
    cursor:pointer;
}

nav .mail span {
    margin: 8px;
    color: white;
}

nav .contact {
    float: left;
    background-color: #ffa41b;
    border-radius: 50%;
    margin-left: 20px;
    margin-top: 40px;
    transition: 0.2s;
}
nav .contact button {
    background-color: #ffa41b;
    border-radius: 50%;
    border:#ffa41b;
}
nav .contact button:hover {
    color: #ffa41b;
    cursor:pointer;
}

nav .contact span {
    margin: 8px;
    color: white;
}
@media(max-width:1005px){
    nav .ikony span{
        font-size: 18px;
    }
}

/* MOBILNA NAVIGACJA */

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }

nav .menu button {
    background-color: #ffa41b;
    border-radius: 50%;
    border:#ffa41b;
    display: none;
    }
nav .menu button:hover {
    color: #ffa41b;
    cursor:pointer;
}

nav .menu span {
    margin: 8px;
    color: white;
}
  
  @media screen and (max-height: 450px) {
    .overlay {overflow-y: auto;}
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  }
  @media (max-width:830px){
      .nav {
          display: none;
      }
      .ikony{
          display: none;
      }
      nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }
      .menu {
          padding-left: 500px;
          padding-right: 50px;
      }
      nav .menu button {
          display: block;
      }
  }
  @media (max-width:750px){
    .menu{
        padding-left: 350px;
    }
  }
  @media (max-width:600px){
      .menu{
        padding-left: 200px;
      }
  }
  @media (max-width:420px){
      .menu{
          padding-left: 100px;
      }
  }

/* header */
header {
    background-color:rgb(250, 250, 250);
}
.slideshow-container {
    width: 100%;
    margin: auto;
    margin-top: 134px;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
    height: 750px;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-image: url(img/slider/podloga5.png);
    background-size: 100% 750px;
    background-position: center;
  }
  @media(max-width:900px){
      .mySlides{
      flex-direction: column;
      }
  }

  .mySlide1 img {
      position: absolute;
      top: 16%;
      left: 15%;
  }

  .mySlide2 img {
    position: absolute;
    top: 13%;
    left: 10%;
}

  .mySlide3 img {
    position: absolute;
    top: 5%;
    left: 13%;
}
@media(max-width:1550px){
    .mySlide1 img {
        left: 5%;
    }
    .mySlide2 img {
        left: 5%;
    }
    .mySlide3 img {
        left: 5%;
    }
}
@media(max-width:1400px){
    .mySlides {
        height: 600px;
    }
    .mySlide1 img {
        width: 740px;
        left: 10%;
    }
    .mySlide2 img {
        width: 740px;
        left: 10%;
        top: 22%;
    }
    .mySlide3 img {
        width: 800px;
        left: 10%;
    }
  }
  @media(max-width:1161px){
    .mySlide1 img {
        left: 4%;
    }
    .mySlide2 img {
        left: 4%;
    }
    .mySlide3 img {
        left: 4%;
    }
  }
  @media(max-width:1024px){
    .mySlide1 img {
        width: 600px;
        left: 5%;
        top: 30%;
    }
    .mySlide2 img {
        width: 600px;
        left: 5%;
        top: 33%;
    }
    .mySlide3 img {
        width: 600px;
        left: 5%;
        top: 35%;
    }
  }
  @media(max-width:990px){
    .mySlides {
        height: 500px;
    }
    .mySlide1 img {
        width: 500px;
        left: 10%;
    }
    .mySlide2 img {
        width: 500px;
        left: 10%;
    }
    .mySlide3 img {
        width: 600px;
        left: 10%;
        top: 17%;
    }
}
@media(max-width:900px){
    .mySlides{
        height: 600px;
    }
    .mySlide1 img {
        position: static;
    }
    .mySlide2 img {
        position: static;
    }
    .mySlide3 img {
        position: static;
    }
}
@media(max-width:600px){
    .mySlide1 img {
        width: 500px;
        margin-bottom: 7%;
    }
    .mySlide2 img {
        width: 500px;
        margin-bottom: 7%;
    }
    .mySlide3 img {
        width: 500px;
        margin-bottom: 7%;
    }
}
@media(max-width:530px){
    .mySlides{
        height: 500px;
    }
    .mySlide1 img {
        width: 450px;
        margin-bottom: 5%;
    }
    .mySlide2 img {
        width: 450px;
        margin-bottom: 5%;
    }
    .mySlide3 img {
        width: 450px;
        margin-bottom: 5%;
    }
}
@media(max-width:451px){
    .mySlides{
        height: 450px;
    }
    .mySlide1 img {
        width: 400px;
        margin-bottom: 5%;
    }
    .mySlide2 img {
        width: 400px;
        margin-bottom: 5%;
    }
    .mySlide3 img {
        width: 400px;
        margin-bottom: 5%;
    }
}
@media(max-width:451px){
    .mySlides{
        height: 400px;
    }
    .mySlide1 img {
        width: 350px;
        margin-bottom: 5%;
    }
    .mySlide2 img {
        width: 350px;
        margin-bottom: 5%;
    }
    .mySlide3 img {
        width: 400px;
        margin-bottom: 0%;
    }
}
@media(max-width:356px){
    .mySlides{
        height: 370px;
    }
    .mySlide1 img {
        width: 320px;
        margin-bottom: 5%;
    }
    .mySlide2 img {
        width: 320px;
        margin-bottom: 5%;
    }
    .mySlide3 img {
        width: 320px;
        margin-bottom: 5%;
    }
}

  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .slideshow-container .text {
    font-size: 30px;
    /* position: absolute;
    top: 165px;
    right: 0; */
    width: 25%;
    background: rgb(0, 0, 0); 
    background: rgba(0, 0, 0, 0.5); 
    color: #f1f1f1;
    padding: 50px;
  }
  .slideshow-container .text h1 {
      font-family: Arial, sans-serif;
      margin-bottom: 20px;
  }
  @media(max-width:1550px){
    .slideshow-container .text{
        padding: 40px;
        font-size: 25px;
    }
  }
  @media(max-width:1130px){
    .slideshow-container .text{
        padding: 30px;
        font-size: 20px;
    }
  }
  @media(max-width:900px){
    .slideshow-container .text{
        width: 100%;
        padding: 15px;
        padding-left: 30px;
    }
  }
  @media(max-width:530px){
    .slideshow-container .text{
        font-size: 15px;
    }
  }
  @media(max-width:370px){
    .slideshow-container .text{
        font-size: 12px;
    }
  }
  
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    z-index: 5;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 2s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

.phone {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}



  /* MAIN */
main{
    width: 100%;
}
div.main {
    background-color:rgb(250, 250, 250);
    width: 100%;
}
  .features {
    width: 100%;
    margin: 0 auto;
    padding-top: 130px;
    max-width: 1200px;
    padding-bottom: 120px;
}
.zakladki {
    display: flex;
    justify-content: center;
}
@media(max-width:830px){
    .zakladki{
    flex-direction: column;
    margin-top: 60px;
    }
    .features{
        padding-bottom: 60px;
    }
}

.features h1 {
    font-family: muli,sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #ffa41b;
    font-size: 80px;
    text-transform: uppercase;
    text-align: center;
}
@media(max-width:1024px){
    .features h1 {
        font-size: 65px;
    }
}
.features h2 {
    color: #ffa41b;
    margin-top: 130px;
    margin-bottom: 10px;
}
@media(max-width:1024px){
    .features h2 {
        margin-top: 110px;
    }
}
@media(max-width:830px){
    .features h2 {
        margin-top: 20px;
        padding-left: 90px;
    }
    .features p {
        padding-left: 90px;
    }
}
.features p {
    color: #bbb;
}
.feature {
    margin-top: 100px;
    width: 33%;
    padding: 50px;
}
@media(max-width:830px){
    .feature {
        margin-top: 0;
    }
}
@media(max-width:830px){
    .feature{
    display: flex;
    width: 100%;
    }
    .feature .text {
        padding-left: 20px;
        padding-right: 20px;
    }
    .features {
        padding-top: 70px;
    }
}

.feature .icon {
    position: absolute;
    background-color: #ffa41b;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    transition: 0.3s;
}
.feature .icon:hover {
    width: 120px;
    height: 120px;
}
.feature img {
    width: 100px;
    height: 100px;
    margin: 5px;
    transition: 0.3s;
}
.feature .icon:hover img{
    height: 110px;
    width: 110px;
}
.feature .icon2 {
    height: 90px;
    width: 90px;
    margin-left: 15px;
    margin-top: 10px;
    transition: 0.3s;
}
.feature .icon:hover .icon2{
    height: 100px;
    width: 100px;
}
.feature .icon3 {
    height: 90px;
    width: 90px;
    margin-left: 11px;
    margin-top: 13px;
    transition: 0.3s;
}
.feature .icon:hover .icon3{
    height: 100px;
    width: 100px;
}

@media(max-width:1024px){
    .feature .icon {
        width: 90px;
        height: 90px;
    }
    .feature .icon:hover {
        width: 100px;
        height: 100px;
    }
    .feature img {
        width: 80px;
        height: 80px;
        margin: 5px;
        transition: 0.3s;
    }
    .feature .icon:hover img{
        height: 90px;
        width: 90px;
    }
    .feature .icon2 {
        height: 70px;
        width: 70px;
        margin-left: 15px;
        margin-top: 10px;
        transition: 0.3s;
    }
    .feature .icon:hover .icon2{
        height: 80px;
        width: 80px;
    }
    .feature .icon3 {
        height: 70px;
        width: 70px;
        margin-left: 11px;
        margin-top: 13px;
        transition: 0.3s;
    }
    .feature .icon:hover .icon3{
        height: 80px;
        width: 80px;
    }
    .features h2 {
        font-size: 22px;
    }
}
@media(max-width:900px){
    .features h1{
        font-size: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .feature{
        padding: 30px;
        padding-left: 50px;
    }
}
@media(max-width:420px){
    .features h1{
        font-size: 40px;
    }
    .features h2 {
        font-size: 18px;
    }
    .features p{
        font-size: 14px;
    }
    .feature{
        padding: 20px;
    }
}
@media(max-width:420px){
    .features h1{
        font-size: 35px;
    }
    .features h2 {
        font-size: 15px;
    }
    .features p{
        font-size: 13px;
    }
}

/* POPULARNE STOŁY */

.popular-container{
    background-color: #fff;
}

.popular {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.popular .image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* border: 1px solid rgb(200, 200, 200); */
}

.popular .image1 {
    background-image: url(oferta/stoly/kacper_3d/img1.jpg);
}

.popular .image2 {
    background-image: url(oferta/stoly/prostokat_fornir_3dn9/img1.jpg);
}

.popular .image3 {
    background-image: url(oferta/stoly/kolo_l_diament/img1.jpg);
}

.popular .image4 {
    background-image: url(oferta/stoly/prostokat_n9/img1.jpg);
}

.popular .image p {
    font-family:Arial, sans-serif;
    color: white;
    text-align: center;
    line-height: 250px;
    text-shadow: 0 0 4px black;
    background-color: rgba(0, 0, 0, 50%);
    font-size: 20px;
}

.popular-container h1 {
    font-family: muli,sans-serif;
    font-weight: bold;
    font-style: normal;
    padding: 20px;
    color: #ffa41b;
    text-align: center;
    font-size: 36px;
}

@media(orientation:landscape) {
    .popular .image {
        width: 100%;
        height: 300px;
    }
    .popular a{
        width: 45%;
        height: 300px;
    }

    .popular .image p {
        line-height: 300px;
    }
}
@media(min-width:700px) {
    .popular-container h1 {
        font-size: 50px;
        margin-bottom: 50px;
    }
}

@media(min-width:900px) {
    .popular-container h1 {
        font-size: 60px;
        margin-bottom: 60px;
    }

    .popular {
        max-width: 1200px;
        margin: 0 auto;
    }

    .popular .image p {
        font-size: 35px;
        opacity: 0;
        transition: 1s;
    }

    .popular .image:hover p {
        opacity: 1;
    }

    .popular .image {
        background-size: 80%;
        transition: 1s;
    }
    /* .popular .image1 {
        background-size: 70%;
    } */

    .popular .image:hover {
        background-size: 90%;
    }
    /* .popular .image1:hover {
        background-size: 80%;
    } */
    .popular a{
        width: 50%;
        height: 300px;
    }
    .popular-container{
        padding-top: 80px;
    }
}

@media(min-width:1600px) {
    .popular-container .popular .image a {
        text-decoration: none;
    }
    .popular-container{
        padding-top: 100px;
    }
    .popular-container h1 {
        font-size: 80px;
        margin-bottom: 70px;
    }
    .popular a{
        width: 50%;
        height: 300px;
    }
}
@media(max-width:700px){
    .oferta {
        margin-top: 40px;
    }
}

.oferta {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15px;
    margin-bottom: 100px;
}
@media(max-width:990px){
    .oferta {
        display: flex;
    }
    .popular {
        display: none;
    }
}

.oferta a{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin: 10px;
    margin-bottom: 30px;
    width: 370px;
}

@media(max-width:470px){
    .main .oferta{
        padding-left: 0;
    }
    .oferta a{
        width: 100%;
    }
}


.oferta .stol {
    width: 100%;
    
}
.oferta .stol:hover .text{
    color: #ffa41b;
}
.oferta a {
    text-decoration: none;
    color: #3a3a3a;
    font-family: muli,sans-serif;
}
.oferta .stol .img img {
    height: 230px;
    width: 100%;
}
.oferta .stol .text {
    margin-top: 20px;
    transition: 0.3s;
}
@media(max-width:400px){
    .oferta .stol .img img {
        height: 200px;
    }
}
@media(max-width:340px){
    .oferta .stol .img img {
        height: 180px;
    }
}

div.button{
    margin-top: 50px;
}

a.button {
    border-radius: 4px;
    border: 3px solid #ffa41b;
    color:#ffa41b;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 300px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 10px;
  }
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span {
    padding-right: 25px;
  }
  
  .button:hover span:after {
    opacity: 1;
    right: 0;
  }
  @media(max-width:795px){
      .oferta a.button {
          margin-left: 70px;
          margin-right: 70px;
      }
  }
  @media(max-width:450px){
    .oferta a.button {
        margin-left: 0;
        margin-right: 0;
    }
}
/* FOOTER */

footer {
    background-color:#ffa41b;
    height: 50px;
    color: white;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 27px;
    padding-right: 27px;
    width: 100%;
    color: white;
    margin-top: 100px;
}
/* footer .firma {
    display: inline-block;
    margin-top: 27px;
    margin-left: 50px;
}
footer .wykonawca {
    display: inline-block;
    margin-left: 1200px;
    font-family: Arial, sans-serif;
} */

footer .wykonawca a{
    text-decoration: none;
    font-family: Arial, sans-serif;
    color: white;
    transition: 0.3s;
}

footer .wykonawca a:hover {
    color:#000;
}
@media (max-width:830px){
    footer{
        font-size: 14px;
    }
}
@media (max-width:630px){
    footer{
        position: relative;
        bottom: 0;
    }
    .firma{
        margin-right: 30px;
    }
}