@import 'fonts.css';
@import 'home.css';
@import 'contact.css';
@import 'footer.css';
@import 'header.css';
@import 'legal.css';
@import 'news.css';
@import 'partners.css';
@import 'referenzen.css';
@import 'losungen.css';
@import 'products.css';
@import 'team.css';
@import 'cookie-banner.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: ff-primary;
    min-height: 100vh;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    /*background-image: url("../assets/backgrounds/poz_4.svg");
    background-position: top;
    background-size: cover;*/
    background-color: #5A5D72;
}
body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}
.main-page-background {
    background-color: #9b9fb0;
}
.wrapper {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}
.line {
    width: 100vw;
    height: 8px;
    background-color: #D3D5D1;
}

/* VIDEO MODAL */
.losungen-video {
    position: absolute;
    right: 1rem;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    padding: 8px 12px;
    color: #182434;
    background-color: #FFFF33;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}
.losungen-video:hover {
    background-color: #E6E600;
}
.losungen-video-main {
    position: relative;
    right: unset;
    font-size: 21px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
}
.modal-content {
    width: 100%;
    margin: 0 auto;
}
.video {
    width: 75%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #FFFF33;
}
#modal-close {
    color: #FFFF33;
    position: fixed;
    top: 25px;
    right: 30px;
    font-size: 36px;
    font-weight: bold;
}
#modal-close:hover, #modal-close:focus {
    color: #E6E600;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 1600px) {
    .wrapper {
        width: 90%;
    }
}
@media screen and (max-width: 960px) {
    .losungen-video {
        display: none
    }
}