/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
card, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
card, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.11;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Общий стиль */
body {
    font-family: 'Roboto', sans-serif;
    height: 100vh;
}

/* Style the list */
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: var(--form-input);
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
    padding: 8px;
    color: var(--black);
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: var(--orange);
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    text-decoration: underline;
}

* {
    box-sizing: border-box;
}

/* Основной контент */

h1 {
    font-weight: 700;
    font-size: 4vw;
    line-height: 1em;
}

h2 {
    font-weight: 700;
    font-size: 2.25em;
}

h2 {
    margin: 0;
}

/* Скрытие навигации и смены языков на мобильных устройствах */
@media (max-width: 800px) {
    body {
        background: var(--white);
    }

    * {
        box-sizing: border-box;
    }

    h1 {
        font-size: 2.2em;
        line-height: 1.5em;
        color: var(--black);
    }
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--black);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--black);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--black);
}

