*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  color: #fff;
  background-color: #0a0e1a;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInScale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.container {
  width: 100%;
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header {
  margin-top: 40px;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.header .container {
  height: 100%;
  width: auto;
  max-width: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-animation: fadeInDown 0.6s ease-out forwards;
          animation: fadeInDown 0.6s ease-out forwards;
  margin: 0;
}
.header .burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #1a1f2e;
  border: 1px solid #2a3548;
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 110;
}
.header .burger .burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .burger.is-active .burger__line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.header .burger.is-active .burger__line:nth-child(2) {
  opacity: 0;
}
.header .burger.is-active .burger__line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
.header .menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
.header .menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.header .menu {
  padding: 8px 9px 8px 24px;
  background: #1a1f2e;
  border: 1px solid #2a3548;
  border-radius: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header .menu a {
  color: #8a92a8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  font-size: 14px;
  line-height: 0;
}
.header .menu a svg rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .menu a:hover {
  color: #00AAE0;
}
.header .menu a:hover svg rect {
  fill: #00AAE0;
}
@media (max-width: 1019px) {
  .header .container {
    position: relative;
    z-index: 110;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 130px 24px 24px;
    border-radius: 0;
    border: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    z-index: 100;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    overflow-y: auto;
  }
  .header .menu.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header .menu a {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.4;
    border-bottom: 1px solid #2a3548;
  }
  .header .menu a:last-child {
    border-bottom: none;
  }
  .header .menu-overlay {
    display: block;
  }
}

.text-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#0060C0), to(#00AAE0));
  background: linear-gradient(90deg, #0060C0, #00AAE0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.left_bg {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: -2;
}

.right_bg {
  position: absolute;
  top: 325px;
  right: 0;
  z-index: -2;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 60px;
  margin-bottom: 60px;
}
.main h1 {
  text-align: center;
  font-size: 50px;
  color: #fff;
  line-height: 55px;
  font-weight: 600;
  opacity: 0;
  -webkit-animation: fadeInUp 0.6s ease-out 0.15s forwards;
          animation: fadeInUp 0.6s ease-out 0.15s forwards;
}
.main h1 span {
  background: -webkit-gradient(linear, left top, right top, from(#0060C0), to(#00AAE0));
  background: linear-gradient(90deg, #0060C0, #00AAE0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.main .sub {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  opacity: 0;
  -webkit-animation: fadeIn 0.6s ease-out 0.35s forwards;
          animation: fadeIn 0.6s ease-out 0.35s forwards;
}
.main .img_center {
  width: 100%;
  height: 118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 27px;
  position: relative;
  opacity: 0;
  -webkit-animation: fadeIn 0.6s ease-out 0.5s forwards;
          animation: fadeIn 0.6s ease-out 0.5s forwards;
}
.main .img_center img.main_center {
  height: 155px;
}
.main .img_center img.main_center2 {
  position: absolute;
  top: -77px;
  left: 0;
  right: 0;
  margin: auto;
}
.main .img_center img.main_center3 {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  margin: auto;
}
.main .box {
  padding: 50px;
  border-radius: 65px;
  background: rgba(26, 31, 46, 0.6);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(42, 53, 72, 0.5);
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease-out 0.65s forwards;
          animation: fadeIn 0.5s ease-out 0.65s forwards;
}
.main .box .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.main .box .items .item {
  padding: 38px;
  background: #1a1f2e;
  border-radius: 40px;
  border: 1px solid #2a3548;
  opacity: 0;
  -webkit-animation: fadeInScale 0.45s ease-out forwards;
          animation: fadeInScale 0.45s ease-out forwards;
  color: #fff;
  text-decoration: none;
}
.main .box .items .item.item--ready {
  -webkit-animation: none;
          animation: none;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.main .box .items .item.item--ready:hover {
  -webkit-transform: scale(1) translateY(-5px);
          transform: scale(1) translateY(-5px);
}
.main .box .items .item img {
  margin-bottom: 15px;
}
.main .box .items .item .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.main .box .items .item .text {
  font-size: 14px;
  max-width: 235px;
}
.main .box .items .item.active {
  background: -webkit-gradient(linear, left top, right top, from(#0060C0), to(#00AAE0));
  background: linear-gradient(to right, #0060C0, #00AAE0);
  box-shadow: 0 0 30px rgba(0, 170, 224, 0.3);
}
.main .box .items .item:nth-child(1) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.main .box .items .item:nth-child(2) {
  -webkit-animation-delay: 0.83s;
          animation-delay: 0.83s;
}
.main .box .items .item:nth-child(3) {
  -webkit-animation-delay: 0.91s;
          animation-delay: 0.91s;
}
.main .box .items .item:nth-child(4) {
  -webkit-animation-delay: 0.99s;
          animation-delay: 0.99s;
}
.main .box .items .item:nth-child(5) {
  -webkit-animation-delay: 1.07s;
          animation-delay: 1.07s;
}
.main .box .items .item:nth-child(6) {
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}

.footer {
  border-top: 1px solid #2a3548;
  border-radius: 65px 65px 0 0;
  padding: 60px 0;
  opacity: 0;
  -webkit-animation: fadeIn 0.6s ease-out 1.2s forwards;
          animation: fadeIn 0.6s ease-out 1.2s forwards;
}
.footer.other {
  border-radius: 0 65px 0 0;
}
.footer .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.6fr 130px 0.4fr;
  grid-template-columns: 0.6fr 0.4fr;
  gap: 130px;
}
.footer .container .text {
  margin-top: 27px;
  font-size: 14px;
  margin-bottom: 34px;
}
.footer .container .copy {
  font-size: 14px;
  color: #8a92a8;
}
.footer .container .right .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .container .right a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .container .right a:hover {
  color: #00AAE0;
}
.footer .container .right a:last-child {
  margin-bottom: 0;
}
.footer .container .right .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
.footer .container .right .socs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.5px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 24px;
}
.footer .container .right .socs a {
  margin-bottom: 0;
  opacity: 0.8;
}
.footer .container .right .socs a:hover {
  opacity: 1;
}

@media screen and (max-width: 890px) {
  .main .box .items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .left_bg {
    top: 245px;
  }
  .right_bg {
    top: 525px;
  }
}
@media screen and (max-width: 660px) {
  .main .box .items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .left_bg {
    top: 570px;
  }
  .right_bg {
    top: 1000px;
  }
  .main .img_center img.main_center2, .main .img_center img.main_center3 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .main .box {
    padding: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .footer .container {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 790px) {
  .footer .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .footer .container .right .flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 40px;
  }
}
@media screen and (max-width: 450px) {
  .footer .container .right .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .container .right .socs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .main h1 {
    font-size: 38px;
    line-height: 43px;
  }
}
.header_doc {
  display: none;
}
@media screen and (max-width: 1019px) {
  .header_doc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.container_full {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 50px auto 50px 272px;
  grid-template-columns: 350px auto 272px;
  gap: 50px;
}
.container_full .sidebar {
  padding: 40px 25px 160px;
  background: #1a1f2e;
  border-right: 1px solid #2a3548;
}
.container_full .sidebar .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 9px;
}
.container_full .sidebar .flex a svg rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.container_full .sidebar .flex a:hover svg rect {
  fill: #00AAE0;
}
.container_full .sidebar .top_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-top: 30px;
}
.container_full .sidebar .top_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #8a92a8;
  padding: 7px 9px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
}
.container_full .sidebar .top_links a .icon {
  width: 35px;
  height: 35px;
  border: 1px solid #8a92a8;
  background: rgba(138, 146, 168, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.container_full .sidebar .top_links a .icon svg path {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  fill: #8a92a8;
}
.container_full .sidebar .top_links a:hover, .container_full .sidebar .top_links a.active {
  background: rgba(0, 170, 224, 0.1);
  color: #00AAE0;
}
.container_full .sidebar .top_links a:hover .icon, .container_full .sidebar .top_links a.active .icon {
  border: 1px solid #00AAE0;
  background: rgba(0, 170, 224, 0.1);
}
.container_full .sidebar .top_links a:hover .icon svg path, .container_full .sidebar .top_links a.active .icon svg path {
  fill: #00AAE0;
}
.container_full .sidebar .run_list_wrap {
  position: relative;
  margin-top: 50px;
}
.container_full .sidebar .run_list_wrap .run_list {
  width: 100%;
  padding: 0px 15px 0px 6px;
  background: #0a0e1a;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 10px 1fr 10px 20px;
  grid-template-columns: 40px 1fr 20px;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 65px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.container_full .sidebar .run_list_wrap .run_list .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}
.container_full .sidebar .run_list_wrap .run_list .sub {
  font-size: 12px;
  color: #8a92a8;
}
.container_full .sidebar .run_list_wrap .run_list .arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.container_full .sidebar .run_list_wrap.is-open .run_list .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.container_full .sidebar .run_list_wrap .run_list_dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 8px;
  background: #1a1f2e;
  border: 1px solid #2a3548;
  border-radius: 12px;
  padding: 8px 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.2s, visibility 0.2s;
  transition: max-height 0.3s ease-out, opacity 0.2s, visibility 0.2s;
  z-index: 50;
}
.container_full .sidebar .run_list_wrap .run_list_dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.container_full .sidebar .run_list_wrap .run_list_dropdown a:hover {
  color: #00AAE0;
  background: rgba(0, 170, 224, 0.1);
}
.container_full .sidebar .run_list_wrap.is-open .run_list_dropdown {
  max-height: 320px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: max-height 0.35s ease-in, opacity 0.2s, visibility 0.2s;
  transition: max-height 0.35s ease-in, opacity 0.2s, visibility 0.2s;
}
.container_full .sidebar .links {
  margin-top: 30px;
  padding-left: 9px;
}
.container_full .sidebar .links .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.container_full .sidebar .links a {
  display: block;
  color: #8a92a8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  margin-bottom: 10px;
}
.container_full .sidebar .links a:last-child {
  margin-bottom: 0;
}
.container_full .sidebar .links a:hover {
  color: #00AAE0;
}
.container_full .sidebar .links a.active {
  color: #00AAE0;
}
.container_full .content {
  padding-top: 50px;
  padding-bottom: 75px;
}
.container_full .content .title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
}
.container_full .content .text {
  font-size: 14px;
  margin-bottom: 30px;
}
.container_full .content .prev_next {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 700px;
  margin: auto;
}
.container_full .content .prev_next .btn {
  width: 100%;
  background: #1a1f2e;
  border: 1px solid #2a3548;
  border-radius: 10px;
  text-decoration: none;
  padding: 10px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.container_full .content .prev_next .btn:hover {
  border-color: #00AAE0;
  background: rgba(0, 170, 224, 0.05);
}
.container_full .content .prev_next .btn .top {
  font-size: 14px;
  color: #8a92a8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.container_full .content .prev_next .btn:last-child {
  text-align: right;
}
.container_full .content .prev_next .btn:last-child .top {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.container_full .content .prev_next .btn svg {
  width: 15px;
  height: 15px;
}
.container_full .content .prev_next .btn .name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.container_full .on_page .box {
  width: 100%;
  background: #1a1f2e;
  border: 1px solid #2a3548;
  border-right: none;
  border-radius: 20px 0 0 20px;
  padding: 20px;
  position: fixed;
  top: 53px;
  right: 0;
  width: 271px;
}
.container_full .on_page .box .title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
.container_full .on_page .box a {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
    margin-top: 10px;
  color: #8a92a8;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.container_full .on_page .box a::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 30px;
  border-radius: 65px;
  background: #00AAE0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.container_full .on_page .box a:hover, .container_full .on_page .box a.active {
  color: #00AAE0;
}
.container_full .on_page .box a:hover::before, .container_full .on_page .box a.active::before {
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  .container_full {
    -ms-grid-columns: 280px 30px 1fr 30px 240px;
    grid-template-columns: 280px 1fr 240px;
    gap: 30px;
  }
  .container_full .sidebar {
    padding: 30px 20px 80px;
  }
  .container_full .on_page .box {
    width: 240px;
  }
}
@media screen and (max-width: 1020px) {
  .container_full {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 0 auto;
    grid-template-rows: 1fr auto;
    gap: 0;
  }
  .container_full > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .container_full > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .container_full .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    padding: 24px 20px 40px;
    padding-top: 100px;
    border-right: 1px solid #2a3548;
    border-bottom: none;
    z-index: 100;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    overflow-y: auto;
    background: #1a1f2e;
  }
  .container_full .sidebar .flex {
    margin-bottom: 0;
  }
  .container_full .sidebar .links {
    gap: 12px 24px;
    margin-top: 20px;
  }
  .container_full .sidebar .links .title {
    width: 100%;
    margin-bottom: 4px;
  }
  .container_full .content {
    padding: 30px 20px 40px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .container_full .content .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .container_full .content .text {
    margin-bottom: 24px;
  }
  .container_full .on_page {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: none;
  }
  .container_full .on_page .box {
    position: static;
    width: 100%;
    max-width: 100%;
    border-right: 1px solid #2a3548;
    border-radius: 20px;
    margin: 0 20px 24px;
    padding: 20px;
  }
  .container_full .on_page a::before {
    left: -16px;
  }
}
@media screen and (max-width: 640px) {
  .container_full .sidebar {
    padding: 20px 16px;
  }
  .container_full .sidebar .links {
    margin-top: 16px;
  }
  .container_full .sidebar .links .title {
    font-size: 16px;
  }
  .container_full .sidebar .links a {
    font-size: 14px;
  }
  .container_full .content {
    padding: 24px 16px 32px;
  }
  .container_full .content .title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .container_full .content .text {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .container_full .on_page .box {
    margin: 0 16px 20px;
    padding: 16px;
  }
  .container_full .on_page .box .title {
    font-size: 16px;
  }
  .container_full .on_page .box a {
    font-size: 13px;
    height: auto;
    padding: 6px 0;
  }
  .container_full .on_page .box a::before {
    left: -12px;
    width: 3px;
  }
}

@media screen and (max-width: 1020px) {
  body.doc-menu-open .container_full .sidebar {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  footer {
    border-radius: 65px 65px 0 0 !important;
  }
}

pre {
  background: #1a1f2e;
  color: #00AAE0;
  padding: 16px;
    max-width: 1000px;
  border-radius: 15px;
    border: 1px solid #2a3548;
  font-family: monospace;
  font-size: 14px;
    margin-bottom: 30px;
  line-height: 1.5;
  overflow-x: auto;
}

@media screen and (max-width: 1440px) {
    pre {
       max-width: 718px; 
    }
}

@media screen and (max-width: 1024px) {
    pre {
       max-width: 380px; 
    }
}

@media screen and (max-width: 360px) {
    pre {
       max-width: 320px; 
    }
}

.base {
    max-width: 1000px;
}

@media screen and (max-width: 1440px) {
    .base {
       max-width: 718px; 
    }
}
  
@media screen and (max-width: 1024px) {
    .base {
       max-width: 400px; 
    }
}
@media screen and (max-width: 360px) {
    .base {
       max-width: 320px; 
    }
}