@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #373E34;
  font-size: 15px;
}

a {
  color: #DFAF85;
  text-decoration: none;
}

a:focus, a:hover {
  color: #c29167;
}

p {
 margin-top: 5px;
}

b, strong {
  font-weight: 900;
}

h1 {
  font-family: "Patua One", serif;  
  font-weight: 400;
  color: #DFAF85;
  font-size: 37px;
  margin-bottom: 30px;
}

h2 {
  font-weight: 400;
  color: #DFAF85;
  font-size: 21px;
}

h3 {
  font-weight: 700;
  color: #DFAF85;
  font-size: 18px;
  margin-top: -10px;
  margin-bottom: -5px;
}

.btn-primary {
  background-color: #DFAF85;
  border-color: #DFAF85;
}

.btn-primary:hover {
  background-color: #F5E0D3;
  border-color: #F5E0D3;
}

hr {
  height:3px;
  background-color: #373E34;
  margin-bottom: 20px;
  margin-top: 20px;
}

#header_picture {
  height: 250px;
  background-image: url(../dmxDaten/web_elemente/topframe.jpg);
  background-repeat: no-repeat;
  background-size: 1550px;
}

.header_picture {
  height: 230px;
  background-image: url(../dmxDaten/web_elemente/logo.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
  

 /* Logo */

header.fixed-header .logo {
  background-image: url(../dmxDaten/web_elemente/logo01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  width:270px;
  height: 100px;
  margin-top: -447px;  
  }

@media only screen and (max-width: 992px) {
  .header_picture {
  height: 270px;
  background-image: url(../dmxDaten/web_elemente/logo02.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 300px;
}
}

@media only screen and (max-width: 768px) {
  .header_picture {
  height: 150px;
  background-image: url(../dmxDaten/web_elemente/logo02.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 250px;
  margin-left: 20px;
}

header.fixed-header .logo {
  background-image: url(../dmxDaten/web_elemente/logo01.svg);
  width:200px;
  }

 /* Navigation */
.navbar-nav {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 12px;
}
}

.navbar {
  background-color: #a0223f;
  padding-top: 10px;
  padding-bottom: 10px;
}

.btn-toggler {
  color: #F5E0D3;
  font-size: 24px;
}

.btn-toggler:hover {
  color: #DFAF85;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.navbar-toggler {
  color: #F5E0D3;
  border-color: transparent;
}

.nav-link {
  color: #F5E0D3;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #DFAF85;
}

.nav-link:focus {
  color: #DFAF85;
}

.art-active {
  color: #DFAF85;
}

@media only screen and (max-width: 992px) {
.dropdown-menu {
  text-align: right;
}
}

.dropdown-item:hover {
  background-color: #6b6e69;
  color: #DFAF85;
}

.dropdown-item.active {
  background-color: #373E34;
}

 /* Main Container */
.main-container {
  padding: 30px;
  padding-top: 50px;
}



 /* Footer */

#footerbild {
  background-image: url(../dmxDaten/web_elemente/footer.svg);
  background-repeat: no-repeat;
  background-size: 960px;
  background-position: right top;
  height: 98px;
 }

footer {
  background-color: #a0223f;
  color: #F5E0D3;
  font-size: 15px;
  padding-bottom: 30px;
}

footer a {
  color: #F5E0D3;
  text-decoration: none;
}

footer a:hover {
  color: #DFAF85;
}

.info {
  font-size: 12px;
}

/* Bilder */

.img-corner {
  border-radius:5px 50px;
}

/* Content Boxen */

.green-box {
  color: #ffffff;
  background-color: #006130;
  padding: 20px;
}

.green-box h1, .berge h3 {
  color: #ffffff;
}

/* Carousel */

.carousel-item {
  max-height: 900px;
  background: no-repeat center center scroll;
  background-size: cover;
}

/* Tinymce */
#edit .row div {
  
  border: 1px dotted red;
}

#edit .row {
  border: 3px solid green;
}

#edit p {
  border: 1px dotted #b9b9b9;
}

/* BilderBox */

.hovereffect {
width:100%;
height:100%;
float:left;
overflow:hidden;
position:relative;
text-align:center;
cursor:default;
}

.hovereffect .overlay {
width:100%;
height:100%;
position:absolute;
overflow:hidden;
top:0;
left:0;
opacity:0;
background-color:rgba(0,0,0,0.5);
-webkit-transition:all .4s ease-in-out;
transition:all .4s ease-in-out
}

.hovereffect img {
display:block;
position:relative;
-webkit-transition:all .4s linear;
transition:all .4s linear;
}

.hovereffect h2 {
color:#fff;
text-align:center;
position:relative;
font-size:21px;
background:rgba(0,0,0,0.6);
-webkit-transform:translatey(-100px);
        transform:translatey(-100px);
-webkit-transition:all .2s ease-in-out;
transition:all .2s ease-in-out;
padding:10px;
}

.hovereffect h3 {
color:#fff;
text-align:center;
position:absolute;
width: 100%;
bottom: 0;
font-size:15px;
line-height: 20px;
font-variation-settings: "ital" 0, "wght" 300;
background:rgba(0,0,0,0.6);
-webkit-transition:all .2s ease-in-out;
transition:all .2s ease-in-out;
padding:10px;
}

.hovereffect:hover img {
-webkit-transform:scale(1.2);
        transform:scale(1.2);
}

.hovereffect:hover .overlay {
opacity:1;
filter:alpha(opacity=100);
}

.hovereffect:hover h2,.hovereffect:hover a.info {
opacity:1;
filter:alpha(opacity=100);
-webkit-transform:translatey(0);
        transform:translatey(0);
}

.hovereffect:hover a.info {
-webkit-transition-delay:.2s;
        transition-delay:.2s;
}

/* Video */

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive-9by16 {
    padding-bottom: 88.89%;
}

@media only screen and (min-width: 992px) {
.embed-responsive-9by16 {
  padding-bottom: 59.26%;
}
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}