html,
body {
  margin: 0;
  padding: 0;
}

* {
  padding: 0;
  margin: 0;
}

body {
  box-sizing: border-box;
  font-family: "Helvetica", "Arial", sans-serif;
  color: rgb(34, 34, 34);
  background-color: rgb(250, 250, 250);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

picture {
  display: block;
}

button,
input,
textarea,
select {
  -webkit-appearance: none;
  font-family: inherit;
  color: inherit;
  border: none;
  border-radius: 0;
  background: none;
  outline: 0;
}

main {
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
}
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 12px 0;
  background-color: #fff;
  border-bottom: 1px solid rgb(218, 218, 218);
}
.header-logo-2__top {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
.header-logo-2__bottom {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.header__content {
  display: flex;
}
.logo {
  display: block;
  width: 190px;
  margin-right: 20px;
}

.header-logo-2 {
  display: block;
}

.footer {
  margin-top: auto;
  flex: 0 0 auto;
  /*color: #fff;
  background-color: rgb(69, 69, 69);*/
}
.container-wide {
  padding: 0 20px;
}
.footer__main {
  padding: 20px 0;
  font-size: 12px;
}

.footer__main p {
  margin-top: 0;
  margin-bottom: 0;
}

.footer__main a {
  color: inherit;
  font-weight: bold;
}
.footer__bottom {
  border-top: 1px solid #666;
  padding: 24px 0;
  font-size: 14px;
}

.container {
  margin: 0 auto;
  max-width: 1264px;
  padding: 0 20px;
}
.tab-content {
  display: none;
}

.text-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 15px;
}

.text-page {
  padding: 30px 0 40px;
}
.text-page b {font-weight:700;}

.text-page p {
  margin-bottom: 23px;
}

.text-page li {
  margin-bottom: 10px;
}

.text-page ul li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: currentColor;
  vertical-align: middle;
  margin-bottom: 2px;
}

.text-page h2 {
  padding-top: 10px;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 23px;
}

.text-page ul{
  list-style: none;
  margin-bottom: 28px;
}
.text-page ol {padding-left: 40px;}

.anchors {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -15px;
  margin-right: -15px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
}

.anchors__item {
  padding: 0 15px;
}

.anchors__item a {
  position: relative;
  display: block;
  padding: 0 10px;
  color: inherit;
  text-decoration: none;
}

.anchors__item a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0px;
  right: 0px;
  height: 5px;
  will-change: background-color;
  transition: background-color 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.anchors__item a.active::after {
  background-color: #797979;
}

.organization-information {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -14px 20px;
  font-size: 14px;
}

.organization-information__item {
  padding: 0 14px;
  margin-bottom: 10px;
}
.organization-information b {
  font-weight: 400;
}
.information__logo-cont {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 50px -20px 0;
}
.information__logo {
  margin: 10px 20px;
  height: 26px;
}
.information__logo img {
  display: block;
  max-height: 100%;
}

@media (min-width: 700px) {
  .logo {
    width: 190px;
    margin-right: 32px;
  }
  .header-logo-2__top {
    font-size: 16px;
  }
  .header-logo-2__bottom {
    font-size: 14px;
  }
  .information__logo {
    height: 40px;
  }
}

@media (min-width: 992px) {
  .anchors {
    margin-bottom: 40px;
  }

  .text-page h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .organization-information__item {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .text-page {
    padding: 60px 0 90px;
  }
}
