* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color-drew: #3a96f2;
  --color-hover: #156cf7;
}
html {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
body {
  width: 100%;

  background-color: #f5f7fa;
  margin: 0 auto;
  /* overflow: hidden; */
}
.div-shadow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff1;
  z-index: 0;
  transition: 0.4s;
}
.div-shadow:hover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff2;
  z-index: 0;
}
p {
  font-size: 15px;
}
header {
  height: 100vh;
  position: relative;
  /* background-image: url("img/header-hero.jpg"); */
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  color: #fff;
  overflow: hidden;
}
.hero-shadow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 0;
}
.header-video {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-45%, -50%);
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
.container-90vh {
  width: 90%;
  padding: 50px 0;
  margin: 0 auto;
}
@media (min-width: 1400px) {
  .container-90vh {
    width: 80%;
    padding: 50px 0;
    margin: 0 auto;
  }
}
.container-80vh {
  width: 80%;
  padding: 50px 0;
  margin: 0 auto;
}
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(#444, #222);
  height: 50px;
  z-index: 10;
  /* box-shadow: 0 0 5px 1px #222; */
}
.sticky-yellow {
  position: fixed;
  top: 50px;
  right: 0;
  height: 25px;
  background-color: var(--color-drew);
  color: #fff;
  font-size: 12px;
  line-height: 25px;
  padding: 0 10px;
  z-index: 100;
  border-bottom-left-radius: 10px;
}
.sticky-yellow a {
  color: inherit;
  text-decoration: none;
}
.logo {
  font-size: 20px;
  letter-spacing: 5px;
  line-height: 50px;
  margin-left: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
}
.logo span {
  color: #d8ba30;
}
.burger {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  width: 40px;
  text-align: center;
  position: fixed;
  top: 5px;
  right: 5px;
  cursor: pointer;
  transition: 0.7s;
  z-index: 100;
  color: #fff;
  /* background-color: #0006;
  border-radius: 100px;
  box-shadow: inset 0 0 4px 0px white; */
}
.burger.active {
  transform: rotate(45deg);
  color: #ddd;
}
.burger.active:hover {
  color: #fff;
}
.mobile {
  position: fixed;
  top: 0;
  left: 100%;
  height: 100vh;
  width: 100%;
  font-size: 0;
  background-image: linear-gradient(#222, #000);
  opacity: 0;
  transition: all 0.7s;
  z-index: 3;
}
.mobile.active {
  opacity: 0.95;
  font-size: 5vh;
  line-height: 10vh;
  left: 0;
}
.mobile ul {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  list-style: none;
  z-index: 2;
}
.mobile ul a {
  text-decoration: none;
  font-weight: 600;
  color: #ddd;
}
.mobile ul a:hover {
  color: #fff;
}
.desktop {
  display: none;
}
.header-hero-text {
  position: absolute;
  width: 80%;
  top: 30%;
  left: 10%;
  color: #fff;
}
.header-hero-text h1 {
  font-size: 30px;
}
.header-hero-text ul {
  font-size: 15px;
  list-style: none;
  line-height: 30px;
}
.header-hero-text ul .fa-solid {
  margin-right: 5px;
  font-size: 12px;
}

.header-hero-contact {
  background-color: var(--color-drew);
  position: absolute;
  bottom: 10%;
  right: 5%;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  z-index: 2;
  padding: 5px 20px;
  border-radius: 100px;
  transition: 0.2s;
}
.header-hero-contact:hover {
  background-color: var(--color-hover);
}
.a-tel {
  color: white;
  display: block;
}

@media (min-width: 768px) and (orientation: portrait) {
  .header-hero-text {
    top: 30%;
    left: 10%;
  }
  .header-hero-text h1 {
    font-size: 60px;
    padding-bottom: 20px;
  }
  .header-hero-text ul {
    font-size: 20px;
    list-style: none;
    line-height: 40px;
  }
  .header-hero-text ul .fa-solid {
    margin-right: 5px;
    font-size: 12px;
  }
  .header-hero-contact {
    bottom: 10%;
    right: 5%;
  }
}

@media (min-width: 992px) {
  header {
    height: 70vh;
  }
  .burger {
    display: none;
  }
  .mobile {
    display: none;
  }
  .desktop {
    display: block;
  }
  .desktop ul {
    display: flex;
    line-height: 50px;
    width: 95%;
    list-style: none;
    justify-content: flex-end;
  }
  .desktop a {
    color: #ddd;
    text-decoration: none;
    margin: 0 50px;
    font-size: 18px;
  }
  .desktop a:hover {
    color: #fff;
  }
  .header-hero-text {
    top: 20%;
    left: 10%;
  }
  .header-hero-text h1 {
    font-size: 60px;
    padding-bottom: 20px;
  }
  .header-hero-text ul {
    font-size: 20px;
    list-style: none;
    line-height: 40px;
  }
  .header-hero-text ul .fa-solid {
    margin-right: 5px;
    font-size: 12px;
  }
  .header-hero-contact {
    bottom: 10%;
    right: 15%;
  }
}
@media (min-width: 1200px) {
  .header-hero-text {
    top: 20%;
    left: 10%;
  }
  .header-hero-text h1 {
    font-size: 80px;
    padding-bottom: 20px;
  }
  .header-hero-text ul {
    font-size: 25px;
    list-style: none;
    line-height: 40px;
  }
}
@media (min-width: 1920px) {
  .header-hero-text {
    top: 20%;
    left: 10%;
    width: 70%;
  }
  .header-hero-text h1 {
    font-size: 100px;
    padding-bottom: 20px;
  }
  .header-hero-text ul {
    font-size: 25px;
    list-style: none;
    line-height: 40px;
  }
}

main {
  background-color: #f5f7fa;
}
.motto-section {
  background-color: #fff;
}
.motto p {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}
.motto-p {
  padding: 50px 0;
}
@media (min-width: 992px) {
  .motto p {
    font-size: 40px;
  }
}

/* section products */
.products-section {
  position: relative;
  background-image: url("img/pobrane.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fffe;
  z-index: 0;
}
.products {
  max-width: 1600px;
}
.products-text {
  position: relative;
  z-index: 2;
}
.section-title-p {
  font-size: 30px;
  font-weight: 700;
  z-index: 2;
  position: relative;
}
.line-yellow {
  width: 100px;
  height: 3px;
  background-color: var(--color-drew);
  margin-bottom: 40px;
  position: relative;
}
.products h2 {
  font-size: 20px;
  line-height: 60px;
  transition: 0.3s;
}
.products h2 a {
  text-decoration: none;
  color: #444;
  transition: 0.2s;
}
.products h2 a:hover {
  color: var(--color-drew);
  margin-left: 5px;
}
/* .products h2:hover {
  transform: translateX(10px)
} */

.products-items {
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
  margin: 50px auto 0;
  justify-content: center;
  align-items: center;
}
.product-item {
  width: 90%;
  /* height: 250px; */
  /* position: relative; */
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 30px;
}
.product-item-img {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.product-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: fit-content;
  width: 100%;
}
.product-item-text {
  background-image: linear-gradient(#fff, #bbb);
  height: 100px;
  z-index: 1;
  text-align: center;
}
.product-item-text p {
  font-size: 20px;
  text-align: center;
  line-height: 55px;
  z-index: 2;
}
.product-item-text a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background-color: var(--color-drew);
  padding: 10px 20px;
  border-radius: 100px;
  transition: 0.2s;
  z-index: 2;
}
.product-item-text a:hover {
  background-color: var(--color-hover);
}
.product-item:hover {
  box-shadow: 0 5px 10px 0px #888;
}

@media (min-width: 640px) {
  .products-items {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .product-item {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .product-item {
    width: 23%;
  }
}

/* about */
.about {
  max-width: 1600px;
}

.about-section {
  /* background-image: url('/img/trees-g23c644114_1920\ \(1\).jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative; */
  background-color: #fff;
}
/* .hero-shadow-light {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fffc;
  z-index: -1;
} */
.about div {
  z-index: 2;
}
.about-items {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.about-sub {
  font-size: 20px;
  padding-bottom: 10px;
  font-weight: 500;
}
.about-gallery-flex {
  display: flex;
  flex-direction: column;
}
.about img {
  display: block;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 600px;
}
.about i {
  font-size: 50px;
  padding-bottom: 20px;
  color: var(--color-drew);
}
.text-center {
  text-align: center;
  font-size: 30px;
  padding-bottom: 20px;
  font-weight: 600;
}
.yellow-line-tiny {
  background-color: var(--color-drew);
  height: 1px;
  width: 100%;
  margin: 50px 0;
}
@media (min-width: 768px) {
  .about-gallery-flex {
    flex-direction: row;
  }
  .about img {
    display: block;
    margin: 0 auto 40px;
    width: 48%;
    max-width: 600px;
  }
}
@media (min-width: 992px) {
  .about-items {
    text-align: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .about-item {
    width: 33%;
    margin: 5%;
  }
  .yellow-line-tiny {
    display: none;
  }
}

/* offer */
.offer {
  max-width: 1600px;
  overflow: hidden;
}
.offer-start-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-start-europe {
  width: 300px;
}
.offer-start-europe img {
  width: 300px;
}

.offer-start-p {
  margin-bottom: 20px;
}
.offer-end-p {
  font-size: 25px;
  font-weight: 500;
}
.header-hero-contact-no-absolute {
  display: block;
  width: 200px;
  background-color: var(--color-drew);
  color: #000;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  z-index: 2;
  padding: 5px 20px;
  border-radius: 100px;
  transition: 0.2s;
  margin: 30px auto 0;
}
.zobacz {
  color: #fff;
  padding: 15px;
  text-align: center;
}
.header-hero-contact-no-absolute:hover {
  background-color: var(--color-hover);
}
.offer-items {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.offer-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}
.img-title {
  position: relative;
  height: 400px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}
.img-title img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;

  /* border-radius: 10px; */
}
.offer-item-title {
  font-size: 25px;
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
}
.offer-item-each p {
  font-size: 15px;
}
.offer-item-each i {
  font-size: 10px;
  line-height: 30px;
}
.offer-item-each .offer-item-subtitle {
  font-size: 20px;
  padding-bottom: 10px;
  font-weight: 500;
}
.line-offer-item {
  height: 1px;
  width: 100%;
  margin: 20px 0;
  background-color: #ccc;
}

@media (min-width: 768px) {
  .offer-items {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .offer-item {
    width: 45%;
  }
  .offer-start-flex {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (min-width: 1200px) {
  .offer-start-europe img {
    width: 350px;
  }
  .offer-start {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .offer-start-europe img {
    width: 400px;
  }
  .offer-start {
    width: 60%;
  }
}

/* contact */
.contact {
  max-width: 1600px;
}
.contact-section {
  background-color: #fff;
}
.section-title-p-h2 {
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 500;
}
.contact-ul ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.contact-ul li {
  font-size: 20px;
  text-align: center;
  margin: 10px;
  padding: 40px 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: 0.4s;
  font-weight: 500;
}
.contact-ul li:hover {
  box-shadow: 0 5px 10px 0px #aaa;
  /* background-color: #fff; */
}
.contact-ul li i {
  display: block;
  font-size: 40px;
  padding-bottom: 20px;
}
.contact-ul a {
  display: block;
  color: #444;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}
.map {
  display: block;
  width: 90%;
  height: 60vh;
  margin: 50px auto;
  border: 0;
}
.dane {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.contact-flex {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: flex-start;
  flex-direction: column;
}
.kuba img {
  border-radius: 100%;
  width: 200px;
  margin-bottom: 20px;
}
.kuba a {
  color: #000;
  text-decoration: none;
}
.kuba i {
  width: 20px;
  margin-right: 5px;
  line-height: 30px;
}
@media (min-width: 640px) {
  .contact-flex {
    flex-direction: row;
  }
  .contact-flex div {
    width: 50%;
  }
}
@media (min-width: 800px) {
  .contact-ul ul {
    flex-direction: row;
    justify-content: space-around;
  }
  .contact-ul li {
    width: 30%;
    padding: 80px 10px;
  }
}

/* footer */
footer {
  background-color: var(--color-drew);
  color: #fff;
}
.footer {
  max-width: 1600px;
}
.footer-flex {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: flex-start;
  flex-direction: column;
}
.nav-footer p {
  margin-bottom: 20px;
  font-weight: 500;
}
.nav-footer ul {
  list-style: none;
  font-size: 15px;
}
.nav-footer ul li {
  transition: 0.2s;
}
.nav-footer ul a {
  color: #fff;
  text-decoration: none;
  line-height: 30px;
  transition: 0.2s;
}
.nav-footer ul i {
  font-size: 12px;
  width: 40px;
  text-align: center;
}
.nav-footer ul a:hover,
.nav-footer ul li:hover {
  transform: scale(1.1);
}
.tel-footer {
  margin-top: 50px;
}
.tel-footer a {
  display: block;
}
.footer-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 50px 0;
}
.footer-copy {
  text-align: center;
}
.footer-copy a {
  text-decoration: none;
  color: #fff;
}
.footer-copy a:hover {
  text-decoration: none;
  color: #ddd;
}
@media (min-width: 576px) {
  .footer-flex {
    flex-direction: row;
  }
  .tel-footer {
    margin-top: 0px;
  }
}
