@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

header {
    height: 150px;
    width: 100%; 
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 56.56%, rgba(0, 0, 0, 0) 100%);
}

.header-bg {
    position: fixed;
    top: -1px;
    left: 0px;
    z-index: -1;
    height: 120%;
    overflow: hidden;    
}

.header-content {
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-content__logo {
    height: 70px;
    margin-bottom: 45px;
    margin-right: 22px;
}

.header-content__nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 94px;
}

.header-content__nav-button {
    margin: 0 19px;
    cursor: pointer;
    transition: .2s;
    font-weight: 500;
    text-decoration: none;
    color: #FFFFFFB2;
}

.header-content__nav-button:hover, .header-content__company:hover {
    color: #FFFFFF;
}

.header-content__company {
    font-weight: 500;
    margin-right: 100px;
    text-decoration: none;
    color: #FFFFFFB2;
    transition: .2s;
}

.header-text {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.header-text_big {
    font-size: 70px;
    font-weight: 900;

}

.header-text_small {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
}