
:root {
  --lachs: #FB5F6D;
  --lila: #902E67;
  --tuerkis: #21BCB7;
}

body {
  padding: 0;
  margin: 0;
  background: #f9f9f9;
}

.vh-100 {
    height: 100vh;
}

.vh-90 {
    height: 100vh;
}
.vh-80 {
    height: 80vh;
}

.hero {
    background-image: url('../images/1.jpg');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-video-container {
    height: 100vh;
}

.hero-video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    z-index: 2;
}

.section-steps {
    margin: 0 auto;
    width: 70%;
    padding: 15px;box-sizing: border-box;
}

.stepsContainer {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-between;
    width: 100%;
}

.step {
    flex: 0 1 calc(50% - 2em);
    margin-top: 20px;
    text-align: center;
}

.bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.navbar-social {
    padding-left: 4rem;
    padding-right: 4rem;
}

@media only screen and (max-width: 600px) {
  
.navbar-social {
    padding-left: 0rem;
    padding-right: 0rem;
    flex-direction: row !important;
}

.kontakt-container {
    text-align: left !important;
}

}

.bg-red {
    background-color: var(--fs-red);
}

.text-red {
    color: var(--fs-red);
}

/* ------------------------------------------------------ */
/* Input */
/* ------------------------------------------------------ */

input {
    padding: 4px;
    -webkit-appearance: none; 
    -moz-appearance: none; 
}

.inputfield_text_type {
    border-radius: 7px;
    height: 30px;
    font-size: 15px;
    font-weight: 400;
    padding: 0 7px;
    width: 100%;
}

.inputfield_date_type {
    border-radius: 7px;
    height: 30px;
    font-size: 15px;
    font-weight: 400;
    padding: 0 7px;
    width: 250px;
}

.inputfield_select_type {
    border-radius: 7px;
    height: 50px;
    font-size: 15px;
    font-weight: 400;
    padding: 0 7px;
    width: 100%;
}

.inputfield_select_type > option {
    border-radius: 7px;
    height: 50px;
    font-size: 15px;
    font-weight: 400;
    padding: 0 7px;
    width: 100%;
}

.inputfield_textarea_type {
    border-radius: 7px;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
}

input[type=email], 
input[type=number], 
input[type=password], 
input[type=reset], 
input[type=search], 
input[type=tel], 
input[type=text], 
input[type=url], 
select, 
textarea {
    color: #666;
    padding: .75em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
}

input[type=checkbox]
{
    width: 16px;
    height: 16px;
    -webkit-appearance:checkbox;
}

.flexContainerColumn {
    display: flex;
    flex-direction: column;
}

.successMessage {
    width: 100%;
    text-align: center;
    padding: 1rem;
    color: white !important;
    background-color: #66cdaa;
        font-weight: bold;
}

.successMessage p {
    color: white;
}

.errorMessage {
    width: 100%;
    text-align: center;
    padding: 1rem;
    color: white !important;
    background-color: var(--primary);;
}

.errorMessage p {
    color: white;
}

.hideme
{
    opacity:0;
}