header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    height: 100vh;
    padding: 0px 160px 0px 160px;

    color: white;
    background-image: url(../../img/1_hero/JPG/hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

header a {
    color: white;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

.header_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 112px;

}

.header_nav nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header_button {
    padding: 10px;
    color: white;
    background-color: #9F0908;
    border: 2px solid white;
    border-radius: 12px;
}

.header_button:hover {
    text-decoration: none;
    background-color: #d02a2a;
}

.header_logo {
    width: 64px;
    height: 64px;
}

.fon_img {
    width: 24px;
    height: 24px;
}

.header_text {
    padding-top: 200px;
}

/* mobile */
@media (max-width: 768px) {

    header {
        padding: 0px 24px 0px 24px;
    }

}

@media (max-width: 375px) {

    header {
        padding: 0px 16px 0px 16px;
    }

    .header_nav {
        height: 64px;
    }

    .header_logo {
        width: 40px;
        height: 40px;
    }

    .fon_img {
        padding: 2px 5px 2px 5px;
    }

}