html,
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #474647;
  font-size: 12px;
}
header {
  position: sticky;
  border-bottom: 3px solid #496f49;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
header #logo {
  width: 200px;
}
header #logomobil {
  width: 200px;
}
@media (max-width: 768px) {
  header {
    gap: 1rem;
    align-items: center;
  }
  header #logomobil {
    display: block;
  }
  header #logo {
    display: none;
  }
}
@media (min-width: 768px) {
  header #logomobil {
    display: none;
  }
  header #logo {
    display: block;
  }
}
header .navblock {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
header nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}
header nav:first-child {
  justify-content: flex-end;
}
header nav a {
  text-decoration: none;
  color: #474647;
  text-transform: uppercase;
}
section {
  padding: 1rem 20vw;
}
@media (max-width: 768px) {
  section {
    padding: 1rem;
  }
}
section a {
  color: #474647;
  text-decoration: underline;
}
section h2 {
  color: #496f49;
  font-size: 1.5rem;
}
section h3 {
  font-size: 1.2rem;
}
section ul {
  margin: 1rem 0;
  padding: 0 0 0 1.2em;
}
section ul li {
  list-style-position: outside;
}
section .twocol {
  columns: 2;
  gap: 2rem;
}
section p {
  margin: 0 0 1rem 0;
}
#intro {
  background: #496f49;
}
#intro h1,
#intro h2 {
  color: white;
  text-align: center;
}
#intro h2 {
  font-weight: normal;
}
#services .elems {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#services .elems h2 {
  display: block;
}
#services .elems > * {
  flex: 1 1 40%;
}
.mstline {
  width: 100%;
  border-bottom: 3px solid #496f49;
  margin-top: 3px;
}
