body {
    cursor: default;
    background-color: rgb(0 0 0 / 5%);
}
/*FONTS--------------------------------------------------------------------*/
h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 0.95;
}
h1.h2-like {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: medium;
    text-transform: uppercase;
    opacity: 0.4;
}
h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: medium;
    text-transform: uppercase;
}
h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: regular;
    text-transform: uppercase;
}
p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
}
ul,
li {
    font-family: 'Ubuntu', sans-serif;
}
p.stronger {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
a {
    color: #000000;
    text-decoration: none;
}
a:hover {
    color: #000000;
    text-decoration: none;
}
ul {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
}
/*BUTTONS--------------------------------------------------------------------*/
.my-button {
    padding: 5px 40px;
    border-radius: 10px;
    background-color: black;
    border-color: unset;
}
.my-button:hover {
    background-color: darkgray;
    border-color: darkgray;
    box-shadow: 0 0 101px rgba(33, 33, 33, .05);
}
#back-up {
    position: absolute;
    bottom: 2px;
}
/*SECTIONS--------------------------------------------------------------------*/
#section-startseite,
#section-ueberuns {
    background-repeat: no-repeat;
    background-size: cover;
}
.my-container {
    position: relative;
    height: 100%;
    display: flex;
}
div#startseite.my-container {
    align-items: flex-end;
}
div#ueberuns.my-container {
    align-items: center;
}
#section-startseite {
    
}
#section-ueberuns {
    background-position: center;
}
.img-mobile{
        display: none;
    }
.img-mobile-2{
        display: none;
    }
/*MENU-BAR--------------------------------------------------------------------*/
#menu {
    position: fixed;
    z-index: 999;
    width: 100%;
}
.menu-bg-grey {
background-color: #F2F2F2;
}
#menu .container .row:first-child {
    justify-content: space-between;
}
.burger {
    margin-top: 25px;
    cursor: pointer;
    margin-bottom: 25px;
    z-index: 9999;
}
.fade-in {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 0.3s;
}
@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.abstand{
    margin-top: 20vh;
}
.mt-80{
    margin-top: 100px;
}
#reload{
   transform-origin: center !important;
}
.spinning{
    -webkit-animation-name: spin;
    -webkit-animation-duration: 600ms;
    -webkit-animation-iteration-count: 1,
    -webkit-animation-timing-function: linear;
    
    -moz-animation-name: spin;
    -moz-animation-duration: 600ms;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
    
    -ms-animation-name: spin;
    -ms-animation-duration: 600ms;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;
    
    animation-name: spin;
    animation-duration: 600ms;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg); }
    to {transform:rotate(360deg); }
}
.spinning-back{
    -webkit-animation-name: spin-back;
    -webkit-animation-duration: 600ms;
    -webkit-animation-iteration-count: 1,
    -webkit-animation-timing-function: linear;
    
    -moz-animation-name: spin-back;
    -moz-animation-duration: 600ms;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
    
    -ms-animation-name: spin-back;
    -ms-animation-duration: 600ms;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;
    
    animation-name: spin-back;
    animation-duration: 600ms;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}
@-ms-keyframes spin-back {
    from { -ms-transform: rotate(360deg); }
    to { -ms-transform: rotate(0deg); }
}
@-moz-keyframes spin-back {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0deg); }
}
@-webkit-keyframes spin-back {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0deg); }
}
@keyframes spin-back {
    from {transform:rotate(360deg); }
    to {transform:rotate(0deg); }
}
/*NAVIGATION--------------------------------------------------------------------*/
#nav {
    height: 100vh;
    width: 100vw;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}
#nav .container .row:first-child {
    justify-content: space-between;
    margin: 0;
}
.logo-nav {
    position: fixed;
    height: 55px;
    margin-top: 15px;
}
#x-icon {
    height: 40px;
    margin-top: 15px;
    cursor: pointer;
}
.menu-link {
    color: #e84fba;
    font-size: 40px;
    display: block;
    position: relative;
    font-weight: 100;
    font-family: 'Ubuntu', sans-serif;
    width: max-content;
}
a.menu-link:hover {
    color: #5c249e;
    font-weight: 800;
}
.x-icon-position {
    display: flex;
    justify-content: flex-end;
}
.vl {
    border-left: 1px solid white;
    height: 135px;
}
.headline-contact {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
}
.subtext-small {
    font-size: 12px;
}
.text-contact {
    font-size: 15px;
    line-height: 1.8;
}
/*NEWSLETTER--------------------------------------------------------------------*/
#email-input {
    border-radius: 10px;
    width: 100%;
    background-color: unset;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    padding: 3px 0px;
    border-color: black;
}
#email-input::placeholder {
    color: black;
    font-size: 14px;
}
input[type="checkbox"]#newsletter {
    border-radius: 0px;
    margin-top: 7px;
}
label.label_newsletter {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Ubuntu';
    margin-bottom: 20px;
    line-height: 0;
}
input[type='email']:focus {
    border: 2px solid #aaa;
}
.checkbox input {
    margin-left: 0px !important;
}
/*FOOTER--------------------------------------------------------------------*/
.footer-links {
    font-size: 10px;
    letter-spacing: 1px;
}
.footer-link-space {
    margin-right: 20px;
}
.footer-box {
    position: absolute;
    right: 20px;
    bottom: 0;
}
.footer-box-relative {
    position: relative;
    right: 0px;
    bottom: -13px;
    width: fit-content;
    float: right;
}
/*AGB,IMPRINT & PRIVACY--------------------------------------------------------------------*/
#datenschutz h2,
#impressum h2,
#agb h2 {
    margin-top: 30px;
}
#agb h3 {
    margin-top: 20px;
}
#datenschutz li {
    font-size: 14px;
}
/*MEDIA QUERY--------------------------------------------------------------------*/
@media(max-width:767px) {

    #section-startseite,
    #section-ueberuns {
        height: 100vh !important;
        height: calc(var(--vh, 1vh) * 100) !important;
        min-height: 100% !important;
    }


    
        #section-startseite{
        background-image: unset !important;
    }
.img-mobile-2{
    position: relative;
    width: 150%;
    left: -25%;
        display: block;
    }

    #section-ueberuns {
        background-image: unset !important;
       
    }
    .img-mobile{
        display: block;
            margin-bottom: 30px;
    }
    .menu-link {
    font-size: 30px;
}
    .vl{
        display: none;
    }
    .abstand{
    margin-top: 8vh;
    }
    h1 {
    font-size: 35px;
    }
    h2,h3 {
    font-size: 15px;
    }
    .footer-links {
    font-size: 8px;
    }
    #logo-nav {
    height: 45px;
    margin-top: 15px;
    margin-bottom: 9px;
}
    .burger {
    margin-top: 30px;
    width: 30px;
    margin-bottom: 30px;
}
    #x-icon {
    margin-top: 25px;
    height: 30px;
}
    .menu-background{
    background-color: #F2F2F2;
    }
    .text-contact {
    font-size: 12px;
    line-height: unset;
}
}
@media(max-width:576px) {



    .spinning{
    -webkit-animation-name: unset;
    -webkit-animation-duration: unset;
    -webkit-animation-iteration-count: unset,
    -webkit-animation-timing-function: unset;
    -moz-animation-name: unset;
    -moz-animation-duration: unset;
    -moz-animation-iteration-count: unset;
    -moz-animation-timing-function: unset;
    -ms-animation-name: unset;
    -ms-animation-duration: unset;
    -ms-animation-iteration-count: unset;
    -ms-animation-timing-function: unset;
    animation-name: unset;
    animation-duration: unset;
    animation-iteration-count: unset;
    animation-timing-function: unset;
}

.spinning-back{
    -webkit-animation-name: unset;
    -webkit-animation-duration: unset;
    -webkit-animation-iteration-count: unset
    -webkit-animation-timing-function: unset;
    -moz-animation-name: unset;
    -moz-animation-duration: unset;
    -moz-animation-iteration-count: unset;
    -moz-animation-timing-function: unset;
    -ms-animation-name: unset;
    -ms-animation-duration: unset;
    -ms-animation-iteration-count: unset;
    -ms-animation-timing-function: unset;
    animation-name: unset;
    animation-duration: unset;
    animation-iteration-count: unset;
    animation-timing-function: unset;
    }


.img-mobile-2{
        width: 100%;
    left: 0%;
    }

    .plus-80{
            margin-top: 80px;
    }

}