.partners-header {
	display: flex;
  height: auto;
  align-items: center;
  gap: 40px;
  flex: 1 1 auto;
}
.header__list {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1 1 auto;
    justify-content: center;
}
@media(max-width: 1283px) {
	.header__menu {
		display: flex;
	}
}

@media (max-width: 1045px) {
    .header__menu {
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        background: #0a0019;
        padding: 64px 20px 64px 32px;
        position: fixed;
        right: -40%;
        top: 0;
        width: 40%;
        z-index: 999;
        min-height: 689px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: start;
        transition: all 0.6s ease;
				display: none; 
        align-items: start;
        justify-content: start;
    }
		.header__burger {
        display: flex;        
        width: 30px;
        height: 20px;        
        transition: all 0.3s;
        z-index: 9;
        position: relative;
    }
		.header__burger:hover {
        cursor: pointer;
    }
		.header__burger::before {
        content: "";
        width: 30px;
        height: 1px;
        /* border-radius: 4px; */
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s;
    }
		    .header__burger::after {
        content: "";
        width: 30px;
        height: 1px;
        /* border-radius: 10px; */
        background-color: #fff;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 0.3s;
    }
		.header__burger span {
        content: "";
        width: 30px;
        height: 1px;
        /* border-radius: 10px; */
        background-color: #fff;
        position: absolute;
        left: 0;
        top: calc(50% - 0.5px);
    }
		.header__burger.open {
		z-index: 999;
	}
	.header__burger.open span {
		display: none;
	}
	.header__burger.open::before {
		transform: rotate(45deg);
		top: 10px;
	}
	.header__burger.open::after {
		transform: rotate(-45deg);
		bottom: 9px;
	}
	.header__list {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background: #0a0019;
    padding: 64px 20px 64px 32px;
    position: fixed;
    right: -40%;
    top: 0;
    width: 40%;
    z-index: 999;
    min-height: 689px;
    height: 100vh;
		display: flex;
    flex-direction: column;
    align-items: start;
		gap: 32px;    
    transition: all 0.6s ease;
  }
	.header__list_visible {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;
    padding-top: 44px;
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
		width: 100%;
		right: 0;
  }
  .header__partners_visible .header__button {
    display: inline-block;
    margin-top: 48px;
    width: 320px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 127%;
  }
  .header__partners_visible .header__wrapper-logo {
    display: none;
  }
		.partners-header {
        justify-content: end;
        flex: 1 1 auto;
        /* padding-right: 40px; */
    }
}