/*<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 150%;
    background: #F7F9FC;
}
html {
    height: 100%;
    font-size: 100%;    
    font-size: 14px;
    overflow-y: scroll !important;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: 'Open Sans', sans-serif;
}

body {
    text-rendering: optimizeLegibility;
    display: flex;
  min-height: 100vh;
  flex-direction: column;
}

nav {
    background: #ffffff;
    display: flex;
    width: 100%;
    padding: 8px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
nav .header{
    max-width:1200px;
    width: 100%
    text-align:center;
}
nav img.logo {
    width:192px;
    padding:23px 0;
}

nav img.language {
    padding:30px 0;
    width:30px;
    position: absolute;
    right:40px;
}
nav, section, footer{
    padding:0;
}
section{
    flex: 1;
}
.title {
    text-align:center;
    padding:80px 0 84px;
    font-family: inherit;
}

.title h1 {
    color: #192038;
    text-align: center;
    font-family: inherit;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 71px;
    margin:0px;
}


#container {
  display: flex; 
  flex-direction: column; 
  height: 100%; 
}


.elements{
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/
    max-width:996px;
    margin: 0 auto 30px;
}

.download-block {
    display: flex;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #EDF1F7;
    background-color: #ffffff;
    /*max-width:962px;
    width:100%;*/
}

.download-block .download-block-info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 77px);
}



           
.download-block .download-block-info .element-title {
    color: #222B45;
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;

}

.download-block a.download-block-file, .download-block a.open-block-file {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: #004B6C;
  text-decoration: none;
  display: flex;
}

.download-block a.download-block-file:hover, .download-block a.open-block-file:hover {
  color: #80A5B5 !important;
}

.download-block a.download-block-file::before {
  content: url(../img/icon-download.svg);
  filter: brightness(0) saturate(100%) invert(18%) sepia(47%) saturate(3375%) hue-rotate(176deg) brightness(95%) contrast(106%);
  width: 20px;
  height: 20px;
}

.download-block a.open-block-file::after {
  content: url(../img/icon-right.svg);
  filter: brightness(0) saturate(100%) invert(18%) sepia(47%) saturate(3375%) hue-rotate(176deg) brightness(95%) contrast(106%);
  width: 20px;
  height: 20px;
}

.download-block a.download-block-file:hover::before, .download-block a.open-block-file:hover::after {
   filter: brightness(0) saturate(100%) invert(66%) sepia(25%) saturate(351%) hue-rotate(153deg) brightness(90%) contrast(93%);

footer {
    background: #ffffff;
}

footer .copyright {
    color: #2E3A59;
    text-align: center;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding:24px 0;
}


@media all and (max-width: 981px) {
    .title {
        padding:60px 0 64px;
    }
    .title h1 {
        font-size: 42px;
        line-height: 55px;
    }
}
@media all and (max-width: 767px) {
    .title {
        padding:40px 0 44px;
    }
    .title h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .download-block {
        display: block;
      }
    .download-block .download-block-info {
        margin-bottom: 10px;
      }
    nav, section, footer{
    padding:0 16px;
    }
}
           
           
