/* Media 1280 */
@media screen and (max-width: 1280px) {
    header,
    .intro,
    .content,
    footer {
        max-width: 1100px;
    }
    header {
        align-items: center;
        justify-content: space-between;
    }
    header img {
        width: 180px;
        height: 27px;
    }
    header ul {
        margin: 0 0 0 50px;
        flex-wrap: wrap;
    }
    header ul li {
        padding: 13px 5px;
    }
}

/* Media 1100 */
@media screen and (max-width: 1100px) {
    header,
    .intro,
    .content,
    footer {
        max-width: 800px;
    }
    header {
        padding: 0 10px;
    }
    .content {
        padding: 30px 0;
    }
    footer ul {
        flex-wrap: wrap;
    }
    header ul li {
        padding: 13px 4px;
    }
    footer ul li {
        padding: 13px 5px
    }
    footer ul li a {
        padding: inherit;
    }
}

/* Media 768 */
@media screen and (max-width: 768px) {
    body {
        padding: 0;
    }
    header,
    footer {
        width: 100%;
        max-width: none;
        border-radius: 0;
    }
    header {
        position: relative;
        margin: 0 0 23px 0;
        padding: 14px 50px;
        border-radius: 0;
    }
    .dropdown {
        zoom: 200%;
        position: absolute;
        top: 9px;
        right: 60px;
    }
    header .logo {
        height: 35px;
        transition: .3s;
    }
    header img {
        align-self: center;
    }
    header ul {
        margin: 18.4px 0 0 0;
        justify-content: center;
    }
    header ul li {
        margin: 0 15px;
        padding: 10px 0;
    }
    header ul li a {
        padding: inherit;
    }
    .intro {
        width: 90%;
    }
    .intro p {
        width: 80%;
    }
    .content {
        width: 90%;
    }
    .container-error h4 {
        font-size: 5em;
    }
    .container-error h3 {
        font-size: 5em;
    }
    header.active ul{
        top: 100%;
    }
    header ul {
        position: absolute;
        flex-direction: column;
        padding: 0 40px;
        top: -2000%;
        left: 0;
        width: 100%;
        height: auto;
        background-color: #0D131C;
        transition: all .3s linear;
    }
    header ul li,
    header ul li:first-child,
    header ul li:last-child {
        display: flex;
        margin: 0 0 15px 0;
        padding: 15px 10px;
        width: 100%;
        font-size: 18px;
        line-height: 18px;
        border-radius: 6px;
    }
    header ul li a {
        padding: 0;
        width: 100%;
    }
    header ul li:hover {
        
        background: linear-gradient(180deg, #077FCC 0%, #004ADB 100%);
        color: #ffffff;
    }
    header.active .burger {
        background: url('../img/close.svg') center / cover no-repeat;
    }
    .burger {
        display: block;
        width: 30px;
        height: 30px;
        background: url('../img/burger.svg') center / cover no-repeat;
        transition: all .3s linear;
    }
}   

/* Media 425 */
@media screen and (max-width: 600px) {
    header ul li,
    footer {
        padding: 18px 0;
    }
    header {
        padding: 14px 20px;
    }
    .dropdown {
        right: 40px;
    }
    .burger {
        width: 40px;
    }
    header ul li a {
        padding: 0;
    }
    
    header .logo {
        height: 25px;
        transition: .3s;
    }
    footer {
        border-radius: 0;
    }
    header ul {
        padding: 0 20px;
    }
    header ul li, header ul li:first-child, header ul li:last-child {
        display: flex;
        margin: 0 0 5px 0;
        padding: 10px 5px;
        width: 100%;
        font-size: 11px;
        line-height: 12px;
        border-radius: 6px;
    }
    footer ul li a {
        padding: 0;
    }
    footer ul li a:last-child {
        content: 'real or fake';
    }
    .intro {
        margin: 0 auto;
        background: url('../img/mob.png') center / cover no-repeat;
        border-radius: 5px;
    }
    .intro h1 {
        font-size: 18px;
        line-height: 23px;
    }
    .intro p {
        margin: 0 0 21.5px 0;
        width: 95%;
        font-size: 12px;
        line-height: 15px;
    }
    .intro a {
        font-size: 10px;
        line-height: 10px;
    }
    .content {
        padding: 37.8px 0 27px 0;
    }
    .content h2 {
        margin: 15px 0 8px 0;
        font-size: 14px;
        line-height: 16px;
    }
    .content h3, .faq__head, strong {
        margin: 10px 0 5px 0;
        font-size: 13px;
        line-height: 15px;
    }
    .content p,
    .content ul li,
    .content ol li,
    .faq__content {
        margin: 0 auto 8px auto;
        font-size: 12px;
        line-height: 15px;
    }
    table {
        max-width: 100%;
        margin: 0 auto 8px auto;
    }
    td {
        font-size: 12px;
        line-height: 15px;
    }
    .content ul,
    .content ol {
        margin: 0;
    }
    .container-error h3 {
        font-size: 2em;
    }
    .container-error h4 {
        font-size: 2em;
    }
    footer ul li:hover {
        background: transparent;
        color: #004ADB;
    }
    
    .long {
        width: 50%;
    }
}