* {
    margin: 0px;
    padding: 0px;
}

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

a:visited {
    color: white;
}

header {
    box-sizing: border-box;
    justify-content: center;
    padding-top: 25px;
    width: 100%;
    min-width: 1300px;
    height: 130px;
}

.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 70px;
    max-width: 1290px;
    
    margin-left: auto;
    margin-right: auto;
    
    user-select: none;
    font-family: "Montserrat";
    background-color: transparent;
}

.header__background {
    background-color: rgba(0,0,0,0.25);
}

header .navigation {
    display: inline-block;
    width: auto;
   
}

header .navigation li {
    display: inline-block;
    margin-left: 20px;

    font-size: 25px;
    font-weight: 400;
    color: white;
}

.navigation a {
    color: white;
    text-decoration: none;
    transition-duration: 0.2s;
}

.navigation a:hover {
    color: greenyellow;
    transition-duration: 0.2s;
}

.phone_numb {
    color: white;
    user-select: all;
    text-emphasis-color: white;
    font-size: 25px;
}


.phone_numb::selection, .phone_numb2::selection {
    background-color: rgba(110, 241, 0, 0.5);
    color: white;
}

button:hover {
    background-color: #ACFF65;
    transition-duration: 0.2s;
}

button:active {
    background-color: #4BA500;
    transition-duration: 0.2s;
}

button:disabled {
    background-color: #939393;
    transition-duration: 0.2s;
}

.burger {
    display: none; /* Скрыть иконку бургер-меню на компьютере */
}
