
:root {
    --fullheight: 100vh;
    --signal-color: #E58D00;
    --dark-color: #2D2B20;
    --text-size-medium: 19px;
}

*,
body,
html {
	padding: 0;
	margin: 0;
	text-decoration: none;
	box-sizing: border-box;
}
html {
    scrollbar-gutter: stable;
    font-family: 'Hanken Grotesk', sans-serif; 
}
a {
  text-decoration: none;
  color: inherit;
}




/*************************** hero ***************************/


.hero {
    position: relative;
    height: var(--fullheight);
    width: 100%;
    overflow: hidden;
    background: black   ;
}
.hero-video-wrapper {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#hero-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

}

#hero-video {
    opacity: 0;
    transition: opacity 2s;
}
.logo_img {
    width: 100%;
}
.hero-overlay {
    position: absolute;
    /* background: linear-gradient(0deg,rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 100%); */
    background: none;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 75%;
    padding: 120px 5vw;
    color: white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   /* Child am unteren Rand */
    align-items: start; 
}


h1 {
  font-weight: 300;
  font-size: 32px;
}
h2 {
    font-weight: 300;
    font-size: 19px;
}
.title_with_padding {
    padding-bottom: 48px;
}
.vert_margin_s {
    margin-top: 24px;
}

.input_wrapper {
    position: relative;
}
.button_circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    clip-path: inset( 5px 5px 5px calc( 100% - 43px) round 19px );
}
.button_circle:hover {
    cursor: pointer;
}

input {
    position: relative;
    width: 280px;
    height: 48px;
    padding-left: 20px;
    padding-right: 80px;
}

/* input.valid { 
    border-color: green; 
}
input.invalid { 
    border-color: red; 
} */

.button_round {
    border: none;
    outline: none;
    background: none;    
    font-weight: 300;
    font-size: var(--text-size-medium);
    border-radius: 9999px;
}
.orange_background {
    background-color: var(--signal-color);
    color: rgb(255, 255, 255);
}

.arrow_svg {
    position: absolute;
    top: 9px;
    right: 9px;
}
.arrow {
    fill: none;
}
.arrow-effect .arrow {
    transition: none;
}
.arrow-effect:hover .arrow {
    animation: arrow-anim 2s linear infinite;
}
@keyframes arrow-anim {
    0%   {transform: translate(0px)}
    15%  {transform: translate(36px)}
    100%  {transform: translate(36px)}
}


::placeholder {
    font-weight: 300;
    font-size: var(--text-size-medium);
    color: rgb(255, 255, 255);
    opacity: 0.6; /* Ensures full opacity in Firefox */
}


button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#message { 
    font-weight: 300;
    font-size: var(--text-size-medium);
    color: rgb(255, 255, 255);
}
/* .ok { color: green; }
.error { color: red; } */

#loader {
    display: none;
    margin-top: 10px;
}