.header{
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 0;  
  padding: 73px 0 0;
}

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

.header_logo{
  font-family: 'Jura';
  font-weight:600;
  font-size:40px;  
  line-height: 47.32px;
  color: #FFFFFF;
  padding-right: 15%;
}

.nav{
  display: flex;
}


.nav-menu{
  display: flex;
  align-items: center;
  border: 0px;
  background: transparent;
  outline: none;
  padding: 0;
  margin-left: 70px;
}

.nav-menu svg path {
  transition: fill 0.5s ease; /* Плавний перехід кольору */
}

.nav-menu:hover svg path {
  fill: #594FFB; /* Колір при наведенні */
}

.header_mini{
  position: relative;
  display: none;
  justify-content: space-between;
  width: 100%;
  margin: 0 25px;
  /* overflow: hidden; */
}

.nav-container{
  display: flex;
  flex-direction: row;
}


.nav_button{
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  background: transparent;
  border: none;
  margin: 0 30px;
  transition: all 0.5s ease;
}

.nav_button:hover{
  color: #594FFB;
  scale: 1.1;
}

.nav_button-leng{
  display: flex;
  flex-direction: column;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.nav_button-leng:hover{
  border: 1px solid #594FFB;
}

.contact{
  width: 204px;
  height: 54px;
  border-radius: 10px;
  opacity: 0px;
  font-family: Jura;
  font-size: 20px;
  font-weight: 700;
  line-height: 23.66px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  transition: all 0.5s ease;
  border: none;
  color: #000;
  min-width: 204px;
}

.header_mini>.contact{
  margin: 0 0 0 -36%;
}


.contact:hover{
  background-color: #594FFB;
  color: #FFFFFF;
}

.slide-nav{
  position: absolute;
  display: flex;
  flex-direction: column;

  right: -10000px;
  background-color: #000;
  padding: 111px 50px 130px;
  min-width: 383px;
  z-index: 3;
  transition: all 0.5s ease;
}

.slide-nav>.nav_button{
  padding: 0 0 40px 0;
  margin: 0;
}

.slide-nav> .nav_button-leng{
  width: 44px;

}


.slide-nav> .nav_button-leng>span{

}