/*шрифты*/
@import "/src/styles/core/fonts.css";
/*переиспользование+body*/
@import "/src/styles/core/base.css";
/*normalize*/
@import "/src/styles/core/modern-normalize.scss";
/*header+footer*/
@import "/src/styles/header.css";
@import "/src/styles/footer.css";
@import "/src/styles/components/cookie-banner.css";
/*компоненты*/
@import "/src/styles/pages/portfolio.css";
@import "/src/styles/pages/projects.css";
@import "/src/styles/pages/about.css";
@import "/src/styles/pages/services.css";
@import "/src/styles/pages/vacancies.css";
@import "/src/styles/pages/contacts.css";
@import "/src/styles/pages/vacancy-form.css";
@import "/src/styles/pages/legal-document.css";
@import "/src/styles/pages/detail.css";


.hero {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 23px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}
.hero__privacy {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 160px;
}
.hero__privacy-link {
    font-weight: 300;
    color: #ffffff80;
}
@media (max-width: 1200px) {
    .hero__privacy {
        flex-direction: column;
        padding: 0 30px;
    }
    .hero__privacy-link {
        text-align: center;
        gap: 5px;
    }
}