/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
.header__container {
    display: flex;
    justify-content: space-between;
}

.header__nav {
    width: 100%;
}

#main-navigation-menu {
    background-color: black;
}


#main-navigation-menu .menu-item a:hover {
    color: #FC4A1A !important;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mobile-menu-icon {
    display: none;
}

.header__material-icon svg {
    fill: white;
}

body, html {
    scroll-behavior: smooth;
}

@media all and (max-width:550px) {
    .mobile-menu-icon {
        display: block;
    }
}