body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    scroll-behavior: smooth;
        font-family: 'futura-pt', 'Arial', sans-serif;

}


.container {
    margin: 0 auto;
    position: relative;
    max-width: 1440px;
    
}

.container-1100 {
    margin: 0 auto;
    position: relative;
    max-width: 1100px;
}

.container-900 {
    margin: 0 auto;
    position: relative;
    max-width: 900px;
}

.max-width-1440 {
    max-width: 1440px;
}


.headline-white {
    text-align: center;
    font-size: 2rem;
               font-family: 'futura-pt-bold', 'Arial', sans-serif;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 2rem;
}

.headline-blue {
    text-align: center;
    font-size: 2rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 700;
    color: #f4d2a5;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 1rem;
}

.headline-blue-logofriedhof {
    text-align: center;
    font-size: 2rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 700;
    color: rgb(0, 32, 91);
    letter-spacing: 0.25px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 2rem;
}

.headline-bellow-white {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    line-height: 100%;
    margin-top: 1rem;
}


/* Navigation */



/* Loader */




.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,32,91);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:5000;
}

.loader > img {
    width: 250px;
}

.loader {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
    
}

.thumb {
    height: 100px;
    border: 1px solid black;
    margin: 10px;
}



/* Beschreibung */


.col-beschreibung {
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: 2fr 1fr;
    align-items: center;

}

.col {
    width: 100%;
    height: auto;
}

#bild-beschreibung {
    display: block;
    width: 100%;
    height: auto;
}

#bild-aufsteller {
    display: block;
    width: 100%;
    height: auto;
}

.beschreibung-headline {
    text-align: left;
    font-size: 2rem;
     font-family: 'futura-pt-bold', 'Arial', sans-serif;
    font-weight: 700;
    color: rgb(0, 32, 91);
    letter-spacing: 0.25px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 1rem;
    max-width: 35ch;
}

.beschreibung-copy {
    text-align: left;
    font-size: 1.5rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 400;
    color: rgb(0, 32, 91);
    letter-spacing: 0.25px;
    line-height: 120%;
    max-width: 50rem;
}

#beschreibung {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #e3e3ff;
}



/* Sorten */

#sorten {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: rgb(0, 32, 91);

}

.container-sorten {
    position: relative;
    width: 100%;

}

.image-sorte {
    display: block;
    width: 100%;
    height: auto;

}

.overlay-sorten {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgb(0, 32, 91);
    ;
}

.container-sorten:hover .overlay-sorten {
    opacity: 0.8;
      
}

.hover-text-sorten {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 130%;
    font-family: 'futura-pt', 'Arial', sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
         
}

.grid-sorten {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
       
}



/* Logofriedhof */

#logofriedhof {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.logofriedhof-grid {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}

.logofriedhof-logo {
    width: 100%;
    height: auto;
}



/* Call-to-Action */

#cta {
    background-color: #e3e3ff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Kontakt */

.col-kontakt {
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: 1fr 2fr;
    align-items: center;      
    
}

#kontakt {
    background-color: #e3e3ff;
    padding-top: 4rem;
    padding-bottom: 4rem;

}

.kontakt-container {

    margin-left: auto;
    margin-right:auto;
    max-width: 1050px;
}




/* Button */

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    letter-spacing: 0.5px;
    font-weight: 700;
    font-family: 'futura-pt', 'Arial', sans-serif;
    background-color: rgb(255, 158, 25);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0.5em 1em 0.5em 1em;
    text-align: center;
    text-decoration: none;
    display: block;
}



/* Footer */

#footer {
    background-color: rgb(0, 32, 91);
}

.footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    letter-spacing: 0.035em;
    display: grid;
    column-gap: 2.5%;
    grid-template-columns: 48.75% 48.75%;
}

.footer-1 {
    position: relative;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-2 {
    position: relative;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-align: right;
}

.footer-1 a {
    color: #ffffff;
    text-decoration: none;
}

.footer-1:link {
    color: #ffffff;
    text-decoration: none;
}

.footer-1:visited {
    color: #ffffff;
    text-decoration: none;
}

.footer-2 a {
    color: #ffffff;
    text-decoration: none;
}

.footer-2:link {
    color: #ffffff;
    text-decoration: none;
}

.footer-2:visited {
    color: #ffffff;
    text-decoration: none;
}



/* Back to Top Button */

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: rgb(252,76,2); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0.75em; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 1.5rem; /* Increase font size */
margin-bottom:6em;
        animation: mymove 0.5s;
}


@keyframes mymove {
  from {right: -100px;}
  to {right: 2rem;}
}


#myBtn:hover {
    background-color: rgb(255,158,27);
}


/* Cookie Consent */


.cc-message {
        font-size: 1.25rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;

}

.cc-compliance {
        font-size: 1.25rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 400;
        letter-spacing: 0.5px;
    
}

/* DseImprint Navigation */

#dseimprint{
    display:grid;
    grid-template-columns: 1fr;
        padding-top:  250px;
    padding-bottom: 100px;
    grid-gap:4rem;

}

.header-blue-bg {
     background-color: rgb(0,31,92);
}

#imprint {

}

.dsei-head{

    font-size: 1.25rem;
        text-transform: uppercase;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 700;
    color: rgb{0,32,91};
    letter-spacing: 0.5px;
    line-height: 120%;
    text-align: left;
    color: rgb(0,31,92);

}

.dsei-sub{

    font-size: 1.25rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 700;
    color: rgb{0,32,91};
    letter-spacing: 0.5px;
    line-height: 120%;
    text-align: left;
        color: rgb(0,31,92);
}

.dsei-copy{
    font-size: 1.25rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 400;
    color: rgb{0,32,91};
    letter-spacing: 0.5px;
    line-height: 120%;
    color: rgb(0,31,92);
    text-align: left;
    max-width: 75ch;
}

.dsei-pic{
    margin-top:1.5rem;
    max-width: 20px;
    height: auto;
}

.kontakt-head{
    font-size: 2rem;
    font-family: 'futura-pt-bold', 'Arial', sans-serif;
    font-weight: 700;
    color: rgb{0,32,91};
    letter-spacing: 0.5px;
    line-height: 100%;
    text-align: left;
    color: rgb(0,31,92);
        text-transform: uppercase;
    
}

.kontakt-sub{
        margin-top:0.5rem;
    font-size: 1.5rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 700;
    color: rgb{0,32,91};
    letter-spacing: 0.5px;
    line-height: 120%;
    text-align: left;
    max-width: 70ch;
        color: rgb(0,31,92);
}

.kontakt-copy{
    margin-top:0.5rem;
    font-size: 1.5rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 400;
    color: rgb{0,32,91};
    letter-spacing: 0.5px;
    line-height: 120%;
    color: rgb(0,31,92);
    text-align: left;
        max-width: 70ch;
}

.card{
    opacity:0;
    transform: translateY(2rem);
    transition: 1000ms;
   
}

.card-left {
    opacity:0;
    transform: translateX(-2rem);
    transition: 1000ms;
    
}

.card-right {
    opacity:0;
    transform: translateX(2rem);
    transition: 1000ms;
    
}


.show {
    transform: translateX(0);
    opacity: 1;

}


.fade-in-text {
  animation: fadeIn linear 750ms;
}

@keyframes fadeIn {
       0% {
      opacity: 0;
     
      transform: translateY(-2rem);
   }
   100% {
      opacity: 1;
      transform: translateX(0);

   }   
}

/* glow */

a {
    transition-property:text-shadow;
    transition-delay:100ms;
    transition-duration: 100ms;
}

a:link {
  text-decoration: none;
}
 
a:hover {
  text-shadow:
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #f4d2a5,
      0 0 80px #f4d2a5,
      0 0 90px #f4d2a5,
      0 0 100px #f4d2a5,
      0 0 150px #f4d2a5;
}

a:visited{
     color: #ffffff;
}




.kontakt-copy a:hover {
 
text-decoration: none;
}

.kontakt-copy a:visited {
text-decoration: none;

}

.kontakt-copy a {
text-decoration: none;
}

.cc-message a, a.cc-dismiss{
  text-shadow:none;
}

.cc-message a, a.cc-dismiss{
  text-shadow:none;
}

/* Age Verification */

.silverbranch-age-bg {
     background: rgb(0,0,0);
     position: fixed;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     z-index: 10000;

}

.silverbranch-age-checker {
     background: rgb(0,31,92);
     background-repeat:no-repeat;
max-width: 400px;
 min-width: 250px;
     position: fixed;
     z-index: 100000;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) !important;
      border-radius: 1rem;

}

.age-content{
padding: 0% 8.5% 8.5% 8.5%;

}

.age-logo{
max-width: 200px;
 margin-left: auto;
    margin-right: auto;
}

.age-grid{
        display: grid;
    column-gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;   
    position: relative;
         margin-top: 1.5rem;
  
}

.age-copy{
        margin-top:1rem;
    font-size: 1rem;
    font-family: 'futura-pt', 'Arial', sans-serif;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 130%;

    text-align: center;

}

.yes-button  {
    text-align: center;
        letter-spacing: 0.5px;
    font-weight: 700;
    font-family: 'futura-pt', 'Arial', sans-serif;
    background-color: #ffffff;
    border: none;
    color: rgb(0,31,92);
    font-size: 1rem;
    padding: 0.5em 1em 0.5em 1em;
    text-align: center;
    text-decoration: none;
    display: block;
}

a.yes-button  {
    text-align: center;
        letter-spacing: 0.5px;
    font-weight: 700;
    font-family: 'futura-pt', 'Arial', sans-serif;
    background-color: #ffffff;
    border: none;
    color: rgb(0,31,92);
    font-size: 1rem;
    padding: 0.5em 1em 0.5em 1em;
    text-align: center;
    text-decoration: none;
    display: block;
}

.yes-button:hover{
      color: rgb(0,31,92);
    text-shadow: none;
} 

.no-button:hover{
    text-shadow: none;
} 


.no-button {
      text-align: center;
        letter-spacing: 0.5px;
    font-weight: 700;
    font-family: 'futura-pt', 'Arial', sans-serif;
     border: 1px solid white;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5em 1em 0.5em 1em;
    text-align: center;
    text-decoration: none;
    display: block;
}


.close-age-popup {
     cursor:pointer
}