#slider {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 1rem;
  margin: 2rem auto;
}
#slider .slider_item {
  width: 100%;
  height: 100%;
}
#slider .slider_item img, #slider .slider_item iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#slider .slider_item:nth-child(2), #slider .slider_item:nth-child(3) {
  display: none;
}

.info, .breadcrumbs {
  display: block;
  margin: 1rem;
}

.container img, .container iframe {
  width: 100%;
  height: auto;
}
.container iframe {
  aspect-ratio: 16/9;
}

.list_drzew {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  text-align: center;
  margin: 2vh auto;
}
.list_drzew .product a {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.list_drzew .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.list_drzew .product img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: full-url("assets/fonts/c.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: full-url("assets/fonts/d.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
#map {
  display: block;
  width: 100%;
}
#map .uruchom_gps {
  display: block;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #253e3a;
  color: rgb(102, 255, 0);
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 500px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
#map .uruchom_gps:hover {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.9);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.9);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
#map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
}

#main_footer {
  min-height: 200px;
  background-color: #253e3a;
  color: rgb(253, 253, 253);
  font-size: 0.8rem;
  padding: 2rem 0;
}
#main_footer p {
  text-indent: 0;
  font-size: 0.8rem;
}
#main_footer .footer_columns .logo_link {
  margin-top: -20px;
}
#main_footer .footer_columns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
#main_footer .footer_columns h3 {
  font-size: 1rem;
}
#main_footer .footer_columns a {
  display: block;
  color: rgb(253, 253, 253);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 3px;
  margin: 3px;
}

.nebuso {
  background-color: #253e3a;
  display: block;
  text-align: center;
  font-size: 0.8rem;
  margin: 0 auto;
  padding: 1rem;
}

/* Tablet */
@media screen and (min-width: 768px) {
  #slider {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  #slider .slider_item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  #slider .slider_item:nth-child(2), #slider .slider_item:nth-child(3) {
    display: block;
  }
  #map iframe {
    aspect-ratio: 2/1;
  }
  #main_footer .footer_columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .list_drzew {
    margin: 5vh auto;
    grid-template-columns: repeat(3, 1fr);
  }
  p {
    line-height: 1.5;
    margin: 1rem 0;
  }
}
/* Desktop */
@media screen and (min-width: 1024px) {
  #map iframe {
    aspect-ratio: 4/1;
  }
  #main_footer .footer_columns {
    grid-template-columns: repeat(4, 1fr);
  }
  #main_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #main_header .main_nav a {
    margin: 0 0.8rem;
    padding: 0 0.8rem;
  }
  p {
    text-indent: 20px;
  }
  #hamburger {
    display: none;
  }
}/*# sourceMappingURL=styl.css.map */