.header {
    width: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 1);
    z-index: 100;
    -webkit-box-shadow: 0px 1px 9px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 9px -2px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 9px -2px rgba(0, 0, 0, 0.75);
    transition: all 0.3s ease;
}

.header__hide {
    transform: translateY(-100%);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo img {
    width: 75px;
}

.nav__link {
    font-size: 16px;
    color: #243746;
    margin: 0 15px;
    font-weight: 500;
}

.header__phone a {
    text-decoration: none;
    color: #243746;
    font-weight: 500;
    font-size: 17px;
}

.header__phone a:hover {
    text-decoration: underline;
    color: blue;
}

.nav__link:last-child {
    margin-right: 0;
}

.burger__open {
    display: none;
    background-color: rgb(243, 241, 241);
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 8px;
    border-radius: 50%;
}

.burger {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    transform: translateX(100%);
    min-width: 320px;
    background-color: #f8f6f6;
    border-radius: 10px 10px 10px;
    color: #243746;
}

.open {
    transition: transform 0.5s ease-in-out;
    transform: translate(0, 0);
}

.close {
    transition: transform 0.5s ease-in-out;
    transform: translate(100%, 0);
}

.burger__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.burger__links {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.burger__links div {
    margin-bottom: 15px;
}

.burger__phone {
    padding-top: 15px;
    border-top: 1px solid gray;
}

.burger__phone a {
    font-weight: 500;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.burger__phone a:hover {
    text-decoration: underline;
    color: blue;
}

@media (max-width: 1440px) {
    .menu {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .burger__open {
        display: block;
        cursor: pointer;
    }
    .burger__open:hover {
        background-color: rgb(228, 228, 228);
    }
}

.header2 {
    position: relative;
    z-index: 1000;
}

.header2 .menu a {
    color: #fff;
}

.header2 .header__phone a {
    color: #fff;
}

.header2 .header__phone a:hover {
    text-decoration: underline;
    color: blue;
}
