@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Source+Sans+3:wght@200;300;400;500;600;700;800;900&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
  outline: none;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-style: normal;
}

html {
  font-size: min(13px + 0.390625vw, 19px);
  scroll-behavior: smooth;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
  html {
    font-size: calc(15px + 0.390625vw);
  }
}
@media (max-width: 576px) {
  html {
    font-size: calc(16px + 0.390625vw);
  }
}
@media screen and (max-width: 576px) and (-webkit-min-device-pixel-ratio: 2), screen and (max-width: 576px) and (min-resolution: 192dpi), screen and (max-width: 576px) and (min-resolution: 2dppx) {
  html {
    font-size: calc(18px + 0.390625vw);
  }
}

body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  padding-top: 5rem;
}

section {
  width: 80%;
  max-width: 55rem;
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 1200px) {
  section {
    display: block;
  }
}
section h1, section h2, section h3, section h4 {
  font-family: "Lato", sans-serif;
  text-align: center;
  font-weight: 800;
}
section h2 {
  margin-bottom: 1.12rem;
}
section h2.section-heading-1 {
  color: #00008c;
  font-size: 1.4rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
section h2.section-heading-1::before {
  content: "";
  width: 8rem;
  height: 0.05em;
  margin-bottom: 0.1em;
  background-color: #00008c;
  z-index: 10;
  text-align: center;
}
section h2.section-heading-2 {
  color: #00008c;
  font-size: 1.4rem;
}
section h3 {
  color: #7E8287;
  font-size: 1.3rem;
  margin-bottom: 1em;
}
section h4 {
  color: #7E8287;
  font-size: 0.8rem;
  margin-bottom: 0.5em;
}
section p {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 300;
  color: #676b70;
  hyphens: auto;
  margin-bottom: 0.8rem;
  text-align: justify;
}
section a {
  cursor: pointer;
}
section a.anchor {
  display: block;
  position: relative;
  top: -6rem;
}

.main-container {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

nav {
  width: 100vw;
  display: grid;
  grid-template-columns: 30% 67% 1rem 5rem;
  grid-template-rows: 5rem;
  align-items: center;
  background: linear-gradient(90deg, rgb(4, 22, 66) 0%, rgb(26, 46, 93) 100%);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
}
nav a.logo:hover {
  background-color: transparent;
}
nav img {
  margin-left: 2rem;
  justify-self: center;
  width: calc(300px + 5rem);
}
nav #nav-check {
  display: none;
}
nav .nav-btn {
  display: none;
}
nav .nav-btn label {
  display: inline-block;
  width: 50px;
  height: 50px;
  padding: 13px;
  color: #ffffff;
  cursor: pointer;
}
nav .nav-btn label:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
nav .nav-btn label span {
  display: block;
  width: 25px;
  height: 10px;
  border-top: 3px solid #ffffff;
}
nav .nav-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav .nav-items a {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  margin: 1rem;
  padding: 2px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.5s;
}
nav .language-selection {
  width: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-self: flex-end;
  margin-right: 1rem;
}
nav .language-selection i {
  color: white;
  height: 1rem;
  width: 1rem;
  margin-right: 0.5rem;
}
nav .language-selection ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
nav .language-selection a {
  font-family: "Lato", sans-serif;
  font-size: 0.7rem;
  color: #ffffff;
  padding: 7px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.5s;
  text-transform: uppercase;
}
nav .language-selection a.active {
  background-color: #ffffff;
  color: #D00000;
}
nav a:hover {
  background-color: #ffffff;
  color: #D00000;
}

@media (max-width: 1400px) {
  nav img {
    width: 300px;
  }
}
@media (max-width: 1200px) {
  nav {
    grid-template-columns: 1fr 5rem;
    grid-template-rows: 5rem auto;
  }
  nav img {
    justify-self: center;
    width: 300px;
  }
  nav .nav-items {
    grid-row: 2;
    grid-column-start: 1;
    grid-column-end: 3;
    justify-self: center;
    justify-items: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-self: start;
    padding-left: 0;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  nav .nav-items a {
    text-align: center;
    width: 12rem;
    height: auto;
    padding: 5px;
    margin: 0.5rem;
  }
  nav .language-selection {
    grid-row: 3;
    grid-column-start: 1;
    grid-column-end: 3;
    margin-bottom: 1rem;
    justify-self: center;
    padding: 0 5px;
    margin: 0 0 1rem 0;
  }
  nav .nav-btn {
    display: block !important;
    justify-self: center;
    align-self: center;
  }
  nav > #nav-check:not(:checked) ~ .nav-items,
  nav > #nav-check:not(:checked) ~ .language-selection {
    display: none;
    height: 0;
    padding: 0;
  }
  nav > #nav-check:not(:checked) ~ .nav-items a,
  nav > #nav-check:not(:checked) ~ .language-selection a {
    opacity: 0;
  }
}
@media (max-width: 440px) {
  nav {
    grid-template-columns: 1fr 6rem;
    grid-template-rows: 5rem auto;
  }
  nav img {
    width: 200px;
    justify-self: left;
    margin-left: 3rem;
  }
}
header {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #010136;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Style the video: 100% width and height to cover the entire window */
}
@media (max-width: 1200px) {
  header {
    display: none;
  }
}
header video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
header .header-title {
  font-family: "Source Sans 3", sans-serif;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  animation: show-title 1.5s ease-in-out 0.5s both;
  z-index: 10;
}
header .header-title #hero-scrolldown {
  margin-top: 4rem;
  color: #FFFFFF;
}
header .header-title h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 0.8em;
}
@keyframes show-title {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.9;
  }
}

/* Section Intro */
#intro-section {
  position: relative;
  padding-top: 7rem;
  height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  #intro-section {
    padding-top: 1rem;
  }
}
@media (max-width: 992px) {
  #intro-section {
    height: auto;
    padding-top: 3rem;
  }
}
#intro-section p {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  #intro-section p {
    margin-bottom: 0.5rem;
  }
}

.reel-container {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  min-width: 80%;
  align-items: center;
  position: relative;
}
.reel-container .plyr--full-ui {
  box-sizing: border-box;
}
.reel-container .plyr {
  flex-shrink: 0;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  min-width: 80%;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
  border-radius: 10px;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 1920px) {
  .reel-container .plyr {
    min-width: 60%;
  }
}
@media (max-width: 1200px) {
  .reel-container .plyr {
    min-width: 100%;
  }
}

/* End Section Intro */
#about-me-section h3 {
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.3rem;
  text-align: left !important;
  align-self: flex-start;
  margin-bottom: 0.5em;
  margin-top: 0;
}
@media (max-width: 1200px) {
  #about-me-section {
    margin-top: 0;
  }
}
#about-me-section .about-me-photo-text-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 992px) {
  #about-me-section .about-me-photo-text-container {
    display: block;
    width: 100%;
  }
}
#about-me-section .about-me-photo-text-container img {
  width: 50%;
  margin-right: 2em;
  align-self: flex-start;
  border-radius: 10px;
}
@media (max-width: 992px) {
  #about-me-section .about-me-photo-text-container img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#about-me-section .about-me-photo-text-container div {
  width: 50%;
}
@media (max-width: 992px) {
  #about-me-section .about-me-photo-text-container div {
    width: 100%;
  }
}

#services-section h3 {
  margin-top: 1.5rem;
}
#services-section img {
  width: 100%;
  margin-bottom: 2rem;
  border: 0.01em solid #b9b9b9;
  padding: 10px;
}
#services-section .banner-container {
  text-align: center;
}

#portfolio-section {
  width: 100vw;
  max-width: 100vw;
}
@media (max-width: 1200px) {
  #portfolio-section {
    width: 80%;
    max-width: 80%;
  }
}

.gallery {
  width: auto;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(6, 16.667%);
  grid-template-rows: 1fr;
  grid-gap: 0.1rem;
  justify-content: center;
  margin: 0 2rem 0 2rem;
  position: relative;
}
@media (max-width: 1920px) {
  .gallery {
    grid-template-columns: repeat(4, 25%);
  }
}
@media (max-width: 1400px) {
  .gallery {
    grid-template-columns: repeat(3, 33%);
  }
}
@media (max-width: 1200px) {
  .gallery {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 50%);
  }
}
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(1, 100%);
  }
}
.gallery .portfolio-item {
  position: relative;
  overflow: hidden;
  width: 99%;
  max-height: 99%;
  transform: scale(0.98);
  transition: all 0.4s;
  border-radius: 5px;
}
.gallery .portfolio-item-overlay {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #02918c;
  height: 40%;
  width: 100%;
  padding: 2rem;
  z-index: 2;
  overflow: hidden;
}
.gallery h3 {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
  z-index: 3;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.2rem;
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
  display: none;
}
.gallery button {
  padding: 1rem;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.1rem;
  display: none;
}
.gallery p {
  width: 90%;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  z-index: 3;
  color: #ffffff;
  font-weight: 400;
  text-indent: 0;
  font-family: "Lato", sans-serif;
  position: absolute;
  opacity: 0;
  margin-bottom: 0;
  font-size: 0.7rem;
  bottom: 0.5rem;
  left: 0.8rem;
}
@media (max-width: 1920px) {
  .gallery p {
    bottom: 1.2rem;
  }
}
@media (max-width: 1400px) {
  .gallery p {
    bottom: 1.2rem;
  }
}
@media (max-width: 992px) {
  .gallery p {
    bottom: 2rem;
    left: 0.5rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .gallery p {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .gallery p {
    bottom: 3.8rem;
    left: 0.5rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .gallery p {
    bottom: 2rem;
    left: 0.5rem;
    font-size: 1rem;
  }
}
.gallery img {
  width: 100%;
  height: 100%;
}

.portfolio-item:hover {
  cursor: pointer;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.portfolio-item:hover p {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.portfolio-item:hover .portfolio-item-overlay {
  opacity: 0.7;
  transition: opacity 0.5s ease-in-out;
}

.glightbox-clean .gslide-title {
  font-size: 1.3rem !important;
  font-family: "Lato", sans-serif !important;
  color: #7E8287 !important;
  font-weight: bold !important;
}
.glightbox-clean .gslide-desc {
  font-size: 1rem !important;
  color: #676b70 !important;
}

#contact-section {
  min-height: 250px;
  margin-bottom: 0;
  border: none;
  padding: 3rem;
  justify-content: flex-start;
}
@media (max-width: 1200px) {
  #contact-section {
    padding: 2rem;
  }
}
@media (max-width: 992px) {
  #contact-section {
    padding: 0;
  }
}
#contact-section .email-link {
  color: #676b70;
  font-weight: 600;
}
#contact-section em {
  font-style: normal;
  font-weight: 600;
}

footer .footer-top {
  font-size: 1rem;
  background-color: #526ca8;
  letter-spacing: 0.1em;
  display: grid;
  grid-template-columns: auto 10rem 15rem;
  grid-template-rows: 10rem;
  justify-items: center;
  align-items: center;
  border: none;
}
@media (max-width: 1200px) {
  footer .footer-top {
    display: none;
  }
}
footer .footer-top h2 {
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.0005em !important;
}
footer .footer-top a {
  color: #f8f8ff;
}
footer .footer-top a:hover {
  text-decoration: underline;
}
footer .footer-top .footer-logo {
  height: 6.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 1;
}
footer .footer-top .footer-logo h2 {
  font-family: "Courier New";
  color: #FFFFFF;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: -0.3em;
}
footer .footer-top .footer-logo p {
  color: #f8f8ff;
  font-size: 1rem;
  line-break: auto;
  text-align: center;
  margin-top: -0.7em;
}
footer .footer-top .rechtliches, footer .footer-top .contact {
  height: 6.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer-top .rechtliches h2, footer .footer-top .contact h2 {
  font-size: 0.7rem;
  margin-bottom: 0.2em;
}
footer .footer-top .rechtliches li, footer .footer-top .contact li {
  font-size: 0.7rem;
  color: #f8f8ff;
}
footer .footer-top .rechtliches {
  grid-column: 2;
}
footer .footer-top .contact {
  grid-column: 3;
}
footer .footer-bottom {
  grid-column: span 4;
  background-color: #080808;
  height: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer-bottom p {
  color: #DCDCDC;
  font-size: 0.8rem;
}
footer .footer-bottom p a {
  margin-left: 1em;
  color: #DCDCDC;
}

#impressum {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#impressum h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
#impressum address {
  font-style: normal;
  font-size: 1rem;
  text-align: center;
  color: #676b70;
}

#privacy-policy {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#privacy-policy h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
#privacy-policy address {
  font-style: normal;
  font-size: 1rem;
  text-align: center;
  color: #676b70;
}

#impressum.main-container {
  margin-top: 0;
  min-height: calc(100vh - 5rem - 10rem - 3rem);
}
#impressum.main-container h2 {
  font-family: "Courier Prime", monospace;
  font-weight: 800;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
#impressum.main-container h3 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
