@media (min-width:1101px) {
    .header-links a:first-child:hover {
        background: linear-gradient(180deg, #ACB7FF 0%, #001FF8 100%);
    }

    .header-links a:last-child:hover {
        background: linear-gradient(180deg, #7BFF94 0%, #00D729 100%);
    }
}

/* +++++++++++++++++++++++++++ end 1200px ++++++++++++++++++++++++++++++ */

@media (max-width:1150px) {
    .header-fixed {
        gap: 20px;
        padding: 5px 20px;
    }
    .nav {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #341334;
        height: 100vh;
        padding-top: 52px;
        overflow-x: hidden;
        transform: translateX(100%);
        transition: .5s linear;
    }

    .nav.active{
        transform: translateX(0%);
        
    }

    .nav-burger {
        display: block;
        width: 46px;
        height: 46px;
        background: url(../img/burger.svg) no-repeat center;
        border-radius: 50%;
        transition: .2s linear;
    }

    .nav-burger.active{
        background: url(../img/close.svg) no-repeat center;

    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
    }

    .nav-item:nth-child(odd) {
        background: #2C3157;
        padding: 20px 0 20px 80px;
        width: 100%;
    }

    .nav-item:nth-child(even) {
        background: #1D224D;
        padding: 20px 0 20px 80px;
        width: 100%;
    }

    .header-links {
        flex: 1;
        justify-content: flex-end;
    }

    .header-links a {
        font-size: 0;
        line-height: 0;
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .header-links a:first-child {
        background: url(../img/login.svg) no-repeat center;
    }

    .header-links a:last-child {
        
        background: url(../img/singin.svg) no-repeat center;
    }

    .header-wrapper {
        gap: 20px;
    }

    .content-text {
        max-width: 100%;
    }

    .article-img {
        width: 100%;
    }

    .article-img img{
        margin: 0 auto;
    }
}


/* +++++++++++++++++++++++++++ end 980px ++++++++++++++++++++++++++++++ */

@media (max-width:768px) {
    .content-text ul,
    ol{
        margin-left: 40px;
    }

    .article-img {
        width: 100%;
    }

    h1 {
        font-size: 42px;
        line-height: 50px;
    }
}


/* +++++++++++++++++++++++++++ end 768px ++++++++++++++++++++++++++++++ */


/* +++++++++++++++++++++++++++ end 590px ++++++++++++++++++++++++++++++ */


@media (max-width:590px) {

    .logo {
        width: 58px;
        height: 58px;
        padding: 0;
        font-size: 0;
        line-height: 0;
    }

    .logo span {
        display: none;
    }
}