.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

hr {
  margin: 0 auto;
  width: 50%;
}

.white-block {
  position: absolute;
  height: 40px;
  width: 60%;
  background-color: rgb(245, 245, 245);
}
.white-block-left {
  bottom: 0;
  left: -50px;
  transform: skew(45deg);
}
.white-block-right {
  top: 0;
  right: -50px;
  transform: skew(45deg);
}

.btn-special-animation {
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  z-index: -1;
}
.btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.section-heading {
  position: relative;
  margin-bottom: 0.5em;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  color: rgba(63, 62, 62, 0.8666666667);
  letter-spacing: 2px;
  font-family: "Chakra Petch", sans-serif;
}

.section-padding {
  padding: 5em 2em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
  .section-padding {
    padding: 6em 2em;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.8rem;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62, 5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::after, .burger-btn:hover .burger-btn__bars::before {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #fff;
  transition: width 0.3s;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
}

.nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  background-image: linear-gradient(45deg, rgb(0, 0, 0), rgb(125, 122, 134));
  z-index: 100;
}
.nav--active {
  transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 2em;
  font-size: 2.8rem;
  color: #fff;
  text-decoration: none;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  background-color: #fff;
  transition: transform 0.3s;
  content: "";
}
.nav__item:hover::before {
  transform: scaleY(1);
}

@keyframes navItemsAnimation {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
.nav-items-animation {
  animation: navItemsAnimation 1s both;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: #2e2e2e;
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  height: 75vh;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(125, 122, 134, 0.5)), url("../img/hero-mini.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-attachment: scroll;
  font-family: "Chakra Petch", sans-serif;
}
.header__heading {
  font-size: 4.8rem;
  font-weight: 500;
}
.header span:hover {
  color: gold;
}
.header__text {
  font-size: 1.6rem;
}
.header__btn {
  letter-spacing: 1px;
  margin-top: 2em;
  padding: 0.8em 1.6em;
  font-size: 1rem;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #2e2e2e;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.header__btn::before {
  background-color: #eee;
}

.main {
  background-color: rgba(197, 190, 190, 0.157);
}
.main h2 {
  text-shadow: 10px 6px 17px rgb(117, 118, 127);
}

.about__box {
  display: flex;
  flex-direction: column;
  margin: 2em 0;
}
.about__img {
  width: 100%;
  margin-bottom: 1em;
}
.about__title {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.about__text {
  font-size: 1.2rem;
}

.hero-img {
  position: relative;
  padding: 10em 2em;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(125, 122, 134, 0.5)), url("../img/brukarz-small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  overflow: hidden;
  font-family: "Chakra Petch", sans-serif;
}
.hero-img__title {
  font-size: 4.2rem;
  margin-bottom: 0.6em;
}
.hero-img__text {
  padding: 1em 0;
}

.oferta__card {
  position: relative;
  margin: 1em 0;
  height: 550px;
  color: #fff;
  text-align: center;
  perspective: 1000px;
  margin: 2em 0px;
}
.oferta__card:hover .oferta__card-img {
  transform: rotateY(-180deg);
  opacity: 0;
}
.oferta__card:hover .oferta__card-info {
  transform: rotateY(0);
  opacity: 1;
}
.oferta__card-img {
  padding: 2em;
  height: 100%;
  border-radius: 8px;
  background-size: cover;
  transition: transform 1s, opacity 1s;
}
.oferta__card-img--first {
  background-image: linear-gradient(45deg, rgba(139, 140, 143, 0.247), rgba(125, 125, 161, 0.411)), url("../img/koparka_karta.jpeg");
}
.oferta__card-img--secound {
  background-image: linear-gradient(45deg, rgba(76, 75, 75, 0.75), rgba(42, 42, 51, 0.567)), url("../img/prace-karta.jpeg");
}
.oferta__card-img--third {
  background-image: linear-gradient(45deg, rgba(76, 75, 75, 0.75), rgba(42, 42, 51, 0.567)), url("../img/koparka-karta.jpeg");
}
.oferta__card-img--fourth {
  background-image: linear-gradient(45deg, rgba(76, 75, 75, 0.75), rgba(42, 42, 51, 0.567)), url("../img/niwelator.jpeg");
}
.oferta__card-img-title {
  font-size: 1.7rem;
}
.oferta__card-img-info {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 1.5rem;
}
.oferta__card-img-info i {
  margin-right: 0.5em;
}
.oferta__card-info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: radial-gradient(circle at top right, rgb(180, 177, 177) 0%, rgb(38, 39, 41) 100%);
  border-radius: 8px;
  opacity: 0;
  transform: rotateY(180deg);
  transition: transform 1s, opacity 1s;
}
.oferta__card-info-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.2em;
  font-size: 2rem;
  font-weight: 600;
}
.oferta__card-info-list {
  margin: 0 auto;
  width: 70%;
  list-style: none;
}
.oferta__card-info-list-item {
  padding: 0.5em;
  font-size: 1.2rem;
  border-bottom: 1px solid whitesmoke;
}
.oferta__card-info-list-item:last-child {
  border-bottom: none;
}

.realizacje {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(125, 122, 134, 0.5)), url("../img/tlo_3_mini.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.realizacje__btn {
  letter-spacing: 1px;
  margin-top: 2em;
  padding: 0.8em 1.6em;
  font-size: 1.2rem;
  background: rgb(206, 202, 202);
  border: none;
  border-radius: 8px;
  color: #2e2e2e;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}
.realizacje__btn::before {
  background-color: #eee;
}
.realizacje .section-heading {
  color: #fff;
  text-shadow: 10px 6px 17px rgb(255, 255, 255);
}
.realizacje__option {
  margin: 1em 0;
  box-shadow: 5px 5px 10 px rgba(46, 46, 46, 0.18);
  background-color: #fff;
  overflow: hidden;
}
.realizacje__option-img {
  width: 100%;
  transition: transform 0.3s;
}
.realizacje__option-img:hover {
  transform: scale(1.1);
}
.realizacje__option-info {
  padding: 2em;
  background-color: #fff;
  z-index: 10;
}
.realizacje__option-heading {
  margin-bottom: 0.5em;
  font-size: 1.8rem;
}
.realizacje__option-text {
  margin-bottom: 1.5em;
  font-size: 1.3rem;
}

.contact {
  position: relative;
  overflow: hidden;
}
.contact hr {
  margin-bottom: 2em;
}
.contact .section-padding {
  padding: 1em 1em;
}
.contact .white-block-left {
  background-color: #2e2e2e;
}
.contact .contact-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}
.contact .contact-text {
  width: 100%;
  text-align: center;
  margin-bottom: 0.5em;
}
.contact .contact-text i {
  font-size: 0.7em;
}
.contact .contact-text span {
  margin-left: 0.4em;
}
.contact .contact-text .phone {
  margin-top: 0.8em;
  margin-bottom: 20px;
}
.contact .contact-text .nip {
  margin-top: 0.8em;
}
.contact .contact-text .none {
  color: black;
  text-decoration: none;
}
.contact .contact-map {
  margin-top: 0.5em;
  width: 100%;
  text-align: center;
}
.contact .small-map {
  justify-content: center;
}
.contact .big-map {
  display: none;
}

.footer {
  color: #fff;
  background-color: #2e2e2e;
}
.footer .wrapper {
  padding: 6em 2em 2em;
}
.footer span {
  margin-left: 0.2em;
  margin-right: 0.2em;
}
.footer__bottom-text {
  padding: 2em;
  text-align: center;
}

#myImg:hover {
  opacity: 0.7;
}

.burger-btn {
  top: 50px;
  right: 50px;
}

.galery__item i {
  font-size: 2.5rem;
  color: gray;
  text-decoration: none;
}

.wrapper-galery-box {
  margin-left: 25px;
  margin-right: 25px;
  text-align: center;
  overflow: hidden;
}
.wrapper-galery-box hr {
  margin-bottom: 2em;
}
.wrapper-galery-box .section-heading {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-top: 2em;
  letter-spacing: normal;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 60%;
  max-width: 700px;
}

#caption {
  margin: auto;
  display: block;
  width: 60%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.close {
  position: absolute;
  top: 15px;
  left: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 80%;
  }
}
@media (min-width: 576px) {
  .about__box {
    flex-direction: row;
    justify-content: space-between;
  }
  .about__box-text {
    width: 55%;
  }
  .about__box-text--right {
    text-align: right;
  }
  .about__box-img {
    width: 40%;
  }
  .about__box-img--right {
    order: 1;
  }
  .about__title {
    font-size: 2rem;
  }
  .about__text {
    font-size: 1.2rem;
  }
  .about__img {
    margin-bottom: 0;
    max-height: 300px;
  }
  .realizacje hr {
    margin-bottom: 5em;
  }
  .realizacje__option {
    display: flex;
    margin: 2em 0;
    width: 100%;
  }
  .realizacje__option-img {
    width: 50%;
    height: auto;
  }
  .realizacje__option-img--right {
    order: 1;
  }
  .realizacje__option-info {
    display: flex;
    flex-direction: column;
  }
  .realizacje__option-heading {
    margin-bottom: 0.5em;
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .white-block {
    height: 50px;
    width: 45%;
  }
  .header__heading {
    font-size: 5.6rem;
  }
  .header__text {
    font-size: 1.8rem;
  }
  .header__btn {
    font-size: 1rem;
  }
  .about__title {
    font-size: 2.2rem;
  }
  .about__text {
    font-size: 1.5rem;
  }
  .hero-img {
    padding: 20rem 2em;
  }
  .hero-img hr {
    margin: 0 auto;
    width: 70%;
  }
  .oferta__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 5em 0px;
  }
  .oferta__card {
    margin: 1em;
    width: 98%;
  }
  .oferta__card-img-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 992px) {
  .burger-btn {
    top: 50px;
    right: 50px;
  }
  .header {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(125, 122, 134, 0.5)), url(../img/hero-big.jpg);
  }
  .header__heading {
    font-size: 7rem;
  }
  .header__btn {
    font-size: 1rem;
  }
  .nav__item {
    font-size: 3.8rem;
  }
  .about__box {
    margin: 5em 0;
  }
  .about__box-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2.5em;
  }
  .about__title {
    font-size: 3rem;
  }
  .about__text {
    font-size: 1.8rem;
  }
  .hero-img {
    padding: 25rem 2em;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(125, 122, 134, 0.5)), url("../img/brukarz-big.jpg");
  }
  .hero-img__title {
    font-size: 7rem;
  }
  .hero-img hr {
    width: 60%;
    max-width: 900px;
  }
  .realizacje {
    background-image: linear-gradient(45deg, rgba(76, 75, 75, 0.75), rgba(42, 42, 51, 0.567)), url("../img/tlo_3.jpeg");
  }
  .realizacje__option-img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .realizacje__option-text {
    font-size: 1.5rem;
  }
  .contact .contact-details {
    flex-direction: row;
  }
  .contact .contact-text {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
  }
  .contact .contact-text i {
    font-size: 0.7em;
  }
  .contact .contact-text span {
    margin-left: 0.4em;
  }
  .contact .contact-text .phone {
    margin-top: 0.8em;
  }
  .contact .contact-text .nip {
    margin-top: 0.8em;
  }
  .contact .contact-map {
    margin-top: 0.5em;
    width: 100%;
    text-align: center;
  }
  .contact .small-map {
    display: none;
  }
  .contact .big-map {
    display: block;
  }
}
@media (min-width: 1100px) {
  .oferta__card {
    width: 45%;
  }
  .contact .contact-details {
    flex-direction: row;
  }
  .contact .contact-text {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
  }
  .contact .contact-text i {
    font-size: 0.7em;
  }
  .contact .contact-text span {
    margin-left: 0.4em;
  }
  .contact .contact-text .phone {
    margin-top: 0.8em;
  }
  .contact .contact-text .nip {
    margin-top: 0.8em;
  }
  .contact .contact-map {
    margin-top: 0.5em;
    width: 100%;
    text-align: center;
  }
  .contact .small-map {
    display: none;
  }
  .contact .big-map {
    display: block;
  }
}/*# sourceMappingURL=main.css.map */