@media (min-width:1101px){
    .header-links a:hover {
        background: linear-gradient(95.85deg, #7EDFFF 2.6%, #3FD9E8 97.28%);
    }
}

/* +++++++++++++++++++++++++++ end 1200px ++++++++++++++++++++++++++++++ */

@media (max-width:1100px) {
    .header-fixed {
        padding: 6px 20px;
    }
    
    .nav {
        width: 100%;
        position: fixed;
        z-index: 2;
        top: -100%;
        left: 0;
        right: 0;
        bottom: 0;
        background: #141627;
        height: 100vh;
        padding: 52px 0 0;
        overflow-x: hidden;
        border-radius: 0;
        transition: .5s linear;
    }

    .nav.active{
        top: 72px;
        transition: .9s linear;
    }

    .nav-burger {
        display: block;
        position: relative;
        z-index: 5;
        width: 46px;
        height: 46px;
        background: url(../img/burger.svg) no-repeat center;
        border: 2.3984px solid #77D2E9;
        border-radius: 50%;
        transition: .3s 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 {
        justify-content: space-between;
        gap: 20px;
    }
}

/* +++++++++++++++++++++++++++ end 768px ++++++++++++++++++++++++++++++ */

@media (max-width:590px) {
    .article {
        padding: 40px 20px 95px 20px;
    }

    .article h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .article-img {
        width: 100%;
    }

    .table-2 tr {
        grid-template-columns: repeat(3, 1fr);
    }

    .table-3 tr {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-text ul,
    .article ol {
        padding-left: 20px;
    }
}


/* +++++++++++++++++++++++++++ end 590px ++++++++++++++++++++++++++++++ */


@media (max-width:450px) {

    .logo {
        width: 56px;
        height: 58px;
        font-size: 0;
        line-height: 0;
    }

}