@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Rokkitt';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DL.ttf) format('truetype');
}
body {
  margin: 0;
  padding: 0;
  display: grid;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  grid-template-columns: 1fr;
  background-color: white;
}
body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: 'Rokkitt', serif;
}
body h2 {
  font-size: 1.9rem;
}
body main {
  min-height: 95vh;
  display: grid;
  grid-template-columns: 40% 20% 40%;
  /* Dwie kolumny o równej szerokości */
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1300px) {
  body main {
    grid-template-columns: repeat(1, 1fr);
  }
}
body main #col-left {
  background-image: url('../images/background.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1300px) {
  body main #col-left {
    min-height: 300px;
    background-position: center calc(77% + 100px);
  }
}
body main #col-center {
  z-index: 12;
  background-color: black;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  color: white;
  padding: 15px;
  text-align: center;
}
body main #col-center p {
  padding: 10px;
}
body main #col-right {
  background-image: url('../images/logo.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 600px) {
  body main #col-right {
    background-position: calc(9% + 100px) center;
  }
}
body main #col-right #address-section {
  padding: 20px;
}
body main #col-right #address-section .grid-header {
  background: #fff;
  padding: 10px 15px;
  color: #000;
  font-weight: bold;
  font-size: 22px;
  border-left: 5px black solid;
  margin-bottom: 30px;
  font-family: 'Rokkitt', serif;
}
@media screen and (max-width: 1300px) {
  body main #col-right #address-section .grid-header {
    background: transparent;
  }
}
body main #col-right #address-section .grid-item {
  padding: 10px 20px;
}
@media screen and (max-width: 1300px) {
  body main #col-right #address-section .grid-item {
    font-size: 12px;
    padding-left: 0;
  }
}
body main #col-right #address-section .grid-item svg {
  width: 10%;
  position: relative;
  top: 6px;
}
@media screen and (max-width: 1300px) {
  body main #col-right #address-section .grid-item svg {
    width: 15px;
    position: relative;
    top: 3px;
  }
}
body footer {
  width: 100%;
  height: 5vh;
  background-color: #000;
  color: white;
  font-size: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 600px) {
  body footer {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
@media screen and (max-width: 600px) {
  body footer p {
    margin: 0;
  }
}
body footer div {
  display: grid;
  place-items: center;
}
body footer div .company {
  font-weight: bold;
}
body footer #support {
  color: white;
}
body footer #support a {
  color: white;
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */