/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
*, *::after, *::before {
  font-family: inherit;
  box-sizing: border-box;
}

html {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
}

html, body {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 96%;
  margin: 0 auto;
  padding: 0 1.6rem;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 760px;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 1280px;
    padding: 0 2.4rem;
  }
}
@media screen and (min-width: 2048px) {
  .container {
    max-width: 1800px;
    padding: 0 3rem;
  }
}

.row {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .row {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}
@media screen and (min-width: 1280px) {
  .row {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }
}

.col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 2.4rem;
  position: fixed;
  width: 100%;
  height: 7rem;
  color: #0D0000;
  z-index: 10;
  transition: background-color 0.5s ease;
}
.nav .menu-toggle {
  font-size: 4.4rem;
  background: none;
  border: 0;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  line-height: 1;
  color: #0D0000;
  -webkit-text-fill-color: currentColor;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .nav .menu-toggle {
    display: none;
  }
}
.nav .menu-toggle.active {
  color: rgba(191, 179, 164, 0.462745098);
}
.nav .lista_menu {
  display: none;
}
.nav .lista_menu.open {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: white;
  padding: 1.6rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  position: absolute;
  right: 2rem;
  top: 7rem;
}
@media screen and (min-width: 1024px) {
  .nav .lista_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  .nav .lista_menu.open {
    display: flex;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-basis: 40%;
  padding-left: 2%;
}

.link_firmy {
  display: block;
  height: 100%;
}

.logo_firmy {
  display: flex;
  height: 7rem;
}

.nazwa_firmy {
  display: flex;
  color: #0D0000;
  font-size: 2.3rem;
  text-transform: uppercase;
}

.menu {
  flex-basis: 60%;
  padding-right: 2%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  gap: 1rem;
}

.scroll_menu {
  background-color: #EBEDF2;
  padding: 2%;
}

@media screen and (max-width: 1023px) {
  .nav {
    padding: 0 1.6rem;
  }
  .logo {
    flex: 1 1 auto;
    padding-left: 0;
  }
  .menu {
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 0;
  }
}
.header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0D0000;
  text-align: justify;
  background-image: url("../assets/img/hero_s.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  position: relative;
}
.header::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
}
.header .logo_firmy {
  height: 5rem;
}
.header .nav {
  height: 6rem;
}
@media screen and (min-width: 768px) {
  .header {
    background-image: url("../assets/img/hero_m.webp");
  }
}
@media screen and (min-width: 1024px) {
  .header {
    background-attachment: fixed;
    background-position: center center;
    background-image: url("../assets/img/hero_l.webp");
  }
}

.hero-title {
  z-index: 1;
  flex-basis: 23%;
  color: #0D0000;
  font-size: 2.8rem;
  text-align: center;
  padding: 1rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 0.1s forwards;
}
@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
    padding: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
    padding: 3rem;
  }
}
@media screen and (min-width: 2048px) {
  .hero-title {
    font-size: 9rem;
    padding: 4rem;
  }
}

.btn-header-main {
  z-index: 1;
  width: 120px;
  background-color: rgba(191, 179, 164, 0.462745098);
  padding: 2rem;
  border-radius: 5px;
  font-size: 1.8rem;
  text-align: center;
  transition: 0.5s;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 0.1s forwards;
}

.btn-header-main:hover, .btn-header-main:focus {
  transform: translateY(-10px);
  background-color: #BFB3A4;
}

section {
  padding: 8rem 1rem 2rem 1rem;
}
section:nth-of-type(even) {
  background-color: #EBEDF2;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.6rem;
  text-align: center;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .section-title {
    font-size: 3.4rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-title {
    font-size: 3.8rem;
    margin-bottom: 2.4rem;
  }
}
@media screen and (min-width: 2048px) {
  .section-title {
    font-size: 4.4rem;
    margin-bottom: 3rem;
  }
}
.subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0D0000;
}

@media screen and (min-width: 768px) {
  .subtitle {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .subtitle {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 2048px) {
  .subtitle {
    font-size: 3rem;
  }
}
.section-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #0D0000;
  margin-bottom: 1.6rem;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .section-text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-text {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 2048px) {
  .section-text {
    font-size: 1.9rem;
  }
}
article p {
  text-align: justify;
}

.image-box {
  display: flex;
  flex-direction: column;
  flex: 1 1 16rem;
  min-width: 0;
  height: 100%;
  background: #EBEDF2;
  border-radius: 0.8rem;
  padding: 1.6rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  gap: 1.6rem;
}
.image-box__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.image-box__inner {
  display: grid;
  grid-template-columns: minmax(11rem, 32%) 1fr;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}
.image-box__media {
  width: 100%;
  min-width: 10rem;
  max-width: 14rem;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 0.6rem;
  overflow: hidden;
}
.image-box__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 14rem;
  min-width: 0;
}
.image-box__picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}
.image-box:hover .image-box__picture {
  transform: scale(1.03);
}
.image-box__text {
  font-size: 1.4rem;
  color: #0D0000;
  line-height: 1.5;
  margin-top: 0.3rem;
  hyphens: auto;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .image-box__inner {
    grid-template-columns: minmax(11rem, 38%) 1fr;
  }
  .image-box__media {
    max-width: 15rem;
  }
  .image-box__title {
    font-size: 1.9rem;
  }
  .image-box__text {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .image-box__inner {
    grid-template-columns: minmax(14rem, 35%) 1fr;
  }
  .image-box__media {
    max-width: 18rem;
    height: 10.5rem;
  }
  .image-box__title {
    font-size: 2rem;
  }
  .image-box__text {
    font-size: 1.6rem;
  }
  .image-box:hover .image-box__picture {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 500px) {
  .image-box__inner {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .image-box__media {
    width: 100%;
    max-width: 16rem;
    justify-self: center;
  }
  .image-box__content {
    width: 100%;
  }
}

#location .row {
  grid-template-columns: 1fr;
}
#location .col {
  padding: 0;
}
#location iframe {
  width: 100%;
  display: block;
}
#location .info-note {
  max-width: 78ch;
  margin: 0 auto 2rem;
  padding: 1.6rem 2rem;
  background-color: #BFB3A4;
  border-left: 4px solid #AFBF34;
  border-radius: 0.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.4rem;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 100%;
  }
}

.contact-info {
  text-align: left;
  padding: 2rem;
}
@media (max-width: 900px) {
  .contact-info {
    text-align: center;
  }
}
.contact-info p {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}
.contact-info a {
  color: #0D0000;
  font-weight: bold;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.btn-contact-call,
.btn-contact-WhatsApp {
  display: block;
  width: 100%;
  max-width: 260px;
  padding: 1.6rem 0;
  border-radius: 0.8rem;
  font-size: 1.8rem;
  color: white;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-contact-WhatsApp {
  background-color: #25D366;
}
.btn-contact-WhatsApp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  background-color: rgb(33.3, 189.9, 91.8);
}

.btn-contact-call {
  background-color: #007BFF;
}
.btn-contact-call:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  background-color: rgb(0, 110.7, 229.5);
}

.contact-note {
  margin-top: 1.2rem;
  text-align: left;
}
@media (max-width: 900px) {
  .contact-note {
    text-align: center;
  }
}

.info-note {
  max-width: 78ch;
  margin: 0 auto 2rem;
  padding: 1.6rem 2rem;
  background-color: #BFB3A4;
  border-left: 4px solid #AFBF34;
  border-radius: 0.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-list {
  display: grid;
  gap: 2.4rem;
}
@media screen and (min-width: 768px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #EBEDF2;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.blog-card__link {
  display: block;
  height: 100%;
}

.blog-card__image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.blog-card__content {
  padding: 1.6rem;
}

.blog-card__title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.blog-card__excerpt {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.blog-card__cta {
  font-weight: 700;
  font-size: 1.4rem;
}

.blog {
  padding: 8rem 0 6rem;
}

.nav--blog {
  position: sticky;
  top: 0;
  height: auto;
  padding: 1.2rem 2rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 3;
  justify-content: space-between;
}
.nav--blog.scroll_menu {
  background: #EBEDF2;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.menu--blog {
  flex-basis: auto;
  padding-right: 0;
}

.nav__back {
  font-size: 1.7rem;
  font-weight: 700;
}

.blog-post {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.2rem 4rem;
}
.blog-post__header {
  margin-bottom: 2.4rem;
}
.blog-post__meta {
  margin-bottom: 1.2rem;
}
.blog-post__back {
  font-size: 1.4rem;
  color: #0D0000;
  text-decoration: none;
  font-weight: 600;
}
.blog-post__back:hover {
  text-decoration: underline;
}
.blog-post__title {
  font-size: 2.8rem;
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.2;
}
.blog-post__image {
  margin: 0 0 3rem 0;
  text-align: center;
}
.blog-post__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.blog-post__image figcaption {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: #0D0000;
  opacity: 0.8;
}
.blog-post__content {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: justify;
}
.blog-post__lead {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.blog-post__section-title {
  font-size: 2rem;
  margin: 2.4rem 0 1.2rem;
}
.blog-post__text {
  margin-bottom: 1.6rem;
}
.blog-post__list {
  margin: 0 0 2rem 1.4rem;
  padding: 0;
  list-style: disc;
}
.blog-post__list-item {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  text-align: justify;
}
.blog-post__note {
  margin: 2.4rem 0;
  padding: 1.4rem 1.6rem;
  background: #EBEDF2;
  border-left: 4px solid #AFBF34;
  border-radius: 0.6rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.blog-post__pager {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .blog-post__pager {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
  }
}
.blog-post__pager-link {
  display: block;
  padding: 1.4rem 1.6rem;
  background: #EBEDF2;
  border-radius: 0.8rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  font-weight: 700;
  font-size: 1.6rem;
  color: #0D0000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-post__pager-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}
.blog-post__pager-link--next {
  text-align: right;
  justify-self: end;
}
.blog-post__pager-link--prev {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .blog-post__title {
    font-size: 3.2rem;
  }
  .blog-post__content {
    font-size: 1.7rem;
  }
  .blog-post__lead {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .blog-post__title {
    font-size: 3.6rem;
  }
}

.footer {
  background: #EBEDF2;
  padding: 4rem 1rem 2.4rem;
  margin-top: 4rem;
}
.footer .section-text {
  color: #0D0000;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col.footer-cta {
  align-items: center;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-col .info-note {
  max-width: 540px;
  margin: 0;
  background-color: #BFB3A4;
  border-left: 4px solid #AFBF34;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .footer-col .info-note {
    max-width: 100%;
  }
}
.footer-cta {
  gap: 1rem;
}
.footer-cta .btn-contact-call,
.footer-cta .btn-contact-WhatsApp,
.footer-cta .footer-map-btn {
  max-width: 260px;
  width: 100%;
}

.footer-map {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #007BFF;
  text-decoration: none;
}
.footer-map:hover {
  text-decoration: underline;
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 1.4rem;
  border: 2px solid #007BFF;
  border-radius: 0.8rem;
  background: rgb(102, 175.8, 255);
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer-map-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  background-color: rgb(127.5, 189, 255);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-meta__text {
  font-size: 1.4rem;
  color: #0D0000;
}
.footer-meta__links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.footer-meta__links a {
  font-size: 1.4rem;
  color: #0D0000;
  font-weight: 600;
}

.footer-note {
  margin-top: 0.8rem;
}

.page-legal {
  padding: 0 0 4rem;
}

/*# sourceMappingURL=style.css.map */
