/********** Template CSS **********/
:root {
    --primary: #3e9c16;
    --secondary: #FFD600;
    --light: #F0F6FF;
    --dark: #262B47;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 110;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

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

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 16rem 0 0 0;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

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

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.topic {
    margin-top:3em;
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.big-topic {
    margin-top:3em;
    font-size: 30px;
    font-weight: bold;
    color: black;
}

.digatus-color{
    color:#59BB2F
}

.video-loop {
    pointer-events: none;
    width:100%;
    height:auto; 
    padding-left: 5em;
    padding-right: 5em;
      }

@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="video-loop"] {
    pointer-events: none;
    width:100%;
    height:auto; 
    padding-left: 0em;
    padding-right: 0em;
}
}

.checkbox-padding {
    padding-top: 1em;
}

.legal-margin {
    margin-left:10em;
    margin-right:10em
}



@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="legal-margin"] {
        margin-left: 2em;
        margin-right: 2em;
    }
    }
    
.legal-margin-bottom-top {
    margin-bottom: 1em;
    margin-top: 2em;
}

.modern-image {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modern-image:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.45);
}

#scrollBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    width: 4px;
    background-color: #59BB2F;
    z-index: 9999;
}
#scrollIcon {
    position: fixed;
    top: 0;
    left: 15px;
    font-size: 12px;
    color: #59BB2F;
    z-index: 9999;
    transition: all 0.3s ease;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}
@media only screen and (max-width: 768px) {
    #scrollIcon {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    #legacy-software .row {
        flex-direction: column-reverse;
    }
    #prozess .row {
        flex-direction: column-reverse;
    }
}

.no-style {
    color: inherit;
    text-decoration: none;
    display: block;
}
.no-style:hover p {
    color: black;
}

.responsive-image {
    width: 100%;
    max-width: 1500px;
    height: auto;
}

.coloring{
    background: #fff;
}

.container-flow.active{
    padding: 10px 50px;
    position: relative;
    width: 50%;

    animation: movedown 1s linear forwards;
    opacity: 0;
    z-index:100
}
@keyframes movedown{
    0%{
        opacity:1;
        transform:translateY(-30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.container-flow{
    padding: 10px 50px;
    position: relative;
    width: 50%;
    opacity: 0;
    z-index:100
}



.container-flow:nth-child(1){
    animation-delay: 0s;
}
.container-flow:nth-child(2){
    animation-delay: 1s;
}
.container-flow:nth-child(3){
    animation-delay: 2s;
}
.container-flow:nth-child(4){
    animation-delay: 3s;
}
.container-flow:nth-child(5){
    animation-delay: 4s;
}
.container-flow:nth-child(6){
    animation-delay: 5s;
}
.container-flow:nth-child(7){
    animation-delay: 6s;
}


.text-box{

    padding: 20px 20px;
    background: #ffffff;
    position:relative;
    border-radius: 6px;
    border-color: #c6c52c;
    border-style: solid;
    font-size:15px;
    z-index:2;
}

.text-box-h{
    padding: 20px 20px;
    background: #ffffff;
    position:relative;
    border-radius: 6px;
    border-color: #c6c52c;
    border-style: solid;
    font-size:15px;
    z-index:2;
}

.left-container {
    left:0;
}
.right-container{
    left:50%;
}

.container-flow img{
    position: absolute;
    width: 55px;
    border-radius:  50%;
    right: -27px;
    top:32px;
    z-index: 4;

}

.right-container img{
    left: -27px;
}

.timeline::after{
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background:#c3c53c;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 1;
}

.timeline.active::after{
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background:#c3c53c;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 1;
    animation: moveline 4s linear forwards
}
@keyframes moveline {
    0%{
        height: 0;
    }
    100%{
        height:100%
    }
}


.timeline-seven {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}




.timeline-seven::after{
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background:#c3c53c;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 1;
}

.timeline-seven.active::after{
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background:#c3c53c;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 1;
    animation: moveline-seven 7s linear forwards
}
@keyframes moveline-seven {
    0%{
        height: 0;
    }
    100%{
        height:100%
    }
}


.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}

.text-box h2 {
    font-weight: 600;
}

.text-box-h h2 {
    font-weight: 600;
}

.text-box small {
    display: inline-block;
    margin-bottom: 15px;
}

.text-box-h small {
    display: inline-block;
    margin-bottom: 15px;
}

.left-container-arrow{
    height:0;
    width:0;
    position: absolute;
    top:28px;
    z-index:1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #c6c52c;
    right: -15px;
}
.right-container-arrow{
    height:0;
    width:0;
    position: absolute;
    top:28px;
    z-index:1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #c6c52c;
    left: -15px;
}

@media screen and (max-width: 800px) {
    .text-box-h {
        font-size: 13px ;
        margin-left: 2em;
        margin-right: 2em;
    }
}

@media screen and (max-width: 600px) {
    .timeline{
        margin: 5px auto;
    }
    .timeline.active{
        margin: 5px auto;
    }
    .timeline:after{
        left: 42px;
    }

    .timeline.active:after{
        left: 42px;
    }

    .timeline-seven{
        margin: 5px auto;
    }
    .timeline-seven.active{
        margin: 5px auto;
    }
    .timeline-seven:after{
        left: 42px;
    }

    .timeline-seven.active:after{
        left: 42px;
    }

    .container-flow{
        width: 100%;
        padding-left:80px;
        padding-right: 25px;
    }
    .text-box{
        font-size: 13px ;
        margin-left: 2em;
    }


    .text-box small{
        margin-bottom: 10px;

    }
    .text-box-h small{
        margin-bottom: 10px;
    }
    .right-container{
        left:0;
    }
    .left-container img, .right-container img {
        left:0px;
    }
    .left-container-arrow, .right-container-arrow{
        border-right: 15px solid transparent;
        border-left: 0;
        left:15px;
    }
    .container-flow.active{
        padding: 10px 50px;
        margin-left:1em;
        position: relative;
        width:100%;
        animation: movedown 1s linear forwards;
        opacity: 1;
        z-index:100
    }

    @keyframes movedown{
        0%{
            opacity:1;
            transform:translateY(-30px);
        }
        100%{
            opacity: 1;
            transform: translateY(0px);
        }
    }

}



.image-container img {
    max-width: 30%;
    display: block;
}

.arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35%;
    width: 35%;
    margin-left:auto;
    margin-right: auto
}

.responsive-arrow {
    max-width: 100%;
    height: auto;
    width: 35%;
    margin-right: 0;
}


@media (max-width: 992px) {
    .responsive-arrow {
        display: none;
    }
}


@media (max-width: 992px) {
    #install .row > .col-lg-6:first-child {
        order: 2;
    }

    #install .row > .col-lg-6:last-child {
        order: 1;
    }
}


.negative-margin {
    margin-bottom: -3.5em;
}

@media (max-width:600px) {
    .negative-margin {
        margin-bottom:0em;
    }
}

.img-reduced {
    width: 30%;
    max-width: 100%;
    height: auto;
}
@media (max-width:750px) {
    .img-reduced  {
        width: 50%;
        max-width: 100%;
        height: auto;
    }
}


.img-reduced-cloud-example-2 {
    width: 50%;
    max-width: 100%;
    height: auto;
}

@media (max-width:992px) {
    .img-reduced-cloud-example-2 {
        width: 20%;
        max-width: 50%;
        height: auto;
    }
    .handyversion {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width:992px) {
    .computerversion {
        display: none;
    }
}

@media (min-width:992px) {
    .handyversion {
        display: none;

    }
}

@media (max-width:992px) {
    .handyversion-pic-header {
        width: 50%;
        max-width: 50%;
        height: auto;
    }
    .handyversion-dig-header {
        width: 70%;
        max-width: 70%;
        height: auto;
    }
    .handyversion-legacy-header {
        width: 65%;
        max-width: 65%;
        height: auto;
    }
    .handyversion-web-header {
        width: 67%;
        max-width: 67%;
        height: auto;
    }
}

.img-full-size {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.number-size {
    font-size: 27px;
}

.padding-text-box {
    padding:9em;
}
@media (max-width:992px) {
    .padding-text-box {
    padding:2em
    }
}

@media (max-width: 991px) {
    #editor .col-lg-8 {
        order: 2;
    }
    #editor .col-lg-4 {
        order: 1;
    }
}

.text-box-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2em;
    margin-bottom: 3.5em;


}

.pic-box-header{
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2em
}

.b-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    bottom: -25px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #75A638;
}

@media (min-width: 991px) and (max-width: 1199px) {
    .custom-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.disable-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit; /* oder jede andere Farbe, die Sie wünschen */
}
