.header {
    width: 100%;
    position: absolute;
    height: 77px;
    left: 0;
    top: 0;
    background: rgba(8, 8, 12, 0.29);
    z-index: 3;
    font-family: 'Roboto', sans-serif;
}

.header__nav {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    top: 50%;
    display: flex;
    align-items: center;
    height: 100%;
}

.header__nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    display: flex;
    align-content: center;
}

.header__nav-link.header__nav-link-new:after {
    display: block;
}

.header__nav-link:after {
    content: "New";
    width: 35px;
    height: 17px;
    border-radius: 4px;
    margin-left: 8px;
    font-size: 12px;
    line-height: 16px;
    background-color: #FCD535;
    color: #1E2329;
    padding: 2px 5px 17px 5px;
    display: none;
}

.header__nav-link:hover {
    color: #4586ff;
}

.header__nav-link + .header__nav-link {
    margin-left: 43px;
}

.header__container {
    max-width: 1317px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

.header__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo-box {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
   font-family: monospace;
    text-transform: uppercase;
    color: #FFFFFF;
}

.header__logo-img {
    width: 35px;
    height: 25px;
}

.header__logo-text {
   font-family: monospace;
}
.header__btn-box {
    display: flex;
    align-items: center;
}

.header__btn {
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
}

.header__btn-signUp {
    width: 97px;
    height: 40px;
    background: linear-gradient(86.84deg, #BA5BC8 13.88%, #4650F2 90.23%), #D9D9D9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 38px;
    position: relative;
    z-index: 5;
}


.header__nav-arrow {
    position: relative;
    padding-right: 19px;
    height: 14px;
}

.header__nav-arrow:before {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    transform: rotate(0deg);
    transition: .3s ease-in-out;
    height: 5.3px;
    width: 9.3px;
    background-image: url('../images/header/arrow.svg');
}

.header__nav-arrow:hover:before {
    transform: rotate(180deg);
}

.header__nav-line {
    fill: none;
    stroke: #fff;
    stroke-width: 12;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header__nav-line1 {
    stroke-dasharray: 60 207;
    stroke-width: 12;
}

.header__nav-line2 {
    stroke-dasharray: 60 60;
    stroke-width: 12;
}

.header__nav-line3 {
    stroke-dasharray: 60 207;
    stroke-width: 12;
}

.header__nav-opened .header__nav-line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 12;
}

.header__nav-opened .header__nav-line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 12;
}

.header__nav-opened .header__nav-line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 12;
}

.header__nav-menu{
    display: none;
}

.home__slider-tablet{
    display: none;
}


@media (max-width: 1100px) {
    .header__nav-link + .header__nav-link {
        margin-left: 35px;
    }
}

@media (max-width: 1050px) {
    .header__menu {
        position: absolute;
        top: 77px;
        flex-direction: column;
        background: rgba(8, 8, 12, 0.29);
        height: auto;
        right: 0;
        left: auto;
        justify-content: flex-end;
        align-items: flex-end;
        width: 230px;
        padding: 15px 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
    }

    .header__nav{
        transform: translate(0, 0);
        position: static;
        flex-direction: column;
        align-items: flex-end;
        padding: 0 15px;
    }

    .header__nav-link + .header__nav-link{
        margin: 10px 0 0 0;
    }
    .header__menu.header__menu-active{
        opacity: 1;
        visibility: visible;
    }

    .header__box{
        justify-content: flex-end;
    }
    .header__nav-menu{
        display: flex;
        align-items: center;
        margin-left: 10px;

    }
    .header__logo-box{
        margin-right: auto;
    }

    .header__nav-link {
        padding-right: 19px;
    }

    .header__btn-box {
        justify-content: space-around;
        margin-top: 15px;
        border-top: 1px solid #979DFF;
        padding-top: 15px;
    }
    .header__btn{
        width: 90px;
        height: 40px;
    }
    .header__btn-logIn{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header__btn-signUp{
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .header__container{
        padding: 0 13px 0 20px;
    }
}

/*@media (max-width: 600px) {*/
/*    */
/*}*/

