
/* Navbar CSS*/

body {
    margin: 0px;
    /*background-color: #1e9ee9;*/
}

/* Link gestalltung */
a:link {
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    background-color: transparent;
    text-decoration: underline;
    text-decoration-color: #FFD53D;

}




/* Button bzw. Links fuer Navbar*/

.btn-style {
    position: absolute;
    right: 32px;
}

.logo {
    height: 150px;
    margin-top: 0px;
    margin-bottom: 10px;
    margin-left: 15px;
}

@media (max-width: 700px) {
    .logo {
        height: 20px;
    }
}

.logo-div {
    position: absolute;
    top: 40px;
    left: 24px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: none;
    height: 100px;

}

.navbar-1 {
    display: flex;
    align-items: top;
    justify-content: space-between;
    background-color: none;
    height: 100px;
    position: absolute;
    top: 40px;

}

.btn-navbar {
    margin-right: 2px;
    margin-left: 2px;
    text-decoration: none;
}

.btn-normal {
    height: 80px;
    color: black;
    background-color: #0056b3;
    border: none;
    width: 80px;
    font-family: 'Inter Tight';
    font-weight: 600;
}

.btn-navbar:hover {
    background-color: #0056b3;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.btn-login {
    list-style: none;
    margin: 15px;
    font-size: x-large;
    color: #000;
    list-style: none;
}

.btn-eintrag {

    border: none;
    color: white;
    list-style: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.14), 0 17px 50px 0 rgba(0, 0, 0, 0.09);
    height: 70px;
    width: 200px;
    background: beige;
    border: none;
    color: #000;
    border-radius: 5px;
    font-family: trajan;
    
}

@media (max-width: 1360px) {
    .btn-eintrag {
        height: 40px;
        width: 180px;
        font-size: 16px;
    }
}

@media (max-width: 1225px) {
    .btn-eintrag {
        height: 40px;
        width: 180px;
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .btn-eintrag {
        height: 45px;
        width: 90px;
        font-size: 16px;
    }
}

.btn-eintrag:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
}

/*Container for Navbar positions*/

.navbarlinks {
    justify-content: center;
    display: flex;
    align-items: center;
    top: 0px;
    right: 12px;
    background-color: none;

}

.navbarlinks-1 {
    position: absolute;
    top: 22px;
    right: 12px;
    background-color: none;


}


@media (max-width: 610px) {
    .navbarlinks-1 {
        background-color: #000;

    }
}

.navbar-style {
    list-style: none;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 22px;
    color: #fff;

}

@media (max-width: 1360px) {
    .navbar-style {
        font-size: 22px;
    }
}

@media (max-width: 1225px) {
    .navbar-style {
        font-size: 18px;
    }
}

@media (max-width: 1145px) {
    .navbar-style {
        font-size: 16px;
    }
}

@media (max-width: 610px) {
    .navbar-style {
        font-size: 16px;
        display: flex;
      
        justify-content: center;
    }
}


@media(max-width: 610px) {
    .navbar-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
}

/* Login seite */
.body {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(Img/iStock-948893840.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    flex-direction: column;
    
}


.wrapper {
    width: 420px;
    background-color: transparent;
    color: #fff;   
    border-radius: 10px;
   
    padding: 30px 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

@media (max-width: 700px) {
    .wrapper {
        width: 210px;
    }
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
    
}

.input-box input {
    width: 98%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
  
  
}

.input-box input::placeholder {
    color: #fff;
}

.wrapper .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forgot label input {
    accent-color: #fff;
    margin-right: 3px;
}

.remember-forgot a {
    color: #fff;
text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}
.btn {
    width: 100%;
    height: 45px;
    background: #beige;
    border: none;
    outline: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;

}

.wrapper .register-link {
    font-size: 14.5px;
text-align: center;
margin-top: 20px;
}

.wrapper .input-box i {
    position: absolute;
    right: 15px;
    top: 20px;
}

.register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;

}

.register-link p a:hover {
    text-decoration: underline;
}


/* Footer CSS */

footer {
    margin: 0px;
}
.footerschrift-headline {
    font-style: none;
    font-size: 46px;

  }

  .footerschrift-text {
    font-style: bold;
    font-size: 18px;

  }
  
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: blue;
    height: 32px;

    
}

body footer div ul li {
    display: inline;
    margin: 8px;
}


body footer div ol li {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 8px;
    width: 50wv;
}

/*
.footer-data {
    display: flex;
   align-items: center;
   font-size: 16px;
}
*/


.list-width {
    width:50%;
}

.footeraufteilung {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 0px;
}

.container-faq {
    display: flex;
    justify-content: center;
    align-self: center;
    background-color: none;
}

.container-side-by-side-txt {
    display: table-cell;
    padding-bottom: 24px;
}

.background.faq {
    background-color: rgb(113, 34, 34);
}

.footerbgc {
    background-color: #FFD53D;
}





*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    --color1: #FFF ;
    --color2: #181818 ;
}
.nav-bar-footer {
    height: 44px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color2);
    padding: 12px 20px;
}
.logo-footer img {width: 40px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color1);
    transition: 0.15s ease-in-out;
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color: var(--color1);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}
#check {display: none;}
@media(max-width: 610px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.2s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
}

/*
@media (min-width: 700px) {
    .navbar-style {
        display: list-item;  Hier wird der Stil auf 'list-item' geändert, um den Button anzuzeigen 
    }
}
*/

@media (min-width:700px) {
    .navbar-invis{
        display: none;
    }
}
