.header, .footer {
    color: #e5e5e5;
    background-color: #292929;
    padding: 15px 7vw;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 2
}

.logo {
    height: 55px;
}

.logo img {
    height: 100%
}


.header__title {
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    flex: 1
}

.header__title_content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.header__title_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header__title_text {
    text-align: left;
    font-size: 21px;
    font-weight: bold;
}

.header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
    /* flex: 1; */
    /* margin-left: 120px; */
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: #c78514;
    text-decoration-thickness: 2px;
}

.footer {
    padding: 70px 7vw;
    text-align: initial;
}

.footer__contacts {
    font-size: 20px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    display: flex;
    flex-grow: 1;
    justify-content: space-evenly;
}


.list-row {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.contacts__phones {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
    font-weight: bold;
}

.contacts__links img {
    width: 100%;
    height: 100%;
}

.contacts__links a {
    width: 70px;
    height: 70px;
    display: block;
}

.contacts__links {
    justify-self: center;
    align-items: center;
    display: flex;
    flex-direction: row;
}

.contacts__links a:hover img {
    transform: scale(1.1);
}

.footer__contacts {
    display: flex;
    flex-grow: 1;
    justify-content: space-evenly;
}

.contacts__details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts__combined {
    display: flex;
    gap: 40px;
}

.details__info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.burger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #e5e5e5;
    cursor: pointer;
}

@media (max-width: 900px) {
    .header__title_text {
        font-size: 17px;
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 99%;
        right: 0;
        background-color: #292929;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 10px 20px 30px 20px;
        width: 200px;
    }

    .header__nav.open {
        display: flex;
    }

    .logo {
        height: 45px;
    }

    .burger {
        display: block;
    }

    .footer__contacts {
        flex-direction: column;
    }

    .contacts__combined {
        flex-direction: column;
    }
}