html, body {
    margin: 0;
    padding: 0;
}
  *, *::before, *::after {
    box-sizing: border-box;
}
/*Шапка сайта*/
header {
    background: -webkit-linear-gradient(90deg, #e8f214,#87cd55,#4aa06c);
    background: linear-gradient(90deg, #e8f214,#87cd55,#4aa06c);
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    }
    .menu-icon{
        display: none;
    }
.logo-contener{
    display: flex;
    align-items: center;
}
.logo-header{
        font-size: 30px;
        font-weight: 900;
        transition: 0.5s;
        color: black;
    }
    #Logo-img{
        height: 50px;
        width: 50px;
    }
    .logo-contener{
        gap: 0 30px;
    }
.logo-header:hover{
        transform: scale(1.2);
    }
/*Навигция обычная*/
.nav-link{
        position: relative;
        float: left;
        display: var(--display-ob);
    }

.nav-href{
        padding: 15px;
        color: black;
        font-size: 20px;
        font-weight: 300;
        display: block;
    }

.nav-href:hover{
        background-color: black;
        color: white;
    }
.in-the-header-center-text{
        color: black;
        font-weight: 700;
        font-size: 17px;
        text-align: center;
    }
    #burgerMenu{
        display: none;
    }
@media (max-width: 1440px){
header{
    padding: 0 3%;
    height: 70px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.logo-header{
    font-size: 27px;
    }
#Logo-img{
    height: 35px;
    width: 35px;
    }
.nav-href{
    font-size: 17px;
    }
.in-the-header-center-text{
    font-size: 15px;
    }

}
@media (max-width: 1100px){
    /*Навигация бургер*/
.menu-icon{
    display: block;
    z-index: 10;
    position: relative;
    width: 32px;
    height: 22px;
    cursor: pointer;
}
.menu-icon::after,
.menu-icon::before,
.menu-icon span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 15%;
    background-color: black;
    transition: all 0.3 ease 0s;
}
.menu-icon::after,
.menu-icon::before{
    content: "";
}
.menu-icon::after{
    top: 0;
}
.menu-icon::before{
    bottom: 0;
}
.menu-icon span{
    top: 50%;
    transform: scale(1) translate(0px ,-50%);
}
  .logo-header{
    font-size: 17px;
    font-weight: 800;
    }
#Logo-img{
    height: 35px;
    width: 35px;
    }
.nav-href{
    font-size: 17px;
    display: none;
    }
.in-the-header-center-text{
    font-size: 15px;
    }
}
@media (max-width: 700px){
    header{
    height: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    
}
.logo-header{
    font-size: 17px;
    }
#Logo-img{
    height: 35px;
    width: 35px;
    display: none;
    }
.nav-href{
    font-size: 17px;
    display: none;
    }
.in-the-header-center-text{
    font-size: 10px;
    }
}
@media (max-width: 425px){
  header{
    height: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.logo-header{
    font-size: 15px;
    }
#Logo-img{
    height: 35px;
    width: 35px;
    display: none;
    }
.nav-href{
    font-size: 17px;
    display: none;
    }
.in-the-header-center-text{
    font-size: 8px;
    }
}
@media (max-width: 400px){
    .in-the-header-center-text{
        display: none;
    }
}