@font-face {
  font-family: "AumovioBold";
  src: url("fonts/AUMOVIOScreen-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AumovioRegular";
  src: url("fonts/AUMOVIOScreen-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #ff4206;
}

body {
  font-family: "AumovioRegular", sans-serif;
  margin: 0;
  background: #fff;
  color: #000;
}

.text-bold,
strong,
b {
  font-family: "AumovioBold", sans-serif;
  font-weight: 700;
}

header {
  background: #fff;
  border-bottom: 4px solid #000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
header .first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
header .first img {
  height: 90px;
}
header .first h1 {
  font-family: "AumovioBold", sans-serif;
  font-size: 1.5rem;
  color: #000;
  margin: 0;
}
header .first .linie {
  display: block;
  height: 40px;
  width: 2px;
  background: #000;
  margin-right: 2px;
}
header .first .linie:last-of-type {
  margin-right: 15px;
}

main {
  display: flex;
  flex-direction: row;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
  gap: 3rem;
}
@media (max-width: 768px) {
  main {
    flex-direction: column;
  }
}

.shop-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
}
@media (max-width: 768px) {
  .shop-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .shop-buttons button {
    margin-right: 1rem;
  }
}

.language_button {
  text-decoration: none;
}
.language_button:hover {
  text-decoration: none;
}

button {
  display: block;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  background: #efefef;
  text-align: left;
  transition: background-color 0.3s, color 0.3s;
  font-family: "AumovioBold", sans-serif;
}
button:hover {
  background-color: var(--primary);
  color: #fff;
}

form {
  width: 100%;
}

.info-text {
  flex: 1;
  background: #fff;
  padding: 2rem;
  border: 1px solid #d1d5db;
}
.info-text h2 {
  margin-top: 0;
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.info-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.language-switch-heading,
.language-switch {
  width: 100%;
} /*# sourceMappingURL=style.css.map */
