@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; 
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Josefin Sans';
  src: url('../fonts/josefin-sans.regular.ttf') format('truetype');
  font-weight: normal !important; 
  font-style: normal !important;  
  font-display: swap;
}

@media (hover: none) {
  a:active, a:focus {
      color: inherit !important;
  }

  a.work {
      pointer-events: auto !important; 
  }
}

.divider {
  width: 100%;
  min-height: 2px;
  height: 0.2vw; 
  background-color: #aaa8d4;
  background: linear-gradient(to right, transparent, #aaa8d4, transparent);
}

.hamburger-divider {
  width: 50%;
  margin: 0px auto;
  background: linear-gradient(to right, transparent, #aaa8d4, transparent);
}

body, html {
  overflow-x: hidden; 
}


body {
  font-family: "Josefin Sans", Arial;
  top: 0; 
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 20px;
  line-height: 1.7;
  color: #ffffff;
  background: #202020;
}

@media screen and (min-width: 2560px) {
  p {
    font-size: 26px !important;
  }
}

@media screen and (min-width: 2560px) {
  body {
    font-size: 26px !important;
  }
}

#page {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.offcanvas #page {
  overflow: hidden;
  position: absolute;
}
.offcanvas #page:after {
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.7);
  content: "";
}

.language-switcher {
  position: relative;
  display: flex; 
  align-items: center;
  justify-content: center;
}

.language-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  position: relative;
}

.language-switcher img {
  width: 30px;
  height: 30px;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.language-switcher img.active {
  opacity: 1;
  transform: scale(1);
}

.nav-divider {
  width: 1px; 
  height: 100%; 
  background-color: #aaa8d4; 
  margin: 0 15px; 
}

.header-section {
    position: relative;
    width: 100%;
    background-color: transparent; 
    z-index: 10; 
    padding: 10px 20px; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}

.hamburger {
  position: fixed;
  right: 20px;
  z-index: 100;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  outline: none;
  transition: transform 0.3s ease-in-out;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #aaa8d4;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #aaa8d4;
  transition: all 0.3s ease-in-out;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  top: 10px;
}

/* Animate into "X" */
.hamburger.open span {
  background: transparent;
}

.hamburger.open span::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.open span::after {
  transform: rotate(-45deg);
  top: 0;
}


@supports (-webkit-touch-callout: none) {
  .hamburger span {
      display: block !important;
      width: 30px !important;
      height: 4px !important;
      background-color: #aaa8d4 !important;
      position: relative;
      transition: background 0.3s ease-in-out;
  }

  .hamburger span::before,
  .hamburger span::after {
      content: "";
      display: block;
      width: 100%;
      height: 4px;
      background-color: #aaa8d4;
      position: absolute;
      left: 0;
      transform-origin: center center; 
      transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  }

  .hamburger span::before {
      top: -8px;
  }

  .hamburger span::after {
      top: 8px;
  }

  .hamburger.open span {
      background-color: transparent !important;
  }

  .hamburger.open span::before {
      top: 0;  
      transform: rotate(45deg) !important;
  }

  .hamburger.open span::after {
      top: 0; 
      transform: rotate(-45deg) !important;
  }
}


@media screen and (max-width: 768px) {
  .hamburger {
      display: block;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 70%;
  background: #202020;
  box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease-in-out;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 425px) {
  .mobile-nav {
      width: 70%;
  }
}

.mobile-nav a {
  display: block;
  padding: 15px;
  color: #aaa8d4;
  text-decoration: none;
  font-size: 20px;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background: #202020;
}

#language-switcher {
  display: flex;
  align-items: center;
}

#language-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 150;
  pointer-events: auto; 
}

#language-switcher img {
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
  opacity: 0; 
}

#language-switcher img.active {
  opacity: 1;
}

.scrolled .hamburger {
  display: block;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border-radius: 20px; 
  padding: 10px 30px; 
  margin: 20px auto; 
  background-color: #202020; 
  border: 1px solid #aaa8d4; 
  box-shadow: none;
  width: 50%; 
  height: 50px; 
}

@media screen and (max-width: 768px) {
  .nav-menu {
      display: none !important;
  }
}

.nav-menu a {
  margin: 0 30px; 
  text-decoration: none;
  font-weight: 600;
  color: #aaa8d4; 
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ffffff; 
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .nav-menu {
    width: 100%; 
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .nav-menu {
    width: 80%; 
  }
}

a {
  color: #ffffff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover, a:active, a:focus {
  color: #aaa8d4;
  outline: none;
  text-decoration: none;
}

p {
  margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6, figure {
  color: #ffffff;
  font-family: "Josefin Sans", Arial;
  font-weight: 700;
  margin: 0 0 20px 0;
}

::-webkit-selection {
  color: #fff;
  background: #aaa8d4;
}

::-moz-selection {
  color: #fff;
  background: #aaa8d4;
}

::selection {
  color: #fff;
  background: #aaa8d4;
}

#fh5co-header,
.fh5co-cover {
  width: 100vw !important;
  min-width: 100%; 
  min-height: 100vh !important;
  height: auto !important;
  overflow: hidden;
  background-origin: content-box;  
  background-color: transparent;
  background-size: cover;
  background-attachment: fixed;  
  background-repeat: no-repeat;
  background-position: center center; 
  position: relative;
}

#fh5co-header .overlay,
.fh5co-cover .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(32, 32, 32, 0.9);
}

#fh5co-header .display-t,
.fh5co-cover .display-t {
  width: 100%;
  display: table;
}
#fh5co-header .display-tc,
.fh5co-cover .display-tc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;  
  max-height: 100vh; 
  padding-top: 5vh; 
}

.display-t,
.display-tc {
  height: auto !important;
  min-height: auto !important;
}

#fh5co-header .display-tc h1, #fh5co-header .display-tc h2, #fh5co-header .display-tc h3,
.fh5co-cover .display-tc h1,
.fh5co-cover .display-tc h2,
.fh5co-cover .display-tc h3 {
  margin: 0;
  padding: 0;
  color: #aaa8d4;
}
#fh5co-header .display-tc h1,
.fh5co-cover .display-tc h1 {
  font-family: "Montserrat";
  margin-top: 30px; 
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 1.3;
  font-weight: 500;
  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-0deg);
}
#fh5co-header .display-tc h1 span,
.fh5co-cover .display-tc h1 span {
  padding: 4px 15px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #fh5co-header .display-tc h1,
  .fh5co-cover .display-tc h1 {
    font-size: 34px;
  }
  #fh5co-header .display-tc h1 span:before,
  .fh5co-cover .display-tc h1 span:before {
    top: 28px;
    width: 20px;
    height: 3px;
    margin-left: -15px;
  }
  #fh5co-header .display-tc h1 span:after,
  .fh5co-cover .display-tc h1 span:after {
    top: 28px;
    width: 20px;
    height: 3px;
    margin-right: -15px;
  }
}

@media screen and (min-width: 2560px) {
  #fh5co-header .display-tc h1,
  .fh5co-cover .display-tc h1 {
    font-size: 72px;
  }
}

#fh5co-header .display-tc h2,
.fh5co-cover .display-tc h2 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
#fh5co-header .display-tc h3,
.fh5co-cover .display-tc h3 {
  font-size: 25px;
  font-family: "Josefin Sans", Arial;
  color: #aaa8d4;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #fh5co-header .display-tc h3,
  .fh5co-cover .display-tc h3 {
    font-size: 18px;
  }
}

@media screen and (min-width: 2560px) {
  #fh5co-header .display-tc h3,
  .fh5co-cover .display-tc h3 {
    font-size: 35px;
  }
}

#fh5co-header .display-tc .profile-thumb,
.fh5co-cover .display-tc .profile-thumb {
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: min(400px, 30vw); 
  height: min(400px, 30vw);
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

@media screen and (max-width: 426px) {
  #fh5co-header .display-t,
  .fh5co-cover .display-t {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  #fh5co-header .display-tc,
  .fh5co-cover .display-tc {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    width: 100%;
  }

  #fh5co-header .display-tc h1 span,
  .fh5co-cover .display-tc h1 span {
    padding: 4px 0px;
    position: relative;
  }

  .profile-thumb {
    display: block;
    width: 300px !important;
    height: 300px !important;
  }
}

@media screen and (max-width: 320px) {
  .profile-thumb {
    width: 250px !important;
    height: 250px !important;
  }
}

@media screen and (min-width: 2560px) {
  .profile-thumb {
    width: min(800px, 60vw) !important;
    height: min(800px, 60vw) !important;
  }
}

#fh5co-header .display-tc .fh5co-social-icons li a,
.fh5co-cover .display-tc .fh5co-social-icons li a {
  color: #aaa8d4;
}
#fh5co-header .display-tc .fh5co-social-icons li a i,
.fh5co-cover .display-tc .fh5co-social-icons li a i {
  font-size: 30px;
}

#fh5co-features {
  background: #202020;
}
#fh5co-features h2,
#fh5co-features h3 {
  color: #aaa8d4;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
  gap: 20px;
  padding: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #282828;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #aaa8d4;
}

@media (max-width: 768px) {
  .features-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns instead of 3 */
  }
}

@media (max-width: 480px) {
  .features-container {
      grid-template-columns: 1fr;
  }
}

#fh5co-about,
#fh5co-cv,
#fh5co-skills,
#fh5co-started,
#fh5co-work,
#fh5co-blog,
#fh5co-pricing,
#fh5co-contact {
  padding: 2em 0;
  clear: both;
}
@media screen and (max-width: 768px) {
  #fh5co-about,
  #fh5co-cv,
  #fh5co-skills,
  #fh5co-started,
  #fh5co-work,
  #fh5co-blog,
  #fh5co-pricing,
  #fh5co-contact {
    padding: 3em 0;
  }
}

#fh5co-started {
  border-bottom: none;
}

.fh5co-bg-dark {
  background: #2F3C4F;
  background: #202020;
}
.fh5co-bg-dark .fh5co-heading h2 {
  color: #aaa8d4 !important;
}

.info {
  margin: 0;
  padding: 0;
  width: 90%;
  float: left;
}

.info a {
  transition: none !important;
}

@media screen and (max-width: 768px) {
  .info {
    margin-bottom: 3em;
    font-size: 16px; 
  }
}
.info li {
  width: 100%;
  float: left;
  list-style: none;
  padding: 10px 0;
}
.info li:first-child {
  padding-top: 0;
}
.info li .first-block {
  width: 40%;
  float: left;
  color: #aaa8d4;
  font-weight: bold;
}
.info li .second-block {
  width: 60%;
  display: inline-block;
  color: #fff; 
}

.vortraege-header {
  padding-top: 20px;
  margin-bottom: 10px; 
  font-weight: bold; 
  line-height: 1.2; 
  display: block;
  clear: both;
  color: #aaa8d4
}

.vortraege-divider {
  border: 0;
  height: 2px;
  background: #aaa8d4;
  margin-bottom: 1em;
}

.vortrag-item .first-block {
  font-weight: bold;
  flex-basis: 20%; 
  color: #aaa8d4;
}

.vortrag-item .second-block {
  flex-basis: 80%; 
  color: #fff;
}

.publikationen-header {
  padding-top: 20px;
  margin-bottom: 10px; 
  font-weight: bold; 
  line-height: 1.2; 
  display: block;
  clear: both;
  color: #aaa8d4
}

.publikationen-divider {
  border: 0;
  height: 2px;
  background: #aaa8d4;
  margin-bottom: 1em;
}

.publikation-item .first-block {
  font-weight: bold;
  flex-basis: 20%; 
  color: #aaa8d4;
}

.publikation-item .second-block {
  flex-basis: 80%; 
  color: #fff;
}

.external-link {
	text-decoration: underline;
  text-underline-offset: 2px;     
	text-decoration-thickness: 1px;  
}

.fh5co-social-icons {
  margin: 0;
  padding: 0;
}
.fh5co-social-icons li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.fh5co-social-icons li a {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding-left: 10px;
  padding-right: 10px;
}
.fh5co-social-icons li a i {
  font-size: 20px;
}

.fh5co-heading {
  margin-bottom: 2em;
}
.fh5co-heading.fh5co-heading-sm {
  margin-bottom: 2em;
}
.fh5co-heading h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #aaa8d4;
}

@media screen and (min-width: 2560px) {
  .fh5co-heading h2 {
    font-size: 60px !important; 
  }
}

.fh5co-heading p {
  font-size: 18px;
  line-height: 1.5;
  color: #828282;
}
.fh5co-heading span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

#fh5co-work .fh5co-heading {
  margin-top: 1em; 
  margin-bottom: 0em;
}

@media screen and (min-width: 2560px) {
  .fh5co-heading .section-title {
    font-size: 42px !important; 
  }
}

.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}
.timeline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 2px;
  background-color: #aaa8d4;
  left: 50%;
  margin-left: 0px;
}
@media screen and (max-width: 1024px) {
  .timeline:before {
    margin-left: -64px;
  }
}
@media screen and (max-width: 1024px) {
  .timeline:before {
    margin-left: -64px;
  }
}
@media screen and (max-width: 1024px) {
  .timeline .timeline-heading {
    margin-bottom: 30px;
  }
}
.timeline .timeline-heading > div h3 {
  display: inline-block;
  padding: 7px 15px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  background: #aaa8d4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .timeline .timeline-heading > div h3 {
    float: left;
    margin-bottom: 0;
  }
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .timeline > li {
    margin-bottom: 4em;
  }
}
.timeline > li:before, .timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-panel {
  width: 45%;
  float: left;
  margin-bottom: 0;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .timeline > li > .timeline-panel {
    width: 85% !important;
  }
}
@media screen and (max-width: 480px) {
  .timeline > li > .timeline-panel {
    width: 75% !important;
  }
  .timeline > li > .timeline-panel:before {
    top: 30px;
  }
  .timeline > li > .timeline-panel:after {
    top: 31px;
  }
}
.timeline > li > .timeline-badge {
  color: #fff;
  width: 44px;
  height: 44px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -21px;
  background-color: #aaa8d4;
  z-index: 100;
  display: table;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .timeline > li > .timeline-badge {
    margin-left: -10px !important;
  }
}

.timeline > li > .timeline-badge i {
  display: table-cell;
  vertical-align: middle;
  height: 44px;
  font-size: 18px;
}
.timeline > li.timeline-unverted {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .timeline > li.timeline-unverted {
    text-align: left;
  }
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-title {
  margin-top: 0;
}

.company {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #bfbfbf;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

.timeline-body > p + p {
  margin-top: 5px;
}

@media (max-width: 1024px) {
  ul.timeline:before {
    left: 90px;
  }

  ul.timeline > li > .timeline-panel {
    width: calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
  }

  ul.timeline > li > .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}

.work {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: auto; 
  width: 100%;
  padding-top: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.work .desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: rgba(32, 32, 32, 0.9);
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.work .desc h3 {
  color: #aaa8d4;
  font-size: 20px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
}
.work .desc span {
  display: block;
  color: #999999;
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}
@media screen and (max-width: 768px) {
  .work .desc {
    display: none !important;
  }
  .work .desc h3 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .work .desc span {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.work:hover .desc {
  opacity: 1;
}
.work:hover .desc h3 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.work:hover .desc span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#gallery {
  background: #202020;
  margin: 0 !important;
}

#gallery h2 {
  font-size: 40px;
  font-weight: 700;
  color: #aaa8d4;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: left;
  font-family: "Montserrat";
  padding-top: 30px;
  overflow-wrap: break-word;
}

#gallery p {
  color: #fff;
}

.description {
  font-size: 19px; 
  color: #dcdcdc;
  line-height: 1.7; 
  margin: 0 auto 20px auto;
  text-align: justify; 
}

@media (min-width: 1024) {
  .custom-padding-md {
    padding-top: 50px; 
  }
}
.software-container {
  background: rgba(50, 50, 50, 0.8);
  padding: 15px;
  border-radius: 10px;
  display: inline-block; 
  max-width: 100%; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px; 
}

.software-title {
  font-size: 19px;
  font-weight: bold;
  color: #aaa8d4;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  display: block;
}

.software-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
}

.software-list li {
  background: rgba(100, 100, 100, 0.8); 
  color: #ffffff;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 20px; 
  display: inline-block;
  text-align: center;
  white-space: nowrap; 
  min-width: 100px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.software-list li:hover {
  background: rgba(150, 150, 150, 0.9); 
}

@media screen and (max-width: 768px) {
  .software-list {
    justify-content: center; 
  }
  
  .software-list li {
    padding: 10px 12px;
    font-size: 15px;
  }
}

#gallery .work {
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  width: 100%; 
}

#gallery .work.noformat {
  padding-top: 0; 
  height: 200px; 
  aspect-ratio: unset;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

@media screen and (min-width: 767px) {
  #gallery .work.noformat {
    height: 600px; 
  }
}

#gallery .row.noformat-row {
  width: 100vw !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

#gallery .col-md-12.noformat-col, 
         .col-md-6.noformat-col {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

#gallery .row {
  padding: 0 !important;
  margin: 0 !important;
}

#gallery .work.wide {
  width: 100%;
  padding-top: 56.25%; 
  height: 0; 
}

#gallery .work.tall {
  width: 100%;
  padding-top: 200%;
}

#gallery .work.square {
  padding-top: 100%;
}

@media screen and (max-width: 768px) {
  #gallery .work.tall {
    padding-top: 150%; 
  }
}

.work.wide.video {
  position: relative;
  width: 100%;
  height: auto; 
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.responsive-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button-container {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  height: 100%; 
  padding-right: 10px;
  padding-top: 30px;
  padding-bottom: 30px; 
}

.download-btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  background-color: #aaa8d4;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
}

.download-btn:hover,
.download-btn:focus,
.download-btn:active {
  background-color: #8886b8;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .row {
      flex-direction: column;
  }

  .button-container {
      justify-content: center; 
      padding-top: 15px;
  }
}

table.centered {
  margin: 20px auto;            
  border-collapse: separate;    
  border-spacing: 0;
  border-radius: 10px;           
  overflow: hidden;    
  border: 1px solid #aaa8d4;          
}

table.centered th,
table.centered td {
  padding: 10px;                
}

#fh5co-started {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  float: left;
  width: 100%;
}
#fh5co-started .fh5co-heading {
  margin-bottom: 0;
}
#fh5co-started .fh5co-heading h2 {
  color: #fff;
  margin-bottom: 20px !important;
}
#fh5co-started .fh5co-heading p {
  color: rgba(255, 255, 255, 0.8);
}
#fh5co-started .btn {
  height: 54px;
  border: none !important;
  background: #fff;
  color: #aaa8d4;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 50px;
  padding-right: 50px;
}

#contact {
  background-color: #aaa8d4; 
  color: #202020;
  text-align: center;
  padding: 40px;
  font-family: "Josefin Sans", Arial, sans-serif;
}

#contact h2 {
  margin-bottom: 10px;
  font-weight: bold;
}

#contact p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.basic-btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  background-color: #202020; 
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.basic-btn:hover {
  background-color: #8886b8; 
  transform: scale(1.05); 
}

.fh5co-video {
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .fh5co-video {
    height: 450px;
  }
}
.fh5co-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#fh5co-footer {
  padding: 50px 0;
  width: 100%;
}

#fh5co-footer .row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

#fh5co-footer .col-md-6:first-child {
  text-align: left;
  flex: 1;
}

#fh5co-footer .text-right {
  text-align: right;
  flex: 1;
  white-space: nowrap; 
}

@media screen and (max-width: 768px) {
  #fh5co-footer .row {
      flex-direction: column;
      text-align: center;
  }

  #fh5co-footer .col-md-6 {
    width: 100%;
    text-align: center;
}

  #fh5co-footer .col-md-6:first-child {
    text-align: center;
    flex: 1;
  }

  #fh5co-footer .text-right {
      text-align: center;
      margin-top: 10px;
  }
}

.contact-info {
  margin-bottom: 4em;
  padding: 0;
}

.contact-info li {
  list-style: none;
  margin: 0 0 20px 0;
  position: relative;
  padding-left: 40px;
  color: #000;
}
.contact-info li i {
  position: absolute;
  top: .3em;
  left: 0;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.3);
}
.contact-info li a {
  color: #000;
}

.gototop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.gototop.active {
  opacity: 1;
  visibility: visible;
}
.gototop a {
  width: 50px;
  height: 50px;
  display: table;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.gototop a i {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
}
.gototop a:hover, .gototop a:active, .gototop a:focus {
  text-decoration: none;
  outline: none;
}

.btn {
  margin-right: 4px;
  margin-bottom: 4px;
  font-family: "Josefin Sans", Arial; 
  font-size: 20px;
  font-weight: 400;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  background: #202020;
  color: #fff;
  border: 2px solid #aaa8d4;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #444444 !important;
  border-color: #a6a6a6 !important;
}
.btn-primary.btn-outline {
  background: transparent;
  color: #aaa8d4;
  border: 2px solid #aaa8d4;
}
.btn-primary.btn-outline:hover, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:active {
  background: #a98166;
  color: #fff;
}

.btn.with-arrow {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.with-arrow i {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.btn.with-arrow:hover {
  padding-right: 50px;
}
.btn.with-arrow:hover i {
  color: #fff;
  right: 18px;
  visibility: visible;
  opacity: 1;
}

.row-pb-md {
  padding-bottom: 4em !important;
}

.row-pb-sm {
  padding-bottom: 2em !important;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.col-padding {
  padding: 6px !important;
  margin: 0px !important;
}

.fh5co-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/loader.gif) center no-repeat #fff;
}

.js .animate-box {
  opacity: 0;
}

#impressum, #dse {
  padding-top: 20px;           
}

#impressum h2, #dse h2 {
  color: #aaa8d4; 
}



