* {
  margin: 0;
  padding: 0;
  font-family: 'poppins';
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 5%;
  padding-right: 5%;
}

.container-small {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: 5%;
  padding-right: 5%;
  font-family: 'poppins';
}

#main {
  scroll-margin-top: 58px;
}

body {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
  z-index: 700;
  -webkit-box-shadow: 0px 17px 13px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 17px 13px rgba(0, 0, 0, 0.02);
}

.nav-top {
  border-bottom: 1px solid #F1F1F1;
}

.nav-top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 0px;
}

.nav-top-container .nav-top-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-top-container .nav-top-buttons a {
  text-decoration: none;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.nav-top-container .nav-top-buttons a:first-child {
  margin-right: 15px;
}

.nav-top-container .nav-top-buttons a:hover {
  border: 1px solid #272727;
}

.nav-top-container .nav-top-buttons a:hover svg path {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  fill: #272727;
}

.nav-top-container .nav-top-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-top-container .nav-top-contact a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #888888;
  font-size: 13px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.nav-top-container .nav-top-contact a svg {
  margin-right: 10px;
}

.nav-top-container .nav-top-contact a:hover {
  color: #272727;
}

.nav-top-container .nav-top-contact a:first-child {
  margin-right: 15px;
}

@media (max-width: 430px) {
  .nav-top-container .nav-top-contact a:first-child {
    display: none;
  }
}

.nav-bottom-container {
  padding: 12px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-bottom-container .nav-bottom-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-bottom-container .nav-bottom-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
}

.nav-bottom-container .nav-bottom-menu ul li {
  list-style-type: none;
  margin-right: 27px;
  position: relative;
}

.nav-bottom-container .nav-bottom-menu ul li a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  cursor: default;
}

.nav-bottom-container .nav-bottom-menu ul li a[href] {
  cursor: pointer !important;
}

.nav-bottom-container .nav-bottom-menu ul li a.a-active {
  color: gray;
}

.nav-bottom-container .nav-bottom-menu ul li a:after {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.nav-bottom-container .nav-bottom-menu ul li a:hover:after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -16px;
  background-color: #FFA722;
}

.nav-bottom-container .nav-bottom-menu ul li a:hover {
  color: #FFA722 !important;
}

.nav-bottom-container .nav-bottom-menu ul li .submenu {
  position: absolute;
  background-color: white;
}

.nav-bottom-container .nav-bottom-menu ul li .submenu li {
  padding: 0px 12px;
  margin: 0;
}

.nav-bottom-container .nav-bottom-menu ul li .submenu li a {
  padding: 10px 0px;
  display: inline-block;
}

.nav-bottom-container .nav-bottom-menu ul li .submenu li a.a-active {
  color: #0e0e0e !important;
}

.nav-bottom-container .nav-bottom-menu ul li .submenu li a:hover {
  color: #FFA722 !important;
}

.nav-bottom-container .nav-bottom-menu ul li .submenu li a:after {
  content: none;
}

.nav-bottom-container .nav-bottom-menu ul li:last-child {
  margin-right: 0;
}

.nav-bottom-container .nav-bottom-menu ul li > ul {
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  display: none;
}

.nav-bottom-container .nav-bottom-menu ul li:hover > ul {
  display: block;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.nav-bottom-container .nav-bottom-menu ul li > ul > li {
  padding: 10px 0px;
  border-top: 1px solid #f7f7f7;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 233px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.nav-bottom-container .nav-bottom-menu ul li > ul > li:first-child {
  border: none;
}

.nav-bottom-container .nav-bottom-menu ul li > ul > li:hover {
  background-color: #fafafa;
}

.nav-bottom-container .nav-bottom-menu ul li > ul > li > a {
  color: black;
  font-size: 16px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  font-weight: 300;
}

.nav-bottom-container .nav-bottom-menu ul li > a svg {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

.nav-bottom-container .nav-bottom-menu ul li > a:hover svg path {
  fill: #FFA722;
}

.nav-bottom-container .nav-bottom-menu ul li > a:hover svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 840px) {
  .nav-bottom-container .nav-bottom-menu {
    display: none;
  }
}

.first-view {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 535px;
  width: 100%;
  position: relative;
}

.first-view-bg {
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  margin: -5px -10px -10px -5px;
}

.first-view .first-view-container .first-view-content {
  max-width: 505px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  top: 115px;
}

.first-view .first-view-container .first-view-content .first-view-under {
  color: white;
  font-size: 16px;
}

.first-view .first-view-container .first-view-content .first-view-sep {
  display: inline-block;
  height: 3px;
  width: 37px;
  margin: 5px 0px 5px 0px;
  background-color: #FFA722;
}

.first-view .first-view-container .first-view-content h1 {
  color: white;
  font-size: 37px;
  line-height: 47px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .first-view .first-view-container .first-view-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
  .first-view .first-view-container .first-view-content h1 {
    font-size: 27px;
    line-height: 35px;
  }
}

.first-view .first-view-container .first-view-content .first-view-btns {
  margin-top: 22px;
}

.first-view .first-view-container .first-view-content .first-view-btns a {
  font-weight: 400;
  padding: 5px 32px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

@media (max-width: 375px) {
  .first-view .first-view-container .first-view-content .first-view-btns a {
    padding: 5px 22px;
  }
}

.first-view .first-view-container .first-view-content .first-view-btns .first-view-btns-first {
  background-color: #FFA722;
  border: 1px solid #FFA722;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  margin-right: 29px;
}

@media (max-width: 375px) {
  .first-view .first-view-container .first-view-content .first-view-btns .first-view-btns-first {
    margin-right: 17px;
  }
}

.first-view .first-view-container .first-view-content .first-view-btns .first-view-btns-first:hover {
  background-color: #db8d18;
  border: 1px solid #db8d18;
}

.first-view .first-view-container .first-view-content .first-view-btns .first-view-btns-last {
  border: 1px solid white;
  background: transparent;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.first-view .first-view-container .first-view-content .first-view-btns .first-view-btns-last:hover {
  background: rgba(255, 255, 255, 0.103);
}

@media (max-height: 669px) {
  .first-view .first-view-container .first-view-content {
    top: 90px;
  }
}

@media (max-height: 669px) {
  .first-view {
    height: 465px;
  }
}

.webp .first-view-bg {
  background-image: url(../img/glowne-zdjecie-kostki-brukowej.webp) !important;
}

@media (max-width: 600px) {
  .webp .first-view-bg {
    background-image: url(../img/glowne-zdjecie-kostki-brukowej-male.webp) !important;
  }
}

.no-webp .first-view-bg {
  background-image: url(../img/glowne-zdjecie-kostki-brukowej.jpg) !important;
}

@media (max-width: 600px) {
  .no-webp .first-view-bg {
    background-image: url(../img/glowne-zdjecie-kostki-brukowej-male.jpg) !important;
  }
}

.under-the-header {
  position: relative;
  bottom: 51.5px;
}

.under-the-header .under-the-header-content {
  background: #FFA722;
  -webkit-box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 95px;
}

.under-the-header .under-the-header-content h3 {
  font-size: 23px;
  font-weight: 600;
  color: white;
  margin-right: 17px;
}

@media (max-width: 1050px) {
  .under-the-header .under-the-header-content h3 {
    font-size: 21px;
  }
}

@media (max-width: 850px) {
  .under-the-header .under-the-header-content h3 {
    text-align: center;
    font-size: 19px;
    margin-right: 0;
  }
}

.under-the-header .under-the-header-content a {
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid white;
  padding: 7px 17px;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .under-the-header .under-the-header-content a {
    padding: 5px 15px;
    font-size: 15px;
  }
}

@media (max-width: 850px) {
  .under-the-header .under-the-header-content a {
    margin-top: 10px;
  }
}

.under-the-header .under-the-header-content a:hover {
  background: rgba(255, 255, 255, 0.103);
}

@media (max-width: 1050px) {
  .under-the-header .under-the-header-content {
    padding: 25px 60px;
  }
}

@media (max-width: 850px) {
  .under-the-header .under-the-header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 45px;
  }
}

.offer .offer-title {
  text-align: center;
}

.offer .offer-title span {
  color: #FFA722;
  font-size: 15px;
  font-weight: 500;
}

.offer .offer-title h2 {
  font-weight: 600;
  color: black;
  font-size: 26px;
}

@media (max-width: 767px) {
  .offer .offer-title h2 {
    font-size: 22px;
  }
}

.offer .offer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 130px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offer .offer-content .offer-content-first {
  width: 100%;
  margin-right: 125px;
}

.offer .offer-content .offer-content-first h2 {
  font-size: 27px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

.offer .offer-content .offer-content-first .offer-sep {
  display: inline-block;
  height: 3px;
  width: 37px;
  margin: 5px 0px 5px 0px;
  background-color: #FFA722;
}

.offer .offer-content .offer-content-first p {
  font-size: 17px;
}

@media (max-width: 910px) {
  .offer .offer-content .offer-content-first p {
    font-size: 15px;
  }
}

.offer .offer-content .offer-content-first .offer-text-top {
  color: black;
}

.offer .offer-content .offer-content-first .offer-text-bottom {
  margin-top: 15px;
  color: #494949;
  margin-bottom: 5px;
}

.offer .offer-content .offer-content-first .offer-done {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0px 6px 0px;
}

.offer .offer-content .offer-content-first .offer-done .offer-done-icon {
  width: 21px;
  min-width: 21px;
  height: 21px;
  min-height: 21px;
  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;
  border: 1px solid #FFA722;
  margin-right: 15px;
  border-radius: 50%;
}

.offer .offer-content .offer-content-first .offer-done span {
  color: #FFA722;
  font-size: 15px;
}

.offer .offer-content .offer-content-first a {
  color: white;
  text-decoration: none;
  background-color: #262626;
  padding: 8px 30px;
  font-size: 15px;
  display: inline-block;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  margin-top: 25px;
}

@media (max-width: 900px) {
  .offer .offer-content .offer-content-first a {
    font-size: 14px;
    padding: 7px 24px;
  }
}

.offer .offer-content .offer-content-first a:hover {
  background-color: #1b1a1a;
}

@media (max-width: 1120px) {
  .offer .offer-content .offer-content-first {
    margin-right: 89px;
  }
}

@media (max-width: 1100px) {
  .offer .offer-content .offer-content-first {
    margin-right: 0;
  }
}

@media (max-width: 890px) {
  .offer .offer-content .offer-content-first {
    max-width: unset;
  }
}

.offer .offer-content .offer-content-second {
  position: relative;
  width: 328px;
  height: 428px;
}

.offer .offer-content .offer-content-second .offer-content-second-img {
  width: 328px;
  height: 428px;
}

.offer .offer-content .offer-content-second .offer-content-second-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1099px) {
  .offer .offer-content .offer-content-second .offer-content-second-img {
    width: 100%;
    margin-top: 30px;
    height: 325px;
  }
}

@media (max-width: 767px) {
  .offer .offer-content .offer-content-second .offer-content-second-img {
    margin-top: 55px;
  }
}

.offer .offer-content .offer-content-second .offer-content-second-field {
  padding: 24px 30px;
  background-color: #FFA722;
  max-width: 212px;
  width: 100%;
  position: absolute;
  right: 93px;
  bottom: 48px;
}

.offer .offer-content .offer-content-second .offer-content-second-field p {
  color: white;
  font-size: 25px;
  font-weight: 500;
  line-height: 26px;
}

@media (max-width: 875px) {
  .offer .offer-content .offer-content-second .offer-content-second-field p {
    font-size: 22px;
  }
}

.offer .offer-content .offer-content-second .offer-content-second-field a {
  color: #FFFFFF;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  margin-top: 7px;
  font-size: 17px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.offer .offer-content .offer-content-second .offer-content-second-field a svg {
  margin-left: 10px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.offer .offer-content .offer-content-second .offer-content-second-field a:hover {
  color: #f3f3f3;
}

.offer .offer-content .offer-content-second .offer-content-second-field a:hover svg {
  margin-left: 15px;
}

@media (max-width: 890px) {
  .offer .offer-content .offer-content-second .offer-content-second-field {
    right: 0;
  }
}

@media (max-width: 1100px) {
  .offer .offer-content .offer-content-second {
    margin-left: 100px;
  }
}

@media (max-width: 1099px) {
  .offer .offer-content .offer-content-second {
    margin-left: 0;
    width: 100%;
    padding-bottom: 25px;
    height: 325px;
  }
}

@media (max-width: 1099px) {
  .offer .offer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 25px;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .offer .offer-content {
    margin-top: 40px;
  }
}

.about-us .about-us-content .about-us-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-us .about-us-content .about-us-container .about-us-img {
  position: absolute;
  height: 570px;
  width: 535px;
}

.about-us .about-us-content .about-us-container .about-us-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 860px) {
  .about-us .about-us-content .about-us-container .about-us-img {
    display: none;
  }
}

@media (max-width: 1000px) {
  .about-us .about-us-content .about-us-container .about-us-img {
    height: 610px;
  }
}

.about-us .about-us-content .about-us-container .about-us-text-container {
  z-index: 2;
  height: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 330px;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text {
  background: linear-gradient(102.08deg, #FFA722 15.73%, #FFAB2E 62.25%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 45px 70px 45px 80px;
  z-index: 2;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text h2 {
  font-size: 27px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

@media (max-width: 715px) {
  .about-us .about-us-content .about-us-container .about-us-text-container .about-us-text h2 {
    font-size: 23px;
  }
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text .about-us-sep {
  display: inline-block;
  height: 3px;
  width: 37px;
  margin: 8px 0px 7px 0px;
  background-color: black;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text p {
  font-size: 15px;
  color: black;
  font-weight: 400;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text ul {
  margin: 3px 0px 3px 18px;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text ul li {
  margin: 2px 0px;
  font-size: 14px;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text .social-media-icons {
  margin-top: 10px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text .social-media-icons a {
  border-radius: 50%;
  border: 1px solid black;
  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;
  min-width: 28px;
  width: 28px;
  height: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  padding: 0 !important;
  background: transparent;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text .social-media-icons a:hover {
  background: transparent;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text .social-media-icons a:first-child {
  margin-right: 15px;
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text a {
  padding: 8px 30px;
  background-color: #262626;
  color: white;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

@media (max-width: 715px) {
  .about-us .about-us-content .about-us-container .about-us-text-container .about-us-text a {
    font-size: 14px;
    padding: 6px 30px;
  }
}

.about-us .about-us-content .about-us-container .about-us-text-container .about-us-text a:hover {
  background-color: #1b1a1a;
}

@media (max-width: 860px) {
  .about-us .about-us-content .about-us-container .about-us-text-container .about-us-text {
    padding: 30px 40px;
  }
}

@media (max-width: 510px) {
  .about-us .about-us-content .about-us-container .about-us-text-container .about-us-text {
    padding: 30px 20px;
  }
}

@media (max-width: 1100px) {
  .about-us .about-us-content .about-us-container .about-us-text-container {
    margin-left: 130px;
  }
}

@media (max-width: 860px) {
  .about-us .about-us-content .about-us-container .about-us-text-container {
    margin-left: 0;
    height: auto !important;
  }
}

@media (max-width: 1000px) {
  .about-us .about-us-content .about-us-container .about-us-text-container {
    height: 610px;
  }
}

.realization {
  margin-bottom: 65px;
}

.realization .realization-title {
  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;
  margin: 75px 0px 40px 0px;
}

.realization .realization-title h2 {
  font-size: 28px;
}

.realization .realization-title span {
  display: inline-block;
  height: 3px;
  width: 37px;
  margin: 5px 0px 5px 0px;
  background-color: #FFA722;
}

@media (max-width: 767px) {
  .realization .realization-title {
    margin: 50px 0px 40px 0px;
  }
}

.realization .realization-content {
  text-align: center;
}

.realization .realization-content .tz-gallery .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.realization .realization-content .tz-gallery .row .gallery-img {
  width: 33.3333%;
  height: 398px;
  width: 32%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin: 1.5px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.realization .realization-content .tz-gallery .row .gallery-img a {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.realization .realization-content .tz-gallery .row .gallery-img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1050px) {
  .realization .realization-content .tz-gallery .row .gallery-img {
    width: 49%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    height: 323px;
  }
}

@media (max-width: 600px) {
  .realization .realization-content .tz-gallery .row .gallery-img {
    width: 100%;
  }
}

.realization .realization-content .tz-gallery .row .gallery-img:hover {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.realization .gallery-button {
  margin-top: 32px;
  font-size: 15px;
  background-color: #262626;
  font-weight: 500;
  line-height: 26px;
  padding: 8px 30px;
  color: white;
  text-decoration: none;
  display: inline-block;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.realization .gallery-button:hover {
  background-color: #1b1a1a;
}

.footer {
  background-color: #232323;
}

.footer .footer-top {
  padding: 55px 0px 75px 0px;
}

.footer .footer-top .footer-top-tiles-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile:first-child {
  width: 28%;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile {
  width: 20%;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile h5 {
  font-size: 21px;
  font-weight: 400;
  color: white;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile .footer-top-tile-sep {
  display: inline-block;
  height: 3px;
  width: 37px;
  margin: 0 0px 5px 0px;
  background-color: #FFA722;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile .footer-top-tile-content p {
  color: #B0B0B0;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile .footer-top-tile-content ul li {
  list-style-type: none;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile .footer-top-tile-content ul li a {
  color: #B0B0B0;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile .footer-top-tile-content ul li a:hover {
  color: #FFA722;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile .footer-top-tile-content .footer-top-tile-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #B0B0B0;
  font-size: 15px;
  margin: 8px 0px;
  font-weight: 400;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile .footer-top-tile-content .footer-top-tile-contact .footer-top-tile-contact-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile .footer-top-tile-content .footer-top-tile-contact:hover {
  color: #FFA722;
}

@media (max-width: 1050px) {
  .footer .footer-top .footer-top-tiles-content .footer-top-tile {
    width: 46% !important;
  }
}

@media (max-width: 525px) {
  .footer .footer-top .footer-top-tiles-content .footer-top-tile {
    width: 100% !important;
    margin-top: 30px;
  }
}

@media (max-width: 525px) {
  .footer .footer-top .footer-top-tiles-content .footer-top-tile:nth-child(1) {
    margin-top: 0;
  }
}

.footer .footer-top .footer-top-tiles-content .footer-top-tile:nth-child(4) {
  width: 24%;
}

@media (max-width: 1050px) {
  .footer .footer-top .footer-top-tiles-content .footer-top-tile:nth-child(3),
  .footer .footer-top .footer-top-tiles-content .footer-top-tile:nth-child(4) {
    margin-top: 30px;
  }
}

@media (max-width: 1050px) {
  .footer .footer-top .footer-top-tiles-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 525px) {
  .footer .footer-top {
    padding-bottom: 25px;
  }
}

.footer .footer-bottom {
  padding: 17px 0px;
  border-top: 1px solid #3F3F3F;
}

.footer .footer-bottom .footer-bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-first p {
  color: #BBBBBB;
  font-size: 14px;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-first span:first-child {
  margin-right: 10px;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-first div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-first div p {
  margin-right: 6px;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-first div a {
  color: #d6d6d6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-second a {
  width: 33px;
  height: 33px;
  min-width: 33px;
  min-height: 33px;
  background: #454545;
  border-radius: 50%;
  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;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-second a:first-child {
  margin-right: 21px;
}

.footer .footer-bottom .footer-bottom-content .footer-bottom-content-second a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#nav-menu-mobile {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.open-mobile-menu {
  display: none;
  cursor: pointer;
}

.nav-menu-mobile {
  display: none !important;
  position: fixed;
}

.open-mobile-menu i {
  font-size: 33px;
  color: white;
}

.nav-menu-mobile-active {
  display: block;
  height: 100%;
  position: fixed;
  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-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
}

.nav-menu-mobile-active .change-the-language {
  padding-top: 20px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-left: 0;
}

.nav-menu-mobile-active .change-the-language a {
  margin: 0px 5px;
}

.nav-menu-mobile-active .change-the-language a img {
  width: 25px;
}

.nav-menu-mobile-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 20px 20px 0px 0px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}

.list-mobile {
  margin-right: 20px;
  margin-left: 20px;
  margin-top: 20px;
  overflow: auto;
}

.submenu-container {
  -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;
}

.submenu-container .submenu li {
  margin-bottom: 0;
}

.submenu-container .submenu li a {
  color: #202020;
  text-decoration: none;
  text-align: center;
}

.submenu-container .submenu li:after {
  content: none !important;
}

.list-mobile li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0px;
  position: relative;
  margin-bottom: 11px;
}

.list-mobile li:after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: 0;
  width: 20px;
  height: 2px;
  background: black;
}

.nav-menu-mobile-a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.nav-menu-mobile-a:hover {
  color: #4b4b4b;
}

@media (max-width: 800px) {
  .nav-menu {
    display: none;
  }
  .open-mobile-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;
  }
  .header-text {
    margin: 0px 30px;
  }
}

.nav-menu-mobile-a-not:after {
  content: none !important;
}

.header-subpages {
  padding: 30px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header-subpages .container {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-subpages h1 {
  text-align: center;
  color: white;
  font-size: 37px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .header-subpages h1 {
    font-size: 27px;
  }
}

.header-subpages .header-subpages-down {
  margin-top: 10px;
  display: inline-block;
}

.header-subpages .header-subpages-down svg path {
  fill: white;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.header-subpages .header-subpages-down svg:hover path {
  fill: #bebebe;
}

.webp .header-subpages {
  background-image: url(../img/glowne-zdjecie-kostki-brukowej.webp) !important;
}

.no-webp .header-subpages {
  background-image: url(../img/glowne-zdjecie-kostki-brukowej.jpg) !important;
}

main.subpages {
  padding: 35px 0px 45px 0px;
}

.subpage-content-title h2 {
  border-left: 5px solid #FFA722;
  padding-left: 15px;
  font-size: 27px;
}

.subpage-content-title p {
  margin-top: 5px;
  color: #414141;
}

.contact-h3 {
  margin-bottom: 25px;
  color: #252525;
}

.contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0px;
}

.contact-content .contact-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}

.contact-content .contact-right-content .contact-right-content-date a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: black;
  font-size: 20px;
  margin-bottom: 15px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.contact-content .contact-right-content .contact-right-content-date a .contact-right-icon {
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ffa72265;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.contact-content .contact-right-content .contact-right-content-date a .contact-right-icon svg path {
  fill: #FFA722;
}

.contact-content .contact-right-content .contact-right-content-date a .contact-right-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-content .contact-right-content .contact-right-content-date a .contact-right-text span {
  color: gray;
  font-size: 16px;
}

.contact-content .contact-right-content .contact-right-content-date a:hover {
  color: #444444;
}

@media (max-width: 800px) {
  .contact-content .contact-right-content {
    width: 100%;
    margin-top: 30px;
  }
}

.contact-content .contact-left-content {
  width: 50%;
}

.contact-content .contact-left-content .contact-content-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.contact-content .contact-left-content .contact-content-second form {
  max-width: 400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-content .contact-left-content .contact-content-second form input {
  border: none;
  background-color: #f0f0f0;
  padding: 10px;
  margin-bottom: 10px;
}

.contact-content .contact-left-content .contact-content-second form textarea {
  border: none;
  background-color: #f0f0f0;
  padding: 10px;
  height: 90px;
}

.contact-content .contact-left-content .contact-content-second form input::-webkit-input-placeholder,
.contact-content .contact-left-content .contact-content-second form textarea::-webkit-input-placeholder {
  color: gray;
  font-size: 15px;
}

.contact-content .contact-left-content .contact-content-second form input:-ms-input-placeholder,
.contact-content .contact-left-content .contact-content-second form textarea:-ms-input-placeholder {
  color: gray;
  font-size: 15px;
}

.contact-content .contact-left-content .contact-content-second form input::-ms-input-placeholder,
.contact-content .contact-left-content .contact-content-second form textarea::-ms-input-placeholder {
  color: gray;
  font-size: 15px;
}

.contact-content .contact-left-content .contact-content-second form input::placeholder,
.contact-content .contact-left-content .contact-content-second form textarea::placeholder {
  color: gray;
  font-size: 15px;
}

.contact-content .contact-left-content .contact-content-second form button {
  margin-top: 20px;
  border: none;
  color: white;
  background-color: #FFA722;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 6px 20px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.contact-content .contact-left-content .contact-content-second form button:hover {
  background-color: #e4931b;
}

@media (max-width: 950px) {
  .contact-content .contact-left-content .contact-content-second form {
    max-width: 300px;
  }
}

@media (max-width: 780px) {
  .contact-content .contact-left-content .contact-content-second form {
    max-width: 500px;
  }
}

@media (max-width: 800px) {
  .contact-content .contact-left-content .contact-content-second form {
    max-width: unset !important;
  }
}

@media (max-width: 800px) {
  .contact-content .contact-left-content {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .contact-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.realization-gallery-subpages {
  margin-top: 25px;
}

.realization-gallery-subpages .tz-gallery .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.realization-gallery-subpages .tz-gallery .row .gallery-img {
  width: 25%;
  height: 398px;
  width: 32%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 1.5px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.realization-gallery-subpages .tz-gallery .row .gallery-img a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.realization-gallery-subpages .tz-gallery .row .gallery-img a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1050px) {
  .realization-gallery-subpages .tz-gallery .row .gallery-img {
    width: 49%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    height: 323px;
  }
}

@media (max-width: 600px) {
  .realization-gallery-subpages .tz-gallery .row .gallery-img {
    width: 100%;
  }
}

.realization-gallery-subpages .tz-gallery .row .gallery-img:hover {
  -webkit-filter: brightness(75%);
          filter: brightness(75%);
}

.subpage-content-text {
  margin-top: 15px;
}

.subpage-content-text h3 {
  margin: 20px 0px 13px 0px;
  font-size: 20px;
}

.subpage-content-text h4 {
  margin: 10px 0px 13px 0px;
}

.subpage-content-text img {
  float: right;
  margin-top: 60px;
  margin-left: 60px;
  margin-bottom: 60px;
}

.subpage-content-text ul {
  margin-top: 7px;
  margin-bottom: 20px;
  margin-left: 18px;
}

.subpage-content-text ul li {
  color: #3f3f3f;
}

.cookieConsentContainer {
  z-index: 999;
  width: 100%;
  min-height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px 10px 20px;
  background: #fcfcfc;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  display: none;
  -webkit-box-shadow: #1930521a 0rem 0.5rem 0.875rem;
          box-shadow: #1930521a 0rem 0.5rem 0.875rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 600px) {
  .cookieConsentContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cookieConsentContainer .cookieTitle a {
  font-family: OpenSans, arial, "sans-serif";
  color: #1b1b1b;
  font-size: 20px;
  line-height: 20px;
  display: block;
}

.purecookieTitle {
  display: none;
}

.cookieConsentContainer .cookieDesc p {
  margin: 0;
  padding: 0;
  font-family: OpenSans, arial, "sans-serif";
  color: #3f3f3f;
  font-size: 11.5px;
  line-height: 19px;
  display: block;
}

.cookieConsentContainer .cookieDesc a {
  font-family: OpenSans, arial, "sans-serif";
  color: #3f3f3f;
  text-decoration: underline;
}

.cookieButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}

@media (max-width: 600px) {
  .cookieButton {
    margin-left: 0;
  }
}

.cookieConsentContainer .cookieButton a {
  display: inline-block;
  font-family: OpenSans, arial, "sans-serif";
  color: #FFFFFF;
  font-size: 13px;
  font-weight: bold;
  background: #1A1718;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7px 19px;
  text-align: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.cookieConsentContainer .cookieButton a:hover {
  cursor: pointer;
  background: black;
}

@media (max-width: 980px) {
  .cookieConsentContainer {
    bottom: 0px !important;
    left: 0px !important;
    width: 100%  !important;
    padding: 15px 15px;
  }
  .cookieConsentContainer .cookieButton a {
    margin-top: 10px;
  }
}
/*# sourceMappingURL=style 3.css.map */