/* 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%;
    }
    header .row-mobile.active button {
        background: url('../img/close.svg') center / cover no-repeat;
    }
    header .row-mobile div {
        position: relative;
        display: flex;
        padding: 17px 50px;
        justify-content: space-between;
        align-items: center;
        background: #101010;
        z-index: 2;
    }
    header .row-mobile div button {
        width: 25.39px;
        height: 18.88px;
        background: url('../img/burger.svg') center / cover no-repeat;
        border: none;
        transition: .3s all linear;
    }
    header .row-mobile ul {
        top: -2000%;
        position: absolute;
        left: 0;
        width: 100%;
        padding: 12px 50px;
        background: #FBFBFB;
        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: #101010;
    }
    header .row-mobile ul li:last-child {
        margin: 0;
    }
    header .row-mobile ul li:hover {
        background: #FD3B18;
        border-radius: 33px;
        color: #FFFFFF;
    }
    header .row-mobile ul li a {
        padding: 17px 25px;
        width: 100%;
        color: inherit;
        text-decoration: none;
    }

    /* Intro */
    .intro {
        padding: 30px 50px;
    }

    /* Content */
    .content {
        padding: 30px 50px;
    }
    .container-error h3 {
        font-size: 5em;
    }
    .container-error h4 {
        font-size: 3em;
    }
	footer ul li {
		margin: 0 15px 0 0;
	}
}

/* Media 425 */
@media screen and (max-width: 425px) {
    /* header */
    header .row-mobile div {
        padding: 17px 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('../img/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;
    }

    /* Content */
    .content {
        padding: 30px 15px;
    }
    .content h2, .faq__head, .menu__title {
        margin: 15px 0 8px 0;
        font-size: 16px;
        line-height: 22px;
    }
    .content p,
    .content ul li,
    .content ol li,
	.faq__content,
	table,
	.anchor__menu a {
        margin: 0 0 8px 0;
        font-size: 12px;
        line-height: 123.7%;
    }
    .content ul,
    .content ol {
        margin: 0 0 8px 15px;
    }
    /* footer */
    footer ul {
        flex-wrap: wrap;
        padding: 10.5px 0;
    }
    footer ul li {
        margin: 0 24px 0 0;
        padding: 7px 0;
        font-size: 12px;
        line-height: 123.7%;
    }
    .container-error h3 {
        font-size: 2em;
    }
    .container-error h4 {
        font-size: 1em;
    }
}