.mobile{
    display: none;
    justify-content: space-between;
    align-items: center;
   padding: 10px 0;
}
header.active{
    background-color:rgba(12, 13, 20, 1);
    transition: all 0.5s;
    opacity: 0.9;
}
.mobile.active{
    background-color:rgba(12, 13, 20, 1);
    transition: all 0.5s;
    opacity: 0.9;
}
.mobile-logo img{
    position: relative;
    z-index: 120;
    width: 170px;
    padding-top: 10px;
}

/* Гамбургер іконка */
.menu-btn {
	
	width: 30px;
	height: 30px;
	position: relative;
	z-index:200;
	overflow: hidden;
}

.menu-btn span {
	width: 40px;
	height: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	transition: all 0.5s;
	border-radius: 5px;
}

.menu-btn span:nth-of-type(2) {
	top: calc(50% - 8px);
}
.menu-btn span:nth-of-type(3) {
	top: calc(50% + 8px);
}

/* Змінюємо гамбургер іконку, коли меню відчинено */
.menu-btn.active span:nth-of-type(1) {
  display: none;
}
.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}


/* Меню, яке буде зʼявлятися */
.menu {
  
    background-color:rgba(12, 13, 20, 1);
    margin: 0px auto;
    position: absolute;
    top: -100px; /* Изменено на top: 100% */
    right: 0px; /* Изменено на right: 0 */
    left: 0; /* Изменено на left: 0 */
    width: 100%; /* Изменено на width: 100% */
    height: 75%; /* Изменено на height: 75% */
    opacity: 0;
    transform: translateY(-100%); /* Изменено на translateY(-100%) */
    transition: all 0.5s;
    z-index: 101;
}

.menu ul {
    text-align: right;
    max-width: 100%; /* Изменено на max-width: 100% */
    margin-left: auto;
    
}

.menu ul a {
    color: white;
    text-decoration: none;
    text-transform: none;
    font-size: 18px;
}

.menu ul li {
    border-radius: 10px 10px 0px 0px; /* Изменено на border-radius: 10px 10px 0px 0px */
    padding: 10px;
    margin: 10px 0;
}

.menu ul li i {
    padding-left: 10px;
}
body.active{
    overflow: hidden;
}
.menu.active {
    top: 100%; /* Изменено на top: 100% */
    transform: translateY(0); /* Изменено на translateY(0) */
    display: block;
    opacity: 0.9;
    transition: all 0.5s;
    height: 100vh;
}

.menu li {
    list-style-type: none;
}

.menu-link{
   
    transition: all 0s;
}
.menu-link.active{
    opacity: 1;
    transition: all 0.5s;
}