@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;1,400&family=Oswald:wght@300;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: #999;
    font-family: 'Oswald', sans-serif;
    line-height: 1.4;
    font-weight: 300;
    font-size: 1.25em;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.main {
    max-width: 1040px;
    margin: 0 auto;
    padding: 2em 0;
    display: flex;
    flex-direction: column;
}

.hero {
    background-image: url("../images/wallpaper_nologo.webp");
    background-position: center;
    background-size: cover;
    height: 720px;
    padding-top: 2em;
    margin-top: 5.375em;
    position: relative;
}

.hero__logo {
    width: 200px;
    margin-left: 2em;
}

.hero:before {
    content: '';
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(239, 239, 239, 0));
    position: absolute;
    height: 15%;
    right: 0;
    bottom: 0;
    left: 0;
}

.header__nav {
    position: fixed;
    max-width: 1280px;
    width: 100%;
    background-color: #000;
    top: 0;
    z-index: 20;
}

.burger {
    display: none;
}

.menu {
    display: flex;
    justify-content: space-between;
    max-width: 1040px;
    margin: 0 auto;
    list-style: none;
    list-style-position: inside;
}

.menu__item {
    line-height: 5.375em;
    width: 18%;
}

.menu__item--last {
    margin-left: auto;
}

.menu__link {
    color: #999;
    font-weight: 300;
    font-size: 1.25em;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 0.6em;
    height: 2.6em;
}

.menu__icon {
    padding: 0;
    margin: 0 0.4em;
    color: #fff;
}

.menu__link:hover,
.menu__link--active {
    border-bottom: 4px solid #ffa500;
}

.menu__icon:hover {
    border-bottom: none;
}

.menu__icon--twitter:hover {
    color: #1DA1F2;
}

.menu__icon--facebook:hover {
    color: #4267B2;
}

.menu__icon--instagram:hover {
    color: #833AB4;
}

.menu__icon--linkedin:hover {
    color: #0077b5;
}

.footer {
    padding-bottom: 2em;
}

.footer__text {
    text-align: center;
}

.main__img {
    display: none;
}
.content {
    padding-top: 1em;
}
.content__title {
    margin-bottom: 1.5em;
    font-size: 1.25em;
    color: #fff;
}

@media only screen and (max-width: 820px) {

    /* NAVIGATION MOBILE/TABLET */
    .burger {
        display: flex;
        justify-content: end;
    }

    .burger__icon {
        margin: 0 0.2em;
    }

    .header__nav {
        padding: 0.2em;
        background-color: rgba(0, 0, 0, 1);
    }

    .menu {
        display: none;
        flex-direction: column;
        min-height: 100vh;
        justify-content: space-evenly;
        align-items: center;
    }

    .menu__item {
        display: flex;
        justify-content: center;
        line-height: 5em;
    }
    .menu__item--last {
        margin-left: 0;
    }
    .menu__link {
        padding: 0.2em 0;
        font-size: 1.2em;
    }

    .menu__link:hover,
    .menu__link--active {
        border-bottom: 0;
    }

    .menu__link--active {
        color: #ffa500;
        font-weight: 700;
    }

    .menu__icon {
        text-align: center;
        font-size: 1.5em;
        margin-left: 0;
        margin: 0 0.5em;
    }

    .hero {
        background: none;
        height: auto;
        padding-top: 0;
    }

    .hero__logo {
        width: 3em;
        height: 3em;
        position: fixed;
        top: 0;
        margin: 0.2em 0;
        z-index: 200;
    }

    .main {
        padding: 2em;
    }    

}