/********** Template CSS **********/
:root {
    --primary: #FFE468;
    --secondary: #8CC641;
    --light: #F2F2F2;
    --dark: #272630;
}

/* Scroll-based animated objects */
body {
    position: relative;
    overflow-x: hidden;
}

body > *:not(.scroll-objects) {
    position: relative;
    z-index: 10;
}

.scroll-objects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.scroll-paint-brush,
.scroll-paint-roller {
    position: absolute;
    font-size: 80px;
    color: rgba(255, 228, 104, 0.7);
    z-index: 1;
    will-change: transform;
}

.scroll-paint-brush {
    top: 15%;
    right: 8%;
    transform-origin: center center;
}

.scroll-paint-brush.brush-2 {
    top: 65%;
    left: 3%;
    color: rgba(74, 144, 226, 0.7);
    font-size: 65px;
}

.scroll-paint-roller {
    top: 35%;
    left: 12%;
    color: rgba(140, 198, 65, 0.7);
    font-size: 75px;
}

.scroll-droplet {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    z-index: 1;
    will-change: transform;
}

.scroll-droplet.droplet-1 {
    top: 10%;
    left: 18%;
    background: rgba(255, 184, 77, 0.6);
    width: 110px;
    height: 110px;
}

.scroll-droplet.droplet-2 {
    top: 75%;
    right: 15%;
    background: rgba(232, 90, 79, 0.6);
    width: 150px;
    height: 150px;
}

.scroll-droplet.droplet-3 {
    top: 45%;
    right: 25%;
    background: rgba(155, 89, 182, 0.6);
    width: 90px;
    height: 90px;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 35px 0;
    font-size: 18px;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.container-fluid.py-5.bg-hero {
    background: url(../img/Airbrush-image-extender.jpeg) top right no-repeat !important;
    background-size: 100% auto !important;
}

.bg-hero {
    background: url(../img/Airbrush-image-extender.jpeg) top right no-repeat;
    background-size: 100% auto;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.bg-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #191919 100%);
    pointer-events: none;
    z-index: 1;
}

.bg-hero > .container {
    position: relative;
    z-index: 2;
}

.bg-hero-colorful {
    background: linear-gradient(135deg, #FFE468 0%, #8CC641 20%, #4A90E2 40%, #FFB84D 60%, #E85A4F 80%, #9B59B6 100%),
                url(../img/1943483-uhd_3840_2160_25fps-2.webm) top right no-repeat;
    background-size: cover, contain;
}

.hero-video-bg {
    position: relative;
    overflow: hidden;
    background: none !important;
    width: 100%;
}

.hero-video-bg .bg-hero,
.hero-video-bg .bg-hero-colorful {
    display: none !important;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    max-width: 100vw;
    max-height: 100vh;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-video-bg > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .bg-hero {
        background-size: cover;
    }
}

.about-start,
.about-end {
    background: url(../img/about-bg.jpg) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

.service-item,
.contact-item {
    background: url(../img/service.jpg) top center no-repeat;
    background-size: cover;
    transition: .5s;
    min-height: 350px;
    height: 100%;
}

.service-item:hover,
.contact-item:hover {
    background: url(../img/service.jpg) bottom center no-repeat;
    background-size: cover;
}

.service-item[style*="background-image: none"]:hover {
    filter: brightness(0.9);
    background-image: none !important;
}

.service-item .service-icon,
.contact-item .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-item .service-icon div,
.contact-item .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.service-item .service-icon i,
.contact-item .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-item:hover .service-icon div,
.contact-item:hover .contact-icon div {
    background: var(--secondary);
}

.service-item:hover .service-icon i,
.contact-item:hover .contact-icon i {
    color: var(--primary);
}

.service-item a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: 0;
    opacity: 1;
}

a.text-decoration-none {
    color: inherit;
}

a.text-decoration-none:hover {
    color: inherit;
}

a.text-decoration-none .service-item h3 {
    color: var(--dark);
}

.bg-quote {
    background: url(../img/quote.jpg) top right no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-quote {
        background-size: cover;
    }
}

.team-item {
    position: relative;
    margin-bottom: 45px;
}

.team-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.team-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/team.jpg) bottom center no-repeat;
    background-size: cover;
    height: 90px;
    padding: 0 30px;
    right: 45px;
    left: 45px;
    bottom: -45px;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    height: 90px;
    bottom: -45px;
}

.team-social {
    position: absolute;
    transition: .1s;
    transition-delay: .0s;
    opacity: 0;
}

.team-item:hover .team-social {
    transition-delay: .0s;
    opacity: 0;
}

.bg-testimonial {
    background: url(../img/testimonial.jpg) top left no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-testimonial {
        background-size: cover;
    }
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--secondary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 60px;
    height: 60px;
}

.bg-call-to-action {
    background: url(../img/Design\ ohne\ Titel-68.png) top right no-repeat;
    background-size: contain;
}

.bg-footer {
    background: url(../img/footer.jpg) center center no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-call-to-action,
    .bg-footer {
        background-size: cover;
    }
}

/* Service Items gleich groß */
.row.gy-4 .col-lg-4,
.row.gy-4 .col-md-6 {
    display: flex;
}

.service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hintergrundbild Sektionen - abwechselnd links/rechts */
.section-bg-left {
    background: url(/img/frame-2052-20-2-.avif) left center no-repeat;
    background-size: contain;
    position: relative;
    background-attachment: scroll;
}

.section-bg-right {
    background: url(/img/frame-2052-20-2-.avif) right center no-repeat;
    background-size: contain;
    position: relative;
    background-attachment: scroll;
}

.section-bg-right-flipped {
    position: relative;
    overflow: visible;
}

.section-bg-right-flipped::before {
    content: "";
    position: absolute;
    top: 0;
    right: -10vw;
    width: 50vw;
    height: 100%;
    background-image: url(/img/frame-2052-20-2-.avif);
    background-position: right 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scaleX(-1);
    z-index: 0;
    pointer-events: none;
}

.section-bg-right-flipped > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .section-bg-left,
    .section-bg-right,
    .section-bg-right-flipped {
        background-size: cover;
    }
}

/* Icon webfonts – must not inherit body font-family */
.fa,
.fas,
.far,
.fal,
.fab {
    font-family: "Font Awesome 5 Free" !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fab {
    font-family: "Font Awesome 5 Brands" !important;
}

.fas,
.fa {
    font-weight: 900;
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    font-family: bootstrap-icons !important;
}

.service-item .service-icon .bi {
    font-size: 2rem;
    line-height: 1;
}