/*WebHannover https://webhannover.de*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.5s;
  scroll-behavior: smooth;
  flex-wrap: wrap;
  font-family: "Verdana", sans-serif;
  color: #333;
}

:root {
  --light-grey: #f5f3ee;
  --dark-grey: #201c11;
  --braek: #585858;
  --gold: #a19058;
  --white: #fff;
  --opacity: #e9e7db;
}

p {
  font-size: 16px;
}

hr {
  width: 200px;
  height: 2px;
  color: #f5f3ee;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 99999999999999999999999999;
  align-items: center;
  justify-content: center;
}

.modalBg {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contentBox {
  position: relative;
  width: 650px;
  height: 470px;
}

.contentBox img {
  width: 100px;
  height: auto;
}

.contentBox_content {
  width: 650px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.514);
}

.contentBox_content h2 {
  font-size: 22px;
}

.closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  background: #fff url("./../images/webhannover.png");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: 0.5s;
}

.closeBtn:hover {
  transform: rotate(-333deg);
}

@media (max-width: 888px) {
  .contentBox img {
    margin: 20px 0;
  }
  .contentBox {
    width: 100%;
    height: auto;
  }
  .contentBox_content {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: none;
  }
  .contentBox_content h2 {
    font-size: 18px;
    margin-top: 0px;
  }
  .closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 40px;
    width: 40px;
    background-size: 20px;
  }
}
/**/

.globalBtn a {
  padding: 10px 40px;
  border: 1px solid var(--dark-grey);
  background-color: var(--dark-grey);
  color: var(--white);
  text-decoration: none;
  border-radius: 2px;
}

.globalBtn a:hover {
  background-color: transparent;
  color: var(--dark-grey);
}

body:before {
  content: " ";
  background-image: url("./../images/body-bg.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

/* S T A R T     I N D E X */

@-moz-keyframes reveal-header {
  0% {
    top: -4em;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes reveal-header {
  0% {
    top: -4em;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

@-ms-keyframes reveal-header {
  0% {
    top: -4em;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes reveal-header {
  0% {
    top: -4em;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

#header {
  background-color: #000000;
  cursor: default;
  width: 100%;
  height: 4em;
  line-height: 4em;
  position: fixed;
  text-align: right;
  top: 0;
  left: 0;
  z-index: 999;
}

#header > .logo {
  display: inline-block;
  height: inherit;
  left: 1.25em;
  line-height: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  color: var(--white);
}

#header > .logo a {
  font-size: 1.25em;
  text-decoration: none;
  color: var(--white);
}

#header > .logo a:hover {
  opacity: var(--opacity);
}

#header > .logo span {
  font-weight: 400;
  font-size: 0.8em;
  color: var(--white);
}

#header > a {
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  display: inline-block;
  padding: 0 0.75em;
  color: inherit;
  text-decoration: none;
  color: var(--white);
}

#header > a:hover {
  color: red;
}

#header > a[href="#menu"] {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

#header > a[href="#menu"]:before {
  content: "";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

#header > a[href="#menu"]:before {
  margin: 0 0.5em 0 0;
}

#header > a + a[href="#menu"]:last-child {
  border-left: solid 1px rgba(0, 0, 0, 0.15);
  padding-left: 1.25em;
  margin-left: 0.5em;
}

#header > a:last-child {
  padding-right: 1.25em;
}

#header.reveal {
  -moz-animation: reveal-header 0.5s ease;
  -webkit-animation: reveal-header 0.5s ease;
  -ms-animation: reveal-header 0.5s ease;
  animation: reveal-header 0.5s ease;
}

#header.alt {
  -moz-animation: none;
  -webkit-animation: none;
  -ms-animation: none;
  animation: none;
  background-color: transparent;
  box-shadow: none;
  overflow: hidden;
  position: absolute;
  top: 1.5em;
}

/* Menu */

#menu {
  -moz-transform: translateX(20rem);
  -webkit-transform: translateX(20rem);
  -ms-transform: translateX(20rem);
  transform: translateX(20rem);
  -moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease,
    visibility 0.5s;
  -webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease,
    visibility 0.5s;
  -ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
  transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
  -webkit-overflow-scrolling: touch;
  background-color: #585858;
  /*break color*/
  box-shadow: none;
  height: 100%;
  max-width: 80%;
  overflow-y: auto;
  padding: 3rem 2rem;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  width: 20rem;
  z-index: 9999;
}

#menu > ul {
  margin: 0 0 1rem 0;
}

#menu > ul.links {
  list-style: none;
  padding: 0;
}

#menu > ul.links > li {
  padding: 5px 0;
}

#menu > ul.links > li > a:not(.button) {
  border: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.125);
  color: rgba(255, 255, 255, 0.7);
  display: block;
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
}

#menu > ul.links > li > a:not(.button):hover {
  color: var(--white);
}

#menu > ul.links > li > .button {
  display: block;
  margin: 0.5rem 0 0 0;
}

#menu > ul.links > li:first-child > a:not(.button) {
  border-top: 0 !important;
}

#menu .close {
  text-decoration: none;
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-tap-highlight-color: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: block;
  height: 3.25rem;
  line-height: 3.25rem;
  padding-right: 1.25rem;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
  width: 7rem;
}

#menu .close:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

#menu .close:before {
  content: "\f00d";
  font-size: 1.25rem;
}

#menu .close:hover {
  color: var(--opacity);
}

#menu.visible {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
  visibility: visible;
}

/* Banner ...............................................................................*/

.banner {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopBanner {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--dark-grey);
  padding-top: 30px;
}

.shopBannerLeft {
  width: 540px;
  height: auto;
  display: flex;
  align-items: center;
}

.shopBannerLeft hr {
  color: var(--white);
  width: 100px;
}

.shopBannerLeft h1 {
  color: var(--gold);
  font-size: 70px;
  text-shadow: 0 10px 20px #000;
}

.shopBannerLeft p {
  color: var(--white);
  font-size: 30px;
  margin: 0 10px;
}

/**/
.shopBannerRight {
  width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*slide2 https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_slideshow_auto*/
.mySlides {
  display: none;
}

.mySlides img {
  width: 400px !important;
  height: auto;
  box-shadow: 0 1px 40px #ffffff2a;
}

#dot2 {
  margin: 0 auto;
  text-align: center;
}

.dot2 {
  display: inline-block;
  border-radius: 50%;
  background: #d3d3d3;
  padding: 4px;
  margin: 30px 5px;
}

.dot2-active {
  background-color: #ff0000;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) 
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}*/
/* 
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
} */

.article_img img {
  display: none;
}

.banner > article {
  -moz-transition: opacity 1.5s ease, visibility 1.5s;
  -webkit-transition: opacity 1.5s ease, visibility 1.5s;
  -ms-transition: opacity 1.5s ease, visibility 1.5s;
  transition: opacity 1.5s ease, visibility 1.5s;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 0;
}

.banner > article:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* color overlay  
.banner > article:after { 
  content: "";
  display: block;
  width: 100%;
  height: 650px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #333;
  opacity:.5;
}*/

.banner > article .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
}

.banner > article .inner > :last-child {
  margin-bottom: 0;
}

.banner > article h2 {
  font-size: 4rem;
  margin-bottom: 0;
  color: #fff;
  font-weight: 300;
}

.banner > article h2:after {
  display: none;
}

.banner > article a {
  color: #fff;
  text-decoration: none;
}

.banner > article img {
  display: none;
}

.banner > article.visible {
  opacity: 1;
  visibility: visible;
}

.banner > article.top {
  z-index: 1;
}

.banner > article.instant {
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

body.is-loading .banner:after {
  opacity: 1;
  visibility: visible;
}

body.is-mobile .banner > article {
  background-attachment: scroll;
}

/**/

.index_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 200px 0;
}

.index_content {
  width: 1200px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 100px 20px;
  background-color: var(--gold);
}

.index_card {
  width: 500px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
}

.index_card img {
  width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 30px;
  line-height: 26px;
}

.index_card span {
  font-size: 12px;
  letter-spacing: 5px;
}

.index_card h2 {
  margin: 20px 0;
}

.index_btn {
  margin-top: 40px;
}

/*index_break*/

.index_break {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_break_container {
  width: 100%;
  min-height: 400px;
  background-color: var(--braek);
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_break_content {
  width: 900px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.index_break_text {
  width: 300px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.index_break_text p {
  line-height: 70px;
  color: var(--white);
}

.index_break_text h2 {
  line-height: 70px;
  color: var(--white);
}

.newestPic {
  position: relative;
  width: 400px;
  height: auto;
}

.newestPic img {
  width: 350px;
  height: auto;
  transform: rotate(13deg);
  margin-top: -50px;
  filter: drop-shadow(0 1px 20px rgb(143, 143, 143));
  float: right;
}

.click {
  position: absolute;
  top: 170px;
  right: -30px;
}

.click img {
  width: 99px;
  height: auto;
  transform: rotate(-5deg);
}

/* mail */
.mail_container {
  width: 100%;
  height: 700px;
  padding: 0 0 50px 0;
}

/* bottom banner*/

.toShop {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toShopContainer {
  width: 400px;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*footer*/

footer {
  width: 100%;
  height: 200px;
  background-color: var(--braek);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container {
  width: 80%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container a {
  text-decoration: none;
}

.copyright a {
  color: var(--white);
  text-decoration: none;
}

.copyright a:hover {
  color: var(--gold);
}

.copyright {
  text-align: center;
  color: #fff;
}

.copyright i {
  color: #fff;
}

/********************************************** E N D E    H E A D E R **********************************************/

.gallery-container {
  width: 100%;
  height: auto;
  background-color: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-top-inner {
  width: 90%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  margin: 100px 0;
}

.gallery-top-box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery-top-box p {
  padding: 20px;
}

.gallery-top-box h2 {
  padding: 20px;
}

.gallery-text-content {
  padding: 20px;
}

.gallery-inner {
  position: relative;
  width: 90%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  margin: 100px 0;
}

.gallery-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container2 {
  text-align: center;
  margin: 10px 0;
}

.container2 p {
  padding: 40px 40px 0 40px;
}

/*flexbox ::::::::::::::::::::::::::::::::::::: */

.flexbox-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 1200px;
  height: auto;
}

.flexbox-item {
  cursor: pointer;
  margin: 30px;
}

.flexbox-item p {
  margin: -30px 0 30px 0;
}

/* ausstellung */
.ausstellung-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ausstellung-title {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 20px;
}

.ausstellung-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ausstellung-content {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ausstellung-content img {
  width: auto;
  height: 300px;
  margin: 10px;
  border-radius: 10px;
}

.ausstellung-break {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #585858a6;
  margin: 100px 0;
}

.ausstellung-break img {
  width: 50px;
  height: auto;
}

/**/
.impressum_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impressum_content {
  width: 1200px;
  height: auto;
  padding: 100px 20px;
}

/**/

.shopBtn {
  margin-top: 10px;
}

.shopBtn a {
  padding: 10px;
  background-color: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  margin: 60px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 14px;
}

/*ende*/

/*reveal*/
.reveal-right {
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal-right.active-right {
  transform: translateX(0);
  opacity: 1;
}

/**/
.reveal-left {
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal-left.active-left {
  transform: translateX(0);
  opacity: 1;
}

/**/
.reveal-fade {
  position: relative;
  opacity: 0;
  transition: 1s all ease;
}

.reveal-fade.active-fade {
  opacity: 1;
}

/**/
.reveal-bottom {
  position: relative;
  transform: translateY(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal-bottom.active-bottom {
  transform: translateY(0);
  opacity: 1;
}

/*

.popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: none;
  z-index:99999999999999999;
  align-items: center;
  justify-content: center; 
}

.modalBg{
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.63);
  display: flex;
  align-items: center;
  justify-content: center; 
}

.contentBox {
  position: relative;
  width: 800px;
  height: 500px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center; 
  margin-bottom:120px;
}

.contentBox .content{
  width: 700px;
  height: auto;
}

.contentBox .content img {
  position:relative;
  float:right;
}

.contentBox .content h3 {
  color: #333;
  font-weight: 100;
  font-size: 2em;
  line-height: 0.5rem;
}

.contentBox .content h2 {
  color: #5869a1;
  font-weight: 300;
  font-size: 3em;
}

.contentBox .content p {
  margin-bottom:20px;
}

.contentBox .content a {
  padding: 10px;
  background-color:#69A158;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 12px;
  text-transform:uppercase;
  letter-spacing: 1px;
}

.contentBox .content a:hover {
  background-color:#69a1589f;
}

.closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  background: rgb(243, 243, 243) url("./../images/close.png");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.closeBtn:hover {
  transform: rotate(-333deg);
}

.contentBox .imgBox_bottom {
  position: absolute;
  width: 550px;
  height: 205px;
  right:20px;
  bottom:-120px;
}

.contentBox .imgBox_bottom img {
  position: relative;
  width: 550px;
  height: 205px;
}

@media (max-width: 767px) {

  .contentBox {
    width: 100%;
    height: auto;
  }
  .contentBox .content {
      width: 100%;
      height: auto;
      padding:20px;
  }
  .closeBtn {
    top: 10px;
    right: 10px;
    background: rgb(255, 255, 255) url("./../images/close.png");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
  }
  .contentBox .content img {
      width: 75px;
    }
  .contentBox .content h3 {
      font-weight: 100;
      font-size: 1.5em;
      line-height: 1rem;
    }
  .contentBox .content h2 {
      font-weight: 300;
      font-size: 2em;
  }
  .contentBox .content p {
      margin-bottom:20px;
      font-size: 1em;
    }
    .contentBox .imgBox_bottom {
      display:none;
    }
} */
