body {
  display: flex;
  flex-direction: column;
  font-family: 'Involve', sans-serif;
  margin: 0;
  padding: 0;
}

#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: var(--grey-1);
  min-height: 100vh;
}

#block-animate-page-transition {
  display: block;
  background-color: var(--white);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.25s ease;
}

button {
  padding: 0;
  margin: 0;
  border: none;
}

h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
}

input, textarea {
  font-family: 'Involve', sans-serif;;
}

.body-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 112px;
}

.main-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  width: 1180px;
  padding: 16px;
  border-radius: 32px;
  position: fixed;
  top: 0;
  z-index: 20;
}

.main-header .main-header__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.main-header .main-header__content.main-header__content_mobile {
  display: none;
}

.main-header .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.main-header .header-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.main-header .header-navigation .text {
  padding: 4px 8px;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.5s ease;
  border-radius: 16px;
  color: var(--blue-2);
  text-decoration: none;
}

.main-header .header-navigation .text:not(:first-child) {
  margin-left: 8px;
}

.main-header .header-navigation .text:not(:last-child) {
  margin-right: 8px;
}

.main-header .header-navigation .text:hover {
  background-color: var(--blue-bg-4);
}

.modal-notification {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--black-op-20);
}

.modal-notification.visible {
  opacity: 1;
  visibility: visible;
}

.modal-notification .modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 40px;
  border-radius: 32px;
  width: 480px;
}

.modal-notification .modal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-notification .modal-wrapper .modal-wrapper__header {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modal-notification .modal-wrapper .modal-wrapper__header .text_title {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 35.2px */
  color: var(--grey-1);
}

.modal-notification .modal-wrapper .modal-wrapper__header .text_title.text_subscribe_sliced {
  max-width: 300px;
}

.modal-notification .modal-wrapper .qr-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.modal-notification .modal-wrapper .qr-image img {
  width: 380px;
  height: auto;
}

.modal-notification .modal-wrapper .button_close {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  background-color: transparent;
  transition: 0.5s ease;
}

.modal-notification .modal-wrapper .button_close svg {
  width: 28px;
  height: auto;
}

.modal-notification .modal-wrapper .button_close:hover {
  background-color: var(--grey-1);
}

.modal-notification .modal-wrapper .button_close:hover svg path {
  stroke: var(--white);
}

.modal-notification .modal-wrapper .button_close svg path {
  transition: 0.5s ease;
}

.modal-notification .modal-wrapper .modal-wrapper__content {
  margin-top: 16px;
}

.modal-notification .modal-wrapper .modal-wrapper__content .text_content {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.modal-notification .modal-wrapper .modal-wrapper__content .text_content a {
  color: var(--blue-2);
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}

.modal-notification .modal-wrapper .modal-wrapper__content .text_content a:hover {
  color: var(--blue-1);
}

.modal-notification .modal-wrapper .modal-wrapper__management {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}

.modal-notification .modal-wrapper .button_accept {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  height: 56px;
  width: 100%;
  border-radius: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: 0.5s ease;
}

.modal-notification .modal-wrapper .button_accept_theme_blue {
  background-color: var(--blue-2);
  color: var(--white);
  border-color: var(--blue-2);
}

.modal-notification .modal-wrapper .button_accept_theme_blue:hover {
  background-color: var(--blue-1);
  border-color: var(--blue-1);
}

.modal-notification .modal-wrapper .button_accept_theme_white {
  background-color: var(--white);
  color: var(--blue-2);
  border-color: var(--blue-2);
}

.modal-notification .modal-wrapper .button_accept_theme_white:hover {
  background-color: var(--blue-1);
  border-color: var(--blue-1);
  color: var(--white);
}

.default-modal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.body-content_docs {
  display: flex;
  flex-direction: column;
}

.body-content_docs .docs-content {
  display: flex;
  flex-direction: column;
  width: 778px;
}

.body-content_docs .docs-content .docs-content__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
}

.body-content_docs .docs-content .docs-content__text {
  margin-top: 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
}

.body-content_docs .docs-content .docs-content__text a {
  cursor: pointer;
  color: var(--blue-2);
  transition: 0.5s ease;
  text-decoration: none;
}

.body-content_docs .docs-content .docs-content__text a:hover {
  text-decoration: underline;
  color: var(--blue-1);
}

.footer {
  margin-top: 120px;
}

@media all and (max-width: 1440px) {
  .body-content {
    margin-top: 90px;
  }

  .main-header {
    width: 980px;
    padding: 14px;
    border-radius: 28px;
  }

  .main-header .logo img {
    width: auto;
    height: 34px;
  }

  .main-header .header-navigation .text {
    padding: 2px 6px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
  }

  .main-header .header-navigation .text:not(:first-child) {
    margin-left: 6px;
  }

  .main-header .header-navigation .text:not(:last-child) {
    margin-right: 6px;
  }

  .footer {
    margin-top: 100px;
  }

  .modal-notification .modal {
    padding: 32px;
    border-radius: 28px;
    width: 400px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__header .text_title {
    font-size: 26px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__header .text_title.text_subscribe_sliced {
    max-width: 260px;
  }

  .modal-notification .modal-wrapper .qr-image {
    margin-top: 14px;
  }

  .modal-notification .modal-wrapper .qr-image img {
    width: 300px;
    height: auto;
  }

  .modal-notification .modal-wrapper .button_close {
    width: 32px;
    height: 32px;
  }

  .modal-notification .modal-wrapper .button_close svg {
    width: 26px;
    height: auto;
  }

  .modal-notification .modal-wrapper .modal-wrapper__content {
    margin-top: 14px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__content .text_content {
    font-size: 18px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__management {
    margin-top: 24px;
  }

  .modal-notification .modal-wrapper .button_accept {
    height: 52px;
    border-radius: 14px;
    font-size: 16px;
  }

  .body-content_docs .docs-content {
    width: 700px;
  }

  .body-content_docs .docs-content .docs-content__title {
    font-size: 28px;
  }

  .body-content_docs .docs-content .docs-content__text {
    margin-top: 14px;
    font-size: 15px;
  }
}

@media all and (max-width: 1160px) {
  .body-content {
    margin-top: 90px;
  }

  .main-header {
    width: 860px;
    padding: 14px;
    border-radius: 28px;
  }

  .footer {
    margin-top: 100px;
  }
}

@media all and (max-width: 960px) {
  .main-header {
    width: 680px;
  }

  .body-content_docs .docs-content {
    width: 620px;
  }
}

@media all and (max-width: 720px) {
  .main-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: calc(100% - 32px);
    border-radius: 0 0 24px 24px;
    padding: 16px 16px 0 16px;
  }

  .main-header .logo img {
    width: auto;
    height: 32px;
  }

  .main-header .header-navigation .text {
    padding: 0;
    font-size: 18px;
  }

  .main-header .header-navigation .text:hover {
    background-color: transparent;
  }

  .main-header .main-header__content_full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .main-header.opened .main-header__content_full {
    max-height: 230px;
  }

  .main-header .main-header__content_mobile {
    margin-bottom: 16px;
  }

  .main-header .buttons-management {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .main-header .buttons-management .button__theme_menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 8px;
    background-color: var(--blue-bg-5);
    position: relative;
  }

  .main-header .buttons-management .svg-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s ease;
    position: absolute;
    left: 0;
    top: 0;
  }

  .main-header .buttons-management .button__theme_menu .svg-wrapper {
    opacity: 0;
  }

  .main-header .buttons-management .button__theme_menu .svg-wrapper.svg-wrapper_open {
    opacity: 1;
  }

  .main-header.opened .buttons-management .button__theme_menu .svg-wrapper.svg-wrapper_open {
    opacity: 0;
  }

  .main-header.opened .buttons-management .button__theme_menu .svg-wrapper.svg-wrapper_close {
    opacity: 1;
  }

  .main-header .main-header__content.main-header__content_mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .main-header .main-header__content.main-header__content_full .logo {
    display: none;
  }

  .main-header .main-header__content {
    justify-content: flex-end;
  }

  .main-header .header-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 8px 0 40px 0;
  }

  .main-header .header-navigation .text:not(:first-child) {
    margin-left: 0;
    margin-top: 24px;
  }

  .main-header .header-navigation .text:not(:last-child) {
    margin-right: 0;
  }

  .body-content {
    margin-top: 80px;
  }

  .footer {
    margin-top: 40px;
  }

  .modal-notification .modal {
    padding: 24px 16px 16px 16px;
    border-radius: 24px;
    width: calc(100vw - 32px - 32px);
  }

  .modal-notification .modal-wrapper .modal-wrapper__header .text_title.text_subscribe_sliced {
    max-width: 100%;
  }

  .modal-notification .modal-wrapper .modal-wrapper__header .text_title {
    font-size: 18px;
    font-weight: 600;
    margin-right: 40px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__content {
    margin-top: 10px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__content .text_content {
    font-size: 15px;
  }

  .modal-notification .modal-wrapper .button_close {
    width: 28px;
    height: 28px;
  }

  .modal-notification .modal-wrapper .button_close:hover {
    background-color: transparent;
  }

  .modal-notification .modal-wrapper .button_close svg {
    width: 24px;
    height: auto;
  }

  .modal-notification .modal-wrapper .modal-wrapper__management {
    margin-top: 16px;
  }

  .modal-notification .modal-wrapper .button_accept {
    height: 39px;
    border-radius: 8px;
    font-size: 14px;
  }

  .modal-notification .modal-wrapper .qr-image {
    margin-top: 16px;
  }

  .modal-notification .modal-wrapper .qr-image img {
    width: calc(100% - 32px);
    height: auto;
  }

  .body-content_docs .docs-content {
    width: calc(100% - 32px);
  }

  .body-content_docs .docs-content .docs-content__title {
    font-size: 18px;
  }

  .body-content_docs .docs-content .docs-content__text {
    margin-top: 16px;
    font-size: 15px;
  }
}
