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

.white-block {
  position: absolute;
  height: 40px;
  width: 60%;
  background-color: #fff;
}
.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: 2em;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  color: #ab4640;
  letter-spacing: 2px;
  font-weight: bold;
  letter-spacing: 3px;
}

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

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
  .section-padding {
    padding: 8em 2em;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.8rem;
  }
  .section-padding {
    padding: 10em 2em;
  }
}
*,
*::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;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav__item.active {
  color: #fff;
  text-decoration: none;
}

.white-section {
  background-color: #fff;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-image: linear-gradient(to top, lightgrey 0%, lightgrey 1%, #e0e0e0 26%, #efefef 48%, #d9d9d9 75%, #bcbcbc 100%);
}

.load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.load hr {
  border: 0;
  margin: 0;
  width: 40%;
  height: 40%;
  position: absolute;
  border-radius: 50%;
  animation: spin 2s ease infinite;
}

.load :first-child {
  background: #a61212;
  animation-delay: -1.5s;
}

.load :nth-child(2) {
  background: #282727;
  animation-delay: -1s;
}

.load :nth-child(3) {
  background: #a61212;
  animation-delay: -0.5s;
}

.load :last-child {
  background: #282727;
}

.js .load,
.js #loader-wrapper {
  display: block;
}

@keyframes spin {
  0%, 100% {
    transform: translate(0);
  }
  25% {
    transform: translate(160%);
  }
  50% {
    transform: translate(160%, 160%);
  }
  75% {
    transform: translate(0, 160%);
  }
}
.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
  mix-blend-mode: difference;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.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 {
  padding: 2em 0;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  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(to right, #6d6262 10%, rgba(45, 52, 57, 0.7411764706) 40%);
  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;
}

h2 {
  font-weight: bold;
  font-size: 24px;
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  height: 65vh;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(to top, rgba(243, 228, 223, 0.5882352941) 0%, rgba(255, 255, 255, 0.9) 100%), url("/img/roadsmall.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-attachment: scroll;
}
.header__heading {
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  font-weight: 300;
  font-weight: bold;
}
.header__text {
  font-size: 1.6em;
}
.header .scroll-down-dude {
  cursor: pointer;
  position: relative;
  top: -60px;
  transform: translateX(-50%);
}
.header .scroll-down-dude:before,
.header .scroll-down-dude:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  border-bottom: 6px solid white;
  border-right: 6px solid white;
}
.header .scroll-down-dude:before {
  animation: down-arrow-before 2.6s infinite;
}
.header .scroll-down-dude:after {
  animation: down-arrow-after 2.6s infinite;
}
@keyframes down-arrow-before {
  50% {
    transform: rotate(45deg) translate(70%, 70%);
  }
  100% {
    transform: rotate(45deg) translate(70%, 70%);
  }
}
@keyframes down-arrow-after {
  50% {
    transform: rotate(45deg) translate(110%, 110%);
    opacity: 0;
  }
  51% {
    transform: rotate(45deg) translate(-130%, -130%);
  }
  100% {
    transform: rotate(45deg) translate(-70%, -70%);
    opacity: 1;
  }
}

.jobs__box {
  display: flex;
  flex-direction: column;
  margin: 2em 0;
}
.jobs__img {
  width: 100%;
  margin-bottom: 1em;
}
.jobs__title {
  margin-bottom: 0.5em;
  text-transform: uppercase;
  text-align: center;
}
.jobs__text {
  font-size: 1.6rem;
  text-align: center;
}

.hero-img {
  position: relative;
  padding: 5em 0em;
  width: auto;
  height: 40%;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: auto;
}
.hero-img #canvas {
  background-image: linear-gradient(to right, #6d6262 10%, rgba(45, 52, 57, 0.7411764706) 40%), url("/img/lib_640.jpg");
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offer__card {
  position: relative;
  margin: 1em 0;
  height: 450px;
  color: #fff;
  text-align: center;
  perspective: 1000px;
  flex-wrap: wrap;
  margin: 10px;
}
.offer__card:hover .offer__card-img {
  transform: rotateY(-180deg);
  opacity: 0;
}
.offer__card:hover .offer__card-info {
  transform: rotateY(0);
  opacity: 1;
}
.offer__card-img {
  padding: 2em;
  height: 100%;
  border-radius: 8px;
  background-size: cover;
  transition: transform 1s, opacity 1s;
}
.offer__card-img--first {
  background-image: url("/img/czerwonaSiedlce.jpg");
}
.offer__card-img--second {
  background-image: url("/img/redmaszyna.jpg");
}
.offer__card-img--third {
  background-image: url("/img/bluedruga.jpg");
}
.offer__card-img--fourth {
  background-image: url("/img/s7niebieska.jpg");
}
.offer__card-img--fifth {
  background-image: url("/img/bialas7.jpg");
}
.offer__card-img--sixth {
  background-image: url("/img/s14.jpg");
}
.offer__card-img-title {
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
}
.offer__card-img-info {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 2rem;
}
.offer__card-img-info i {
  margin-right: 0.3em;
}
.offer__card-info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  background-image: linear-gradient(45deg, rgba(23, 8, 8, 0.75), rgba(83, 59, 25, 0.75));
  opacity: 0;
  transform: rotateY(180deg);
  transition: transform 1s, opacity 1s;
}
.offer__card-info-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.2em;
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
}
.offer__card-info-list {
  margin: 0 auto;
  width: 70%;
  list-style: none;
}
.offer__card-info-list-item {
  padding: 1em;
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(202, 201, 201, 0.6235294118);
}
.offer__card-info-list-item:last-child {
  border-bottom: none;
}

.reference {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-image: linear-gradient(45deg, rgba(9, 21, 37, 0.685), rgba(49, 19, 19, 0.75)), url("/img/architecture-1837176_640.jpg");
  overflow: hidden;
}
.reference .section-heading {
  color: #fff;
  margin-top: 0em;
}
.reference__option {
  margin: 1em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 5px 5px 10px rgba(46, 46, 46, 0.18);
  background-color: #fff;
}
.reference__option-img {
  width: 100%;
  transition: transform 0.3s;
}
.reference__option-img:hover {
  transform: scale(1.1);
}
.reference__option-info {
  padding: 2em;
  background-color: #fff;
  z-index: 10;
}
.reference__option-heading {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
  font-weight: 300;
  font-weight: bold;
  text-align: center;
}
.reference__option-text {
  margin-bottom: 0.5em;
  font-size: 1rem;
  color: #2e2e2e;
  font-weight: bold;
  text-align: center;
}
.reference .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);
  z-index: 1000;
  overflow-y: auto;
}
.reference .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
.reference #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
.reference .modal-content,
.reference #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.reference .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.reference .close:hover,
.reference .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.reference .myImg {
  width: 30%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.reference .myImg:hover {
  cursor: zoom-in;
}

@media (max-width: 767px) {
  .reference.section-padding {
    padding: 6em 0;
  }
}
#contact {
  overflow: hidden;
  position: relative;
  padding: 4rem;
  text-align: center;
  font-size: 1.2rem;
  margin: 0 auto;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  font-family: "Roboto", sans-serif;
}

.icon {
  vertical-align: middle;
  height: 40px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  text-transform: uppercase;
  font-size: 1.1em;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}

.fas.icon {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  vertical-align: middle;
}

.fa-solid {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  vertical-align: middle;
}

p {
  font-size: 1em;
  padding-bottom: 10px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.col-md-4 {
  flex: 1;
  margin: 0 10px;
}

.col {
  flex: 1;
  margin-bottom: 20px;
}

.section {
  text-align: center;
}

.footer {
  background-image: linear-gradient(to top, lightgrey 0%, lightgrey 1%, #e0e0e0 26%, #efefef 48%, #d9d9d9 75%, #bcbcbc 100%);
  padding: 2rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.footer__box-title {
  margin-bottom: 1em;
  font-size: 0.5rem;
  text-transform: uppercase;
  margin: auto;
}

.logo__img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
  margin: auto;
}

.wrapper {
  padding: 0em 2em;
}

.footer__box-desktop {
  display: none;
}

.footer__bottom-text {
  color: black;
  overflow-wrap: break-word;
}

@media (min-width: 576px) {
  .jobs__box {
    flex-direction: row;
    justify-content: space-between;
  }
  .jobs__box-text {
    width: 55%;
  }
  .jobs__box-text--right {
    text-align: right;
  }
  .jobs__box-img {
    width: 40%;
  }
  .jobs__box-img--right {
    order: 1;
  }
  .jobs__img {
    margin-bottom: 0;
    max-height: 300px;
  }
  .__btn {
    margin-top: 1em;
  }
  .offers__option {
    display: flex;
    margin: 2em 0;
    width: 100%;
  }
  .offers__option-img {
    width: 50%;
    height: auto;
  }
  .offers__option-img--right {
    order: 1;
  }
  .offers__option-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .offers__option-heading {
    margin-bottom: 0.5em;
    font-size: 3.6rem;
    font-weight: bold;
  }
  .offers__option-btn {
    padding: 1em;
  }
  .reference__option {
    display: flex;
    margin: 2em 0;
    width: 100%;
  }
  .reference__option-img {
    width: 50%;
    height: auto;
  }
  .reference__option-img--right {
    order: 1;
  }
  .reference__option-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .reference__option-heading {
    margin-bottom: 0.5em;
    font-size: 3.6rem;
    font-weight: bold;
  }
  .reference__option-btn {
    padding: 1em;
  }
  #contact {
    padding: 2rem;
    font-size: 1.5rem;
  }
  .fas.icon {
    font-size: 2em;
  }
  .fa.solid {
    font-size: 2.5em;
  }
  .section-title {
    font-size: 1.1em;
  }
  p {
    font-size: 1em;
  }
}
.footer__box-desktop {
  display: block;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .white-block {
    height: 50px;
    width: 45%;
  }
  .scroll-down-dude {
    bottom: 10px;
  }
  .__btn {
    margin-top: 1em;
  }
  .header {
    background-image: linear-gradient(to top, rgba(243, 228, 223, 0.5882352941) 0%, rgba(255, 255, 255, 0.9) 100%), url(/img/roadbig.jpg);
  }
  .header__heading {
    font-size: 6.6rem;
  }
  .header__text {
    font-size: 2.2rem;
  }
  .header__btn {
    font-size: 1.6rem;
  }
  .jobs {
    margin: 1em 0;
  }
  .jobs__text {
    font-size: 1.8rem;
  }
  .hero-img {
    padding: 10rem 0em;
  }
  .offer__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex: 0 0 100%;
  }
  .offer__card {
    margin: 1em;
    width: 45%;
  }
  #contact {
    padding: 2rem;
    font-size: 1.5rem;
  }
  .fas.icon {
    font-size: 2em;
  }
  .fa.solid {
    font-size: 2em;
  }
  .section-title {
    font-size: 1.1em;
  }
  p {
    font-size: 1em;
  }
}
.footer__box-desktop {
  display: block;
  justify-content: space-between;
}

.footer__boxes {
  display: flex;
  justify-content: space-between;
}
.footer__box {
  margin: 0 2em;
  width: 25%;
}
.footer__box:first-child {
  width: 50%;
}
.footer__box-title {
  font-size: 2.4rem;
}
.footer__box-list {
  list-style: none;
}
.footer__box-list-item {
  margin-bottom: 1em;
}
.footer__box-list-item a {
  color: rgba(202, 201, 201, 0.6235294118);
  text-decoration: none;
}
.footer .nav {
  padding: 1em 0;
  overflow-x: hidden;
}
.footer .nav__item {
  font-size: 1.6rem;
}
.footer .__btn {
  margin-top: 0.5em;
  padding: 0.8em 1.2em;
}

@media (min-width: 992px) {
  .burger-btn {
    top: 50px;
    right: 50px;
  }
  .header .header__heading {
    font-size: 10rem;
  }
  .scroll-down-dude {
    bottom: 10px;
  }
  .nav .nav__item {
    font-size: 4.8rem;
  }
  .section-padding {
    padding: 4em 2em;
  }
  .jobs__box {
    margin: 5em 0;
  }
  .jobs__title {
    font-size: 3.6rem;
  }
  .jobs__text {
    font-size: 2.2rem;
  }
  .hero-img {
    padding: 10rem 0;
    background-image: linear-gradient(to right, #6d6262 10%, rgba(45, 52, 57, 0.7411764706) 40%), url("/img/lib_1920.jpg");
  }
  .reference {
    background-image: linear-gradient(45deg, rgba(9, 21, 37, 0.685), rgba(49, 19, 19, 0.75)), url("/img/architecture-1837176_1920.jpg");
  }
  .reference .reference__option-img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 300px;
  }
  .reference .reference__option-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 1100px) {
  .scroll-down-dude {
    bottom: 10px;
  }
  s .offer__card {
    width: 30%;
  }
  .hero-img {
    padding: 10rem 0;
    background-image: linear-gradient(to right, #6d6262 10%, rgba(45, 52, 57, 0.7411764706) 40%), url("/img/lib_1920.jpg");
  }
  .reference {
    background-image: linear-gradient(45deg, rgba(9, 21, 37, 0.685), rgba(49, 19, 19, 0.75)), url("/img/architecture-1837176_1920.jpg");
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .burger-btn {
    top: 30px;
    right: 30px;
  }
  .header__heading {
    font-size: 8rem;
  }
  .scroll-down-dude {
    top: 30px;
    right: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .scroll-down-dude {
    bottom: 10px;
  }
  .jobs__text {
    font-size: 2rem;
  }
  .hero-img {
    padding: 10rem 0;
    background-image: linear-gradient(to right, #6d6262 10%, rgba(45, 52, 57, 0.7411764706) 40%), url("/img/lib_1920.jpg");
  }
  .reference {
    background-image: linear-gradient(45deg, rgba(9, 21, 37, 0.685), rgba(49, 19, 19, 0.75)), url("/img/architecture-1837176_1920.jpg");
  }
}
@media (min-width: 1440px) {
  .scroll-down-dude {
    bottom: 10px;
  }
  .nav__item {
    font-size: 5rem;
  }
  .jobs__box {
    margin: 6em 0;
  }
  .hero-img {
    padding: 10rem 0;
    background-image: linear-gradient(to right, #6d6262 10%, rgba(45, 52, 57, 0.7411764706) 40%), url("/img/lib_1920.jpg");
  }
  .reference {
    background-image: linear-gradient(45deg, rgba(9, 21, 37, 0.685), rgba(49, 19, 19, 0.75)), url("/img/architecture-1837176_1920.jpg");
  }
}/*# sourceMappingURL=main.css.map */