/* Media 1280 */
@media screen and (max-width: 1280px) {
    /* Container */
    .container {
        max-width: 1000px;
    }
}

/* Media 1280 */
@media screen and (max-width: 1100px) {
    /* Container */
    .container {
        max-width: 768px;
    }
}

/* Media 768 */
@media screen and (max-width: 768px) {
    /* Container */
    .container {
        max-width: none; 
    }
    
    /* header */
    header {
        padding: 0;
        background-color: transparent;
    }
    header .row {
        display: none;
    }
    header .row-mobile {
        position: relative;
        display: block;
    }
    header .row-mobile.active ul {
        top: 100%;
            z-index: 1;
    }
    header .row-mobile.active button {
        background: url('../image/close.svg') center / cover no-repeat;
    }
    header .row-mobile div {
        position: relative;
        display: flex;
        padding: 15px 50px;
        justify-content: space-between;
        align-items: center;
        background: #0F1923;
        z-index: 2;
    }
    header .row-mobile div button {
        width: 25.39px;
        height: 18.88px;
        background: url('../image/burger.svg') center / cover no-repeat;
        border: none;
        transition: .3s all linear;
    }
    header .row-mobile ul {
        top: -1400%;
        position: absolute;
        left: 0;
        width: 100%;
        padding: 12px 50px;
        background: #0F1923;
        transition: .3s all linear;
    }
    header .row-mobile ul li {
        display: flex;
        justify-content: flex-start;
        margin: 0 0 10px 0;
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 123.7%;
        list-style: none;
        transition: .3s all linear;
        color: #fff;
    }
    header .row-mobile ul li:last-child {
        margin: 0;
    }
    header .row-mobile ul li:hover {
        background: #2751FF;
        border-radius: 7px;
    }
    header .row-mobile ul li a {
        padding: 17px 25px;
        width: 100%;
        color: inherit;
        text-decoration: none;
    }
    .container-error h4 {
        font-size: 3em;
    }
    .container-error h3 {
        font-size: 5em;
    }

    /* Intro */
    .intro {
        padding: 30px 50px;
    }

    /* Content */
    .content {
        padding: 30px 50px;
    }
    .content .row {
        display: block;
    }
    .content .row p {
        margin: 0 0 20px 0;
        width: 100%;
    }
    .content .row p:last-child {
        margin: 0;
    }
    .blog-banner {
        width: 50%;
    }
}

/* Media 425 */
@media screen and (max-width: 600px) {
    /* header */
    header .row-mobile div {
        padding: 10px 15px;
    }
    header .row-mobile ul {
        padding: 12px 15px;
    }
    header .row-mobile ul li {
        font-size: 12px;
    }
    header .row-mobile ul li a {
        padding: 7px 17px;
    }

    /* Intro */
    .intro {
        padding: 23px 15px 39px 15px;
        background: url('../image/mob.png') center / cover no-repeat;
    }
    .intro h1 {
        margin: 0 0 9px 0;
        font-weight: 800;
        font-size: 19.7518px;
        line-height: 27px;
    }
    .intro p {
        margin: 0 0 18px 0;
        font-weight: 400;
        font-size: 12px;
        line-height: 123.7%;
    }
    .intro a {
        padding: 10.5px 45px;
        font-size: 12px;
        line-height: 16px;
        margin-top:15px;
    }
    header .row-mobile img {
        height: 15px;
    }
    /* Content */
    .content {
        padding: 30px 15px;
    }
    .content h2 {
        margin: 15px 0 8px 0;
        font-size: 16px;
        line-height: 22px;
    }
    .content p,
    .content ul li,
    .content ol li {
        margin: 0 0 8px 0;
        font-size: 12px;
        line-height: 123.7%;
    }
    .blog-title {
        font-size: 16px;
        line-height: 22px;
    }
    .blog p {
        padding: 10px 0 0 0;
    }
    .content ul,
    .content ol {
        margin: 0 0 0 15px;
    }
    .container-error h3 {
        font-size: 2em;
    }
    .container-error h4 {
        font-size: 1em;
    }

    /* footer */
    footer ul {
        padding: 17.5px 0;
        flex-wrap: wrap;
    }
    footer ul li {
        margin: 5px !important;
        font-size: 12px;
        line-height: 123.7%;
    }
}