@charset "UTF-8";
/* -- CSS Document -- */
/* --	# author      Julian Heinicke -- */
:root {
  --hue-1: #f3dfed; /* -- Bilder bg -- */
  --hue-2: #E0FAF7; /* -- Blop grün -- */
  --hue-3: #CBF3FA; /* -- Blop turquise -- */
  --hue-4: #B2DCF9; /* -- Blop blau -- */
}

/* josefin-sans-200 - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 200;
  src: url('./fonts/josefin-sans/josefin-sans-v32-latin-200.woff2') format('woff2');
}
/* josefin-sans-200italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Sans';
  font-style: italic;
  font-weight: 200;
  src: url('./fonts/josefin-sans/josefin-sans-v32-latin-200italic.woff2') format('woff2');
}
/* josefin-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/josefin-sans/josefin-sans-v32-latin-regular.woff2') format('woff2');
}
/* josefin-sans-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Sans';
  font-style: italic;
  font-weight: 400;
  src: url('./fonts/josefin-sans/josefin-sans-v32-latin-italic.woff2') format('woff2');
}
/* josefin-sans-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/josefin-sans/josefin-sans-v32-latin-600.woff2') format('woff2');
}
/* josefin-sans-600italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Sans';
  font-style: italic;
  font-weight: 600;
  src: url('./fonts/josefin-sans/josefin-sans-v32-latin-600italic.woff2') format('woff2');
}
/* josefin-slab-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Josefin Slab';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/josefin-slab/josefin-slab-v27-latin-regular.woff2') format('woff2');
}

/* -- text markierungs farben -- */
::-moz-selection {
  color: var(--bs-light);
  background: var(--bs-primary);
}
::selection {
  color: var(--bs-light);
  background: var(--bs-primary);
}

/* -- browser reset -- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth !important;
  width: 100vw !important;
}
body {
  position: relative;
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 400;
  background-image: url('../img/main-bg.jpg');
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
body::-webkit-scrollbar {
  display: none !important;
}

/* -- Helpers-- */
.btn-primary {
  background-color: transparent;
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
  padding: 7px 17px 6px 17px;
  border-radius: 80px;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .btn-primary { 
    padding: 10px 28px 9px 28px;
    
  }
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  color: #f7f7f7;
}

p {
  font-size: 0.85rem;
}
.small {
  font-size: 12px;
}
.lead {
  font-size: 1.125rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .lead {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .lead {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.rounded-5 {
  border-radius: 1.5rem;
}
.overflow-clip {
  overflow: clip;
}

.z-4 {
  position: relative;
  z-index: 4;
}
.z-5 {
  position: relative;
  z-index: 5;
}
.z-6 {
  position: relative;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}

/* -- Side Nav -- */
.side-nav {
  right: 1rem;
  z-index: 9;
}
.side-nav-buttons {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--bs-primary);
  border-radius: 50%;
}
.side-nav-buttons h4 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .side-nav-buttons {
    width: 3rem;
    height: 3rem;
  }
  .side-nav-buttons h4 {
    font-size: 1.25rem;
  }
}
.side-nav-buttons:hover, .side-nav-buttons:active, .side-nav-buttons:focus {
  border: 1px solid var(--bs-dark);
}


/* -- Menu -- */
.menu {
  height: 0%;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden !important;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  gap: 0.5em;
  background: linear-gradient(-45deg, #F3DFED, #FF4CD5, #53346F);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;                  
  animation: gradient 15s ease infinite;
}

@-webkit-keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.menu a, footer a {
  text-decoration: none;
}
.menu-button {
  top: 1rem;
  right: 1rem;
  z-index: 11;
  width: 1.5rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-icon {
  width: 1.5rem;
  height: 1rem;
  cursor: pointer !important;
}
#menu-icon span {
  height: 0.125rem;
  border-radius: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#menu-icon span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#menu-icon span:nth-child(2) {
  top: 1rem;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#menu-icon span:nth-child(3) {
    top: 0.5rem;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#menu-icon.menu-button-open span:nth-child(1) {
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}
#menu-icon.menu-button-open span:nth-child(2) {
  -webkit-transform: rotate(-43deg);
  -moz-transform: rotate(-43deg);
  -o-transform: rotate(-43deg);
  transform: rotate(-43deg);
  top: 1rem;
}

#menu-icon.menu-button-open span:nth-child(3) {
  width: 0%;
  opacity: 0;
}

/* -- menu text -- */
.menu-text {
  font-size: 2.1rem;
  -moz-transform: rotate(-90deg) translate(-2.5rem, 5px);
  -webkit-transform: rotate(-90deg) translate(-2.5rem, 5px);
  -o-transform: rotate(-90deg) translate(-2.5rem, 5px);
  -ms-transform: rotate(-90deg) translate(-2.5rem, 5px);
  transform: rotate(-90deg) translate(-2.5rem, 5px);
}

.logo-menu {
  width: 500px;
  height: auto;
}
.zahn-line {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .zahn-line {
    width: 200vw;
    transform: translate(-25%, 0);
  }
}

/* -- Links -- */
a {
  text-decoration: none;
  text-shadow: none !important;
}
.link-underline {
  position: relative;
  color: var(--bs-light);
}
.link-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: var(--bs-dark);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.link-underline:hover, .link-underline:active, .link-underline:focus {
  color: var(--bs-dark) !important;
}
.link-underline:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}


/* -- Footer Links -- */
.footer-container {
  /* top | right | bottom | left */
  padding: 7rem 3.25rem 0rem 2rem;
}
@media screen and (min-width: 992px) {
  .footer-container {
    padding: 0;
  }
}


/* -- Animations -- */
.anim-pulse {
  transform: scale(1);
  animation: anim-pulse 2s infinite
}
.anim-pulse-slow {
  transform: scale(1);
  animation: anim-pulse 2.5s infinite
}
@keyframes anim-pulse {
  0% {
      transform: scale(.95)
  }
  50% {
      transform: scale(1)
  }
  to {
      transform: scale(.95)
  }
}
.wobble-slow,.anim-wobble-slow {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  animation: wobble ease-in-out 2.3s infinite alternate
}
.wobble,.anim-wobble {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  animation: wobble ease-in-out 1.2s infinite alternate
}
@keyframes wobble {
  0% {
      transform: rotate(7deg)
  }
  50% {
      transform: rotate(-7deg)
  }
  to {
      transform: rotate(7deg)
  }
}


/* -- Sections -- */
.section-size {
  /* top | right | bottom | left */
  padding: 6rem 3.25rem 0rem 2rem;
}
.content-container {
  /* top | right | bottom | left */
  padding: 0rem 3.25rem 0rem 2rem;
}
@media screen and (min-width: 992px) {
  .section-size {
    min-height: 65vh !important;
    padding: 0;
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }
  .content-container {
    /* top | right | bottom | left */
    padding: 0rem;
  }
}

section:focus-visible {
  outline: none;
}
@media screen and (max-width: 767px) {
  .display-1 {
    line-height: 0.8 !important;
    font-size: calc(1.625rem + 4vw);
  }
}
.section-text {
  z-index: 4 !important;
}
.image-container {
  width: 80%;
  margin: auto;
  height: max-content;
  container-type: inline-size;
  container-name: image-container;
}
@media screen and (min-width: 778px) {
  .image-container {
    width: 100%;
  }
}
@container image-container (min-width: 100px) {
  .bild-container, .color-container {
    overflow: clip;
    border-radius: 1.5rem;
    width: 100cqw;
    height: 120cqw;
  }
  .bild-container {
    z-index: 2;
  }
  .color-container {
    background-color: var(--hue-1);
    z-index: 1;
  }
}



.ul-icon {
  list-style-image: url('../favicon-16x16.png');
}


/* -- Kompetenzen -- */
#kompetenzen .carousel-indicators {
  margin-bottom: -2rem;
}
#kompetenzen .carousel-control-prev, #kompetenzen .carousel-control-next {
  width: 10%;
}
#kompetenzen .carousel-control-prev {
  left: -6rem;
}
#kompetenzen .carousel-control-next {
  right: -6rem;
}

/* Hide honeypot field completely from human view */
#website {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}