@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('./fonts/roboto/roboto-v29-latin_cyrillic-regular.woff2') format('woff2'),
    url('./fonts/roboto/roboto-v29-latin_cyrillic-regular.woff') format('woff'),
    url('./fonts/roboto/roboto-v29-latin_cyrillic-regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('./fonts/roboto/roboto-v29-latin_cyrillic-700.woff2') format('woff2'),
    url('./fonts/roboto/roboto-v29-latin_cyrillic-700.woff') format('woff'),
    url('./fonts/roboto/roboto-v29-latin_cyrillic-700.ttf') format('truetype');
    font-display: swap;
}

*{
    box-sizing: border-box;
}

html{
    height: 100%;
}
body {
    background: #008bcb url("./bg.png");
    font-family: "Roboto", Arial, 'sans-serif';
    margin: 0;
    padding: 0;
    line-height: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #464646;
}

footer{
    min-height: 85px;
    background: #2b2b2b;
    color: #ccc;
    flex: 0 0 auto;
}

p{
    text-indent: 10px;
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 10px;
}

.main{
    flex: 1 0 auto;
}

.container{
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    background: rgba(255, 255, 255, .9);
    padding: 0 20px;
    padding-bottom: 20px;
}

footer .container{
    padding-bottom: 0;
}

.img-container{
    text-align: center;
    padding-top: 20px;
    margin-bottom: 30px;
}

.breadcrumbs{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}

.breadcrumbs li{
    display: inline-block;
}

.breadcrumbs li a{
    color: #014094
}

.left{
    float: left;
}
.right{
    float: right;
}

.right a{
    color: #ccc;
}

.documents{
    margin-bottom: 100px;
}

.documents a{
    color: #1b2b86;
    font-size: 16px;
    line-height: 18px;
}

@media (max-width: 768px) {

    .container{
        width: 100%;
        padding: 10px;
    }
    body{
        display: block;
    }
    footer{
        font-size: 12px;
    }
    .main{
        padding: 0px;
    }
    h1{
        font-size: 24px;
    }
}

.brand {
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: transparent;
    height: auto;
    width: 10em;
    margin: 0 auto 1.2em;
}
@media (min-width: 768px) {
    .brand {
        margin-bottom: 0.2em;
    }
}
.brand img {
    width: 10em;
}
.brand .tagline {
    display: inline-block;
    width: 100%;
    font-size: 27px;
    font-weight: 600;
    color: #000;
    text-align: justify;
    text-align-last: justify;
    white-space: nowrap;
}
