@charset "utf-8";

.full-hero.layout-relative{
    position: relative;
}
.full-hero.layout-fix{
    top: 0;
    position: fixed;
    z-index: -1;
}
.full-hero{
    width: 100%;
	height: 100vh;
}
.full-hero img{
    width: 100%;
	height: calc(100vh);
	object-fit: cover; 
    object-position: 50%;
    
}
.full-hero-titel.layout-fix{
    position: relative;
}
.full-hero-titel.layout-relative{
    position: absolute;
    top: 0;
    z-index: 1;
}
.full-hero-titel{
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 calc(14vw);
    height: calc(100vh);
}
.full-hero-titel.position-left{
    left: 0;
}
.full-hero-titel.position-right{
    right: 0;
    text-align: right;
}
.full-hero-titel.position-center{
    margin: 0 auto;
    text-align: center;
}
.full-hero-titel h1{
    font-size: clamp(40px, 5.5vw, 120px);
    color: var(--bg-color);
    margin: 0 calc(2vw);
    text-shadow: 0.04em 0.04em 0.07em var(--shadow-color);
}
.full-hero-titel h2{
    font-size: clamp(30px, 2.7vw, 900px);
    color: var(--bg-color);
    margin: 0 calc(2vw);
    text-shadow: 0.04em 0.04em 0.07em var(--shadow-color);
}