:root {
  --black: black;
  --black-medium: #1a202c;
  --blue: #2185f5;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.body {
  font-family: Poppins, sans-serif;
}

.container {
  justify-content: center;
  width: 100%;
  max-width: 1520px;
  padding-bottom: 100px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.container-2, .container-3 {
  display: flex;
}

.container-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 80px;
}

.h1 {
  color: var(--black);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.paragraph {
  color: var(--black-medium);
  text-align: center;
  font-size: 18px;
  line-height: 1.3em;
}

.paragraph.list {
  text-align: left;
  font-size: 16px;
}

.paragraph.top {
  font-weight: 500;
}

.badge-primary {
  color: #202020;
  background-color: #89bfff;
  border: 3px solid #202020;
  border-radius: 40px;
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.111em;
  display: inline-block;
}

.badge-primary.small {
  background-color: var(--blue);
  color: #fff;
  border-style: none;
  padding: 14px 22px;
  font-size: 16px;
  line-height: 1.125em;
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.grid-2-columns.changelog-item {
  grid-column-gap: 60px;
  border-bottom: 3px solid #2b2b2b;
  grid-template-columns: .4fr 1fr;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 64px;
}

.grid-2-columns.changelog-item.first {
  grid-column-gap: 40px;
  border-bottom-style: none;
  grid-template-columns: .25fr 1fr;
  padding-top: 0;
  padding-bottom: 0;
}

.mg-bottom-16px {
  margin-bottom: 16px;
}

.h2 {
  margin-top: 0;
  font-size: 28px;
  line-height: 1.3em;
}

.div-title-text {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-block {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3em;
}

.h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3em;
}

.div-block {
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.div-new-features {
  margin-bottom: 30px;
}

.section-version {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1920px) {
  .paragraph.list {
    font-size: 18px;
  }

  .grid-2-columns.changelog-item.first {
    grid-template-columns: .25fr 1fr;
    justify-items: stretch;
  }
}

@media screen and (max-width: 991px) {
  .container, .container-4 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .grid-2-columns.changelog-item.first {
    grid-column-gap: 18px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .mg-bottom-16px, .h2, .text-block, .h3 {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .paragraph {
    font-size: 16px;
  }

  .badge-primary {
    padding: 16px 24px;
    font-size: 16px;
  }

  .badge-primary.small {
    text-align: left;
    padding: 12px 20px;
    font-size: 14px;
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .grid-2-columns.changelog-item.first {
    grid-column-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .mg-bottom-16px, .h2, .text-block, .h3 {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container-4 {
    padding: 100px 16px 50px;
  }

  .h1 {
    margin-bottom: 20px;
    font-size: 35px;
  }

  .paragraph, .paragraph.list {
    font-size: 14px;
  }

  .badge-primary {
    padding: 13px 20px;
  }

  .badge-primary.small {
    padding: 10px 16px;
  }

  .grid-2-columns.changelog-item {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .grid-2-columns.changelog-item.first {
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    flex-direction: column-reverse;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    justify-content: center;
    place-items: center;
    display: flex;
  }

  .mg-bottom-16px {
    text-align: center;
    margin-bottom: 8px;
  }

  .h2 {
    text-align: center;
    font-size: 18px;
  }

  .text-block {
    font-size: 16px;
  }

  .h3 {
    text-align: center;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_52617926-63d1-00fe-fad2-5adb69505576-77f9043d, #w-node-_37c532b0-17da-65fd-b4b3-017eb5b37dd6-77f9043d, #w-node-_495def6a-0f1a-e8d2-37d2-c067dabd70da-77f9043d, #w-node-d4057436-a46e-1a3d-3369-1e56d6d7ee43-77f9043d, #w-node-_1d281326-33d9-9647-ef39-3a1ed98dc620-77f9043d, #w-node-_0a65c239-7238-887c-c5fa-ab85099682dd-77f9043d, #w-node-_1058f4d2-184b-0df3-8063-89da4f6faf60-77f9043d, #w-node-_6bb5eeaf-9aa8-f359-bb00-d328a05aed91-77f9043d, #w-node-_1bb6cc2b-7c0f-8688-38e8-736799f57365-77f9043d, #w-node-_8a766da2-15fa-0046-d44f-7508460ff3d1-77f9043d, #w-node-ee98c2b3-4f0f-16a5-2be9-03865fb20a5b-77f9043d, #w-node-_71965489-e3ac-61cf-a798-fbce74887d5b-77f9043d, #w-node-_40f4853f-9ade-93c2-dc54-1441b82079c3-77f9043d, #w-node-f6a5d741-0da1-dc59-eceb-7b320c950ef1-77f9043d, #w-node-eb1d7df0-c54d-2e9a-fe65-356ff657637d-77f9043d, #w-node-_47f7188a-50a4-1cb7-0e5e-fb90ba206209-77f9043d, #w-node-a1128c68-c1cf-ea6e-a155-05e24879815f-77f9043d, #w-node-f1f3015e-b96c-d22f-5c55-fcc4c0a682a1-77f9043d, #w-node-a9cb4e72-fb99-28fd-701a-e0d6b8299281-77f9043d, #w-node-_1119a19a-697f-fc42-457c-1f00cd0fa906-77f9043d, #w-node-_2d079a06-74f0-f49a-2600-f94eb0362f7a-77f9043d, #w-node-_935aec96-55c9-800a-2254-53d837ab9c0b-77f9043d, #w-node-_008e9dfa-56f5-55f6-61c8-69c9e0978fc1-77f9043d, #w-node-_822e3a2c-ce25-9c46-8f32-b4cbbbcf8911-77f9043d, #w-node-_5e7501f8-0c63-9094-a6d1-a00f32ced94e-77f9043d, #w-node-f552ca03-7ebd-1436-4941-3595fd38f462-77f9043d, #w-node-_174adaa4-5b92-f42f-7977-cc53f1896b80-77f9043d, #w-node-_68a90bb1-1e74-a3ad-3307-8c30b559c181-77f9043d, #w-node-_458f5c07-411a-b5c1-d751-577fbd2811fe-77f9043d, #w-node-_491c028e-e00d-e667-3ac2-78c48fa0cce6-77f9043d, #w-node-_9e561a49-0214-af0e-9c5e-22c2eb2c7583-77f9043d, #w-node-d82d7919-fb8f-94b9-feb4-d6f85201ae3d-77f9043d, #w-node-cdf913af-de04-18cc-5c03-d9117e7d1074-77f9043d, #w-node-_6cb09e3e-699b-89c6-c252-c08b99c38ad7-77f9043d, #w-node-b872e4c3-dadf-9443-e533-a0701947421e-77f9043d, #w-node-_7a6d6eaf-a595-7589-227e-476798f33c34-77f9043d, #w-node-dc51a095-694d-2984-c4b2-86930e6fe76c-77f9043d, #w-node-f38f0b74-4f8b-54a0-530d-547ce51c09cb-77f9043d, #w-node-d443d3c3-4381-3c0c-1611-639237418f47-77f9043d, #w-node-c694f4d0-3c61-fe36-b015-839a3d2a4b59-77f9043d, #w-node-be33dd31-43d4-8655-0679-8cd951ab58a3-77f9043d, #w-node-_5b74e05d-f901-0483-257b-8149a81087a2-77f9043d, #w-node-_778b2a78-67b9-8a76-0157-2c53e8e23769-77f9043d, #w-node-a340b064-9291-bb55-73c7-eb7bca8f0080-77f9043d, #w-node-d6a49eea-878c-8b4b-b8a2-3f3279544441-77f9043d, #w-node-_70067ba7-28db-7bb1-df28-ed7b586ee75c-77f9043d, #w-node-_0351031e-2e45-b25a-c1ee-c68813cdaa65-77f9043d, #w-node-e6d2569a-6b20-f318-2a0d-14f4430a95fe-77f9043d, #w-node-ed29cb04-5382-77f6-c8ae-74e53342777c-77f9043d, #w-node-_0cb76f50-5899-0918-0bf7-dc587e69792f-77f9043d, #w-node-_00473683-2199-85d4-a582-52e2b1e952f0-77f9043d, #w-node-_856ac898-19d2-7098-7efb-4f18c0f558d6-77f9043d, #w-node-f025743d-3fb2-f184-3d0d-a5d681b3168c-77f9043d, #w-node-f0e51513-5456-5add-e753-4f0388d74f50-77f9043d, #w-node-_4a37fc37-b086-7a62-1d2f-9980cf3214b3-77f9043d, #w-node-_40aafc76-f940-790d-913e-231ff75142fe-77f9043d, #w-node-_600bea78-5e72-7f85-81ab-793b746dad45-77f9043d, #w-node-_874a777b-593c-b014-d2e5-1d9181d7be60-77f9043d, #w-node-df63681b-201d-c9fd-35e6-b4f88d4a11b5-77f9043d, #w-node-_23530157-2a50-d399-543b-f79de02ab407-77f9043d, #w-node-fe3fd667-999a-cc45-074a-f83f31f4a79d-77f9043d, #w-node-_4b693ee7-a6a7-c2b6-7c21-1905358b5c51-77f9043d, #w-node-_1741f3c5-c1d7-19e8-1cb8-10b015b98648-77f9043d, #w-node-f90d50a5-f419-6833-f61d-ebacfe06fdf2-77f9043d, #w-node-a01a550a-73f9-4199-cac8-f2ab6601df87-77f9043d, #w-node-_51ade6e9-77b9-0124-65cd-94ff43e35689-77f9043d, #w-node-_4633eb0a-9a71-ed9d-792f-bcddc9c4630f-77f9043d, #w-node-c7d37225-e70b-a670-a905-d6c2ca95f68f-77f9043d, #w-node-adaff90b-ea04-6ca1-b785-220d1bb38046-77f9043d, #w-node-_542156c8-06fb-5da5-6f79-659554990806-77f9043d, #w-node-b8aff79b-f1a8-011f-6f08-59971a7e755b-77f9043d, #w-node-_21fc1479-7741-f6e0-0a39-299f14b7519e-77f9043d, #w-node-_7c67ddc4-644a-165f-067d-665747bb8182-77f9043d, #w-node-b82c1260-5f90-2920-8fec-20814276ed7b-77f9043d, #w-node-d50a271a-8a84-6356-42f0-c957b05a5c92-77f9043d {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_52617926-63d1-00fe-fad2-5adb69505576-77f9043d, #w-node-_37c532b0-17da-65fd-b4b3-017eb5b37dd6-77f9043d, #w-node-_495def6a-0f1a-e8d2-37d2-c067dabd70da-77f9043d, #w-node-d4057436-a46e-1a3d-3369-1e56d6d7ee43-77f9043d, #w-node-_1d281326-33d9-9647-ef39-3a1ed98dc620-77f9043d, #w-node-_0a65c239-7238-887c-c5fa-ab85099682dd-77f9043d, #w-node-_1058f4d2-184b-0df3-8063-89da4f6faf60-77f9043d, #w-node-_6bb5eeaf-9aa8-f359-bb00-d328a05aed91-77f9043d, #w-node-_1bb6cc2b-7c0f-8688-38e8-736799f57365-77f9043d, #w-node-_8a766da2-15fa-0046-d44f-7508460ff3d1-77f9043d, #w-node-ee98c2b3-4f0f-16a5-2be9-03865fb20a5b-77f9043d, #w-node-_71965489-e3ac-61cf-a798-fbce74887d5b-77f9043d, #w-node-_40f4853f-9ade-93c2-dc54-1441b82079c3-77f9043d, #w-node-f6a5d741-0da1-dc59-eceb-7b320c950ef1-77f9043d, #w-node-eb1d7df0-c54d-2e9a-fe65-356ff657637d-77f9043d, #w-node-_47f7188a-50a4-1cb7-0e5e-fb90ba206209-77f9043d, #w-node-a1128c68-c1cf-ea6e-a155-05e24879815f-77f9043d, #w-node-f1f3015e-b96c-d22f-5c55-fcc4c0a682a1-77f9043d, #w-node-a9cb4e72-fb99-28fd-701a-e0d6b8299281-77f9043d, #w-node-_1119a19a-697f-fc42-457c-1f00cd0fa906-77f9043d, #w-node-_2d079a06-74f0-f49a-2600-f94eb0362f7a-77f9043d, #w-node-_935aec96-55c9-800a-2254-53d837ab9c0b-77f9043d, #w-node-_008e9dfa-56f5-55f6-61c8-69c9e0978fc1-77f9043d, #w-node-_822e3a2c-ce25-9c46-8f32-b4cbbbcf8911-77f9043d, #w-node-_5e7501f8-0c63-9094-a6d1-a00f32ced94e-77f9043d, #w-node-f552ca03-7ebd-1436-4941-3595fd38f462-77f9043d, #w-node-_174adaa4-5b92-f42f-7977-cc53f1896b80-77f9043d, #w-node-_68a90bb1-1e74-a3ad-3307-8c30b559c181-77f9043d, #w-node-_458f5c07-411a-b5c1-d751-577fbd2811fe-77f9043d, #w-node-_491c028e-e00d-e667-3ac2-78c48fa0cce6-77f9043d, #w-node-_9e561a49-0214-af0e-9c5e-22c2eb2c7583-77f9043d, #w-node-d82d7919-fb8f-94b9-feb4-d6f85201ae3d-77f9043d, #w-node-cdf913af-de04-18cc-5c03-d9117e7d1074-77f9043d, #w-node-_6cb09e3e-699b-89c6-c252-c08b99c38ad7-77f9043d, #w-node-b872e4c3-dadf-9443-e533-a0701947421e-77f9043d, #w-node-_7a6d6eaf-a595-7589-227e-476798f33c34-77f9043d, #w-node-dc51a095-694d-2984-c4b2-86930e6fe76c-77f9043d, #w-node-f38f0b74-4f8b-54a0-530d-547ce51c09cb-77f9043d, #w-node-d443d3c3-4381-3c0c-1611-639237418f47-77f9043d, #w-node-c694f4d0-3c61-fe36-b015-839a3d2a4b59-77f9043d, #w-node-be33dd31-43d4-8655-0679-8cd951ab58a3-77f9043d, #w-node-_5b74e05d-f901-0483-257b-8149a81087a2-77f9043d, #w-node-_778b2a78-67b9-8a76-0157-2c53e8e23769-77f9043d, #w-node-a340b064-9291-bb55-73c7-eb7bca8f0080-77f9043d, #w-node-d6a49eea-878c-8b4b-b8a2-3f3279544441-77f9043d, #w-node-_70067ba7-28db-7bb1-df28-ed7b586ee75c-77f9043d, #w-node-_0351031e-2e45-b25a-c1ee-c68813cdaa65-77f9043d, #w-node-e6d2569a-6b20-f318-2a0d-14f4430a95fe-77f9043d, #w-node-ed29cb04-5382-77f6-c8ae-74e53342777c-77f9043d, #w-node-_0cb76f50-5899-0918-0bf7-dc587e69792f-77f9043d, #w-node-_00473683-2199-85d4-a582-52e2b1e952f0-77f9043d, #w-node-_856ac898-19d2-7098-7efb-4f18c0f558d6-77f9043d, #w-node-f025743d-3fb2-f184-3d0d-a5d681b3168c-77f9043d, #w-node-f0e51513-5456-5add-e753-4f0388d74f50-77f9043d, #w-node-_4a37fc37-b086-7a62-1d2f-9980cf3214b3-77f9043d, #w-node-_40aafc76-f940-790d-913e-231ff75142fe-77f9043d, #w-node-_600bea78-5e72-7f85-81ab-793b746dad45-77f9043d, #w-node-_874a777b-593c-b014-d2e5-1d9181d7be60-77f9043d, #w-node-df63681b-201d-c9fd-35e6-b4f88d4a11b5-77f9043d, #w-node-_23530157-2a50-d399-543b-f79de02ab407-77f9043d, #w-node-fe3fd667-999a-cc45-074a-f83f31f4a79d-77f9043d, #w-node-_4b693ee7-a6a7-c2b6-7c21-1905358b5c51-77f9043d, #w-node-_1741f3c5-c1d7-19e8-1cb8-10b015b98648-77f9043d, #w-node-f90d50a5-f419-6833-f61d-ebacfe06fdf2-77f9043d, #w-node-a01a550a-73f9-4199-cac8-f2ab6601df87-77f9043d, #w-node-_51ade6e9-77b9-0124-65cd-94ff43e35689-77f9043d, #w-node-_4633eb0a-9a71-ed9d-792f-bcddc9c4630f-77f9043d, #w-node-c7d37225-e70b-a670-a905-d6c2ca95f68f-77f9043d, #w-node-adaff90b-ea04-6ca1-b785-220d1bb38046-77f9043d, #w-node-_542156c8-06fb-5da5-6f79-659554990806-77f9043d, #w-node-b8aff79b-f1a8-011f-6f08-59971a7e755b-77f9043d, #w-node-_21fc1479-7741-f6e0-0a39-299f14b7519e-77f9043d, #w-node-_7c67ddc4-644a-165f-067d-665747bb8182-77f9043d, #w-node-b82c1260-5f90-2920-8fec-20814276ed7b-77f9043d, #w-node-d50a271a-8a84-6356-42f0-c957b05a5c92-77f9043d {
    order: 9999;
  }
}


