* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.header-full {
    padding: 15px;
    align-items: center;
    display: flex;
    column-gap: 15px;
    justify-content: space-between;
}

.header-logo img {
    width: 70vw;
    margin-left:80px;
}

.header-nav ul {
    display: flex;
    list-style: none;
}

.header-nav ul li a {
    padding: 15px;
    white-space: nowrap;
}

.header-nav ul li a:hover {
    background: #b0b0b0;
}

.header-contact ul {
    list-style: none;
}

.header-contact ul {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.header-contact ul li p {
    display: inline-flex;
    column-gap: 10px;
}

.time-worhing {
    display: flex;
    column-gap: 10px;
}

.dont-working {
    display: flex;
    row-gap: 5px;
    flex-direction: column;
}

html,
body {
    height: 100%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

main {
    flex: 1 0 auto;
}


@media(max-width:980px) {
    .menu-mobile {
        display: flex;
        font-size: 40px;
        position: relative;
        cursor: pointer;
    }

    .menu-show {
        position: absolute;
        right: 0px;
        top: 0px;
        display: none;
        cursor: default;
        background: #ffffff;
        width: 320px;
        padding: 15px;
    }

    .menu-show-container {
        width: 100%;
        position: relative;
    }

    .close-menu {
        position: absolute;
        top: -15px;
        right: 15px;
        cursor: pointer;
    }

    .header-contact-mobile {
        font-size: 14px;
    }

    .header-nav-mobile {
        margin-bottom: 15px;
    }

    .header-nav-mobile ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        row-gap: 5px;
    }

    .header-nav-mobile ul li {
        font-size: 16px;
    }

    .header-contact-mobile ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        row-gap: 5px;
    }

    .header-contact-mobile ul li p {
        display: inline-flex;
        column-gap: 10px;
    }

    .header-contact {
        display: none;
    }
}
@media(max-width:768px){
    .nav_container{
        display: none;
    }
    .header-logo img {
        width: 70vw;
        margin-left:0px;
    }
}