/* Fonts */

/* inter-tight-300 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-tight-v9-latin-300.woff2') format('woff2'); 
}
/* inter-tight-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-tight-v9-latin-regular.woff2') format('woff2');
}
/* inter-tight-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/inter-tight-v9-latin-italic.woff2') format('woff2');
}
/* inter-tight-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-tight-v9-latin-600.woff2') format('woff2'); 
}
/* inter-tight-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-tight-v9-latin-700.woff2') format('woff2'); 
}
/* inter-tight-900 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/inter-tight-v9-latin-900.woff2') format('woff2'); 
}


/* Farbpalette */
:root {
  --weiss:       #FFFFFF;
  --snow:        #F5F5F5;
  /*--hgrau:       #E9E9E9;*/
  --hgrau:       #e2e2e2;
  --grau:        #686868;
  --schwarz:     #222222;
  --schwarz80:     #22222299;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--schwarz);
    scroll-behavior: smooth;
    background-color: var(--hgrau);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    padding-top: 87px;
}
@media screen and (max-width: 992px) {
    body {
        padding-top: 70px;
    }
}

*:focus, .btn.focus, .btn:focus, button:focus {
    outline: 0 none;
    border: 0;
    border-color: transparent;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)!important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)!important;
}
::-webkit-scrollbar {
    width: 6px
}
::-webkit-scrollbar-track {
    background: var(--hgrau);
    border-radius: 0px
}
::-webkit-scrollbar-thumb {
    background: var(--schwarz);
    border-radius: 3px
}
::selection {
    background: var(--schwarz);
    color: var(--snow);
}
::-moz-selection {
    background: var(--schwarz);
    color: var(--snow);
}

a {
    color: var(--schwarz);
    text-decoration: none;
}
a:hover {
    color: var(--grau);
}
figure {
    margin: 0;
    padding: 0;
}
strong, .strong {
    font-weight: 700;
}
.btn {
    font-weight: 500;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
}
h1, .h1, h2, .h2 {
    font-size: 110px;
    line-height: 110px;
}

h3, .h3, h4, .h4, h5, .h5, h6, .h6, .loud {
    font-size: 24px;
    line-height: 29px;
}

.quote {
    font-size: 34px;
    line-height: 48px;
    font-style: italic;
    font-weight: 300;
}

.quote strong {
    font-weight: 600;
}

.hallo {
    font-size: 150px;
    line-height: 150px;
    font-weight: 900;
}

@media screen and (max-width: 992px) {
    h1, .h1, h2, .h2 {
        font-size: 40px;
        line-height: 44px;
    }
    h3, .h3, h4, .h4, h5, .h5, h6, .h6, .loud {
        font-size: 20px;
        line-height: 24px;
    }
    .hallo {
        font-size: 60px;
        line-height: 60px;
    }
    .quote {
        font-size: 24px;
        line-height: 30px;
    }
}

main ul li {
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 25px 25px;
    padding-left: 35px;
    list-style: none;
    margin-left: -2rem;
    line-height: 26px;
}

main .bg-schwarz ul li{
    background-image: url(../images/check-wht.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 25px 25px;
    padding-left: 35px;
    list-style: none;
    margin-left: -2rem;
    line-height: 26px;
}

hr {
    border: 0;
    height: 1px;
    background-image: url(../images/dots.svg);
    background-repeat: repeat-x;
    background-position: center center;
    margin: 2rem 0;
}

.bg-schwarz hr {
    border: 0;
    height: 1px;
    background-image: url(../images/dots-wht.svg);
    background-repeat: repeat-x;
    background-position: center center;
    margin: 2rem 0;
}

.ratio169 {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ratio11 {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ratio45 {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.ratio175 {
    width: 100%;
    aspect-ratio: 100 / 75;
    object-fit: cover;
}

/***********
Hintergrundfarben
************/

.bg-weiss {
    background-color: var(--weiss);
}
.bg-snow {
    background-color: var(--snow);
}
.bg-hgrau {
    background-color: var(--hgrau);
}
.bg-grau {
    background-color: var(--grau);

}
.bg-schwarz {
    background-color: var(--schwarz);
    color: var(--snow);
}

.bg-schwarz a{
    color: var(--weiss);
}
.bg-schwarz a:hover{
    color: var(--snow);
}

/*********
Abstände
**********/
.space-xl-y {
    padding-top: 70px;
    padding-bottom: 70px;
}

.space-xl-t {
    padding-top: 70px;
}

.space-xl-b {
    padding-bottom: 70px;
}

.space-sm-y {
    padding-top: 35px;
    padding-bottom: 35px;
}

.space-sm-t {
    padding-top: 35px;
}

.space-sm-b {
    padding-bottom: 35px;
}

.space-0 {
    padding: 0 !important;
}

@media (min-width: 768px) {
    .space-xl-y {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .space-xl-t {
        padding-top: 100px;
    }

    .space-xl-b {
        padding-bottom: 100px;
    }

    .space-sm-y {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .space-sm-t {
        padding-top: 50px;
    }

    .space-sm-b {
        padding-bottom: 50px;
    }

}

/*********
Buttons
**********/

.btn {
    display: inline-block;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 28px;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.3s ease;
}


.btn-default,
.btn-outline:hover{
    background-color: var(--schwarz);
    border: 1px solid var(--schwarz);
    color: var(--snow);
}
.btn-default:hover,
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--schwarz);
    color: var(--schwarz);
}


.bg-schwarz .btn-default,
.bg-schwarz .btn-outline:hover{
    background-color: var(--snow);
    border: 1px solid var(--snow);
    color: var(--schwarz);
}
.bg-schwarz .btn-default:hover,
.bg-schwarz .btn-outline {  
    background-color: transparent;
    border: 1px solid var(--snow);
    color: var(--snow);
}

.navbar-toggler {
    border: 0px solid transparent;
    border-radius: 0px;
}

/*********
NAV
**********/

header nav .navbar-nav .nav-link,
footer nav  .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--schwarz);
    border-bottom: 1px solid transparent;
}
@media screen and (min-width: 993px) {
    header nav .navbar-nav .nav-link:hover,
    header nav .navbar-nav .active .nav-link,
    footer nav  .nav-link:hover {
        color: var(--schwarz);
        border-bottom: 1px solid var(--schwarz);
        transition: all 0.8s ease;
    }
}

@media screen and (max-width: 992px) {
    .navbar-collapse ul {
        margin-top: 10px;
    }
    .navbar-collapse li:not(:first-child) a{
        background-image: url(../images/dots.svg);
        background-position: center top;
        background-repeat: repeat-x;
    }
    
}


@media (min-width: 992px) and (max-width: 1025px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0px!important;
    }
}

.dots-top {
    background-image: url(../images/dots.svg);
    background-position: center top;
    background-repeat: repeat-x;
    padding-top: 20px;
}

.contact-info a {
    font-size: 12px;
    font-weight: 400;
    color: var(--grau);
}
.contact-info a:hover {
    color: var(--schwarz);
}


.profile-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 5px;

}

.profile-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--grau);
    opacity: 0.8;
}
.profile-icon:hover {
    opacity: 1;
}
/* Tooltip */
.profile-icon-wrapper::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%; /* oberhalb des Icons */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.75);
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10;
}

/* Pfeil unten */
.profile-icon-wrapper::before {
    content: '';
    position: absolute;
    bottom: 88%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0,0,0,0.75) transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.2s;
}

/* Hover Desktop */
.profile-icon-wrapper:hover::after,
.profile-icon-wrapper:hover::before,
.profile-icon-wrapper.show-tooltip::after,
.profile-icon-wrapper.show-tooltip::before {
    opacity: 1;
}


.noPmargin p {
    margin-bottom: 0px;
}



.f-carousel {
    --f-carousel-slide-width: calc(100% / 1.5);
    --f-carousel-gap: 8px;
}

@media (min-width: 768px) {
  .f-carousel {
    --f-carousel-slide-width: calc(100% / 4);
    --f-carousel-gap: 16px;
  }
}

/*
.f-carousel__slide:not(.is-selected) {
filter: grayscale(100%);
transition: filter 0.8s ease;
}

.f-carousel__slide.is-selected:hover {
filter: grayscale(100%);
transition: filter 0.8s ease;
}
*/


.f-panzoom__viewport img{
    border-radius: var(--bs-border-radius) !important;
    border: 2px solid var(--grau);
}


.teamtable {
    border-collapse: collapse;
    width: 100%;
}

.teamtable tr {
    background-image: url(../images/dots.svg);
    background-position: center bottom;
    background-repeat: repeat-x;
}

.teamtable th,
.teamtable td {
    padding: 12px 8px;
    text-align: left;
}

.teamtable th {
    font-size: 12px;
    font-weight: 300;
}


@media (max-width: 768px) {

    .teamtable thead {
        display: none;
    }

    .teamtable,
    .teamtable tbody,
    .teamtable tr {
        display: block;
        width: 100%;
    }

    .teamtable tr {
        margin-bottom: 0.5rem;
        padding: 1rem;
        background-image: none;
    }

    .teamtable td {
        display: flex;
        width: 100%;
        padding: 0.25rem 0;
        border: none;
        align-items: flex-start;
        gap: 0.5rem;
        background-image: url(../images/dots.svg);
        background-position: center bottom;
        background-repeat: repeat-x;        
    }

    .teamtable td::before {
        content: attr(data-label);
        font-weight: 600;
        min-width: 90px;
    }

    .teamtable tr td:last-child {
        display: none;
    }

    /* Profilbild schöner darstellen */
    .teamtable td[data-label="Profil"] img {
        margin-bottom: 10px;
    }

    .teamtable td[data-label="Profil"]::before {
        display: none;
    }

    /* Button linksbündig auf Mobile */
    .teamtable td[data-label="Details"] {
        justify-content: flex-start;
    }
}




.logo-section img {
    opacity: 0.7;
    transition: opacity 0.8s ease;
}

.logo-section img:hover {
    opacity: 1;
    transition: opacity 0.8s ease;
}

.card {
    border: 0;
}

.card-img-overlay {
    background-color: var(--schwarz);
}

.card-title {
    margin-bottom: 0;
    position: relative;
    top: 100%;
    transform: translateY(-100%);
}

.projektWoche {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    border: 1px solid var(--schwarz);
}

figcaption.profile-icon-wrapper  a {
    font-size: 14px;
    font-weight: 600;
    color: var(--schwarz);
}


.f-html {
    padding: 0;
}

.fancybox__container[theme=light] {
    --fancybox-color: #222;
    --fancybox-backdrop-bg: #E9E9E9;
    --f-toolbar-color: var(--fancybox-color, #222);
    --f-toolbar-text-shadow: none;
    --f-toolbar-font-weight: 400;
    --f-html-color: var(--fancybox-color, #222);
    --f-html-bg: #fff;
    --f-error-color: #555;
    --f-error-bg: #fff;
    --f-video-bg: #fff;
    --f-caption-color: #333;
    --f-spinner-color-1: rgba(0, 0, 0, .2);
    --f-spinner-color-2: rgba(0, 0, 0, .8);
    --f-spinner-border-width: 3.5px;
    --f-progressbar-color: rgba(111, 111, 116, .2);
    --f-button-color: #333;
    --f-button-hover-color: #000;
    --f-button-outline-color: rgba(0, 0, 0, .85);
    --f-button-bg: rgba(255, 255, 255, .85);
    --f-button-svg-stroke-width: 1.3;
    --f-button-svg-filter: none;
    --f-arrow-bg: rgba(255, 255, 255, .85);
    --f-arrow-color: #333;
    --f-arrow-hover-color: #000;
    --f-arrow-svg-stroke-width: 1.3;
    --f-close-button-color: #555;
    --f-close-button-hover-color: #000;
    --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
    --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
    --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000;
}


