.header {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9%;
  z-index: 1;
  background: #fff;
}
.header__right-part {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #89071F;
}
.header__sign-in {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.header__sign-in img {
  margin-right: 9px;
}
.header__language {
  border: 1px solid #CCD1D9;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 4px 12px;
  margin-left: 60px;
  cursor: pointer;
}
@media (max-width: 867px) {
  .header {
    padding: 0 4% 0 9%;
  }
  .header__right-part {
    flex-direction: row-reverse;
  }
  .header__sign-in {
    margin-left: 15px;
  }
  .header__language {
    margin-left: 9px;
  }
}
.main {
  margin-top: 5%;
  margin-bottom: 5%;
  position: relative;
  min-height: 100%;
}
.main h1 {
  background: white;
  margin: 0 auto;
  max-width: 80rem;
  padding: 4.4rem;
  text-align: center;
}
.main__article {
  background: white;
  margin: 0 auto;
  max-width: 80rem;
  border-radius: 10px;
  padding: 4.4rem;
  text-align: justify;
}
@media (max-width: 412px) {
  .main__article {
    margin: 0 5%;
    padding: 2rem;
  }
}
.main__article_flex-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 412px) {
  .main__article_flex-block {
    flex-direction: column;
  }
}
.main__article_left-section, .main__article_right-section, .main__article_central-section {
  display: flex;
  flex-direction: column;
  width: 27.5rem;
  text-align: center;
}
.main__article_left-section a:not(:last-child)::after, .main__article_right-section a:not(:last-child)::after, .main__article_central-section a:not(:last-child)::after {
  display: block;
  content: "";
  width: 4.8rem;
  height: 1px;
  background: #CCD1D9;
  margin: 1.2rem auto 0;
}
@media (max-width: 412px) {
  .main__article_left-section, .main__article_right-section, .main__article_central-section {
    width: 25.6rem;
  }
}
@media (max-width: 412px) {
  .main__article_left-section a::after {
    display: block;
    content: "";
    width: 4.8rem;
    height: 1px;
    background: #CCD1D9;
    margin: 1.2rem auto 0;
  }
}
.main__article_central-section {
  margin: 0 auto;
}
.main__article h2 {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 3.3rem;
  text-align: center;
  margin-bottom: 40px;
}
.main__article .description {
  max-width: 496px;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  color: #000000;
  margin: 12px auto 40px;
}
.main__article_content-links {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}
.main__article_content-links:first-of-type {
  margin-top: 0;
}
.main__article_content-links h2 {
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  font-size: 2rem;
  line-height: 2.7rem;
}
.main__article_content-links a {
  text-decoration: none;
  color: #2176F6;
  margin-bottom: 16px;
}
.main__article_content-links a:last-of-type {
  margin-bottom: 0;
}
.main__article_text-block {
  margin-top: 56px;
}
.main__article_text-block h2 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.7rem;
  margin-bottom: 8px;
}
.main__article_image {
  width: 100vw;
  margin: 40px 0 40px -10%;
}
.main__article_image_mob {
  display: none;
  width: 100vw;
  margin: 32px 0 32px -10%;
}
@media (max-width: 512px) {
  .main__article_image {
    display: none;
  }
  .main__article_image_mob {
    display: block;
  }
}
.footer {
  max-height: 288px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
}
.footer__info-links {
  line-height: 1.5;
  text-align: center;
  margin: 0 0 12px;
}
.footer__info-links > a {
  display: inline-block;
  margin: 0 40px 0 0;
  text-decoration: none;
  color: #323232;
  font-size: 16px;
}
.footer__info-links > a:last-of-type {
  margin: 0;
}
.footer__social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0;
  height: 80px;
}
.footer__social-link {
  width: 34px;
  height: 36px;
  margin: 0 10px 0 0;
}

html {
  font-size: 10px;
  height: 100%;
}
@media (min-width: 360px) {
  html {
    font-size: 11px;
  }
}
@media (min-width: 412px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 868px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

body {
  font-family: Open Sans, serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 22px;
  color: #323232;
  height: 100%;
  margin: 0;
}