/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Reset
# Core


/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
/** Colors */
/** Fonts */
/** Media Queries */
/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: calc(100vh + 5px);
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*--------------------------------------------------------------
# Core
--------------------------------------------------------------*/
@font-face {
  font-family: 'Trebuchet MS';
  src: url("../fonts/trebuc.woff") format("woff");
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Asap", sans-serif;
  color: #757574;
}

main {
  flex: 1;
  line-height: 1.6;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

img {
  width: 100%;
  height: auto;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 15px;
  margin-top: 1rem;
  color: #757574;
  font-family: "Asap", sans-serif;
  letter-spacing: 1px;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  background: #fff;
  border-radius: 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid #ccc;
  width: 100%;
}

.btn:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 479px) {
  .btn {
    padding: 0.75rem;
  }
}

main {
  margin-top: 100px;
  background: #fff;
}

@media (max-width: 768px) {
  main {
    margin-top: 85px;
  }
}

.main-index-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 4rem;
}

@media (max-width: 1200px) {
  .main-index-grid {
    grid-gap: 2rem;
  }
}

@media (max-width: 992px) {
  .main-index-grid {
    display: flex;
    flex-direction: column;
  }
}

.pswp {
  --pswp-bg: #fff !important;
  --pswp-icon-color: #000 !important;
}

.pswp__counter {
  text-shadow: none !important;
}

.pswp__icn {
  color: #fff !important;
}

.pswp__icn-shadow {
  stroke: #000 !important;
}

.pswp__button--zoom > svg:nth-child(1) {
  transform: scale(1.1);
}

.index-intro {
  border-bottom: 1px solid #ccc;
  padding: 3rem 0;
}

@media (max-width: 992px) {
  .index-intro {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.index-intro .index-intro__wrapper {
  margin: 0 auto;
  padding: 1rem;
  max-width: 660px;
  text-align: center;
}

@media (max-width: 992px) {
  .index-intro .index-intro__wrapper {
    margin-left: 0;
    text-align: left;
  }
}

.index-intro .index-intro__wrapper h1 {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 768px) {
  .header {
    border: none;
  }
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  height: 100px;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 0;
    flex-direction: column;
    height: auto;
    border-bottom: 1px solid #ccc;
  }
}

@media (max-width: 768px) {
  .nav {
    border-top: 1px solid #ccc;
  }
}

.branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .branding {
    padding: 0 1rem;
  }
}

.branding #nav-logo {
  max-width: 160px;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .branding #nav-logo {
    max-width: 140px;
  }
}

.hamburger {
  display: none;
  padding: 1rem 0 1rem 1rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    cursor: pointer;
  }
}

.bar {
  display: block;
  width: 32px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #757574;
  border-radius: 4px;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav ul {
    margin-top: -8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.nav ul li {
  display: inline;
}

@media (max-width: 768px) {
  .nav ul li {
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
  .nav ul li:first-of-type {
    border-top: 1px solid #ccc;
  }
}

.nav ul li a {
  padding: 5px 0;
  margin: 0 60px;
  font-size: 20px;
  text-transform: lowercase;
  text-decoration: none;
  color: #757574;
  transition: all 0.2s;
}

.nav ul li a:hover {
  color: #111;
}

.nav ul li a:hover svg {
  fill: #111;
}

.nav ul li a:last-of-type {
  margin-right: 0;
}

@media (max-width: 768px) {
  .nav ul li a {
    display: block;
    margin: 10px 0;
    margin-left: 1rem;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.nav ul li a.active {
  text-decoration: none;
  position: relative;
  color: #111;
}

.nav ul li a.active svg {
  fill: #111;
}

.nav ul li svg {
  margin-right: 1rem;
  transition: all 0.2s;
}

@media (min-width: 769px) {
  .nav ul li svg {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav .nav-items-list {
    margin-top: -80px;
    padding: 0 1rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav.active {
    display: flex;
    height: calc(100vh - 85px);
  }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
#sidebar {
  padding: 0 1rem;
}

#sidebar .sidebar-title {
  font-size: 28px;
  margin-top: 3rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  #sidebar .sidebar-title {
    margin-top: 2rem;
  }
}

#sidebar .sidebar-item {
  text-align: left;
  background: none;
  border: none;
  line-height: 1.5;
  color: #757574;
  margin: 5px 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}

#sidebar .sidebar-item:hover {
  color: #111;
}

@media (max-width: 992px) {
  #sidebar nav {
    display: none;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-section {
  margin: 4rem 0 5rem 0;
  padding: 0 1rem;
}

@media (max-width: 992px) {
  .gallery-section {
    margin-top: 0;
    margin-bottom: 3rem;
  }
}

.gallery-section .gallery-item {
  display: flex;
  flex-direction: column;
}

.gallery-section .gallery-item:hover h3,
.gallery-section .gallery-item:hover p {
  color: #111;
}

.gallery-section .gallery-item__thumbnail {
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-section .gallery-item__thumbnail:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

.gallery-section .gallery-item__details {
  padding: .5rem 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 479px) {
  .gallery-section .gallery-item__details {
    padding: .5rem 0;
  }
}

.gallery-section .gallery-item__details h3 {
  font-size: 16px;
  color: #757574;
  transition: all 0.2s;
}

.gallery-section .gallery-item__details p {
  font-size: 16px;
  text-decoration: none;
  color: #757574;
  transition: all 0.2s;
}

.gallery-section .js-open {
  text-decoration: none;
}

.gallery-section .gallery__content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem 2rem;
}

@media (max-width: 1400px) {
  .gallery-section .gallery__content__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-section .gallery__content__grid {
    grid-gap: 1rem;
  }
}

@media (max-width: 599px) {
  .gallery-section .gallery__content__grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.splide__slide {
  position: relative;
  display: flex;
  justify-content: center;
}

.splide__slide .image-info {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
}

.splide__pagination li {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.splide__pagination {
  flex-wrap: unset !important;
  position: absolute;
  width: 100%;
}

.splide__pagination button {
  width: 100%;
  padding: 0.5rem;
}

.splide__pagination .splide__pagination__page {
  border-color: #fff;
  border: 0;
  border: 2px solid #fff;
}

.splide__pagination .splide__pagination__page.is-active {
  background: #111;
}

.splide__pagination li:first-of-type .splide__pagination__page {
  border-left: 0;
}

.splide__pagination li:last-of-type .splide__pagination__page {
  border-right: 0;
}

.splide {
  position: relative;
}

.splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.splide__arrow--prev svg {
  transform: rotate(180deg);
}

.modal {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.modal.is-open {
  pointer-events: auto;
  display: flex;
  visibility: visible;
  opacity: 1;
}

.modal__content {
  width: calc(100vw - 80px);
  height: calc(100vh - 80px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.modal__content .card {
  background: #fff;
  border-radius: 8px;
  padding: 3rem;
}

.modal__content .card .btn {
  align-items: center;
}

.modal__content .close-icon-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal__content .close-icon-wrapper button {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.modal__content .close-icon-wrapper button svg {
  transition: all 0.2s;
  transform: scale(1.5);
}

.modal__content .close-icon-wrapper button:hover svg {
  fill: red;
}

.splide__slide img {
  width: auto;
  height: auto;
  max-height: 100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: #fff;
  padding: 1rem;
  border-top: 1px solid #ccc;
}

footer .footer__content {
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

footer .footer__content p {
  font-size: 18px;
}

@media (max-width: 479px) {
  footer .footer__content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
}

.contact-page::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: url("/assets/img/strony/bianco-design-kontakt.jpg");
  background-size: cover;
  background-position: center center;
  content: '';
}

@media (max-width: 839px) {
  .contact-page::after {
    display: none;
  }
}

.contact-page .contact-page__content {
  padding: 0 1rem;
  margin: 4rem 0;
  width: 100%;
}

@media (max-width: 992px) {
  .contact-page .contact-page__content {
    margin: 2rem 0;
  }
}

.contact-page .contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
}

@media (max-width: 839px) {
  .contact-page .contact-page__grid {
    display: flex;
  }
}

.contact-page .intro {
  margin: 3rem 0 2rem 0;
  font-size: 18px;
}

.contact-page address {
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-size: 18px;
  margin-left: 1rem;
}

@media (max-width: 399px) {
  .contact-page address {
    margin-left: 0;
  }
}

.contact-page address img {
  max-width: 32px;
  margin-right: 0.75rem;
  opacity: 0.5;
}

.contact-page address li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-page .phone,
.contact-page .email {
  display: flex;
  align-items: center;
}

.contact-page .localization {
  display: flex;
  align-items: flex-start;
}

.contact-page .localization p {
  line-height: 1.7;
}

.contact-page a {
  text-decoration: none;
  color: #757574;
  display: inline-flex;
}

.contact-page a:hover {
  color: #111;
}

.page-title {
  font-size: 28px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page {
  position: relative;
}

.about-page::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: url("/assets/img/strony/bianco-design-o-firmie.jpg");
  background-size: cover;
  background-position: center center;
  content: '';
}

@media (max-width: 839px) {
  .about-page::after {
    display: none;
  }
}

.about-page .about-page__content {
  padding: 0 1rem;
  margin: 4rem 0;
  width: 100%;
}

@media (max-width: 992px) {
  .about-page .about-page__content {
    margin: 2rem 0;
  }
}

.about-page .about-page__content .text {
  margin-top: 3rem;
}

@media (min-width: 993px) {
  .about-page .about-page__content .text {
    margin-right: 2rem;
  }
}

.about-page .about-page__content .text p {
  margin-bottom: 1.5rem;
}

.about-page .about-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
}

@media (max-width: 839px) {
  .about-page .about-page__grid {
    display: flex;
  }
}

.about-page .producers {
  display: inline-flex;
  margin-bottom: 2rem;
}

.about-page .producers li {
  display: flex;
  align-items: center;
  padding-right: 2rem;
}

@media (max-width: 992px) and (min-width: 769px) {
  .about-page .producers li {
    padding-right: 1rem;
  }
}

@media (max-width: 479px) {
  .about-page .producers li {
    padding-right: 1rem;
  }
}

.about-page .producers li:last-of-type {
  padding-right: 0;
}

.about-page .producers li img {
  display: flex;
  width: 100%;
  height: auto;
}
/*# sourceMappingURL=style.css.map */