/* @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap"); */

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v34-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/open-sans-v34-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v34-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v34-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v34-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v34-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
}

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

html {
  font-size: 62.5%;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

h1 {
  margin-bottom: 3rem;
}

h2,
h3,
h4 {
  margin-bottom: 2rem;
}

p {
  margin-bottom: 5rem;
}

a {
  color: #2c4e90;
}

b {
  font-weight: 600;
}

.logo {
  background-color: red;
  width: 10rem;
  height: 10rem;
}

.logo-desk {
  position: absolute;
  transform: translateX(-24rem);
}

.logo-desk img {
  width: 20rem;
  height: 19.8rem;
}

.logo-mob {
  float: right;
  display: none;
  padding-left: 4rem;
  transform: translate(3rem, -6rem);
}

.logo-mob img {
  width: 12.9rem;
  height: 12.8rem;
}

.unterschrift {
  padding: 3rem 0;
  width: 100px;
}

header {
  height: 200px;
  background-image: url(/img/headerbirnen.jpg);
  background-size: cover;
}

main {
  display: flex;
  justify-content: center;
  background-color: #fcfcfc;
  box-shadow: 0px -4px 10px -1px rgba(0, 0, 0, 0.1);
}
.wrapper-content {
  max-width: 900px;
  width: 94%;

  transform: translateY(-100px);
  background-color: white;
  box-shadow: 0px 4px 48px 5px rgba(0, 0, 0, 0.05);
}

.content {
  padding: 10rem 8rem;
}

.intro-bold {
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: center;
}

nav {
  max-width: 900px;
  width: 94%;
  margin-bottom: 4rem;
  font-size: 1rem;
}
nav a {
  color: gray;
  text-decoration: none;
}

nav ul {
  list-style: none;
}

nav ul li {
  float: right;
  margin-left: 5rem;
}

@media only screen and (max-width: 1360px) {
  .logo-desk {
    display: none;
  }

  .logo-mob {
    display: block;
  }
}

@media only screen and (max-width: 960px) {
  html {
    font-size: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .logo-mob img {
    width: 7.8rem;
    height: 7.7rem;
  }

  .logo-mob {
    padding: 0;
    transform: translate(1rem, -6rem);
  }

  .content {
    padding: 8rem 4rem;
  }
}

@media only screen and (max-width: 430px) {
  .content {
    padding: 4rem 3rem;
  }

  .logo-mob {
    transform: translate(1rem, -3rem);
  }
}
