/*-----------------------------------------------
| style.css                                      |
|                                                |
| release: 16.06.2023                            |
| � intellisys.io                                |
------------------------------------------------*/

:root {

    --font-primary: Fira Sans, Segoe UI, sans-serif, Arial;

    --font-size-Xlarge: 50px;
    --font-size-large: 30px;
    --font-size-normal: 20px;
    --font-size-small: 14px;

    --font-size-hero-h1: 120px;
    --font-size-hero-name: 20px;

    --font-size-h1: 50px;
    --font-size-h2: 30px;

    --color-red: #d53b3b;

    --color-primary: #007642;
    --color-primary: #004873;


}

@font-face {
    font-family: "Fira Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/Fira-Sans.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


body {

    font-family: var(--font-primary);
    background: #FFFFFF;
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
    min-width: 300px;

}

img {
    border: 0px;
}

h1,
h2,
h3,
p {
    margin: 0;
}


/*<InfoBar - DevMode>*/
#InfoBar_DevMode {

    display: flex;
    font-size: var(--font-size-small);

}

.InfoBar_DevMode_Item {
    margin: 10px;
}

/*</InfoBar - DevMode>*/


/*<InfoBar - NoJs>*/
#InfoBar_NoJs {
    display: flex;
    font-size: var(--font-size-small);
    background-color: #e9c46a;
}

.InfoBar_NoJs_Item {
    margin: 10px;
}

/*</InfoBar - NoJs>*/


.MainMnu {

    display: none;

    position: fixed;
    z-index: 500;
    width: 100%;

    font-size: var(--font-size-normal);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);

}

.MainMnuItemWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.MainMnuItem {
    padding: 30px 30px;
    cursor: pointer;
}


.MobiMnu {

    display: none;

    display: flex;
    flex-direction: column;

    position: fixed;
    z-index: 500;
    width: 100%;

    font-size: var(--font-size-normal);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);

}

.MobiMnuItemWrapper {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    margin-bottom: 60px;
}

.MobiMnuHamItem {
    padding: 30px;
    cursor: pointer;
}

.MobiMnuItem {
    padding: 20px 0px;
    cursor: pointer;
    text-align: center;

}


.MobiMnuItemWrapper2 {
    display: flex;
    align-items: center;
    justify-content: end;
}





/* 

.jarallax-keep-img {
    position: relative;
    z-index: 0;
}

.jarallax-keep-img>.jarallax-img {
    position: relative;
    display: block;
    max-width: 100%;
    height: auto;
    z-index: -100;
    opacity: 0;
} */


/* demo styles */
*,
*:after,
*:before {
    box-sizing: border-box;
}

body {

    font-family: var(--font-primary);
    font-size: var(--font-size-normal);
    margin: 0;
    line-height: 1.5;
    color: #fff;
    background-color: var(--color-primary);

}

/* 
h1,
h2,
h3 {
    color: #f3f4f6;
} */

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

p {
    margin-top: 0;
    margin-bottom: 5px;
}

p~p,
p~div {
    margin-top: 15px;
}

/* 
small {
    font-size: 80%;
    opacity: 0.6;
} */

a,
a:visited,
a:hover,
a:focus {
    color: inherit;
}

a:hover,
a:focus {
    color: var(--color-red);
}

.jarallax {
    min-height: 600px;
}

.jarallax-keep-img.demo-float-left {
    margin-right: 15px;
    margin-left: -60px;
}

.jarallax-keep-img.demo-float-right {
    margin-left: 15px;
    margin-right: -60px;
}

@media screen and (max-width: 600px) {

    .jarallax-keep-img.demo-float-left,
    .jarallax-keep-img.demo-float-right {
        margin-right: 0;
        margin-left: 0;
        float: none;
    }
}



/* hero block */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    height: calc(100vh - 220px);
}

.hero h1 {

    font-size: var(--font-size-hero-h1);
    font-size: clamp(40px, 15vw, 130px);
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1;
    font-weight: 300;

}

.hero.jarallax>.jarallax-img img,
.hero.jarallax>.jarallax-container img {
    filter: blur(15px);
}

.hero-name {

    font-size: var(--font-size-hero-name);
    font-size: clamp(14px, 3vw, 26px);
    font-weight: 300;
    letter-spacing: 1.1em;
    letter-spacing: clamp(1em, 2vw, 1.1em);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero+.demo-gap {
    min-height: 230px;
}


/* .jarallax>.jarallax-img,
.jarallax>.jarallax-container,
.jarallax-keep-img>.jarallax-container {
    opacity: 0.7;
} */

/* buttons */
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

*+.buttons {
    margin: 40px;
}



.button {
    flex: 1 1 300px;
    /* Mindestbreite 300px, aber flexibel erweiterbar */
    text-align: center;
    font-size: var(--font-size-normal);
    padding: 12px;
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-decoration: none;

    /* display: inline-block;
    font-size: var(--font-size-normal);
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    min-width: 300px;
    background-color: #fff;
    color: #000;
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
    background-color: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);

    cursor: pointer; */
}

.button:hover,
.button:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px #fff;
}


.MapImg {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid white;
    cursor: pointer;
}

.noscroll {
    overflow: hidden;
}


#startContainer {
    display: flex;
    width: 950px;
    gap: 20px;
}



/* gap */
.gap {
    padding: 50px;
    overflow: hidden;
}

.gap h1,
.gap h2,
.gap h3 {
    text-align: center;
}

.gap .container {
    max-width: 1400px;
    margin: 0 auto;


}

/* Demo Content */
.content {
    padding: 80px;
}



.ContainerCaption {
    display: flex;
    justify-content: center;
}

.defaultContainer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
}

.defaultTextContent {
    width: 800px;
    margin-left: 50px;
}

.defaultTextCaption {
    font-size: var(--font-size-Xlarge);
    max-width: 800px;
}


.respoTextCaption {
    font-size: var(--font-size-Xlarge);
    max-width: 800px;
}




@media screen and (max-width: 1000px) {


    #MainMnu {
        display: none;
    }

    #MobiMnu {
        display: block;
    }

    #startContainer {
        flex-direction: column;
        width: auto;
        gap: 0;
    }


}


@media screen and (max-width: 850px) {

    #imagefirstHero {
        content: url("img/hero_small.jpg");
    }


    #imageHero {
        content: url("img/hero_small.jpg");
    }

    #imageFluggastrecht {
        content: url("img/fluggastrecht_small.jpg");
    }

    #imageReiserecht {
        content: url("img/reiserecht_small.jpg");
    }

    #imageBetreuung {
        content: url("img/betreuung_small.jpg");
    }


    #imageInsolvenzberatung {
        content: url("img/insolvenzberatung_small.jpg");
    }

    #imageEnd {
        content: url("img/bremenueb_small.jpg");
    }

    #imageSkyline {
        display: none;
    }

    .defaultTextContent {
        width: 100%;
        margin-left: 0px;
    }


}


/* Mobile */
@media screen and (max-width: 500px) {
    .gap {
        padding: 50px 20px;
    }

    .respoTextCaption {
        font-size: var(--font-size-large);
    }

}





@media print {
    #jarallax-container-0 {
        display: none !important;
    }
}






/* <Sonstiges> */

.Line_Head {
    background-color: rgb(240, 240, 240);
    height: 3px;
}

.Line_Black {
    background-color: #000000;
    height: 1px;
}

.Line_Gray {
    background-color: rgb(240, 240, 240);
    height: 1px;
}


/* </Sonstiges> */