.header {
    background-image: url("../assets/bg.png");

    .header__title {
        max-width: 800px;
        font-size: 55px;
    }

    .header__description {
        font-size: 20px;
        max-width: 600px;
    }
}

.header-navigation {
    .header-navigation__menu-toggle {
        display: none;
    }

    .header-navigation__nav {
        display: flex;
        align-content: center;
        position: relative;
        left: unset;
        top: unset;
        width: 100%;

        li {
            background-color: transparent;
            padding: 0;
            display: flex;
            align-items: center;
            font-family: "Poppins", sans-serif;
            cursor: pointer;
            transition: border-bottom-color 0.3s linear;
            border-bottom: 2px solid transparent;

            a {
                color: white;
            }

            &:not(:last-child) {
                margin-right: 30px;
            }

            &:hover {
                border-bottom-color: #424242;
            }
        }
    }
}
