header {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    left: 0;
}

.headerContent {
    display: flex;
    justify-content: space-between;
    background: #0B1E34;
    width: calc(100% - 50px);
    padding: 15px 25px;
    border-radius: 20px;
    color: #fff;
    margin-top: 25px;
}

.headerLeft {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo{
    z-index: 2;
    margin-right: 20px;
}

.logo img{
    height: 45px;
}

.navMenu {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.navMenu li a {
    color: #fff;
    text-decoration: none;
	transition: .4s
}

.navMenu li a:hover{
    
}

.burgerMenu {
    display: none;
    cursor: pointer;
}

.burgerMenu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.headerRight{
    display: flex;
    align-items: center;
}

.headerRight p img{
    width: 16px;
}

.headerRight .btn{
    margin-left: 20px;
}

@media (max-width: 1200px) {
    .burgerMenu {
        display: block;
    }

    .navMenu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% - 20px);
        left: 5%;
        right: 5%;
        background: #0B1E34;
        padding: 0 20px;
        border-radius: 0 0 20px 20px;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    }

    .navMenu.active {
        transform: scaleY(1);
        opacity: 1;
        padding: 40px 20px 20px 20px;
    }


    .headerLeft {
        width: 100%;
        justify-content: space-between;
    }

    .headerRight {
        display: none; /* Можно показать при необходимости */
    }

    /* Анимация бургера в крестик */
    .burgerMenu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burgerMenu.active span:nth-child(2) {
        opacity: 0;
    }

    .burgerMenu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    
    .headerRight {
        display: none;
    }
}

.mobileContact {
    display: none;
    text-align: center;
    padding-top: 20px;
    text-align: left;
}

.mobileContact p{
    display: flex;
    align-items: center;
}

.mobileContact p img{
    width: 16px;
    margin-right: 6px;
}

.navMenu.active .mobileContact {
    display: block;
}

.navMenu.active .mobileContact a {
    margin-top: 20px
}
