:root {
    --color-vibrant: #4B2177;
    --color-vibrant-tint: rgba(97, 38 ,158, 0.2);
    --color-muted: #707070;
    --color-muted-tint: rgba(112, 112, 112, 0.5);
    --color-white-tint: rgba(255, 255, 255, 0.8);

    --container-large-max-width: 1640px;
    --container-medium-max-width: 1088px;
    --container-small-max-width: 844px;

    --mobile-width: 95%;

    --responsive-small-mobile: 600px;
    --responsive-max-mobile: 900px;
    --responsive-max-tablet: 1200px;
}

html {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

/*Typo */

h1, h2, h3, h4, h5, h6{
    font-family: 'Montserrat', sans-serif;
    color: var(--color-muted);
    text-transform: uppercase;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

h5, h6 {
    font-weight: 500;
}

h1 {
    font-size: 3rem;
    letter-spacing: .1em;
}

h2 {
    letter-spacing: 4px;
}

h3 {
    letter-spacing: 3px;
}

h4 {
    font-size: 1.2rem;
    letter-spacing: 2.4px;
}

h5 {
    letter-spacing: 1.6px;
}

h6 {
    font-size: .7rem;
    letter-spacing: 1.4px; 
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: .8rem;
    line-height: 1.375;
    letter-spacing: 0.8px;
}

ul {
    font-family: 'Montserrat', sans-serif;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

hr {
    border: 1px solid var(--color-vibrant);
    width: 100%;
}

/* Menu */

.menu {
    position: fixed;
    z-index: 5;
}

.menu .logo {
    width: 250px;
    position: relative;
    top: 60px;
    left: 140px;
    z-index: 5;
}

.checked .logo {
    left: calc(0.05 * 100vw);
}

.nav-toggle {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

.nav-toggle-label {
    position: absolute;
    top: 60px;
    left: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1;
}
  
.nav-toggle-label span {
    background-color: transparent;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    height: 2px;
    width: 15px;
    position: relative;
}
  
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    background: black;
    position: absolute;
    transition: transform 400ms ease-in-out;
}

.nav-toggle-label span::before {
    bottom: 3.5px;
}

.nav-toggle-label span::after {
    top: 3.5px;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: translateY(3.5px) rotate(135deg);
    transition: transform 400ms ease-in-out;
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: translateY(-3.5px) rotate(-135deg);
    transition: transform 400ms ease-in-out;
}

.checked .nav-toggle-label span{
    display: none;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    background: white !important;
    height: 100vh;
    width: 15vw;
    min-width: 350px;
    transform: scale(0, 1);
    transform-origin: left;
    transition: transform 400ms ease-in-out;
    box-shadow: 10px 0px 50px rgba(112, 112, 112, 0.4);
    padding: 0 0 0 calc(0.05 * 100vw);
}

.checked nav {
    box-shadow: none;
    min-width: unset;
}

.nav-toggle:checked ~ nav {
    transform: scale(1,1);
}

.nav-toggle:checked ~ nav a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
}

.menu_container {
    display: grid;
    place-items: normal;
    grid-template-rows: 220px auto max-content;
    height: 100%;
}

.menu_container .home_menu {
    grid-row: 2;
}

.menu_container .home_menu-bottom {
    grid-row: 3;
}

.side-menu a:hover {
    color: var(--color-vibrant);
    text-decoration: none;
}

.menu_container .aktiv {
    color: var(--color-vibrant) !important;
}


.home_menu {
    margin-top: 4vw;
    margin-bottom: auto;
}

.home_menu ul,
.home_menu .uk-accordion,
.home_menu .uk-accordion-title {
    color: var(--color-muted-tint);
    list-style: none;
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: 1.4px;
}

.active,
.active .uk-accordion-title {
    color: var(--color-vibrant);
}

.uk-accordion-title::before {
    display: none;
}

.home_menu li + li {
    margin-top: 40px !important;
}

.home_menu a:hover {
    text-decoration: none;
    color: var(--color-vibrant);
}

.submenu {
    margin: 0 0 20px !important;
    padding-left: 20px;
    list-style-type: none;
}

.submenu li {
    font-size: .6rem;
    position: relative;
    letter-spacing: 1.2px;
}

.submenu li::before {
    content: "–";
    position: absolute;
    left: -20px;
}  

.submenu li + li {
    margin-top: 20px !important;
}

.home_menu-bottom {
    margin: auto 0 50px;
    color: var(--color-muted-tint);
    font-size: .7rem;
    letter-spacing: 1.4px;
}

.home_kontakt a {
    display: block;
    line-height: 2;
}

@media screen and (max-width: 1200px) {
    .checked .nav-toggle-label span{
        display: block;
    }

    .menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        width: -moz-available;
        width: -webkit-fill-available;
        place-items: center;
        padding: 25px;
    }

    .logo-link {
        margin-left: auto !important;
    }

    .menu .logo {
        top: 0;
        left: 0;
        width: calc(50vw - 25px);
        max-width: 250px;
    }

    .nav-toggle-label {
        position: relative;
        top: 0;
        left: 0;
        margin-right: auto;
    }

    nav {
        width: 100vw;
        max-width: 400px;
        padding: 0;
        height: 100vh;
    }

    .menu_container {
        grid-template-rows: 6vh min-content 1fr;
        padding: 25px;
        height: 100%;
    }

    .home_menu {
        margin-top: 15vw;
    }

    .menu_container .home_menu-bottom {
        margin: auto 0 100px;
    }
}


/* Main */

.testcontainer {
    width: var(--mobile-width);
    max-width: var(--container-large-max-width);
    margin: 0 auto;
    height: 5000px;
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.go_up-container {
    position: absolute;
    bottom: 0;
    right: 4vw;
    width: 20px;
    max-width: var(--container-medium-max-width);
    margin: 0 auto;
}

.go_up {
    color: var(--color-muted);
    text-align: right;

}

.go_up-img {
    height: 60px;
}

.foot_nav {
    margin: 0 150px 50px 0;
    color: var(--color-muted-tint);
    font-size: .7rem;
    letter-spacing: 1.4px;
    z-index: 90;
}

.foot_nav-links {
    text-align: right;
}

.footwrapper {
    position:relative;
    width: 100%;
}

.scroll-btn {
    position: absolute;
    right: calc(50% - 20px);
    bottom: 60px;
    mix-blend-mode: exclusion;
}

.header_title-container .scroll-btn {
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
    mix-blend-mode: unset;
}

@media screen and (max-width: 1200px) {
    .header_title-container .scroll-btn {
        transform: scale(.75) translateY(-50%);
        top: calc(50% - 10px);
    }


}

@media screen and (max-width: 800px) {
    .header_title-container .scroll-btn {
        display: none;
    }

    .foot_nav {
        margin: 15px 0;
    }

    .go_up-container {
        display: none;
    }
}

.scroll-img {
    height: 75px;
}

.scroll-img #Rechteck_6 {
    opacity: .5;
}

.scroll-img:hover #Rechteck_7 {
    stroke-dashoffset: 0;
}

.scroll-img #Rechteck_7 {
    stroke-dasharray: 227;
    stroke-dashoffset: 227;
    transition: all .400s ease-in;
    stroke: white;
}

.scroll-img #Linie_9 {
    color: white;
}

.scroll-img:hover #Linie_9 {
    -moz-animation: scrolldown 2s 400ms infinite;
    -webkit-animation: scrolldown 2s 400ms infinite;
    animation: scrolldown 2s 400ms infinite;
}

@keyframes scrolldown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(15px);
    }
    60% {
        transform: translateY(7px);
    }
}

/* Linkfoot */

.linkfoot_container {
    max-width: var(--container-medium-max-width);
    width: var(--mobile-width);
    margin: 150px auto 0;
}

.linkfoot_headline {
    background-color: var(--color-vibrant);
    max-width: var(--container-small-max-width);
    margin: 0 auto;
    padding: 40px 50px;
    text-align: center;
}

.linkfoot_headline h1 {
    color: white;
    letter-spacing: .25em;
    font-weight: 400;
}

.linkfoot_headline h1 span {
    color: white;
    letter-spacing: .06em;
    font-weight: 900;
}

.linkfoot_subline {
    color: var(--color-white-tint);
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .32px;
}

.linkfoot-leistung-container {
    position: relative;
    height: 700px;
}

.linkfoot-leistung {
    max-width:  475px;
    height: 330px;
    position: absolute;
}

.linkfoot-leistung img {
    object-fit: cover;
    height: 330px;
}

.linkfoot-lei-1 {
    top: -21px;
}

.linkfoot-lei-2 {
    top: 50px;
    right: 0;
}

.linkfoot-lei-3 {
    top: 351px;
    left: 20vh;
}

@media screen and (max-width: 1000px) {
    .linkfoot_container {
        margin-top: 40px;
        width: 100vw;
    }

    .linkfoot_headline h1 {
        font-size: 1.2rem;
    }

    .linkfoot-leistung-container {
        display: grid;
        grid-template-columns: 1fr;
        height: auto;
    }

    .linkfoot-leistung {
        position: inherit;
    }

    .linkfoot-leistung .leistungen_images-hover {
        opacity: 1;
    }



    .linkfoot-lei-1,
    .linkfoot-lei-2,
    .linkfoot-lei-3 {
        top: 0;
        left: 0;
        right: 0;
    }
}




/* Home */

.home_intro-video {
    margin: 0 auto;
    max-width: var(--container-large-max-width);
}

.home_intro-video video {
    margin: 60px 0;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.home_main-container {
    margin: 0;
    width: calc(100vw - 160px - 15vw);
    margin-left: auto;
    position: relative;
}

.home_intro {
    height: 50vh;
    display: grid;
    place-items: center;
    max-width: var(--container-large-max-width);
    margin: 0 auto 50px;
}

.home_bighead {
    margin: 0 auto 0 100px;
    font-weight: 400;
    max-width: 750px;
}

.home_bighead span {
    font-weight: 900;
    display: block;
    color: var(--color-vibrant);
}

.home_main-container .foot_nav {
    margin: 0 auto 50px;
    max-width: var(--container-large-max-width);
}



@media screen and (max-width: 1200px) {
    .home_intro-video video {
        margin: 80px 0 30px;
        height: unset;
        width: 100%;
    }

    .home_main-container {
        width: 95%;
        margin: 0 auto;
    }

    .home_intro {
        width: unset;
    }

    .home_bighead {
        font-size: 1rem;
        margin: 0;
        text-align: center;
    }

    .home_bighead span {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto; 
    }

    .foot_nav-links {
        text-align: center;
        text-transform: uppercase;
    }
}

/* Svgs */

.home_svg-topright {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -5;
    overflow: visible !important;
    width: 100%;
    height: 100vh;
}

.home_svg-topright #icon-path {
    fill: var(--color-vibrant);
}

@media screen and (max-width: 1200px) {
    .home_svg-topright {
        display: none;
    }
}


/* Home Leistungen */

.home_leistungen {
    display: grid;
    grid-template-columns: 90% 1fr;
    position: relative;
    max-width: var(--container-large-max-width);
    margin: 0 auto 200px;
}

.home_leistungen-container {
    position: relative;
}

.home_leistungen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}

.home_leistung-container {
    transition: transform 300ms;
}

.home_leistung-container:hover {
    transform: scale(1.05);
}

.home_leistung-container img {
    height: 32vh;
    width: 100%;
    object-fit: cover;
}

.home_leistung-item-1 {
    margin-bottom: 100px;
}

.home_leistung-item-2 {
    margin: auto 100px 0 0;
} 

.home_leistung-item-3 {
    grid-column: 1 / 3;
}

.home_leistung-item-3 img {
    height: 48vh;
}

.home_leistung-item-4 {
    margin: 100px 100px 0 0;
} 

.home_leistung-container a:hover {
    text-decoration: none;
}

.home_leistung-title {
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--color-muted);
    letter-spacing: .1em;
    margin: 15px 0 0;
}

.home_leistung-container a:hover .home_leistung-title {
    color: var(--color-vibrant);
}

.home_leistungen-title-gridwrap {
    overflow: hidden;
}

.home_leistungen-title-lei {
    transform: rotate(-90deg) translateX(-100%);
}

.home_leistungen-title-zu {
    transform: rotate(-90deg) translateX(-70%);

}

.home_leistungen-title-lei span,
.home_leistungen-title-zu span {
    margin-top: 100%;
    color: var(--color-vibrant);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .1em;;
}


.home_leistungen-title-lei span::before,
.home_leistungen-title-zu span::before {
    content: '';
    height: 3px;
    width: 100px;
    background-color: var(--color-vibrant);
    position: absolute;
    right: 115%;
    top: 50%;
    transform: translateY(-50%);
}


@media screen and (max-width: 1200px) {
    .home_leistungen {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .home_leistung-container:hover {
        transform: none;
    }

    .home_leistungen-grid {
        grid-gap: 30px 10px;
    }

    .home_leistung-container img {
        height: 40vw;
    }

    .home_leistung-item-1,
    .home_leistung-item-2,
    .home_leistung-item-4 {
        margin: 0;
    }

    .home_leistung-title {
        font-size: .6rem;
        margin: 5px 0 0;
    }

    .home_leistungen-title {
        position: relative;
        grid-row: 1 / 2;
        transform: none;
        margin: 0 0 25px;
        line-height: 1.5;
        height: auto;
        top: 0;
        width: min-content
    }

    .home_leistungen-title::before {
        width: 30px;
        left: 105%;
    }

    .home_leistungen-title-wrap {
        display: none;
    }
}

/* Home Kunden */
.home_kunden {
    display: grid;
    grid-template-columns: 90% 1fr;
    position: relative;
    max-width: var(--container-large-max-width);
    margin: 0 auto;
}

.home_kunden-link {
    margin-top: 25px;
    text-align: center !important;
    color: var(--color-muted) !important;
}

@media screen and (max-width: 1200px) {
    .home_kunden {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .home_kunden-link {
        display: none;
    }
}

/* Home Call to Action */
.home_cta {
    max-width: var(--container-large-max-width);
    margin: 200px auto;
}

.home_cta-container {
    background-color: var(--color-vibrant);
    max-width: 55%;
    padding: 50px 90px;
    margin-left: auto;

}

.home_cta-content h1 {
    margin-bottom: 140px;
    color: white;
    font-weight: 900;
}

.home_cta-content h1 span {
    font-weight: 400;
    letter-spacing: .25em;
}

.home_cta-link {
    text-align: right;
    color: var(--color-white-tint);
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .02em;
}

.home_cta-link a:hover {
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    .home_cta {
        width: 100vw;
        margin: 0 -2.5% 50px;
    }

    .home_cta-container {
        max-width: 100%;
        padding: 40px 20px 26px 50px;
        margin: 0;
    }

    .home_cta-content h1 {
        font-size: 1.2rem;
        margin-bottom: 60px;
        line-height: 1.3;
    }

    .home_cta-link {
        font-size: .6rem;
    }
}


/* Leistungen */

.leistungen_header-container {
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.leistungen_header-container video {
    z-index: -1;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    pointer-events: none;
}

.leistungen_content-container-medium {
    max-width: var(--container-medium-max-width);
    width: var(--mobile-width);
    margin: 0 auto;
}

.leistungen_content-container-small {
    max-width: var(--container-small-max-width);
    width: var(--mobile-width);
    margin: 0 auto;
}

.leistungen_content-container-large {
    max-width: var(--container-large-max-width);
    width: var(--mobile-width);
    margin: 0 auto;
}

.leistungen_content-medium-text-container-grid {
    margin: 100px 0;
    display: grid;
    grid-template-columns: 31% 1fr;
    grid-gap: 74px;
}

.leistungen_content-medium-text-container {
    margin: 100px 0;
}

.leistungen_full-container {
    width: 100vw;
    object-fit: cover;
}

.leistungen_full-container img {
    width: 100vw;
    object-fit: cover;
}

.leistungen_images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.leistungen_images-full-container {
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.leistungen_images-full-container .uk-slideshow {
    height: 100% !important;
}

.leistungen_images-full {
    position: relative;
}

.leistungen_images-full img{
    object-fit: cover;
    width: 100%;
}

.leistungen_images-hover {
    background-image: linear-gradient(transparent, rgba(0, 0, 0, .3));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 500ms;
    cursor: pointer;
}

.linkfoot-leistung:hover .leistungen_images-hover,
.leistungen_images-full:hover .leistungen_images-hover,
.leistungen-slide:hover .leistungen_images-hover {
    opacity: 1;
    transition: all 500ms;
}

.leistungen_playbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.leistungen_playbtn img {
    width: 10%;
    height: 10%;
    display:block;
    margin:auto;
}

.leistungen_images-hover-caption {
    position: absolute;
    bottom: 20px;
    right: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: .8rem;
    text-align: right;
}

.pfeil-rechts-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pfeil-rechts-container img {
    height: 9px;
}

.leistungen_weitere-container {
    width: var(--mobile-width);
    max-width: var(--container-large-max-width);
    margin: 0 auto;
}

.header_title-container {
    background-color: var(--color-vibrant);
    bottom: 0;
    position: absolute;
    width: 100vw;
}

.header_title h1 {
    padding: 40px 105px 40px 50px;
    color: white;
    margin: 0;
    letter-spacing: .06em;
    word-break: break-word !important;
    font-weight: 900;
}

.header_title h1 span {
    color: white;
    letter-spacing: .25em;
    font-weight: 400;
    font-size: .75em;
}


.embed-container-mac {
    --video--width: 3000;
    --video--height: 2160;

    position: relative;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%); /* 41.66666667% */
    overflow: hidden;
    max-width: 100%;
    background: white;
}

.embed-container-mac iframe,
.embed-container-mac object,
.embed-container-mac embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .header_title h1 {
        font-size: 2rem;
        padding: 20px 0 20px 30px;
    }

    .leistungen_content-medium-text-container-grid {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    .leistungen_images-full-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 800px) {
    .leistungen_header-container {
        height: 70vh;
    }

    .header_title h1 {
        font-size: 1.5rem;
        padding: 10px 0 10px 15px;
    }

    .leistungen_content-medium-text-container-grid {
        overflow: hidden;
    }

    .leistungen-slide .leistungen_images-hover-caption {
        padding-bottom: 20px;
    }

    .slidenav-below .leistungen_images-hover-caption {
        padding-bottom: unset;
    }
}

/* Webdesign */


.embed-container-macbook {
    --video--width: 3200;
    --video--height: 2160;

    position: relative;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%); /* 41.66666667% */
    overflow: hidden;
    max-width: 100%;
    background: white;
}

.embed-container-macbook iframe,
.embed-container-macbook object,
.embed-container-macbook embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.webdesign_below-video {
    background-image: linear-gradient(#e9e8e9, white);
}

.webdesign_last-text-container {
    margin: 100px auto 0;
}

@media screen and (max-width: 1200px) {
    .webdesign_last-text-container {
        margin: 40px auto 0;
    }
}

/* Packungsdesign */

.packungsdesign_container {
    margin-top: 5vw;
}


/* Uber Uns */

.leistungen_content-medium-headline h4 {
    margin-bottom: 40px;
}


.kundenlogos_container-main a:hover {
    text-decoration: none;
}

.kundenlogos {
    border: 1px solid #E6E6E6;
    margin: -0.5px;
}

.kundenlogos img {
    opacity: .5;
    padding: 15px;
}

.kundenlogos:hover img {
    opacity: 1;
    transform: translateY(24px);
    transition: all 400ms ease-in-out;
}


.logocaption {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    font-size: .8rem;
    letter-spacing: 3.2px;
    font-weight: 300;
}

.uber_grunde {
    list-style: none;
    counter-reset: item;
}

.uber_grunde li {
    font-size: .8rem;
    counter-increment: item;
    position: relative;
    margin-left: 75px;
}

.uber_grunde li::before {
    position: absolute;
    content: "0" counter(item);
    color: var(--color-vibrant-tint);
    top: 0;
    left: -125px;
    font-size: 7.5rem;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: .8;
    z-index: -2;
}

.uber_grunde li + li {
    margin-top: 60px;
}

.uber_grunde-titel {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
}

.slider_btn {
    bottom: 40px;
    right: 40px;
    line-height: 0;
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: 1.4px;
    padding: 12px 15px;
    border: 1px solid white;
    color: white;
    background-color: transparent;
}

.slider_btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid transparent;
    transition: all 200ms ease-in;
}

.uk-dotnav>*>* {
    border-color: var(--color-muted);
}

.uk-dotnav>.uk-active>* {
    background-color: var(--color-muted);
}

.slider_btn #Gruppe_14 {
    transform: scale(1,1);
    transition: transform 100ms ease-in;
}

.slider_btn:hover #Gruppe_14 {
    transform: scale(1.3,1);
    transition: transform 100ms ease-in;
}

.slider_btn svg {
    overflow: visible !important;
}

.uberuns_mitarbeiter-container {
    margin-top: 150px;
}

.uberuns_mitarbeiter {
    position: relative;
}

.uberuns_mitarbeiter-hover {
    background-color: var(--color-white-tint);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 300ms;
    padding: 20px;
}

.uberuns_mitarbeiter:hover .uberuns_mitarbeiter-hover {
    opacity: 1;
    transition: all 300ms;
}

.uberuns_mitarbeiter-text {
    font-family: 'montserrat', sans-serif;
    color: var(--color-muted);
    font-size: .8rem;
}

.uberuns_mitarbeiter-text span {
    font-weight: 700;
    display: block;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

@media screen and (max-width: 800px) {
    .slider_btn {
        display: none;
    }

    .uberuns_mitarbeiter-hover {
        padding: 5px;
    }

    .uberuns_mitarbeiter-text {
        font-size: .7rem;
    }
}

/* Netzwerk */

.netzwerk_partner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.netzwerk_partner-container a {
    text-decoration: none;
}

.netzwerk_partner {
    border: 1px var(--color-muted) solid;
    display: grid;
    place-items: center;
}

.netzwerk_partner-beschreibung {
    background-color: #F7F7F7;
    text-align: center;
    padding: 35px 15px;
}

.netzwerk_partner-beschreibung h4 {
    font-size: 1.2rem;
    letter-spacing: .1em;
    color: var(--color-muted);
}

@media screen and (max-width: 1200px) {
    .netzwerk_partner-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 800px) {
    .uber_grunde li::before {
        left: -100px;
    }
}

/* Kontakt */

.kontakt-maincontainer {
    height: 100vh;
    width: 100vw;
    display: inline-block;
}

.kontakt-content-container-container {
    height: 100vh;
    max-width: 1550px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-content-container {
    position: relative;
    height: 75vh;
    width: 100%;
}

.kontakt-map {
    position: absolute;
    width: 75%;
    z-index: -5;
}

.kontakt-content {
    color: white;
    width: 53%;
    z-index: 1;
    background-color: var(--color-vibrant);
    bottom: 0;
    right: 0;
    position: absolute;
    padding: 50px;
}

.kontakt-content h1 {
    color: white;
    font-weight: 900;
    letter-spacing: .06em;
}

.kontakt-content h1 span {
    letter-spacing: .25em;
    font-weight: 400;
}

.kontakt-adressen-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.kontakt-adressen-anschrift-container {
    display: grid;
    grid-template-columns: 40px auto;
    grid-gap: 25px;
}

@media screen and (max-width: 800px) {
    .kontakt-maincontainer {
        height: unset;
        width: unset;
        display: inline-block;
        overflow: hidden;
    }
    
    .kontakt-content-container-container {
        height:  unset;
        display: unset;
    }
    
    .kontakt-content-container {
        height: unset;
        width: 100%;
    }
    
    .kontakt-map {
        position: unset;
        width: 100%;
        min-height: 50vh;
        object-fit: cover;
    }
    
    .kontakt-content {
        width: calc(100% - 50px);
        background-color: var(--color-vibrant);
        position: unset;
        padding: 25px;
        min-height: 50vh;
        text-align: center;
    }
    
    .kontakt-content h1 {
        font-size: 1.5rem;
        max-width: calc(100vw - 50px);
    }
    
    .kontakt-adressen-container {
        grid-template-columns: 1fr;
        grid-gap: 25px;
    }

    .kontakt-adressen-anschrift-container {
        text-align: left;
        margin: auto;
    }
}

/* Basic */

.basic_header {
    max-height: 152px;
}

.basic_header .header_title h1 {
    padding: 40px 50px 40px 105px;
    text-align: right;
}

.basic_content {
    margin-top: 4vw;
}

.basic_content li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: .8rem;
    line-height: 1.375;
    letter-spacing: 0.8px;
}

.basic_content li + li {
    margin-top: 0.5em;
}

@media screen and (max-width: 1200px) {
    .basic_header {
        max-height: 88px;
    }
    
    .basic_header .header_title h1 {
        padding: 20px 15px 20px 10px;
        text-align: center;
    }
}

@media screen and (max-width: 800px) {
    .basic_header {
        max-height: 120px;
    }

    .basic_header .header_title h1 {
        padding: 109px 15px 10px 10px;
    }
}