* {
  margin: 0;
  padding: 0;
  font-family: PT Sans;
}

.app {
  width: 100%;
  height: 100%;
  min-height: 200vh;
  background: #fff;
}

.main {
  width: 700px;
  margin: auto;
  margin-top: 120px;
}
.main > .item-0 {
  padding-top: 30px;
}
.main > .item-0 > p {
  font-size: 18px;
  line-height: 23px;
  margin: 20px 0;
}
.main > .item-0 > p > a {
  text-decoration: none;
  color: #153A81;
}
.main > .item-0 > p > a:visited {
  color: #551A8B;
}

.text-header {
  font-weight: bold;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 15px;
}

.categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.categories > .category-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 225px;
  height: 85px;
  background: #EEEEEE;
  border: 2px solid #eeeeee;
  border-radius: 4px;
  margin: 8px 0;
  cursor: pointer;
  padding: 5px;
}
.categories > .category-card .icon {
  height: 65px;
  width: 65px;
  background-repeat: no-repeat;
  background-clip: border-box;
  background-origin: border-box;
  background-size: cover;
  background-color: #EEEEEE;
}
.categories > .category-card .icon.icon-1 {
  background-image: url(/icon4.98c86da0.png);
}
.categories > .category-card .icon.icon-2 {
  background-image: url(/icon5.32046d08.png);
}
.categories > .category-card .icon.icon-3 {
  background-image: url(/icon3.de8de09d.png);
}
.categories > .category-card .icon.icon-4 {
  background-image: url(/icon6.eb33e17e.png);
}
.categories > .category-card .icon.icon-5 {
  background-image: url(/icon2.735aa798.png);
}
.categories > .category-card .icon.icon-6 {
  background-image: url(/icon1.0702d193.png);
}
.categories > .category-card:hover {
  border: solid 2px #153A81;
  color: #153A81;
}
.categories > .category-card:hover > .icon-1 {
  background-image: url(/icon4_blue.6bb58818.png);
}
.categories > .category-card:hover > .icon-2 {
  background-image: url(/icon5_blue.bf9e90e0.png);
}
.categories > .category-card:hover > .icon-3 {
  background-image: url(/icon3_blue.9810e260.png);
}
.categories > .category-card:hover > .icon-4 {
  background-image: url(/icon6_blue.b6c2edd0.png);
}
.categories > .category-card:hover > .icon-5 {
  background-image: url(/icon2_blue.3726da2e.png);
}
.categories > .category-card:hover > .icon-6 {
  background-image: url(/icon1_blue.469f8fdb.png);
}
.categories > .category-card:active {
  color: #153A81;
  border: solid 2px #153A81;
  font-weight: bold;
}
.categories > .category-card:active > .icon-1 {
  background-image: url(/icon4_blue.6bb58818.png);
}
.categories > .category-card:active > .icon-2 {
  background-image: url(/icon5_blue.bf9e90e0.png);
}
.categories > .category-card:active > .icon-3 {
  background-image: url(/icon3_blue.9810e260.png);
}
.categories > .category-card:active > .icon-4 {
  background-image: url(/icon6_blue.b6c2edd0.png);
}
.categories > .category-card:active > .icon-5 {
  background-image: url(/icon2_blue.3726da2e.png);
}
.categories > .category-card:active > .icon-6 {
  background-image: url(/icon1_blue.469f8fdb.png);
}
.categories > .category-card > span {
  margin: auto;
  font-size: 15px;
  line-height: 23px;
  max-width: 144px;
}
.categories > .category-card > img {
  height: 60px;
  flex-basis: 20%;
  padding: 0 6px 0 0;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 16px 20px;
}
.footer .protivpytok {
  display: flex;
  font-style: italic;
}
.footer .protivpytok a {
  color: #000;
  border: none;
  outline: none;
}
.footer .protivpytok a:hover, .footer .protivpytok a:active {
  color: #153a81;
}
.footer .protivpytok-logo {
  height: 100%;
}
.footer .protivpytok-logo > img {
  height: 40px;
}
.footer .protivpytok-text {
  margin-left: 15px;
  display: flex;
  flex-direction: column;
}
.footer .kandk {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-style: italic;
}
.footer .kandk a {
  color: #000;
  border: none;
  outline: none;
}
.footer .kandk a:hover, .footer .kandk a:active {
  color: #153a81;
}

.scroll-to-top-btn {
  cursor: pointer;
  display: none;
  position: fixed;
  bottom: 100px;
  left: 50px;
}
.scroll-to-top-btn.active {
  display: block;
}

.go-home-btn {
  cursor: pointer;
  outline: none;
  display: none;
  position: fixed;
  bottom: 50px;
  left: 50px;
}
.go-home-btn.active {
  display: block;
}

@media screen and (max-width: 800px) {
  .main {
    width: calc(100% - 42px);
  }

  .categories {
    display: flex;
    flex-direction: column;
  }
  .categories > .category-card {
    width: 100%;
    height: 85px;
  }

  .scroll-to-top-btn,
.go-home-btn {
    left: 10px;
    background: #fff;
  }
  .scroll-to-top-btn > img,
.go-home-btn > img {
    width: 25px;
    height: 25px;
  }

  .scroll-to-top-btn {
    bottom: 45px;
  }

  .go-home-btn {
    bottom: 15px;
  }
}
.header {
  background: #EEEEEE;
  height: 120px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
}
.header .nav-logo {
  display: none;
}
.header .welcome-text {
  font-family: PT Sans Caption;
  word-wrap: break-word;
}
.header > div {
  display: flex;
  width: 1200px;
  height: 100%;
  margin: auto;
}
.header > div > span {
  width: calc(100% - 380px);
  margin: auto 0;
  margin-left: 190px;
  color: #153A81;
  font-size: 21px;
  font-weight: bold;
  line-height: 31px;
}
.header > div > nav {
  width: calc(100% - 360px);
  max-width: 700px;
  margin: auto;
  display: flex;
}
.header > .logo {
  cursor: pointer;
}
.header > .logo > img {
  position: absolute;
  width: 68px;
  height: 80px;
  left: 100px;
  top: 18px;
}

.navlink {
  display: flex;
  width: 100%;
  transition: 0.5s;
  cursor: pointer;
  margin: 0 5px;
  border: solid 2px #EEEEEE;
  border-radius: 4px;
}
.navlink .icon {
  height: 80px;
  width: 80px;
  background-repeat: no-repeat;
  background-clip: border-box;
  background-origin: border-box;
  background-size: cover;
  background-color: #EEEEEE;
  z-index: -1;
}
.navlink .icon.icon-1 {
  background-image: url(/icon4.98c86da0.png);
}
.navlink .icon.icon-2 {
  background-image: url(/icon5.32046d08.png);
}
.navlink .icon.icon-3 {
  background-image: url(/icon3.de8de09d.png);
}
.navlink .icon.icon-4 {
  background-image: url(/icon6.eb33e17e.png);
}
.navlink .icon.icon-5 {
  background-image: url(/icon2.735aa798.png);
}
.navlink .icon.icon-6 {
  background-image: url(/icon1.0702d193.png);
}
.navlink > span {
  font-size: 18px;
  line-height: 23px;
  margin: auto;
}
.navlink:hover {
  border: solid 2px #153A81;
  color: #153A81;
  padding: 0 15px;
}
.navlink:hover > span {
  display: block !important;
}
.navlink:hover > .icon-1 {
  width: 110px;
  background-image: url(/icon4_blue.6bb58818.png);
}
.navlink:hover > .icon-2 {
  width: 98px;
  background-image: url(/icon5_blue.bf9e90e0.png);
}
.navlink:hover > .icon-3 {
  width: 136px;
  background-image: url(/icon3_blue.9810e260.png);
}
.navlink:hover > .icon-4 {
  width: 106px;
  background-image: url(/icon6_blue.b6c2edd0.png);
}
.navlink:hover > .icon-5 {
  width: 80px;
  background-image: url(/icon2_blue.3726da2e.png);
}
.navlink:hover > .icon-6 {
  width: 123px;
  background-image: url(/icon1_blue.469f8fdb.png);
}
.navlink:active {
  transition: 0.1s;
  border: solid 2px #153A81;
  -webkit-box-shadow: inset 0px 0px 20px -4px #153A81;
  -moz-box-shadow: inset 0px 0px 20px -4px #153A81;
  box-shadow: inset 0px 0px 20px -4px #153A81;
}
.navlink.active {
  color: #153A81;
  border: solid 2px #153A81;
  padding: 0 15px;
  font-weight: bold;
}
.navlink.active > .icon-1 {
  width: 110px;
  background-image: url(/icon4_blue.6bb58818.png);
}
.navlink.active > .icon-2 {
  width: 98px;
  background-image: url(/icon5_blue.bf9e90e0.png);
}
.navlink.active > .icon-3 {
  width: 136px;
  background-image: url(/icon3_blue.9810e260.png);
}
.navlink.active > .icon-4 {
  width: 106px;
  background-image: url(/icon6_blue.b6c2edd0.png);
}
.navlink.active > .icon-5 {
  width: 80px;
  background-image: url(/icon2_blue.3726da2e.png);
}
.navlink.active > .icon-6 {
  width: 123px;
  background-image: url(/icon1_blue.469f8fdb.png);
}
.navlink:not(.active) > span {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header > div {
    display: flex;
    width: 100%;
    height: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 992px) {
  .header {
    min-height: 120px;
    height: auto;
  }
  .header .logo {
    display: none;
  }
  .header .nav-logo {
    display: block;
    margin-right: 10px;
  }
  .header > div {
    min-height: 120px;
  }
  .header > div > nav {
    width: 100%;
    max-width: 100%;
    margin: auto 20px;
  }
  .header > div > span {
    width: 100%;
    margin: auto;
  }

  .navlink {
    border: none;
  }
  .navlink:hover {
    border: none;
    padding: 0;
  }
  .navlink:hover > .icon-1 {
    width: 80px;
  }
  .navlink:hover > .icon-2 {
    width: 80px;
  }
  .navlink:hover > .icon-3 {
    width: 80px;
  }
  .navlink:hover > .icon-4 {
    width: 80px;
  }
  .navlink:hover > .icon-5 {
    width: 80px;
  }
  .navlink:hover > .icon-6 {
    width: 80px;
  }
  .navlink:hover > span {
    display: none !important;
  }
  .navlink:active {
    border: none;
  }
  .navlink:active > span {
    display: none;
  }
  .navlink.active {
    border: none;
    padding: 0;
  }
  .navlink.active > .icon-1 {
    width: 80px;
  }
  .navlink.active > .icon-2 {
    width: 80px;
  }
  .navlink.active > .icon-3 {
    width: 80px;
  }
  .navlink.active > .icon-4 {
    width: 80px;
  }
  .navlink.active > .icon-5 {
    width: 80px;
  }
  .navlink.active > .icon-6 {
    width: 80px;
  }
  .navlink.active > span {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .header {
    min-height: auto;
    height: auto;
  }
  .header .logo {
    display: none;
  }
  .header .nav-logo {
    display: block;
    margin-right: 10px;
  }
  .header .nav-logo > img {
    height: calc(100vw / 7);
  }
  .header > div {
    min-height: auto;
  }
  .header > div > nav {
    margin: auto;
  }

  .navlink {
    border: none;
    width: calc(100vw / 7);
    margin: 0;
  }
  .navlink .icon {
    width: calc(100vw / 7);
    height: calc(100vw / 7);
  }
  .navlink:hover, .navlink:active, .navlink.active {
    border: none;
    padding: 0;
  }
  .navlink:hover > .icon-1, .navlink:hover > .icon-2, .navlink:hover > .icon-3, .navlink:hover > .icon-4, .navlink:hover > .icon-5, .navlink:hover > .icon-6, .navlink:active > .icon-1, .navlink:active > .icon-2, .navlink:active > .icon-3, .navlink:active > .icon-4, .navlink:active > .icon-5, .navlink:active > .icon-6, .navlink.active > .icon-1, .navlink.active > .icon-2, .navlink.active > .icon-3, .navlink.active > .icon-4, .navlink.active > .icon-5, .navlink.active > .icon-6 {
    width: calc(100vw / 7);
    height: calc(100vw / 7);
  }
  .navlink:hover > span, .navlink:active > span, .navlink.active > span {
    display: none;
  }
}
.section-wrapper {
  position: relative;
  padding-bottom: 50px;
}

.section-icon {
  position: absolute;
  top: 0;
  left: -55px;
  height: 44px;
}

.section-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  padding-left: 6px;
}

.section-item-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: -10px;
  margin-bottom: 27px;
}
.section-item-wrapper > .border {
  width: 4px;
  margin-right: 10px;
  border-radius: 4px;
}
.section-item-wrapper > .border-red {
  background-color: #E11313;
}
.section-item-wrapper > .border-yellow {
  background-color: #E19B13;
}
.section-item-wrapper > .border-green {
  background-color: #13E11C;
}

.section-item-content {
  width: 100%;
  border: 1px solid #fff;
  box-sizing: border-box;
  padding: 2px 4px;
}

.section-item-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 10px;
}

.section-item-description {
  position: relative;
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 7px;
}

.section-item-description-mark {
  position: absolute;
  left: -57px;
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 7px;
}
.section-item-description-mark.short {
  left: -43px;
}

.section-item {
  position: relative;
}
.section-item > .mark {
  position: absolute;
  left: -42px;
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 5px;
}
.section-item > .paragraph {
  display: block;
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 5px;
}

.section-item-result-block {
  position: relative;
}

.section-item-result-icon {
  position: absolute;
  top: 50%;
  left: -47px;
  transform: translateY(-50%);
}

.section-item-result-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 3px;
}

.section-item-result-text {
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 10px;
}

.anchor {
  position: absolute;
  top: -125px;
}

@media screen and (max-width: 800px) {
  .section-wrapper {
    width: calc(100% - 21px);
    margin-left: 40px;
  }
}
.progress-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 0 45px;
}
.progress-bar > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  width: 225px;
}
.progress-bar > div > span {
  white-space: nowrap;
}
.progress-bar > div > label {
  height: 3px;
  border-radius: 4px;
  width: 100%;
  margin: 0 3px;
}
.progress-bar > .completed > label {
  background-color: #13E11C;
}
.progress-bar > .partial > label {
  background-color: #E19B13;
}
.progress-bar > .uncompleted > label {
  background-color: #E11313;
}

@media screen and (max-width: 700px) {
  .progress-bar {
    display: flex;
    flex-direction: column;
    margin: 30px 0 40px;
  }
  .progress-bar > div {
    width: 100%;
  }
}

/*# sourceMappingURL=/client.3ede9662.css.map */