/*
Theme Name: Balbachan GmbH
Author: Balbachan
Version: 1.0
Description: Balbachan Theme
*/
/* CSS Reset */
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    overflow-x: hidden;
    position: relative;
}
.container{
    max-width: 1350px;
    margin:0 auto;
    padding:0 15px;
}

@media (min-width:768px){
    .wrapper {
        display: flex;
        flex-wrap: nowrap;
        height: 100vh;
    }
    section {
        flex: 0 0 100%;
        height: 100vh;
    }
}
@media (max-width: 767px){
    section{
        padding:40px 0;
    }
}

.progress-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 80%;
    max-width: 409px;
    font-family: sans-serif;
    color: var(--color-2);
    z-index: 1000;
}
.progress-bar-two{
    color: var(--color-1);
}
.progress-bar .line {
    flex: 1;
    height: 3px;
    background: rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.progress-bar-two .line {
    background: rgba(255,255,255,0.3);
}
.progress-bar .fill {
    height: 100%;
    width: 0%;
    background: var(--color-2);
    transition: width 0.2s linear;
}
.progress-bar-two .fill{
    background: var(--color-1);
}
.progress-bar .current,
.progress-bar .total {
    font-size: 20px;
    min-width: 30px;
    text-align: center;
    font-family: var(--main);
}
.spacer{
    height: 100px;
}
@media( max-width: 767px){
    .wrapper {
        flex-direction: column;;
    }
    body{
        overflow: visible;
    }
    .progress-bar{
        display: none;
    }
    .spacer{
        height: 60px;
    }
}


.internal-content h1, .internal-content h2, .internal-content h3, .internal-content h4{
    margin-bottom: 20px;
}