@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
:root {
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Prata", serif;
  --primary-color: #D0B98D;
  --primary-darker: #9d7d41;
  --title-color: #211e1c;
  --body-color: #211e1c;
  --smoke-color: #f6f6f6;
  --lightgrey: #e4e4e4;
  --light-smoke-color: #fafafa;
  --white-color: #ffffff;
  --black-color: #000000;
  --dark-color: #151515;
  --silver-color: #aeaeae;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: rgba(0,0,0,0.10);
}

nav {
  position: fixed;
  top: -200px;
  opacity: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: -10;
  transition: all 0.4s ease-in-out;
}
nav.show {
  opacity: 1;
  z-index: 50;
  top: 0px;
}
nav .logo {
  height: 70%;
  margin: 0px 20px;
  display: block;
}
nav .logo img {
  height: 100%;
}
nav .hamburger {
  color: var(--primary-color);
  font-size: 45px;
  display: flex;
  align-items: center;
  margin: 0px 20px;
  cursor: pointer;
}

.menu-wrapper {
  display: none;
}

#impressum {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.navbar .left-side {
  margin: 0px 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar .left-side .logo {
  height: 70%;
  display: block;
}
.navbar .left-side .logo img {
  height: 100%;
}
.navbar #impressum-btn {
  display: none;
}
.navbar .hamburger {
  color: var(--primary-color);
  font-size: 45px;
  display: flex;
  align-items: center;
  margin: 0px 20px;
  cursor: pointer;
}

#toTop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px var(--primary-color);
  background-color: var(--primary-color);
  box-shadow: 0px 6px 12px 0px rgba(208, 185, 141, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  opacity: 0;
  z-index: -10;
  text-decoration: none;
  transform: translateY(-40px);
  transition: all 0.4s ease;
}
#toTop.show {
  opacity: 1;
  z-index: 50;
  transform: translateY(0px);
}
#toTop:hover {
  background-color: white;
}
#toTop:hover i {
  color: var(--primary-color);
}
#toTop i {
  color: white;
  font-size: 20px;
  transition: all 0.4s ease;
}

#hamburgerNav {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background-color: white;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-100%);
  overflow-y: scroll;
}
#hamburgerNav.open {
  transform: translateX(0%);
}
#hamburgerNav .close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  border: solid 2px var(--primary-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s linear;
}
#hamburgerNav .close-btn i {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 30px;
}
#hamburgerNav .close-btn:hover {
  border: solid 2px transparent;
  transform: rotate(90deg);
}
#hamburgerNav .logo {
  height: 10%;
  margin-top: 50px;
  margin-bottom: 30px;
}
#hamburgerNav .logo img {
  height: 100%;
}
#hamburgerNav .hamburger-menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--secondary-font);
}
#hamburgerNav .hamburger-menu-wrapper a, #hamburgerNav .hamburger-menu-wrapper p {
  font-size: 18px;
  text-decoration: none;
  color: var(--body-color);
  padding: 10px 0px;
  transition: color 0.2s ease;
}
#hamburgerNav .hamburger-menu-wrapper a:hover, #hamburgerNav .hamburger-menu-wrapper p:hover {
  color: var(--primary-darker);
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  transition: all 0.8s ease;
  overflow: hidden;
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown.open .hamburger-dropdown-content {
  max-height: 500px;
  transition: all 2s ease;
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main {
  display: flex;
  align-items: center;
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main:hover a, #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main:hover i {
  color: var(--primary-darker);
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main p {
  padding-right: 5px;
  margin: 0px;
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main i {
  font-size: 18px;
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-content {
  position: relative;
  text-align: center;
  transition: all 0.8s ease;
  display: flex;
  flex-direction: column;
  max-height: 0px;
  background-color: white;
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-content a {
  padding: 10px 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
#hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-content::before {
  content: "";
  position: absolute;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #hamburgerNav .hamburger-menu-wrapper a {
    font-size: 22px;
    padding: 15px 0px;
  }
  #hamburgerNav .hamburger-menu-wrapper p {
    font-size: 22px;
    padding: 15px 0px;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  #hamburgerNav .logo {
    width: 35%;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1400px) {
  nav {
    position: fixed;
    top: -200px;
    opacity: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    z-index: -10;
    transition: all 0.4s ease-in-out;
  }
  nav.show {
    opacity: 1;
    z-index: 50;
    top: 0px;
  }
  nav .hamburger {
    display: none;
  }
  nav .wrapper {
    height: 100%;
    width: 100%;
    margin: 10px 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav .wrapper img {
    width: 270px;
    height: -moz-max-content;
    height: max-content;
  }
  nav .logo {
    width: 225px;
  }
  .menu-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    font-family: var(--secondary-font);
  }
  .menu-wrapper a {
    font-size: 18px;
    text-decoration: none;
    color: var(--body-color);
    padding: 30px 15px;
    transition: all 0.2s ease;
  }
  .menu-wrapper a:hover {
    color: var(--primary-darker);
  }
  .menu-wrapper .dropdown {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 100;
  }
  .menu-wrapper .dropdown:hover .dropdown-content {
    transform: scaleY(1);
    opacity: 1;
  }
  .menu-wrapper .dropdown .dropdown-main {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .menu-wrapper .dropdown .dropdown-main:hover a, .menu-wrapper .dropdown .dropdown-main:hover i {
    color: var(--primary-darker);
  }
  .menu-wrapper .dropdown .dropdown-main a {
    padding-right: 5px;
  }
  .menu-wrapper .dropdown .dropdown-main i {
    font-size: 18px;
  }
  .menu-wrapper .dropdown .dropdown-content {
    transition: all 0.4s ease;
    transform-origin: top left;
    transform: scaleY(0);
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100px;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-top: 2px var(--primary-color) solid;
  }
  .menu-wrapper .dropdown .dropdown-content a {
    padding: 10px 15px;
    padding-right: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
  #impressum {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -10;
    visibility: hidden;
    transition: z-index 0.1s ease;
    transition-delay: 0.75s;
  }
  #impressum.open {
    z-index: 100;
    visibility: visible;
    transition: z-index 0.1s ease;
    transition-delay: 0s;
  }
  #impressum.open .impressum-side {
    transform: translateX(0px);
  }
  #impressum.open .black-bg {
    opacity: 1;
    transition-delay: 0.5s ease;
  }
  #impressum .black-bg {
    opacity: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    transition: all 0.75s ease;
  }
  #impressum .impressum-side {
    background-color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.75s ease;
    transform: translateX(450px);
  }
  #impressum .impressum-side .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border: solid 2px var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s linear;
  }
  #impressum .impressum-side .close-btn i {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 30px;
  }
  #impressum .impressum-side .close-btn:hover {
    border: solid 2px transparent;
    transform: rotate(90deg);
  }
  #impressum .impressum-side .outer-wrapper {
    height: -moz-max-content;
    height: max-content;
    width: 80%;
    display: flex;
    flex-direction: column;
  }
  #impressum .impressum-side .outer-wrapper img {
    width: 50px;
    margin-bottom: 20px;
  }
  #impressum .impressum-side .outer-wrapper .contact-wrapper {
    display: flex;
    align-items: center;
    margin: 20px 0px;
  }
  #impressum .impressum-side .outer-wrapper .contact-wrapper i {
    color: var(--primary-darker);
    font-size: 18px;
  }
  #impressum .impressum-side .outer-wrapper .contact-wrapper span {
    color: var(--primary-darker);
    margin: 0px 10px;
  }
  #impressum .impressum-side .outer-wrapper .contact-wrapper a {
    color: var(--body-color);
    text-decoration: none;
    transition: all 0.2s linear;
  }
  #impressum .impressum-side .outer-wrapper .contact-wrapper a:hover {
    color: var(--primary-darker);
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 100px;
    height: 130px;
  }
  .navbar .hamburger {
    display: none;
  }
  .navbar .left-side {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .navbar .left-side .logo {
    width: 250px;
  }
  .navbar #impressum-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s linear;
    box-shadow: 0px 6px 12px 0px rgba(208, 185, 141, 0.2);
  }
  .navbar #impressum-btn:hover {
    background-color: white;
  }
  .navbar #impressum-btn:hover i {
    color: var(--primary-color);
  }
  .navbar #impressum-btn i {
    color: white;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.2s linear;
  }
  #toTop {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: solid 1px var(--primary-color);
    background-color: var(--primary-color);
    box-shadow: 0px 6px 12px 0px rgba(208, 185, 141, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    opacity: 0;
    z-index: -10;
    text-decoration: none;
    transform: translateY(-40px);
    transition: all 0.4s ease;
  }
  #toTop.show {
    opacity: 1;
    z-index: 50;
    transform: translateY(0px);
  }
  #toTop:hover {
    background-color: white;
  }
  #toTop:hover i {
    color: var(--primary-color);
  }
  #toTop i {
    color: white;
    font-size: 30px;
    transition: all 0.4s ease;
  }
  #hamburgerNav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -10;
    visibility: hidden;
    transition: z-index 0.1s ease;
    transition-delay: 0.75s;
  }
  #hamburgerNav .hamburger-menu-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    font-family: var(--secondary-font);
  }
  #hamburgerNav .hamburger-menu-wrapper a {
    font-size: 18px;
    text-decoration: none;
    color: var(--body-color);
    padding: 30px 15px;
    transition: all 0.2s ease;
  }
  #hamburgerNav .hamburger-menu-wrapper a:hover {
    color: var(--primary-darker);
  }
  #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 100;
  }
  #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown:hover .hamburger-dropdown-content {
    transform: scaleY(1);
    opacity: 1;
  }
  #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main {
    display: flex;
    align-items: center;
    height: 100%;
  }
  #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main:hover a, #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main:hover i {
    color: var(--primary-darker);
  }
  #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main a {
    padding-right: 5px;
  }
  #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-main i {
    font-size: 18px;
  }
  #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-content {
    transition: all 0.4s ease;
    transform-origin: top left;
    transform: scaleY(0);
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100px;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-top: 2px var(--primary-color) solid;
  }
  #hamburgerNav .hamburger-menu-wrapper .hamburger-dropdown .hamburger-dropdown-content a {
    padding: 10px 15px;
    padding-right: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
}
footer {
  background-color: #7b8f9a;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: -moz-max-content;
  min-height: max-content;
}
footer .row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
}
footer .left-side {
  display: flex;
  margin: 0px 25px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
footer .left-side img {
  height: 100px;
  margin-bottom: 10px;
  align-self: flex-start;
}
footer .left-side .wrapper {
  color: white;
}
footer .left-side .wrapper p {
  margin: 10px 0px;
}
footer .left-side .wrapper .contact-wrapper {
  display: flex;
  align-items: center;
  margin: 20px 0px;
}
footer .left-side .wrapper .contact-wrapper .tel-wrapper {
  display: flex;
  flex-direction: column;
}
footer .left-side .wrapper .contact-wrapper i {
  color: var(--primary-color);
  font-size: 18px;
}
footer .left-side .wrapper .contact-wrapper span {
  color: var(--primary-color);
  margin: 0px 10px;
}
footer .left-side .wrapper .contact-wrapper p {
  margin: 0;
}
footer .left-side .wrapper .contact-wrapper a {
  color: white;
  text-decoration: none;
  transition: all 0.2s linear;
}
footer .left-side .wrapper .contact-wrapper a:hover {
  color: var(--primary-color);
}
footer .right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .right-side .submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .right-side .submenu h1 {
  font-family: var(--secondary-font);
  font-size: 30px;
  color: white;
  font-weight: 500;
}
footer .right-side .submenu .wrapper {
  color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
footer .right-side .submenu .wrapper .col {
  display: flex;
  flex-direction: column;
  margin: 0px 30px;
}
footer .right-side .submenu .wrapper .col a, footer .right-side .submenu .wrapper .col p {
  color: white;
  text-decoration: none;
  margin: 5px;
  font-size: 16px;
}
footer .right-side .further-information {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px 10px;
}
footer .right-side .further-information .information-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .right-side .further-information .information-wrapper a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #ccc;
  padding: 0px 5px;
  opacity: 0.4;
  line-height: 2.25;
  white-space: nowrap;
  transition: all 0.4s ease;
  font-size: 16px;
  margin: 5px;
  height: auto;
}
footer .right-side .further-information .information-wrapper a:hover {
  opacity: 0.8;
}
footer .right-side .further-information h1 {
  font-family: var(--secondary-font);
  font-size: 30px;
  color: white;
  font-weight: 500;
}
footer #copyright {
  background-color: #adbcc4;
  color: white;
  padding: 10px;
  text-align: center;
}
footer #copyright h2 {
  font-size: 16px;
  line-height: 1.6;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  footer .left-side img {
    height: 100px;
  }
  footer .left-side .wrapper {
    margin: 10px;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  footer {
    background-color: #7b8f9a;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: -moz-max-content;
    min-height: max-content;
  }
  footer .row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
  }
  footer .left-side {
    display: flex;
    flex-direction: column;
    margin-right: 50px;
    align-items: initial;
    width: auto;
    align-items: flex-start;
  }
  footer .left-side img {
    width: 300px;
    margin-bottom: 10px;
  }
  footer .left-side .wrapper {
    color: white;
  }
  footer .left-side .wrapper p {
    margin: 10px 0px;
  }
  footer .left-side .wrapper .contact-wrapper {
    display: flex;
    align-items: center;
    margin: 20px 0px;
  }
  footer .left-side .wrapper .contact-wrapper i {
    color: var(--primary-color);
    font-size: 18px;
  }
  footer .left-side .wrapper .contact-wrapper span {
    color: var(--primary-color);
    margin: 0px 10px;
  }
  footer .left-side .wrapper .contact-wrapper p {
    margin: 0;
  }
  footer .left-side .wrapper .contact-wrapper a {
    color: white;
    text-decoration: none;
    transition: all 0.2s linear;
  }
  footer .left-side .wrapper .contact-wrapper a:hover {
    color: var(--primary-color);
  }
  footer .right-side {
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
  }
  footer .right-side .submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .right-side .submenu h1 {
    font-family: var(--secondary-font);
    font-size: 30px;
    color: white;
    font-weight: 500;
  }
  footer .right-side .submenu .wrapper {
    display: flex;
  }
  footer .right-side .submenu .wrapper .col {
    display: flex;
    flex-direction: column;
    margin: 0px 30px;
  }
  footer .right-side .submenu .wrapper .col a {
    color: white;
    text-decoration: none;
    margin: 5px;
    font-size: 16px;
  }
  footer .right-side .further-information {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .right-side .further-information h1 {
    font-family: var(--secondary-font);
    font-size: 30px;
    color: white;
    font-weight: 500;
  }
  footer .right-side .further-information a {
    text-decoration: none;
    color: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    opacity: 0.4;
    line-height: 2.25;
    white-space: nowrap;
    transition: all 0.4s ease;
    font-size: 16px;
  }
  footer .right-side .further-information a:hover {
    opacity: 0.8;
  }
  footer #copyright {
    background-color: #adbcc4;
    color: white;
    padding: 10px 350px;
  }
  footer #copyright h2 {
    font-size: 16px;
    line-height: 1.6;
  }
}
html,
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

#home #breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  background-image: url("../img/breadcumb-bg-1-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#home #breadcrumb .wrapper {
  position: absolute;
  left: 25px;
  bottom: 100px;
  width: calc(100% - 50px);
}
#home #breadcrumb .wrapper h1 {
  font-size: 35px;
  color: var(--primary-color);
  line-height: 1.3;
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
#home #breadcrumb .wrapper .row i {
  color: var(--primary-color);
}
#home #breadcrumb .wrapper .row a {
  color: var(--body-color);
  text-decoration: none;
  transition: all 0.4s ease;
}
#home #breadcrumb .wrapper .row a:hover {
  color: var(--primary-darker);
}
#home #breadcrumb .wrapper .row span {
  color: var(--primary-color);
}

@keyframes left-right {
  0% {
    transform: translateX(20%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(20%);
  }
}
#us {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0px;
  padding-bottom: 0px;
}
#us h1 {
  position: relative;
  margin: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  font-family: var(--secondary-font);
  line-height: 1.3;
}
#us h1 .icon {
  width: 96px;
  position: absolute;
  z-index: -10;
  opacity: 0.25;
  bottom: -10px;
  transform: translateX(20%);
  filter: invert(76%) sepia(13%) saturate(727%) hue-rotate(1deg) brightness(97%) contrast(92%);
  animation-name: left-right;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
#us h1 .wrapper {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin-left: 10px;
  text-align: left;
}
#us .info {
  text-align: center;
  line-height: 1.6;
  font-size: 18px;
  width: 90%;
}
#us .banner {
  width: calc(100% - 30px);
  margin: 20px 15px;
}
#us .divider {
  position: relative;
  width: calc(100% - 30px);
  margin: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#us .divider:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, var(--primary-color) 50%, rgba(255, 255, 255, 0) 100%);
}
#us .divider .icon {
  background-color: var(--primary-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
#us .divider .icon img {
  width: 100%;
}
#us .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 15px;
  width: calc(100% - 30px);
}
#us .container img {
  width: 100%;
  max-width: 400px;
}
#us .container .text-wrapper {
  width: 100%;
  margin-top: 25px;
}
#us .container .text-wrapper h2 {
  color: #7B8F9A;
  font-size: 30px;
  line-height: 1.3;
  font-family: var(--secondary-font);
  font-weight: 500;
}
#us .container .text-wrapper h3 {
  margin: 10px 0px;
  font-size: 25px;
  font-weight: 500;
  font-family: var(--secondary-font);
}
#us .container .text-wrapper p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  width: 100%;
}
#us .container .text-wrapper ul {
  padding-left: 15px;
  margin: 0px;
  margin-top: 20px;
}
#us .container .text-wrapper ul li {
  list-style-type: none;
  line-height: 2;
  font-size: 14px;
}
#us .container .text-wrapper ul li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#us p {
  margin: 0px 15px;
  width: calc(100% - 30px);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

#gallery {
  width: calc(100% - 30px);
  margin: 20px 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#gallery a {
  overflow: hidden;
  margin: 10px 0px;
  display: flex;
}
#gallery a img {
  transition: all 0.4s ease;
  width: 100%;
  max-width: 500px;
  margin: 0px;
}
#gallery a:hover img {
  transform: scale(1.1);
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #home #breadcrumb .wrapper {
    left: 50px;
    width: calc(100% - 100px);
  }
  #home #breadcrumb .wrapper h1 {
    font-size: 35px;
  }
  #us h2 {
    margin-top: 50px;
    font-family: var(--secondary-font);
  }
  #us .info {
    width: 75%;
  }
  #us .banner {
    width: calc(100% - 100px);
    margin: 20px 50px;
  }
  #us .container {
    width: calc(100% - 100px);
  }
  #us .container img {
    max-width: 600px;
  }
  #us .container .text-wrapper ul li {
    font-size: 16px;
  }
  #us p {
    width: calc(100% - 100px);
    font-size: 18px;
  }
  #gallery {
    width: calc(100% - 100px);
    justify-content: center;
    align-content: center;
    padding: 0px;
    margin: 0px auto;
    margin-bottom: 20px;
  }
  #gallery a {
    margin: 10px;
    width: 30%;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  #us .container {
    flex-direction: row;
  }
  #us .container img {
    width: 50%;
    max-width: 400px;
    height: -moz-max-content;
    height: max-content;
  }
  #us .container .text-wrapper {
    margin-top: 0px;
  }
  #us .container .text-wrapper h2 {
    margin-top: 0px;
    font-family: var(--secondary-font);
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  #home #breadcrumb {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #home #breadcrumb .image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  #home #breadcrumb .image-wrapper::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50px;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    top: 0;
  }
  #home #breadcrumb .image-wrapper::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 50px;
    background: rgb(255, 255, 255);
    background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    right: 0;
    top: 0;
  }
  #home #breadcrumb .wrapper {
    position: absolute;
    left: 200px;
    bottom: 100px;
  }
  #home #breadcrumb .wrapper h1 {
    font-size: 50px;
    color: var(--primary-color);
    line-height: 1.3;
    font-family: var(--secondary-font);
    font-weight: 500;
    margin-bottom: 20px;
  }
  #home #breadcrumb .wrapper .row i {
    color: var(--primary-color);
  }
  #home #breadcrumb .wrapper .row a {
    color: var(--body-color);
    text-decoration: none;
    transition: all 0.4s ease;
  }
  #home #breadcrumb .wrapper .row a:hover {
    color: var(--primary-darker);
  }
  #home #breadcrumb .wrapper .row span {
    color: var(--primary-color);
  }
  #us .banner {
    max-width: 1200px;
  }
  #us .container {
    max-width: 1200px;
  }
  #us p {
    max-width: 1200px;
  }
  #gallery {
    max-width: 1200px;
  }
}/*# sourceMappingURL=ueber_uns.css.map */