@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 1320px;
  max-width: auto;
  margin: auto;
}
header {
  display: flex;
  justify-items: center;
  align-items: center;
  height: 90px;
  width: 100%;
  background-color: #fff;
}
.logo img {
  height: 70px;
  width: auto;
}
nav {
  width: 100%;
}
header ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  gap: 50px;
}
header li {
  list-style: none;
  display: inline-block;
}
header li a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: all linear 0.25s;
}
header li a:hover,
header li a.active {
  color: #009ee0;
}
.cart {
  display: flex;
  align-items: center;
}
.cart img {
  height: 16px;
  width: 16px;
}
.big-hero-section {
  width: 100%;
  height: 75vh;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
  background-image: url("../img/big-hero.png");
  background-repeat: none;
  background-size: cover;
  position: relative;
  margin-bottom: 100px;
}
.big-hero-text {
  width: 100%;
  max-width: 570px;
}
.big-hero-text h1 {
  font-size: 40px;
  color: #333;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  margin-top: 10px;
}
.big-hero-text p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #717171;
}
.search-form {
  width: 100%;
  position: relative;
}

.search-form input[type="text"] {
  width: 70%;
  color: #2c2c2c;
  height: 40px;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  padding: 0;
  background: #fff;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 10px;
}
.search-form input[type="button"] {
  position: absolute;
  cursor: pointer;
  left: 68%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: white;
  background-color: #009ee0;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  padding: 0;
  border: none;
  border: 1px solid #009ee0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 19%;
  height: 40px;
  text-align: center;
  transition: all linear 0.5s;
}
.search-form input[type="button"]:hover {
  background-color: white;
  color: #009ee0;
}
.product-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}
.big-number {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 50px;
  position: absolute;
  top: -70%;
  left: -50px;
  color: rgba(0, 0, 0, 0.1);
}
.product-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #009ee0;
  padding: 0;
  margin: 0;
}
.product-section h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 35px;
  color: #073e66;
  padding: 0;
  margin: 0;
}
.product-section p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #717171;
  padding: 0;
  margin: 0;
}
.left-section {
  width: 40%;
}
.right-section {
  width: 60%;
}
.product-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.product-box {
  width: calc(30% - 48px);
  border: 1px solid rgba(223, 223, 223, 1);
  border-radius: 8px;
  padding: 24px;
  align-self: stretch;
}
.product-box img {
  width: 60%;
  margin: auto;
  display: block;
  margin-bottom: 16px;
}
.product-box h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #073e66;
  padding: 0;
  margin: 0;
}
.product-box p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #717171;
  padding: 0;
  margin: 0;
}
.product-box-4 {
  width: calc(23% - 48px);
  border: 1px solid rgba(223, 223, 223, 1);
  border-radius: 8px;
  padding: 24px;
  align-self: stretch;
}
.product-box-4 img {
  width: 60%;
  margin: auto;
  display: block;
  margin-bottom: 16px;
}
.product-box-4 h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #073e66;
  padding: 0;
  margin: 0;
}
.product-box-4 p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #717171;
  padding: 0;
  margin: 0;
}
.product-info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 24px;
  font-size: 16px;
}
p.stueckzahl {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  padding: 0;
  margin: 0;
}
a.product-details {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #009ee0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
a.product-details:hover {
  text-decoration: underline;
}
a.product-details::after {
  width: 16px;
  content: url("../img/arrow-right.png");
}
hr {
  margin: 75px 0;
  border: 1px solid #dfdfdf;
}
.info-teaser {
  font-family: "Poppins", sans-serif;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.hallen-img {
  width: 50%;
}
.zierhut-infos {
  width: 50%;
  position: relative;
}
.zierhut-infos h2 {
  font-size: 20px;
  font-weight: 400;
  color: #009ee0;
  margin: 0;
  padding: 0;
}
.zierhut-infos h1 {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  color: #073e66;
  padding: 0;
}
.zierhut-infos .big-number {
  position: absolute;
  left: -7%;
  top: -12%;
}
.flex-group {
  display: flex;
  flex-wrap: wrap;
}
.flex-item {
  width: 50%;
}
.zierhut-infos ul {
  padding-left: 16px;
}
.zierhut-infos li {
  font-size: 16px;
  color: #717171;
  padding-left: 8px;
  position: relative;
}
.zierhut-infos li::marker {
  content: url("../img/list-element.png");
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 100%;
}
.zierhut-infos p {
  color: #717171;
}
section.about {
  background: linear-gradient(94.24deg, #f1f1f1 -1.83%, #f9f9f9 101.34%);
  margin: 100px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 100px;
}
.counter-section {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.counter-box {
  width: calc(33% - 72px);
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
}
.counter-box .count-number {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.counter-box .count-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  color: #333;
  padding: 0;
  color: #717171;
}
.counter-box img {
  background: rgba(0, 126, 179, 0.1);
  padding: 10px;
  border-radius: 10px;
}
.small-count-number {
  font-size: 16px;
}
.about-us-section {
  position: relative;
  width: 30%;
  font-family: "Poppins", sans-serif;
}
.about-us-section h2 {
  color: #333;
  font-size: 35px;
  padding: 0;
  margin: 0;
  font-weight: 700;
}
.about-us-section p {
  color: #717171;
  font-weight: 400;
}
.about-us-section .big-number {
  font-size: 50px;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -50%;
  left: -10%;
}
button.dark {
  cursor: pointer;
  width: 90%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    #009ee0;
  font-size: 14px;
  border: 1px solid #009ee0;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 10px;
  color: white;
  transition: all linear 0.5s;
}
button.dark:hover {
  background: #fff;
  color: #009ee0;
  transition: all linear 0.25s;
}
button.light {
  cursor: pointer;
  width: 90%;
  display: block;
  font-size: 14px;
  background: #fff;
  border: 1px solid #009ee0;
  border-radius: 5px;
  text-transform: uppercase;
  color: #009ee0;
  padding: 10px;
  transition: all linear 0.5s;
}
button.light:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    #009ee0;
  border: 1px solid #009ee0;
  color: white;
}
section.contact {
  font-family: "Poppins", sans-serif;
  height: auto;
  width: 100%;
  background: url("../img/contact-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
}
.contact-form {
  width: 40%;
  margin: auto;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 60px;
}
.text-centered {
  text-align: center;
}
.big-title {
  font-size: 35px !important;
  color: rgba(51, 51, 51, 1) !important;
}
section.contact p {
  color: #717171;
  font-size: 14px;
}
section.contact label {
  width: 100%;
  display: block;
}
section.contact input {
  width: 99%;
  color: #a4a4a4;
  height: 40px;
  outline: none;
  box-shadow: none;
  padding: 0;
  background: #f3f3f3;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 10px;
  margin-bottom: 25px;
}
section.contact select {
  width: 100%;
  height: 40px;
  background-color: #f3f3f3;
  border: none;
  font-size: 12px;
  margin: 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
  cursor: inherit;
  line-height: inherit;
  color: #a4a4a4;
  padding-left: 10px;
}
section.contact textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #f8f8f8;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: none;
}
.flex-item-3 {
  width: calc(33% - 20px);
  padding-right: 20px;
}
.flex-item-3:last-child {
  padding-right: 0px;
}
.message-box {
  width: 99%;
  margin-bottom: 25px;
}
#name {
  width: 98%;
}

button.contact-submit {
  cursor: pointer;
  display: block;
  width: 20%;
  margin: auto;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    #009ee0;
  font-size: 14px;
  border: 1px solid #009ee0;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 12px;
  color: white;
  transition: all linear 0.5s;
}
button.contact-submit:hover {
  background: #fff;
  color: #009ee0;
  transition: all linear 0.25s;
}

.rent-trade {
  padding: 50px 0 0 0;
  height: 100px;
  margin: auto;
  background: #f1f1f1;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #333;
}
.rent-trade-box {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rent-icon::before {
  content: url("../img/mieten.png");
  margin-right: 16px;
}
.buy-icon::before {
  content: url("../img/kaufen.png");
  margin-right: 16px;
}
.trade-icon::before {
  content: url("../img/tauschen.png");
  margin-right: 16px;
}

footer {
  font-family: "Montserrat", sans-serif;

  background: #f1f1f1;
  height: auto;
  width: 100%;
  padding: 32px;
}
footer hr {
  margin: 0;
  padding: 0;
}
footer p {
  font-weight: 400;
  color: #717171;
  font-size: 16px;
}
footer p.title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
.flex-item-4 {
  width: 25%;
}
footer ul {
  padding: 0;
  margin: 0;
}
footer li {
  list-style-type: none;
  font-size: 14px;
  padding: 5px 0;
}
footer a {
  color: #717171;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
a.phone-icon::before {
  content: url("../img/phone.png");
  padding-right: 5px;
}
a.envelope-icon::before {
  content: url("../img/mail.png");
  padding-right: 5px;
}
.location-col {
  width: 25%;
}
.location-col img {
  width: 18px;
  height: 18px;
}
.inner-group {
  display: flex;
}
.newsletter-col {
  width: 75%;
}

.newsletter-form {
  width: 100%;
  position: relative;
}

.newsletter-form input[type="text"] {
  width: 70%;
  color: #2c2c2c;
  height: 40px;
  border-radius: 50px;
  outline: none;
  box-shadow: none;
  padding: 0;
  background: #fff;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 10px;
}
.newsletter-form input[type="button"] {
  position: absolute;
  cursor: pointer;
  left: 68%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: white;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    #009ee0;
  border-radius: 50px;
  outline: none;
  box-shadow: none;
  padding: 0;
  border: none;
  border: 1px solid #009ee0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 19%;
  height: 40px;
  text-align: center;
  transition: all linear 0.5s;
}
.newsletter-form input[type="button"]:hover {
  background-color: white;
  color: #009ee0;
}
.mobile-menu {
  display: none;
  position: relative;
}
#mobileMenu {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100px;
  right: 0;

  background: white;
  z-index: 9;
}
#mobileMenu ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 20px;
  padding-left: 15px;
}
#mobileMenu ul li {
  width: 100%;
  font-size: 14px;
}

i.fa.fa-bars {
  font-size: 24px;
  float: right;
  height: auto;
  color: black;
  top: calc(50px - 5px);
  left: 90%;
  position: absolute;
}
.icon {
  display: none;
}
.hamburger {
  transition: all linear 0.3s;
}

i.fa.fa-bars.hamburger.active {
  transform: rotate(90deg);
}
@media (max-width: 930px) {
.search-form-mobile {
  width: 100%;
  position: relative;
}

.search-form-mobile input[type="text"] {
  width: 70%;
  color: #2c2c2c;
  height: 40px;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  padding: 0;
  background: #f3f3f3;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 10px;
}
.search-form-mobile input[type="button"] {
  position: absolute;
  cursor: pointer;
  left: 68%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: white;
  background-color: #009ee0;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  padding: 0;
  border: none;
  border: 1px solid #009ee0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 19%;
  height: 40px;
  text-align: center;
  transition: all linear 0.5s;
}
.search-form-mobile input[type="button"]:hover {
  background-color: white;
  color: #009ee0;
}
  #mobileMenu {
    display: none;
  }
  .icon {
    display: block;
  }

  .container {
    width: calc(100% - 16px);
    max-width: auto;
    margin: auto;
    padding: 8px;
  }
  header {
    height: 100px;
  }
  nav {
    display: none;
  }
  .big-hero-section {
    width: 100%;
    height: 70vh;
  }
  .big-hero-section h1,
  .zierhut-infos h1 {
    font-size: 20px;
  }
  .big-hero-text p {
    font-size: 14px;
  }
  .left-section,
  .right-section {
    width: 100%;
  }
  .product-section h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .product-box,
  .product-box-4,
  .hallen-img,
  .zierhut-infos,
  .about-us-section,
  .counter-box,
  .counter-section,
  .rent-trade-box,
  .flex-item-4,
  .location-col,
  .newsletter-col {
    width: 100%;
  }
  .contact-form,
  section.about {
    width: calc(100% - 16px);
    padding: 8px;
  }
  button.contact-submit {
    width: 50%;
  }
  .newsletter-form input[type="button"] {
    width: 30%;
  }
  footer {
    padding: 0;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .big-hero-text {
    width: 100%;
    max-width: 100%;
    left: 0;
  }
  .rent-trade-box {
    margin-bottom: 40px;
  }
  .rent-trade {
    height: auto;
  }
  .big-hero-text {
    text-align: center;
  }
  .product-section p {
    font-size: 16px !important;
  }
  .big-number {
    top: -30%;
    left: -5px;
  }
  .hide-title {
    display: none;
  }
  .zierhut-infos h2 {
    margin-top: 16px;
  }
  .zierhut-infos h1 {
    margin: 16px 0;
  }
  .about-us-section .big-number {
    top: -25%;
    left: 0;
  }
  .about-us-section h2 {
    margin-top: 40px;
  }
  .big-hero-section h1 {
    font-size: 32px;
  }
  .product-section h2 {
      font-size: 18px;
      margin-top: 12px;
  }
  .product-box h2{
      margin-bottom: 8px;
  }
}

