body,
body * {
    margin: 0;
    padding: 0;
}

.header,
.footer {
    background-color: #181b21;
}
.header {
    padding: 10px;
}

.footer-bottom__copyright {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: #BDC7D6;
}

.footer-bottom-section {
    padding: 26px 0 26px 0;
    background: #181B21;
}

.footer-bottom-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-privacy {
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    padding: 4px 0;
    position: relative;
    text-decoration: none;

    border-color: #4f5256;
    color: #f1f4f9;

    font-size: 12px;
    line-height: 16px;

    transition: all .2s ease-in-out;
}

.footer-privacy:before {
    content: '';

    background: hsla(0,0%,100%,.24);
    bottom: 0;
    height: 2px;
    position: absolute;
    width: 100%;
}

.footer-privacy:hover {
    color: #f1f4f9;
}
.footer-privacy:hover:before {
    background: #f1f4f9;
}

@media (max-width: 1199.5px) {
    .footer-bottom__copyright {
        margin-right: 105px;
    }
}


@media (max-width: 1023.5px) {
    .footer-bottom__copyright {
        margin-right: 46px;
    }
}

@media (max-width: 767.5px) {

    .footer-bottom__copyright {
    }

    /*.footer-bottom__copyright,*/
    /*.footer-bottom__privacy-policy {*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    /*    flex-wrap: wrap;*/

    /*    width: 100%;*/
    /*}*/
}

.header svg {
    display: block;
}
.header svg * {
    fill: #fff;
}
.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (max-width: 1199.5px) and (min-width: 1023.5px) {
    .container {
        max-width: 896px;
    }
}
@media (max-width: 1023.5px) and (min-width: 767.5px) {
    .container {
        max-width: 704px;
    }
}
@media (max-width: 767.5px) {
    .container {
        max-width: 100%;
    }
}

.error-message {
    min-height: calc(100vh - 508px);

    padding: 212px 0 160px 0;


    background-image: url("./assets/404-page.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container {

}

.error-message__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.error-message__text-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    max-width: 700px;
}

.error-message__title {
    font-family: 'Roboto Condensed',sans-serif;
    margin-bottom: 12px;

    font-weight: 700;
    font-size: 55px;
    line-height: 55px;

    letter-spacing: -0.02em;
    text-transform: uppercase;

    color: #FFFFFF;
}

.error-message__btn {
    margin-top: 24px;
}

.button {
    display: flex;
    justify-content: center;

    padding: 19px 28px 17px;

    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;

    background: #fff;
    color: #181b21;
    border-radius: 8px;
    border: none;
    text-decoration: none;

    cursor: pointer;
    transition: all .2s ease-in-out;
}
.button:hover {
    background: #fff;
    color: #225fbf;
}

.button:hover {
    background: #f1f4f9;
    color: #0f4599;
}


@media (max-width: 1199.5px) {
    .error-message {
        min-height: calc(100vh - 408px);

        padding: 152px 0 120px 0;
    }

    .button {
        padding: 16px 24px 15px;
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 1023.5px) {
    .error-message {
        min-height: calc(100vh - 488px);

        padding: 192px 0 160px 0;
    }


}

@media (max-width: 767.5px) {
    .error-message__title {
        font-size: 36px;
        line-height: 36px;
    }

    .error-message {
        min-height: calc(100vh - 400px);

        padding: 144px 0 120px 0;
    }

    .error-message__btn {
        margin-top: 20px;
    }
}