<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Colors */
/*
  #3C3C3B
  #E3E3E3
  #ff6c00
  #736E56
  #476269
  #F5E6C8
  #AFB98B

  #3d3d3c
  #ececec
  #ff6c00
  #746d55
  #466069
  #f6e7c7
  #afb98a

*/
.colorÃ¼bersicht {
  color: #3d3d3c;
  color: #ececec;
  color: #ff6c00;
  color: #746d55;
  color: #466069;
  color: #f6e7c7;
  color: #afb98a;
}

/* Fonts */

@font-face {
  font-family: "SFNewRepublic";
  src: url("../fonts/SFNewRepublic.eot"); /* IE9 Compat Modes */
  src: url("../fonts/SFNewRepublic.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/SFNewRepublic.otf") format("opentype"),
    /* Open Type Font */ url("../fonts/SFNewRepublic.svg") format("svg"),
    /* Legacy iOS */ url("../fonts/SFNewRepublic.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/SFNewRepublic.woff") format("woff"),
    /* Modern Browsers */ url("../fonts/SFNewRepublic.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #3d3d3c;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #afb98a;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  /*background: linear-gradient(0deg, rgba(60, 60, 59, 0.9), rgba(60, 60, 59, 0.5)), url('../img/Segeroth_002.jpg');*/
  /*background: linear-gradient(90deg, rgba(60, 60, 59, 0.9), rgba(60, 60, 59, 0.2)), url('../img/Segeroth_002.jpg');*/
  /*background: linear-gradient(90deg, rgba(227, 227, 227, 0.9), rgba(227, 227, 227, 0.9)), url('../img/Segeroth_002.jpg');*/
  background: rgb(236, 236, 236);

  min-height: 100vh;
}

body.no-scroll {
  overflow-y: hidden;
}

p {
  line-height: 1.3;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #fff;
}

.background {
  position: absolute;
  width: 100%;
  height: calc(100% - 120px);
  top: 120px;
  left: 0;
  background: linear-gradient(180deg, rgba(236, 236, 236, 0.4) 0%, rgba(236, 236, 236, 1) 90%),
    url("../img/segeroth.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 968px) {
  .background {
    top: 80px;
    height: calc(100% - 80px);
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "SFNewRepublic";
}

/* Header */

header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background-color: #3c3c3b;
}

a.logo {
  font-size: 46px;
  font-family: "SFNewRepublic";
  color: #fff;
}

a.logo span {
  color: #ff6c00;
}

ul.navigation {
  display: flex;
}

ul.navigation li {
  margin-left: 30px;
}

ul.navigation li a {
  position: relative;
  color: #fff;
  font-size: 20px;
}

ul.navigation li.active a::after,
footer li.active a::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ff6c00;
  position: absolute;
  left: 0;
  bottom: -5px;
}

@media screen and (min-width: 968px) {
  ul.navigation li a::after {
    content: "";

    width: 0%;
    height: 3px;
    background-color: #ff6c00;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: all 300ms;
  }

  ul.navigation li a:hover::after {
    width: 100%;
  }
}

.sidenav-trigger {
  display: none;
  background-image: url("../img/menu_white.svg");
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  transition: all 300ms;
}
.sidenav-trigger.active {
  background-image: url("../img/close_white.svg");
}

@media screen and (max-width: 968px) {
  header {
    height: 80px;
    padding: 0 30px;
  }

  a.logo {
    font-size: 24px;
    width: 150px;
    line-height: 1;
  }

  ul.navigation {
    position: absolute;
    transition: all 300ms;
    left: -100%;
    padding: 30px 0 0 0;
    top: 80px;
    display: block;
    width: 100%;
    background-color: #3d3d3c;
    border-top: 3px solid #ececec;
    z-index: 500;
  }

  .sidenav-trigger {
    display: block;
  }

  ul.navigation.active {
    left: 0;
  }

  ul.navigation li {
    margin-bottom: 30px;
  }
}

/* Container */

.container {
  display: grid;
  grid-template-columns: 60px repeat(12, 1fr) 60px;
  /*padding: 0 60px;*/
  margin-top: 60px;
  overflow: hidden;
}

.title_area {
  grid-column: 2/4;
  height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.content {
  grid-column: 4/13;
  z-index: 50;
}

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

.title_area h1 {
  font-size: 120px;
  color: #fff;
  color: #ff6c00;
  /*-webkit-transform: rotate(-90deg) translateY(-50%); /* WebKit */
  /*-moz-transform: rotate(-90deg) translateY(-50%); /* Mozilla */
  /*-o-transform: rotate(-90deg) translateY(-50%); /* Opera */
  /*-ms-transform: rotate(-90deg) translateY(-50%); /* Internet Explorer */
  /*transform: rotate(-90deg) translateY(-50%); /* CSS3 */
  z-index: 1;
}

@media screen and (max-width: 968px) {
  .container {
    /*padding: 0 30px;*/
    grid-template-columns: 30px repeat(12, 1fr) 30px;

    margin-top: 30px;
  }

  .title_area {
    grid-column: 2/14;
    height: auto;
    justify-content: start;
  }

  .title_area h1 {
    font-size: 40px;
    color: #ff6c00;
    transform: none;
    margin-bottom: 30px;
  }

  .content {
    grid-column: 2/14;
    min-height: calc(100vh - 164px);
  }

  .content.align-center {
    align-items: flex-start;
  }
}

/* Termin */

.termin {
  border-radius: 10px;
  display: flex;
  /*height: 250px;*/
  margin-bottom: 60px;
}

.termin_top {
  background-color: #afb98a;
  border-radius: 10px 0 0 0;
  padding: 30px;
  color: #fff;
  font-family: "SFNewRepublic";
  font-size: 26px;
}
.termin_content {
  display: flex;
  height: 100%;
  border-radius: 0 0 10px 0;
 
}

.termin_left {
  height: 100%;
  width: 70%;
}

.termin_title {
  font-family: "SFNewRepublic";
  font-size: 26px;
  margin-bottom: 10px;
  color: #ff6c00;
}

.termin_text {
  background-color: #3d3d3c;
  padding: 30px;
  color: #fff;
  height: 100%;
  border-radius: 0 0 0 10px;
  min-height: 153px;
}

.termin_description {
  font-size: 18px;
}

.termin_image {
  width: 30%;
  border-radius: 0 10px 10px 0;
  /*height: 100%;*/
  overflow: hidden;
  
}
.termin_image img {
  width: 100%;
  border-radius: 0 10px 10px 0;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 968px) {

  .termin_image {
    min-width: 300px;
  }
  .termin:nth-child(2n) {
    flex-flow: row-reverse;
  }
  .termin:nth-child(2n) .termin_image img {
    border-radius: 10px 0 0 10px;
  }
  .termin:nth-child(2n) .termin_image {
    border-radius: 10px 0 0 10px;
  }
  .termin:nth-child(2n) .termin_top {
    border-radius: 0 10px 0 0;
  }
  .termin:nth-child(2n) .termin_text {
    border-radius: 0 0 10px 0;
  }
}
@media screen and (max-width: 968px) {
  .termin {
    height: auto;
    flex-flow: column-reverse;
  }

  .termin_left {
    width: 100%;
  }

  .termin_top {
    border-radius: 0px;
    padding: 15px 30px;
  }

  .termin_text {
    border-radius: 0 0 10px 10px;
  }

  .termin_content {
    height: auto;
  }

  .termin_image {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 200px;
  }
  .termin_image img {
    width: 100%;
    /*height: auto;*/
    border-radius: 0;
  }
}

/* Module */

.modul {
  position: relative;
  margin: 100px 0;
}

.modul:nth-child(1) {
  margin-top: 0;
}

.modul_title {
  color: #ff6c00;
  transform: rotate(-90deg);
  position: absolute;
  top: 100px;
  right: -100px;
  font-size: 30px;
}

.modul_subtitle {
  font-size: 24px;
  color: #3d3d3c;
  margin-bottom: 30px;
}

.modul_content {
  display: flex;
}

.modul_text {
  margin-right: 60px;

  border-radius: 10px;
  height: 100%;
}

.modul_top {
  background-color: #afb98a;
  border-radius: 10px 10px 0 0;
  padding: 30px;
  color: #fff;
  font-family: "SFNewRepublic";
  font-size: 26px;
  position: relative;
}

.modul_body {
  font-size: 18px;
  color: #fff;
  padding: 30px;
  /*padding-right: 60px;*/
  background-color: #3d3d3c;
  border-radius: 0 0 10px 10px;
}

.modul_body .btn {
  margin-top: 30px;
}

@media screen and (max-width: 900px) {
  .modul_body.modul_body--data h1 {
    font-size: 24px;
  }
  
  .modul_body.modul_body--data h2 {
    font-size: 20px;
  }
  
  .modul_body.modul_body--data p {
    font-size: 14px;
  }
}


.modul_image {
  flex: 0 0 50%;
  padding-right: 30px;
}

.modul_image img {
  width: 100%;
  border-radius: 10px;
}

.modul_player,
.modul_links {
  margin-top: 30px;
  padding: 30px;
  background-color: #3d3d3c;
  border-radius: 10px;
}

.modul_player p {
  color: #fff;
  margin-bottom: 15px;
}

.modul_links a img {
  width: 50px;
  min-width: 50px;
  margin-right: 30px;
}

.modul_links li {
  margin-bottom: 10px;
}

.modul_links a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
}

.modul_links a:hover {
  color: #ff6c00;
}

.modul_player audio {
  width: 100%;
  outline: none;
}

@media screen and (min-width: 968px) {
  .modul.reverse .modul_content {
    flex-flow: row-reverse;
  }
  .modul.reverse .modul_text {
    margin-right: 0px;
  }
  .modul.reverse .modul_image {
    margin-right: 60px;
    padding-right: 0px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .modul_content {
    flex-flow: column;
  }
  .modul_text {
    margin-right: 30px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 968px) {
  .modul_content {
    flex-flow: column;
  }

  .modul_title {
    top: 70px;
    right: -70px;
    font-size: 20px;
  }

  .modul_image {
    padding-right: 0px;
  }

  .modul_image img {
    width: 120%;
    border-radius: 0px;
    margin-left: -10%;
    max-height: 300px;
    object-fit: cover;
  }

  .modul_text {
    margin-right: 0px;
    margin-top: 30px;
  }
}

/* Animations */

.animation-container {
  width: 100vw;
  height: 100vh;
  background-color: #3d3d3c;
  overflow: hidden;
}

.animate-item {
  color: #fff;
  background-color: #3d3d3c;
  padding: 18px;
  text-align: center;
  display: inline-block;
  position: absolute;
  font-size: 60px;
  white-space: nowrap;
}

@media screen and (max-width: 968px) {
  .animate-item {
    font-size: 20px;
  }
  .animate-item img {
    width: 10px;
    margin: 0 20px 0 40px;
  }
}

.animate-item img {
  width: 30px;
  margin: 0 20px 0 40px;
}

.gravestone {
  width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

/* Animations */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 600%, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    top: 70%;
  }

  to {
    opacity: 1;
    top: 50%;
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 2s !important;
  animation-timing-function: ease-out;
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0) rotate(-90deg) translateY(-50%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0) rotate(-90deg) translateY(-50%);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0) rotate(-90deg) translateY(-50%);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0) rotate(-90deg) translateY(-50%);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0) rotate(-90deg) translateY(-50%);
  }
}

@media screen and (min-width: 968px) {
  .bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
  }
}

/* Divider */
.item {
  transform: rotate(5deg) translateY(-50%);
  width: 180%;
  position: absolute;
  left: -40%;
  top: 50%;
  white-space: nowrap;
  overflow: hidden;
  background-position-x: 1px;
  background-size: contain;
}

.item.draht {
  background-image: url("../img/draht.png");
  height: 40px;
}

.item.portraits {
  background-image: url("../img/portraits3.png");
  height: 60px;
}

.divider:nth-child(4n) .item {
  transform: rotate(-5deg) translateY(-50%);
}

.divider {
  position: relative;
  height: 160px;
}
@media screen and (max-width: 968px) {
  .divider {
    height: 40px;
  }
}

/* Footer */
footer {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 50;
  background-color: #fff;
}

.footer_links {
  width: 100%;
  /*padding: 30px;*/
}

.footer_head {
  padding: 30px 60px;
  background-color: #3d3d3c;
}
.footer_links ul {
  padding: 30px 60px;
}

.footer_links.logos ul {
  padding: 30px 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer_links.logos h5 {
  grid-column: 1/4;
}

.footer_links.logos li {
  padding: 15px;
}
.footer_links li {
  align-items: center;
  display: flex;
  padding: 15px 0;
}

.footer_links img {
  width: 100%;
}

footer a {
  color: #3d3d3c;
  font-size: 18px;
  position: relative;
}

footer h5 {
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

@media screen and (max-width: 968px) {
  footer {
    grid-template-columns: 1fr;
  }
  .footer_links ul {
    padding: 30px 30px;
  }
  .footer_head {
    padding: 30px 30px;
  }
  .footer_links.logos ul {
    padding: 30px 15px;
  }
}

/* Kontakt */

.contactform {
  display: flex;
  flex-flow: column;
}

.contactform label {
  color: #fff;
  margin-bottom: 10px;
}

.contactform input {
  color: #3d3d3c;
  margin-bottom: 30px;
  height: 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  padding: 0px 10px;
  font-size: 18px;
}

.contactform textarea {
  border-radius: 10px;
  border: none;
  margin-bottom: 30px;
  outline: none;
  padding: 10px;
  font-size: 18px;
}



.formwrapper {
  width: 50%;
  min-width: 500px;
}
@media screen and (max-width: 968px) {
  .formwrapper {
    width: 100%;
    min-width: 100%;
  }
}

.formtitle {
  background-color: #afb98a;
  border-radius: 10px 10px 0 0;
  padding: 30px;
  color: #fff;
}

.formbody {
  padding: 30px;
  background-color: #3d3d3c;
  border-radius: 0 0 10px 10px;
}

.formbody a {
  margin-top: 30px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.formbody a img {
  width: 50px;
  margin-right: 15px;
}
.formbody a:hover {
  color: #ff6c00;
}

.formtitle h5 {
  font-size: 26px;
}

.contactform input.btn {
  color: #fff;
  margin-bottom: 0;
}

.btn {
  color: #fff;
  background-color: #466069;
  font-size: 20px;
  cursor: pointer;
  text-transform: uppercase;
  height: 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  padding: 0px 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) {
  .btn:hover {
    background-color: #ff6c00;
  }
}

.btn.disabled {
  opacity: 0.5;
}

/* Modal */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 10000;
  padding: 30px;
  box-sizing: border-box;
  overflow-y: scroll;
}

.modal img {
  max-width: 100%;
  max-height: 100%;
}

.modal.active {
  display: flex;
}

.modal.active .modal__inner {
  opacity: 1;
}

.modal__close {
  position: absolute;
  right: 30px;
  background-image: url(../img/close.svg);
  width: 30px;
  height: 30px;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 50;
}

.modal--img .modal__close {
  position: fixed;
  top: 30px;
}

.modal__inner {
  max-width: 600px;
  transition: all 1000ms;
  opacity: 0;
  height: 100%;
}



@media screen and (max-width: 1500px) {
  .hide-on-small {
    display: none;
  }
}
@media screen and (min-width: 1501px) {
  .hide-on-large {
    display: none;
  }
}

.download-blocker {
    position: absolute;
    height: 100%;
    width: 100%;
}

.datenschutz {
  display: flex;
  color: #fff;
  margin-bottom: 30px;
  font-size: 14px;
}

.datenschutz input {
  margin-right: 30px;
  height: auto;
}

.message {
  font-size: 24px;
}</pre></body></html>