* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
}

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

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
}
.hero-text h1 {
  margin-bottom: 5px;
  text-shadow: 3px 3px 5px #000;
  color: #f8ea1b;
  font-size: 36px;
}
.hero-text p {
  font-size: 16px;
}

.autor1 {
  position: absolute;
  left: 142%;
  bottom: -315%;
  font-size: 13px;
}

.autor2 {
  position: absolute;
  left: 115%;
  bottom: -138%;
  font-size: 13px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
  text-transform: capitalize;
}

section {
  scroll-margin-top: 80px;
  margin-bottom: 20px;
}

/* Nawigacja */
nav {
  position: sticky;
  top: 0;
  height: 60px;
  line-height: 60px;
  background-color: #ddd;
  text-align: center;
  box-shadow: 0px 5px 10px rgb(0, 0, 0);
  z-index: 10;
}

.logo {
  position: absolute;
  left: 20%;
  width: calc(5% + 10px);
  height: 100%;
}

.burger-icon {
  position: relative;
  display: block;
  width: 35px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  border: none;
  z-index: 1;
}

.burger-icon .bar,
.burger-icon::after,
.burger-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #fff;
  margin: 6px 0px;
  transition: 0.3s;
}

.burger-icon.is-active::before {
  transform: rotate(-45deg) translate(-7px, 11px);
}

.burger-icon.is-active::after {
  transform: rotate(45deg) translate(-5px, -8px);
}

.burger-icon.is-active .bar {
  opacity: 0;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  max-height: 330px;
  display: block;
  background: rgb(33, 33, 33);
  background: linear-gradient(180deg, rgb(33, 33, 33) 28%, rgb(59, 114, 130) 69%, rgb(4, 163, 197) 93%);
  padding-top: 120px;
  transition: 0.3s;
  z-index: 1;
}
.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
  text-align: center;
  padding: 12px 16px;
  background-color: #020099;
  border-radius: 25px;
  color: white;
  text-decoration: none;
}

.mobile-nav.is-active {
  left: 0;
}

/* header */
.header {
  position: relative;
  height: 330px;
  background-image: url("../img/baner.png");
  background-repeat: round;
}

/* Main */
main {
  margin: 60px 0;
}

/* o nas */
.about-us-img {
  display: flex;
  justify-content: space-evenly;
}
.about-us-img img {
  width: 190px;
}

.about-us-info {
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 20px;
  text-align: center;
}

/* produkty */
.products {
  margin: 60px auto;
}
.products h3,
.products h5 {
  text-transform: capitalize;
  text-shadow: 3px 3px 5px #000;
  font-size: 24px;
  transition: 0.3s;
}

.product:hover h3 {
  scale: 1.4;
}

.product {
  position: relative;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  background-size: cover;
  height: 243px;
  width: 100%;
  background-position: center;
  text-align: center;
  font-size: 16px;
  margin: 1px;
}

.first-product {
  background-image: url("../img/oil-t.jpg");
}

.second-product {
  background-image: url("../img/przeglad.jpg");
}

.third-product {
  background-image: url("../img/regulacja.jpg");
}

.fourth-product {
  background-image: url("../img/kawasaki.jpg");
}

.boxes {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.why-us {
  position: relative;
  background-size: cover;
  height: 260px;
  width: 100%;
  background-position: center;
  text-align: center;
  font-size: 16px;
  margin: 1px;
}

.space {
  margin-bottom: 40px;
}

p {
  margin-top: 10px;
}

.at {
  text-shadow: 4px 4px 5px #000;
  color: #f8ea1b;
  text-transform: none;
}

.motors {
  text-transform: uppercase;
  text-shadow: 4px 4px 5px #000;
  color: #e30613;
}

h4 span {
  line-height: 70px;
}

.answer-one {
  background-image: url("/img/exp.jpg");
}

.answer-two {
  background-image: url("/img/monitor.jpg");
}

.answer-tree {
  background-image: url("/img/clock-g03a0eb32b_640.jpg");
}

.visit {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  text-decoration: none;
  font-size: 30px;
  color: black;
}

/* kontakt */
.contact {
  text-align: center;
}
.contact h3,
.contact h2 {
  margin: 20px 0 20px;
  text-transform: uppercase;
}

/* Cennik */
ul {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 2px;
  list-style: circle;
}

li {
  padding: 4px;
}

.pricelist span {
  text-align: center;
  font-weight: bold;
  padding: 20px;
  letter-spacing: 2px;
}

.middle {
  display: flex;
  justify-content: center;
}

.btn-css {
  background-color: hsl(0, 0%, 13.33%); /* Green */
  border: none;
  border-radius: 25px;
  color: white;
  padding: 15px 32px;
  margin: 0 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
}
.btn-css a {
  color: white;
  text-decoration: none;
  text-transform: inherit;
  letter-spacing: 1px;
}

.btn-use {
  display: flex;
  justify-content: center;
}

.btn-call {
  margin-top: 20px;
  color: black;
  text-decoration: none;
}

/*  footer */
footer {
  padding: 30px 10px;
  text-align: center;
  background-color: #333;
}

.footer__box {
  color: white;
  list-style: none;
}

.footer__bottom-text {
  color: white;
}

table {
  color: #ddd;
}
table a {
  color: white;
  text-decoration: none;
}

th,
td {
  width: 33%;
}

.link {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: white;
}

.link_border {
  text-decoration: underline;
}

/* .link_border {
    height: 1px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    background-color: #ffdd00;
    background: linear-gradient(90deg, tranparent, ffdd00);
    transition: width 0.3s;
  } */
.pricelist {
  text-align: center;
  font-weight: bold;
  padding: 20px;
  letter-spacing: 2px;
}

.btn-call {
  color: black;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-items {
    display: none;
  }
  .autor1 {
    position: absolute;
    left: 73%;
    bottom: -315%;
    font-size: 13px;
  }
  .autor2 {
    position: absolute;
    left: 88%;
    bottom: -80%;
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
  .burger-icon {
    display: none;
  }
  .nav-items {
    display: block;
  }
  .nav-items a {
    padding: 0 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
  }
  .nav-items a:hover {
    color: #09f;
  }
  .header {
    height: 400px;
    background-image: url("../img/baner.png");
  }
  .product {
    display: inline-block;
    width: 100%;
  }
  .product h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .about-us-img img {
    display: none;
  }
}
@media (min-width: 992px) {
  .product {
    display: inline-block;
    width: 49%;
  }
}
@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 42px;
  }
  .hero-text p {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */