body,
input,
textarea,
select {
  font-family: "Work Sans", sans-serif;
}
body {
  color: #000;
}
strong {
  font-weight: 600;
}
.pw {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 968px) {
  .pw {
    padding: 0 25px;
  }
}
@media screen and (min-width: 969px) {
  .pw {
    padding: 0 40px;
  }
}
header {
  color: #000;
  background-color: #f9c900;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 969px) {
  header {
    padding: 20px 0 16px;
  }
  header #nav > li > a:after {
    background-color: #000;
  }
}
@media screen and (max-width: 968px) {
  header {
    padding: 25px 60px 25px 0;
  }
}
header .lang:after {
  background: #000;
}
header .logo {
  float: left;
  display: block;
}
@media screen and (max-width: 968px) {
  header .logo img {
    height: 30px;
  }
}
@media screen and (min-width: 969px) {
  header .logo img {
    margin-right: 75px;
    height: 38px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 968px) {
  header #hamburger {
    position: absolute;
    top: 20px;
    right: 17px;
    width: 40px;
    height: 40px;
    z-index: 999;
    cursor: pointer;
    background: url('/images/hamburger.png') no-repeat center;
    background-size: 40px;
    transition: opacity 0.2s cubic-bezier(0, 0, 0.25, 1);
  }
  header #hamburger:hover,
  header #hamburger:active {
    opacity: 0.6;
  }
}
@media screen and (min-width: 969px) {
  header #hamburger {
    display: none;
  }
}
header #nav {
  list-style: none;
}
header #nav > li > a {
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (max-width: 968px) {
  header #nav {
    display: none;
    padding-top: 70px;
    line-height: 1.2em;
  }
  header #nav > li > a {
    font-weight: 700;
    letter-spacing: 1px;
  }
  header #nav span {
    font-weight: 700;
  }
  header #nav li {
    padding: 5px 0;
  }
  header #nav li ul {
    margin: 5px 0 0 10px;
  }
  header #nav ul ul li {
    padding-left: 18px;
  }
  header #nav ul ul li:before {
    content: '●';
    float: left;
    margin-left: -18px;
    display: inline-block;
  }
}
@media screen and (min-width: 969px) {
  header #nav {
    float: left;
    padding-top: 17px;
  }
  header #nav > li {
    display: inline-block;
  }
  header #nav > li + li {
    margin-left: 15px;
  }
  header #nav > li > a {
    font-size: 16px;
    line-height: 20px;
    padding-right: 15px;
  }
  header #nav > li > a:after {
    display: block;
    width: 0;
    transition: width 0.2s cubic-bezier(0, 0, 0.25, 1);
    content: '';
    background: #000;
    height: 2px;
  }
  header #nav > li:hover a:after {
    width: 100%;
  }
  header #nav > li.with-subpages > a {
    cursor: default;
  }
  header #nav span {
    display: inline-block;
  }
  header #nav li:hover > a {
    border-color: #000;
  }
  header #nav .subpages,
  header #nav .subsubpages {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: all 0.2s cubic-bezier(0, 0, 0.25, 1);
  }
  header #nav .subpages {
    width: 210px;
    left: 0;
    top: 40px;
    padding: 10px 0;
    font-size: 12px;
    transform: translateY(-6px);
    background-color: #fff;
  }
  header #nav .subpages li {
    line-height: 15px;
    padding: 8px 0;
  }
  header #nav .subpages > li {
    position: relative;
  }
  header #nav .subpages > li span {
    display: block;
    width: 100%;
    font-weight: 700;
    padding: 0 15px 0 20px;
    cursor: default;
  }
  header #nav .subpages > li span:after {
    font-size: 8px;
    content: '▶';
    display: block;
    float: right;
    color: #aaa;
  }
  header #nav .subsubpages {
    left: 210px;
    width: 220px;
    top: -10px;
    padding: 10px 20px;
    background-color: #e7e7e7;
  }
  header #nav .with-subpages {
    position: relative;
  }
  header #nav .subpages li:hover span:after {
    color: #000;
  }
  header #nav .subpages li:hover span,
  header #nav .subsubpages a:hover {
    text-decoration: underline;
  }
  header #nav .with-subpages:hover .subpages,
  header #nav .subpages li:hover .subsubpages {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
header .lang {
  float: right;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 968px) {
  header .lang {
    padding-top: 6px;
  }
}
@media screen and (min-width: 969px) {
  header .lang {
    padding-top: 17px;
  }
}
header .lang:after {
  display: block;
  width: 0;
  transition: width 0.2s cubic-bezier(0, 0, 0.25, 1);
  content: '';
  background: #000;
  height: 1px;
}
header .lang:hover:after {
  width: 100%;
}
header:after {
  display: block;
  clear: both;
  content: '';
}
body.visibleMenu #nav {
  display: block;
}
body.visibleMenu #hamburger {
  background-image: url('/images/close.png');
}
#page {
  position: relative;
}
.intro {
  background-color: #000;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 968px) {
  .intro {
    height: 360px;
  }
  .intro.product {
    height: 300px;
  }
  .intro.product .slick .slide .pw {
    top: 50%;
  }
}
@media screen and (min-width: 969px) {
  .intro {
    height: 60%;
    min-height: 400px;
  }
}
.intro h2 span {
  background-color: #f9c900;
  padding: 6px 28px 12px;
  border-radius: 9px;
  display: inline-block;
  font-weight: inherit;
  margin: 5px;
}
@media screen and (max-width: 968px) {
  .intro.index h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 969px) {
  .intro.index h2 {
    font-size: 65px;
  }
}
.intro .content {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 999;
  color: #000;
}
@media screen and (max-width: 968px) {
  .intro .content {
    top: 47%;
    text-align: center;
  }
}
@media screen and (min-width: 969px) {
  .intro .content {
    top: 47%;
  }
}
@media screen and (max-width: 968px) {
  .intro .content .button {
    margin-top: 20px;
  }
}
@media screen and (min-width: 969px) {
  .intro .content .button {
    margin-top: 40px;
  }
}
.intro .background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.intro .slick {
  height: 100%;
  overflow: hidden;
}
.intro .slick .slide {
  height: 100%;
  background-position: center;
  background-size: cover;
}
.intro .slick-dots {
  position: absolute;
  left: 50%;
}
.intro .slick-dots button {
  background-color: #fff;
}
@media screen and (max-width: 968px) {
  .intro .slick-dots {
    bottom: 40px;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 969px) {
  .intro .slick-dots {
    bottom: 80px;
    margin-left: -600px;
  }
}
@media screen and (max-width: 968px) {
  .intro .arrow {
    display: none;
  }
}
@media screen and (min-width: 969px) {
  .intro .arrow {
    display: block;
    position: absolute;
    z-index: 999;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: url('/images/arrow-bottom-yellow.svg');
    transition: opacity 0.2s cubic-bezier(0, 0, 0.25, 1);
  }
  .intro .arrow:hover {
    opacity: 0.5;
  }
}
h2 {
  font-weight: 700;
  line-height: 1.1em;
}
@media screen and (max-width: 968px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 969px) {
  h2 {
    font-size: 40px;
  }
}
h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2em;
}
a.button {
  display: inline-block;
  font-size: 16px;
  background-color: #fff;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0, 0, 0.25, 1);
}
@media screen and (max-width: 968px) {
  a.button {
    padding: 14px 30px;
  }
}
@media screen and (min-width: 969px) {
  a.button {
    padding: 22px 65px;
  }
}
a.button:hover {
  opacity: 0.9;
  transform: scale(1.1);
}
a.button.grey {
  background-color: #000;
  color: #fff;
}
a.button.yellow {
  background-color: #f9c900;
  color: #000;
}
a.button.white {
  box-shadow: 3px 3px 10px -5px #000;
}
b {
  font-weight: 700;
}
.slick-dots {
  list-style: none;
}
.slick-dots li {
  display: inline-block;
  padding: 0 6px;
}
.slick-dots li button {
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0;
  border: 0;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  opacity: 0.2;
  transition: all 0.2s cubic-bezier(0, 0, 0.25, 1);
}
.slick-dots li button:hover {
  opacity: 1;
}
.slick-dots li.slick-active button {
  transform: scale(1.5);
  opacity: 1;
}
.about,
.klienci,
.products,
.quality,
.certyfikaty,
.transport,
.rights,
.fast-contact,
.prepare {
  text-align: center;
}
.products,
.quality,
.fast-contact,
.prepare,
.contact {
  background-color: #f9c900;
  color: #000;
}
.rights {
  background-color: #f5f5f5;
}
@media screen and (max-width: 968px) {
  .about {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  .about {
    padding: 100px 0;
  }
}
.about .pw {
  max-width: 900px;
}
.about h3 {
  margin-top: 60px;
}
.about p {
  margin-top: 20px;
  line-height: 1.5em;
}
@media screen and (max-width: 968px) {
  .about p {
    font-size: 13px;
  }
}
@media screen and (min-width: 969px) {
  .about p {
    font-size: 16px;
  }
}
@media screen and (max-width: 968px) {
  .about .bigger {
    font-size: 18px;
  }
}
@media screen and (min-width: 969px) {
  .about .bigger {
    font-size: 23px;
  }
}
html[lang="en"] .about .pw {
  max-width: 780px;
}
@media screen and (max-width: 968px) {
  .klienci {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  .klienci {
    padding: 85px 0 95px;
  }
}
.klienci p {
  margin-top: 20px;
  font-weight: 700;
  line-height: 1.3em;
  color: #B5B5B5;
}
@media screen and (max-width: 968px) {
  .klienci p {
    font-size: 20px;
  }
}
@media screen and (min-width: 969px) {
  .klienci p {
    font-size: 30px;
  }
}
@media screen and (min-width: 969px) {
  .klienci p {
    white-space: pre-line;
  }
  .klienci p span {
    display: none;
  }
}
.good-promotion {
  background-color: #f5f5f5;
  padding: 85px 0 95px;
}
.good-promotion h3,
.good-promotion ul {
  max-width: 950px;
  margin: 0 auto;
}
.good-promotion li {
  margin-top: 20px;
  line-height: 1.5em;
}
@media screen and (max-width: 968px) {
  .good-promotion li {
    font-size: 13px;
  }
}
@media screen and (min-width: 969px) {
  .good-promotion li {
    font-size: 16px;
  }
}
@media screen and (max-width: 968px) {
  .quality {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  .quality {
    padding: 60px 0;
  }
}
.quality .pw {
  max-width: 935px;
}
.quality p {
  margin-top: 20px;
  line-height: 1.5em;
}
@media screen and (max-width: 968px) {
  .quality p {
    font-size: 13px;
  }
}
@media screen and (min-width: 969px) {
  .quality p {
    font-size: 16px;
  }
}
.products {
  position: relative;
}
@media screen and (max-width: 968px) {
  .products {
    height: 400px !important;
  }
}
@media screen and (min-width: 969px) {
  .products {
    height: 600px !important;
  }
}
.products .slide {
  background-size: cover;
  background-position: center;
}
.products .slide h2 {
  padding: 0 40px;
}
@media screen and (max-width: 968px) {
  .products .slide {
    padding-top: 70px;
  }
}
@media screen and (min-width: 969px) {
  .products .slide {
    padding-top: 200px;
  }
}
.products .slide .button {
  margin-top: 40px;
}
.products .slick-arrow {
  position: absolute;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 999;
  font-size: 0;
  border: 0;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.25, 1);
}
@media screen and (max-width: 968px) {
  .products .slick-arrow {
    bottom: 64px;
  }
}
@media screen and (min-width: 969px) {
  .products .slick-arrow {
    top: 50%;
  }
}
.products .slick-arrow:hover {
  opacity: 0.5;
}
.products .slick-arrow.slick-prev {
  left: 50px;
  background: url('/images/arrow-left.svg');
}
.products .slick-arrow.slick-next {
  right: 50px;
  background: url('/images/arrow-right.svg');
}
.products .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
}
.products .slick-dots button {
  background-color: #000;
}
@media screen and (max-width: 968px) {
  .certyfikaty {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  .certyfikaty {
    padding: 50px 0 60px;
  }
}
.certyfikaty p {
  max-width: 900px;
  margin: 30px auto 0;
  line-height: 1.5em;
}
@media screen and (max-width: 968px) {
  .certyfikaty p {
    font-size: 13px;
  }
}
@media screen and (min-width: 969px) {
  .certyfikaty p {
    font-size: 16px;
  }
}
.transport {
  background-color: #f5f5f5;
}
@media screen and (max-width: 968px) {
  .transport {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  .transport {
    padding: 50px 0 60px;
  }
}
.transport p {
  max-width: 750px;
  margin: 30px auto 0;
  line-height: 1.5em;
}
@media screen and (max-width: 968px) {
  .transport p {
    font-size: 13px;
  }
}
@media screen and (min-width: 969px) {
  .transport p {
    font-size: 16px;
  }
}
@media screen and (max-width: 968px) {
  .rights {
    padding: 25px 0;
  }
}
@media screen and (min-width: 969px) {
  .rights {
    padding: 55px 0;
  }
}
.rights .pw {
  max-width: 505px;
  font-size: 12px;
  line-height: 1.25em;
}
@media screen and (max-width: 968px) {
  .fast-contact {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  .fast-contact {
    padding: 70px 0 80px;
  }
}
@media screen and (max-width: 968px) {
  .fast-contact .button {
    margin-top: 25px;
  }
}
@media screen and (min-width: 969px) {
  .fast-contact .button {
    margin-top: 50px;
  }
}
.back-to-top {
  position: absolute;
  right: 45px;
  font-size: 11px;
  bottom: 25px;
  height: 32px;
  line-height: 32px;
  padding-right: 42px;
  background: url('/images/arrow-top.svg') no-repeat right;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.25, 1);
}
.back-to-top:hover {
  opacity: 0.5;
}
@media screen and (max-width: 968px) {
  section.description {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  section.description {
    padding: 80px 0;
  }
}
section.description h2 {
  max-width: 710px;
}
@media screen and (max-width: 968px) {
  section.description h2 {
    margin: 40px 0 20px;
  }
}
@media screen and (min-width: 969px) {
  section.description h2 {
    margin: 80px 0 40px;
  }
}
section.description h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 968px) {
  section.description h3 {
    margin: 30px 0 15px;
  }
}
@media screen and (min-width: 969px) {
  section.description h3 {
    margin: 40px 0 20px;
  }
}
section.description p {
  max-width: 710px;
  line-height: 1.5em;
}
@media screen and (max-width: 968px) {
  section.description p {
    font-size: 13px;
  }
}
@media screen and (min-width: 969px) {
  section.description p {
    font-size: 16px;
  }
}
section.description p + p {
  margin-top: 20px;
}
section.description p.bigger {
  max-width: none;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #B5B5B5;
  margin-top: 50px;
}
section.description .gallery {
  font-size: 0;
  line-height: 1em;
}
@media screen and (max-width: 968px) {
  section.description .gallery {
    margin-top: 30px;
  }
}
@media screen and (min-width: 969px) {
  section.description .gallery {
    margin-top: 70px;
    margin-right: -40px;
  }
}
section.description .gallery a {
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 968px) {
  section.description .gallery a {
    margin: 0 0 40px 0;
  }
}
@media screen and (min-width: 969px) {
  section.description .gallery a {
    margin: 0 40px 40px 0;
  }
}
section.description .gallery img {
  width: 100%;
  max-width: 580px;
  border-radius: 5px;
  box-shadow: 5px 5px 12px -8px #000;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.25, 1);
  display: block;
}
section.description .gallery img:hover {
  opacity: 0.8;
}
section.description .gallery figure {
  display: none;
}
@media screen and (max-width: 968px) {
  .prepare {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  .prepare {
    padding: 80px 0;
  }
}
.prepare .pw {
  max-width: 600px;
}
.prepare .pw p {
  line-height: 1.5em;
}
@media screen and (max-width: 968px) {
  .prepare .pw p {
    font-size: 16px;
  }
}
@media screen and (min-width: 969px) {
  .prepare .pw p {
    font-size: 20px;
  }
}
.prepare .pw .button {
  margin-top: 30px;
}
@media screen and (max-width: 968px) {
  section.contact {
    padding: 40px 0;
  }
}
@media screen and (min-width: 969px) {
  section.contact {
    padding: 180px 0 120px;
    min-height: 100%;
  }
}
section.contact h2 + p {
  font-size: 20px;
  line-height: 30px;
  opacity: 0.8;
  white-space: pre-line;
  margin-top: 30px;
}
section.contact form {
  max-width: 400px;
}
section.contact form input {
  border-radius: 7px;
  height: 60px;
  border: 0;
  font-size: 14px;
}
section.contact form input + input {
  margin-top: 20px;
}
section.contact form input[type="text"] {
  background-color: #fff;
  padding: 0 20px;
  color: #000;
  width: 100%;
}
section.contact form input[type="submit"] {
  background-color: #000;
  color: #fff;
  width: 130px;
  text-align: center;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0, 0, 0.25, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
}
section.contact form input[type="submit"]:hover {
  opacity: 0.9;
  transform: scale(1.1);
}
@media screen and (max-width: 968px) {
  section.contact .columns {
    margin-top: 30px;
  }
}
@media screen and (min-width: 969px) {
  section.contact .columns {
    margin-top: 50px;
  }
  section.contact .columns > div {
    float: left;
  }
  section.contact .columns > div + div {
    margin-left: 80px;
  }
  section.contact .columns:after {
    display: block;
    clear: both;
    content: '';
  }
}
@media screen and (max-width: 968px) {
  section.contact .info {
    margin-top: 30px;
  }
}
@media screen and (min-width: 969px) {
  section.contact .info {
    margin-top: 50px;
  }
}
section.contact .info h3 {
  margin: -10px 0 32px;
}
section.contact .info p {
  font-size: 16px;
  line-height: 30px;
}
@media screen and (min-width: 969px) {
  section.contact .info p {
    float: left;
    margin-right: 40px;
  }
}
section.contact .info p a:hover {
  text-decoration: underline;
}
footer {
  font-size: 13px;
  padding: 25px 0;
  color: #B5B5B5;
  background-color: #000;
}
@media screen and (max-width: 968px) {
  footer {
    text-align: center;
  }
}
footer p + p {
  margin-top: 10px;
}
footer .note {
  font-size: 11px;
}
@media screen and (min-width: 969px) {
  header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  body.contact-page footer {
    margin-top: -108px;
    position: relative;
    z-index: 2;
  }
}
#cookies {
  padding: 180px 0 200px;
}
#cookies h3 {
  font-size: 120%;
  margin: 40px 0 20px;
}
#cookies p {
  line-height: 1.4em;
}
#cookies a {
  text-decoration: underline;
}
#cookies-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: #e7e7e7;
  font-size: 13px;
  text-align: center;
  line-height: 1.2em;
  z-index: 999;
}
#cookies-bar .link {
  display: inline-block;
  padding: 4px 8px 6px;
  margin-left: 8px;
  cursor: pointer;
  background-color: #fff;
}
#cookies-bar .link:hover {
  text-decoration: underline;
}
#cookies-bar .link.accept {
  background-color: #f9c900;
}
