header {
    width: 100%;
}

.force-visible {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

.welcome.force-visible::before {
    opacity: 1 !important;
    animation: none !important;
}

.cheetah {
    margin: 0 auto;
    display: block;
}

.cheetah img {
    width: 72px;
    left: -6px;
    top: 6px;
}

.wrap-nav .logo {
    display: none;
}

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

.menu > * + * {
    margin-left: 40px;
}

.menu a {
    font-size: 15px;
    font-weight: 600;
    transition: .2s ease-out;
    border-bottom: 2px solid transparent;
    line-height: 1.4;
    color: #fff; /* Закомментированное значение по умолчанию */
}

.header {
    padding: 12px 0;
    z-index: 50;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    border-radius: 48px;
    max-width: min(1440px, 96%);
    top: 32px;
    overflow: hidden;
    transition: .8s ease-out;
}

.header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header.sticky {
    /*background: rgba(11, 48, 96, 0.36);*/
    /*background: #c84cd090;*/
    /*background: #6604bd86;*/
    /*background: #82828282;*/
    background:linear-gradient(0deg, #5e3352e0 5%, #cf99a6e0 60%, #bf6752e0 100%);
    background:-webkit-linear-gradient(0deg, #5e3352e0 5%, #cf99a6e0 60%, #bf6752e0 100%);
    
}

@media (min-width: 1023px) {
    .header.sticky {
        top: 16px;
        box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
        backdrop-filter: blur(12px);
    }
}

.header .menu a:hover {
    border-color: #fff;
}

.header.sticky .menu a:hover {
    color: #e93222;
    border-color: rgba(255, 255, 255, 0);
}

.logo {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    /*color: var(--red);*/
    color: var(--gold);
    line-height: 1;
}

.logo-main span {
    color: #fff;
}

.orange-txt {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    opacity: .8;
    line-height: 1;
}

@media (max-width: 1600px) {
    .header .container {
        padding: 0 4vw;
    }
}

@media (max-width: 1366px) {
    .orange-txt {
        font-size: 12px;
        font-weight: 500;
        opacity: 1;
    }

    .header {
        top: 50px;
    }

    .header-logo > * + * {
        margin-left: 12px;
    }

    .header-logo--txt {
        font-size: 10px;
    }

    .header-right {
        padding: 5px 0 5px 20px;
    }

    .menu a {
        font-size: 14px;
    }

    .menu > * + * {
        margin-left: 22px;
    }
}

@media (max-width: 1023px) {
    .header .link-icon {
        font-size: 18px;
    }
    
    .wrap-nav .orange-txt {
        color: #000;
    }

    .header {
        transform: none;
        overflow: initial;
        position: fixed;
        top: 28px;
        width: 100%;
        left: auto;
        max-width: 100%;
        border-radius: 0;
    }

    .header:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 384px;
        pointer-events: none;
        z-index: -1;
    }

    .header .container {
        padding: 4px 4vw;
    }

    .header.sticky {
        top: 0;
    }

    .header-right {
        display: none;
    }

    .open-nav {
        display: block;
        width: 30px;
        height: 24px;
        z-index: 88888;
        position: fixed;
        right: 32px;
        box-sizing: content-box;
        border: 0;
        opacity: 1;
    }

    .open-nav:hover {
        opacity: 1;
    }

    .whiteBg {
        background-color: #fff;
        border-color: #fff;
    }

    .open-nav span {
        position: absolute;
        width: 100%;
        height: 4px;
        left: 0;
        background: #fff;
        border-radius: 100px;
        transition: .3s all ease-out;
    }

    .open-nav span:first-child {
        top: 0;
    }

    .open-nav span:last-child {
        bottom: 0;
        width: 70%;
    }

    .open-nav span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .open-nav.open span {
        background: var(--chocolate);
    }

    .open-nav.open span:first-child {
        transform: rotate(225deg);
        top: 10px;
        margin-top:10px;
    }

    .open-nav.open span:nth-child(2) {
        opacity: 0;
    }

    .open-nav.open span:last-child {
        transform: rotate(-225deg);
        width: 100%;
        top: 10px;
        margin-top:10px;
    }

    .wrap-nav {
        /*display: block;*/
        position: fixed;
        max-width: 400px;
        width: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow: auto;
        visibility: hidden;
        opacity: 0;
        padding: 30px;
        margin: 0;
        background: #fff;
        transform: translateX(100%);
        transition: all .5s ease;
        box-shadow: 0 -15px 30px 0 rgba(25, 16, 78, .75);
        
        /* центруем по вертикали*/
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .wrap-nav .link-icon {
        width: 100%;
        background: var(--chocolate);
        height: 50px;
        display: flex;
        justify-content: center;
        border-radius: 30px;
    }

    .wrap-nav .logo {
        display: flex;
        position: relative;
        left: 30px;
    }

    .wrap-nav .logo-main {
        color: var(--chocolate);
    }

    .wrap-nav .logo-main span {
        color: #000;
    }

    .wrap-nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .wrap-nav .menu {
        margin: 30px 0 30px 0;
        display: block;
        padding-left: 30px;
    }

    /*
    .wrap-nav .menu:before {
        content: attr(data-text);
        position: relative;
        color: #a0a0a0;
        font-weight: 500;
        font-size: 14px;
    }
    */

    .wrap-nav .menu > * + * {
        margin: 10px 0 0 0;
    }

    .wrap-nav .menu a {
        font-size: 36px;
        color: #000;
        border: none;
    }

    .wrap-nav .menu a:hover {
        color: #ff3b2a;
    }
}

@media (max-width: 711px) {
    header {
        padding: 20px 0;
    }
}

@media (max-width: 400px) {
    .header .container {
        padding: 4px 24px;
      }

    .header-logo--txt {
        display: none;
    }
}


/**************** инстинкт путешествий *******************/

.logo-main span {
    display: block;
    font-size: 18px;
}

.wrap-nav.open span>span {
    font-size: 42px;
    text-align: left;
    line-height: .7em;
}

.orange-txt {
    display: none;
}