/*fontovi*/
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Comfortaa:wght@300;400;500;600;700&family=Montserrat:wght@300;400;700&display=swap");
/* fonts */
/*fontovi*/
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Comfortaa:wght@300;400;500;600;700&family=Montserrat:wght@300;400;700&display=swap");
/* fonts */
body {
  font-family: "Montserrat", sans-serif;
  color: #162a2c;
  background-color: #fefcf6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #162a2c;
}

h1 {
  font-size: 2.3rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
    letter-spacing: 1.5px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  h1 {
    padding: 0 40px;
    text-align: center;
    font-size: 55px;
  }
}

h3 {
  letter-spacing: 2px;
  font-weight: 400;
  color: #162a2c;
  font-size: 2.4rem;
  text-align: center;
  margin: 10px 0;
}

.container {
  width: 85%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .container {
    width: 92%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .container {
    width: 87%;
  }
}

h4 {
  font-size: 23px;
  color: #162a2c;
  font-weight: 600;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

p {
  font-weight: 300;
  font-size: 22px;
}

button {
  min-width: 170px;
  padding: 15px 35px;
  border: none;
  background-color: transparent;
  transition: 0.3s ease-in-out;
  margin: 20px 0;
  cursor: pointer;
}
button a {
  color: #162a2c;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 18px;
}

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

.topBar {
  background-color: #162a2c;
  padding: 7px 0;
  text-align: end;
}
@media screen and (max-width: 768px) {
  .topBar {
    background-color: #fefcf6;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .topBar {
    background-color: #fefcf6;
  }
}
.topBar .navIcons a {
  color: rgba(244, 239, 230, 0.5);
  margin: 0 6px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .topBar .navIcons a {
    color: #5e6c5b;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .topBar .navIcons a {
    color: #5e6c5b;
  }
}
.topBar .navIcons a:hover {
  color: #686867;
}
@media screen and (max-width: 768px) {
  .topBar .navIcons a:hover {
    color: #162a2c;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .topBar .navIcons a:hover {
    color: #162a2c;
  }
}

header {
  background-color: #fefcf6;
  width: 100%;
  position: fixed;
  z-index: 1;
  box-shadow: 0 2px 5px -2px #d6e0e2;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
header .container ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
header .container ul li {
  margin-top: 10px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  header .container ul li {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  header .container ul li {
    display: block;
  }
}
header .container ul li a {
  font-size: 1.2rem;
  color: #686867;
}
header .container ul li a:hover {
  color: #162a2c;
}
@media screen and (max-width: 768px) {
  header .container ul li a:hover {
    color: rgba(254, 252, 246, 0.6);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  header .container ul li a:hover {
    color: rgba(254, 252, 246, 0.6);
  }
}
header .container .logo img {
  width: 180px;
  height: 100px;
  margin-top: -7px;
  margin-right: 30px;
  margin-bottom: -7px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  border: none;
  width: 28px;
  height: 4px;
  margin: 7px auto;
  background-color: #162a2c;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}

.logo2 {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 75%;
    height: 100%;
    text-align: center;
    transition: 0.5s;
    background-color: #162a2c;
    opacity: 0.96;
    color: #fefcf6;
  }
  .nav-item {
    flex: 0 0 100%;
  }
  .nav-menu.active {
    left: 0;
  }
  .logo {
    display: none;
  }
  .logo2 {
    display: inline-block;
  }
  .logo2 img {
    width: 150px;
    height: 70px;
    margin: 0 30px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 80%;
    height: 100%;
    text-align: center;
    transition: 0.5s;
    background-color: #162a2c;
    opacity: 0.96;
    color: #fefcf6;
  }
  .nav-item {
    flex: 0 0 100%;
    padding: 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .logo {
    display: none;
  }
  .logo2 {
    display: inline-block;
  }
  .logo2 img {
    width: 150px;
    height: 70px;
    margin: 0 30px;
    text-align: center;
  }
}
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero .herocontent {
  animation: animacija 2s ease-in-out 0s 1 forwards;
  background-size: cover;
  background-position: center;
  margin-top: 150px;
  padding: 60px 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero .herocontent hr {
  border: none;
  height: 1px;
  width: 300px;
  background-color: #d6e0e2;
  margin: 10px 0;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .hero .herocontent hr {
    margin: 10px 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hero .herocontent hr {
    margin: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .hero .herocontent {
    margin-top: 130px;
    padding: 20px;
  }
}
.hero .herocontent p {
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero .herocontent p {
    margin: 20px 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hero .herocontent p {
    font-size: 28px;
  }
}
.hero .herocontent .span {
  margin-top: -50px;
}
@media screen and (max-width: 768px) {
  .hero .herocontent .span {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hero .herocontent .span {
    margin-top: 0;
  }
}
.hero .herocontent .span p {
  font-weight: 100;
  font-size: 1.2rem;
  letter-spacing: 8px;
  color: rgba(94, 108, 91, 0.85);
}
.hero .btn {
  background-color: rgba(22, 42, 44, 0.9);
}
.hero .btn a {
  color: #f4efe6;
}
.hero .btn:hover {
  background-color: rgba(94, 108, 91, 0.7);
}

@keyframes animacija {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
}
.cards {
  padding: 30px 0;
}
.cards .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.cards .container .card {
  flex: 0 0 29%;
  border: 1px solid #d6e0e2;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .cards .container .card {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .cards .container .card {
    flex: 0 0 100%;
  }
}
.cards .container .card img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cards .container .card img {
    height: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .cards .container .card img {
    height: auto;
  }
}
.cards .container .card h4 {
  height: 120px;
  padding: 1.4rem;
  color: #162a2c;
}
.cards .container .card p {
  padding: 20px;
  font-size: 16px;
}
.cards .container .card .btn {
  text-align: center;
}
.cards .container .card .btn button {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  transition: all 0.4s ease-in-out;
}
.cards .container .card .btn button:hover {
  background-color: rgba(94, 108, 91, 0.65);
}

.uberUns {
  padding: 30px 0;
}
.uberUns .zeile {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
}
.uberUns .zeile .card {
  padding: 20px;
  flex: 0 0 48%;
  border: 1px solid #d6e0e2;
}
@media screen and (max-width: 768px) {
  .uberUns .zeile .card {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .uberUns .zeile .card {
    flex: 0 0 100%;
  }
}
.uberUns .zeile .card .icon {
  text-align: center;
  font-size: 1.5rem;
}
.uberUns .zeile .card .icon i {
  color: #162a2c;
  padding: 10px 0;
}
.uberUns .zeile .card p {
  font-size: 1.2rem;
  padding: 10px 40px;
}

.zitat {
  padding: 50px 0;
  background-color: #5e6c5b;
  margin: 20px 0;
}
.zitat h2 {
  text-align: center;
  padding: 50px 150px;
  font-weight: 200;
  color: rgba(244, 239, 230, 0.85);
}
@media screen and (max-width: 768px) {
  .zitat h2 {
    padding: 20px 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .zitat h2 {
    padding: 20px 30px;
  }
}
.zitat h2 i {
  margin: 0 10px;
}
.zitat p {
  text-align: center;
  color: rgba(244, 239, 230, 0.4);
}
.zitat p span {
  font-weight: 100;
}

.team {
  background: linear-gradient(rgba(104, 104, 103, 0.5), rgba(104, 104, 103, 0.4)), url(img/team.webp);
  background-position: center;
  background-size: cover;
  padding: 200px 100px;
}
@media screen and (max-width: 768px) {
  .team {
    padding: 50px 10px;
    background: linear-gradient(rgba(104, 104, 103, 0.5), rgba(104, 104, 103, 0.4)), url(img/mi.webp);
    background-position: right;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .team {
    padding: 100px 10px;
  }
}
.team .teamContent h3 {
  color: rgba(244, 239, 230, 0.9);
  background-color: #162a2c;
  padding: 20px 0;
  opacity: 0.6;
  font-weight: 600;
  letter-spacing: 5px;
}
.team .teamContent hr {
  border: none;
  height: 50px;
}
.team .teamContent ul {
  background-color: #162a2c;
  padding: 50px 0;
  opacity: 0.6;
}
.team .teamContent ul li {
  color: rgba(244, 239, 230, 0.75);
  padding: 20px 0;
  padding: 25px 80px;
  font-size: 1.3rem;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .team .teamContent ul li {
    padding: 25px 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .team .teamContent ul li {
    padding: 25px 20px;
  }
}

.team2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.team2 .card1 {
  flex: 0 0 50%;
  background: #162a2c;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .team2 .card1 {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .team2 .card1 {
    flex: 0 0 100%;
  }
}
.team2 .card1 img {
  display: block;
  width: 70%;
  filter: grayscale(1);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .team2 .card1 img {
    height: auto;
    width: 85%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .team2 .card1 img {
    height: auto;
    width: 85%;
  }
}
.team2 .card2 {
  flex: 0 0 50%;
  background: #686867;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .team2 .card2 {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .team2 .card2 {
    flex: 0 0 100%;
  }
}
.team2 .card2 img {
  display: block;
  width: 70%;
  filter: grayscale(1);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .team2 .card2 img {
    height: auto;
    width: 85%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .team2 .card2 img {
    height: auto;
    width: 85%;
  }
}
.team2 h4 {
  text-align: center;
  font-weight: 100;
  color: rgba(244, 239, 230, 0.5);
  margin-top: 20px;
}
.team2 p {
  text-align: center;
  font-weight: 100;
  font-size: 1.1rem;
  color: rgba(244, 239, 230, 0.3);
  margin-top: 10px;
}

.respMar .container hr {
  border: none;
  height: 3px;
  background-color: rgba(104, 104, 103, 0.5);
  width: 100%;
  margin-bottom: 30px;
}
.respMar .container p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 2px;
}

.prices .priceCards {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .prices .priceCards {
    gap: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .prices .priceCards {
    gap: 30px;
  }
}
.prices .priceCards .card {
  background-color: #fefcf6;
  border: 1px solid rgba(104, 104, 103, 0.3);
  color: rgba(22, 42, 44, 0.9);
  flex: 0 0 30%;
  padding: 40px 15px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .prices .priceCards .card {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .prices .priceCards .card {
    flex: 0 0 100%;
  }
}
.prices .priceCards .card h4 {
  font-weight: 400;
  font-size: 1.6rem;
  margin: 20px 0;
  color: #162a2c;
  text-align: center;
}
.prices .priceCards .card h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  letter-spacing: 1px;
  font-weight: 600;
}
.prices .priceCards .card p {
  font-weight: 100;
  font-size: 1.15rem;
  text-align: center;
  margin: 7px 0;
}
.prices .priceCards .card p i {
  font-size: 1.1rem;
  color: #162a2c;
}
.prices .priceCards .card .btn {
  text-align: center;
}
.prices .priceCards .card .btn button {
  box-shadow: none;
  border: 1px solid rgba(22, 42, 44, 0.6);
  color: rgba(22, 42, 44, 0.9);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
}
.prices .priceCards .card .btn button:hover {
  border: 1px solid rgba(94, 108, 91, 0.5);
  background-color: rgba(104, 104, 103, 0.2);
}
.prices .priceCards .card:hover {
  border: 1px solid rgba(94, 108, 91, 0.5);
  cursor: pointer;
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .prices .priceCards .card:hover {
    transform: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .prices .priceCards .card:hover {
    transform: none;
  }
}

#cardSt {
  border: none;
  background-image: linear-gradient(to bottom, #162a2c, #334146, #52595e, #717276, #8e8e8e);
  opacity: 0.9;
}
#cardSt h3,
#cardSt p,
#cardSt h4,
#cardSt i {
  color: rgba(254, 252, 246, 0.8);
}
#cardSt h3 {
  font-size: 1.7rem;
}
#cardSt button {
  background-color: rgba(104, 104, 103, 0.5);
  border: 1px solid #fefcf6;
}
#cardSt button a {
  color: rgba(254, 252, 246, 0.9);
}
#cardSt button:hover {
  background-color: rgba(254, 252, 246, 0.2);
  border: 1px solid #fefcf6;
}

.respMar img {
  display: block;
  width: 100%;
  height: auto;
}

.icons .container {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  text-align: center;
  font-size: 3.5rem;
}
.icons .container i {
  color: #162a2c;
}
@media screen and (max-width: 768px) {
  .icons .container i {
    width: 33%;
    padding: 20px;
  }
}

.kontakt {
  background-color: rgba(104, 104, 103, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.kontakt .kontaktCont {
  padding: 20px 40px;
  text-align: center;
  flex: 0 0 50%;
}
@media screen and (max-width: 768px) {
  .kontakt .kontaktCont {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .kontakt .kontaktCont {
    flex: 0 0 100%;
  }
}
.kontakt .kontaktImg {
  flex: 0 0 47%;
}
@media screen and (max-width: 768px) {
  .kontakt .kontaktImg {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .kontakt .kontaktImg {
    flex: 0 0 100%;
  }
}
.kontakt .kontaktImg img {
  display: block;
  width: 100%;
  border-radius: 50% 0 0 40%;
  filter: grayscale(1);
}

.kontaktContent .container {
  margin-top: -80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .kontaktContent .container {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .kontaktContent .container {
    margin-top: 10px;
  }
}
.kontaktContent .container .card {
  color: #162a2c;
  padding: 50px;
  flex: 0 0 40%;
  background-color: #fefcf6;
  text-align: center;
  border: 1px solid rgba(214, 224, 226, 0.5);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .kontaktContent .container .card {
    flex: 0 0 100%;
    z-index: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .kontaktContent .container .card {
    flex: 0 0 100%;
    z-index: 0;
  }
}
.kontaktContent .container .card h4 {
  font-weight: 400;
  margin: 10px 0;
}
.kontaktContent .container .card p {
  font-size: 1rem;
  margin: 5px 0;
}

footer .footer {
  opacity: 0.6;
  font-size: 16px;
  text-align: center;
  padding: 50px 0 10px 0;
}
footer .footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
footer .footer ul li {
  list-style: none;
  padding: 10px 0;
}
footer .footer ul li a {
  text-decoration: none;
  color: black;
  padding: 0 20px;
  text-transform: uppercase;
}
footer .footer ul li a:hover {
  color: #162a2c;
}
@media screen and (max-width: 768px) {
  footer .footer ul li a:hover {
    color: #162a2c;
  }
}
footer p {
  font-size: 15px;
  padding: 10px 0;
}
footer hr {
  border: none;
  height: 1px;
  background-color: rgba(214, 224, 226, 0.9);
}

.branche {
  background-color: rgba(104, 104, 103, 0.3);
  padding: 80px 0;
  margin-bottom: 40px;
}
.branche hr {
  border: none;
  height: 2px;
  background-color: rgba(104, 104, 103, 0.5);
  margin-bottom: 40px;
  width: 100%;
}
.branche h4 {
  text-align: center;
  padding: 20px 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
}
.branche p {
  text-align: center;
  font-size: 1.3rem;
  width: 80%;
  margin: auto;
}

.schritte .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  margin-bottom: 30px;
}
.schritte .container .card1 {
  border: 1px solid rgba(214, 224, 226, 0.5);
  flex: 0 0 10%;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .schritte .container .card1 {
    flex: 0 0 30%;
    margin: 10px 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .schritte .container .card1 {
    flex: 0 0 20%;
  }
}
.schritte .container .card1 p {
  padding: 30px;
  font-size: 2.2rem;
  text-align: center;
}
.schritte .container .card2 {
  padding: 30px;
  flex: 0 0 75%;
  border: 1px solid rgba(214, 224, 226, 0.5);
}
@media screen and (max-width: 768px) {
  .schritte .container .card2 {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .schritte .container .card2 {
    flex: 0 0 100%;
  }
}
.schritte .container .card2 p {
  font-size: 1.2rem;
}

.portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  padding: 10px 0;
}
.portfolio .cardImg {
  flex: 0 0 24%;
}
@media screen and (max-width: 768px) {
  .portfolio .cardImg {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .portfolio .cardImg {
    flex: 0 0 100%;
  }
}
.portfolio .cardImg img {
  display: block;
  width: 100%;
}

.impressum {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .impressum {
    margin: auto;
  }
}
.impressum p {
  padding: 10px 0;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .impressum p {
    font-size: 14px;
  }
}
.impressum h2 {
  color: #162a2c;
  font-weight: 700;
  font-size: 50px;
}
.impressum hr {
  border: none;
  height: 1px;
  background-color: rgba(214, 224, 226, 0.9);
  margin: 10px 0;
}
.impressum h5 {
  color: #162a2c;
}
@media screen and (max-width: 768px) {
  .impressum h5 {
    font-size: 16px !important;
  }
}
.impressum a {
  color: #162a2c;
}

.datenschutz {
  padding-top: 60px;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .datenschutz h1 {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .datenschutz {
    margin: auto;
  }
}
.datenschutz p {
  padding: 10px 0;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .datenschutz p {
    font-size: 14px;
  }
}
.datenschutz hr {
  border: none;
  height: 1px;
  background-color: rgba(214, 224, 226, 0.9);
  margin: 10px 0;
}
.datenschutz h4 {
  font-weight: 400;
  text-align: center;
  font-size: 1.4rem;
}
.datenschutz h5 {
  color: #162a2c;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .datenschutz h5 {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 768px) {
  .datenschutz h3 {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 768px) {
  .datenschutz ul li {
    font-size: 14px;
    list-style: none;
    margin-left: -30px;
  }
}
.datenschutz a {
  color: #162a2c !important;
}/*# sourceMappingURL=style.css.map */