* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
  width: 100%;
  min-width: 320px;
  color: #101010;
  background: #fff;
  font: 16px/125% "Manrope", sans-serif;
  cursor: default;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  height: auto !important;
  min-height: 100%;
  height: 100%;
  position: relative;
}

html, body, div, applet, object, iframe, blockquote, pre, abbr, acronym, address, big, select, input, textarea,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dd, dl, dt, fieldset, form, label, legend, caption, h1, h2, h3, h4, h5 {
  font: 16px/125% "Manrope", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
}

a img, :link img, :visited img {
  border: 0;
}

p {
  padding: 0px;
  margin: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

a {
  cursor: pointer;
  outline: none;
  color: #101010;
  text-decoration: none;
  font: 16px/125% "Manrope", sans-serif;
}

a:hover {
  text-decoration: none;
}

.cl:after {
  content: "";
  display: block;
  clear: both;
}

.hand {
  cursor: pointer;
}

.display_none {
  display: none;
}

input, select, textarea, button {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: unset;
  border: unset;
}

textarea {
  outline: none;
  resize: none;
  overflow: auto;
}

ul {
  list-style: none;
}

/* site styles */
.blue {
  color: #3DB5E0;
}

.yellow {
  color: #E0D73D;
}

.red {
  color: #E03D62;
}

.footer, .header, .content {
  max-width: 1210px;
  padding: 0 15px;
  margin: 0 auto;
}

section {
  position: relative;
  margin-top: 150px;
}

.content {
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
h1 > span {
  color: #3DB5E0;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
h2:after {
  display: block;
  content: "";
  width: 180px;
  height: 1px;
  background: #D5D5D5;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
h2 > span {
  color: #3DB5E0;
}

p {
  font-size: 16px;
  color: #404040;
}

.btn {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 60px;
  background: #E03D62;
  border-radius: 10px;
  font-size: 16px;
  line-height: 60px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: #C03253;
}
.btn:active {
  background: #C03253;
  color: #E03D62;
}

.wrapper {
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
}

header {
  height: 90px;
  background: #000;
  position: relative;
  z-index: 5;
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
}

.header {
  display: flex;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 172px;
}
.logo > img {
  display: block;
}

.h_menu {
  flex: 1;
}
.h_menu > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.h_menu > ul > li > a {
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}
.h_menu > ul > li > a:hover {
  color: #3DB5E0;
}

.burger {
  display: none;
  width: 22px;
  height: 18px;
  cursor: pointer;
  position: relative;
}
.burger.opened span {
  height: 0;
}
.burger.opened span:before {
  top: 50%;
  transform: rotate(-45deg);
}
.burger.opened span:after {
  top: 50%;
  transform: rotate(45deg);
}
.burger:hover {
  opacity: 0.7;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #101010;
  position: absolute;
  left: 0;
  top: 8px;
}
.burger span:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #101010;
  position: absolute;
  left: 0;
  top: -8px;
  transition: 0.3s;
}
.burger span:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #101010;
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.3s;
}

.h_login {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #3DB5E0;
  transition: 0.3s;
}
.h_login:hover {
  filter: brightness(0.7);
}
.h_login:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon-login.svg) center/cover no-repeat;
}

.b1 {
  background: url(../images/b1_bg.svg) center top/1920px no-repeat;
  padding: 100px 0 30px;
  position: relative;
  margin: 0 0 -30px;
}
.b1 .content {
  max-width: 810px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.b1 .content p {
  text-align: center;
}
.b1:before {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #F2FBFE;
  border-radius: 50%;
  position: absolute;
  left: -161px;
  top: -161px;
}

.b1_bot {
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  padding: 15px;
}

.b2 {
  margin-bottom: -30px;
}

.b2_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.b2_item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 20px;
  padding: 30px;
}
.b2_item:nth-child(2) .b2i_img {
  background: #E03D62;
}
.b2_item:nth-child(3) {
  background: #E03D62;
  justify-content: center;
}
.b2_item:nth-child(3) .b2i_text {
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.b2i_img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 50px;
  height: 50px;
  background: #3DB5E0;
  border-radius: 50%;
}

.b2i_head {
  font-size: 16px;
  font-weight: 600;
}

.b2i_text {
  font-size: 16px;
  color: #404040;
}

.b3:before {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #FFEFF3;
  border-radius: 50%;
  position: absolute;
  right: -161px;
  top: -130px;
}
.b3 p {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.b3_stages {
  height: 321px;
  background: url(../images/b3_lines.svg) center/cover no-repeat;
  margin: 30px 0;
  position: relative;
}

.b3_stage {
  display: flex;
  max-width: 280px;
  width: 100%;
  flex-direction: column;
  gap: 15px;
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 20px;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 80px;
}
.b3_stage.s2 {
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
}
.b3_stage.s2:after {
  background: #E03D62;
  box-shadow: 0px 0px 15px rgba(162, 35, 64, 0.4);
}
.b3_stage.s2 .b3s_head > span {
  color: #E03D62;
}
.b3_stage.s3 {
  left: unset;
  right: 0;
  top: 0;
}
.b3_stage.s3:after {
  background: #E0D73D;
  box-shadow: 0px 0px 15px rgba(152, 146, 38, 0.4);
}
.b3_stage.s3 .b3s_head > span {
  color: #E0D73D;
}
.b3_stage:after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: #3DB5E0;
  border-radius: 50%;
  box-shadow: 0px 0px 15px rgba(41, 127, 158, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
}

.b3s_head {
  font-size: 20px;
  font-weight: 600;
}
.b3s_head > span {
  color: #3DB5E0;
}

.b3s_text {
  font-size: 14px;
  color: #404040;
}

.b3_text {
  width: 100%;
  max-width: 287px;
  font-size: 14px;
  color: #041A3C;
  padding: 15px;
  background: #E6F8FF;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.b4 h2 {
  text-align: left;
}
.b4 h2:after {
  left: 0;
  transform: translateX(0);
}

.b4_img {
  display: block;
  width: 480px;
  height: 480px;
  position: absolute;
  top: 0;
  right: 0;
}

.b4_block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-right: 500px;
}

.code_block {
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 20px;
}

.cb_top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 20px;
}
.cb_top > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E0D73D;
}
.cb_top > i:nth-child(1) {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E03D62;
}
.cb_top > i:nth-child(3) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3DB5E0;
}

code {
  display: block;
  color: #E03D62;
  font-size: 16px;
  line-height: 125%;
  font-family: "Consolas";
  margin-bottom: 7px;
}
code span {
  display: inline-block;
}
code:last-child {
  margin-bottom: 0;
}

.b5:before {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #FAF9EB;
  border-radius: 50%;
  position: absolute;
  left: -161px;
  top: -220px;
}

.b5_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.b5_item, .b6_item {
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  font-size: 16px;
  text-align: center;
}
.b5_item:nth-child(2):before, .b6_item:nth-child(2):before {
  background: #E03D62;
  box-shadow: 0px 0px 15px rgba(162, 35, 64, 0.4);
}
.b5_item:nth-child(3):before, .b6_item:nth-child(3):before {
  background: #E0D73D;
  box-shadow: 0px 0px 15px rgba(152, 146, 38, 0.4);
}
.b5_item:before, .b6_item:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: #3DB5E0;
  border-radius: 50%;
  box-shadow: 0px 0px 15px rgba(41, 127, 158, 0.4);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.b6_items {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 60px 20px;
  justify-content: center;
}

.b6_item {
  width: calc(33.3% - 13.4px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.b6_item:before {
  display: none;
}

.b6i_head {
  display: flex;
  gap: 10px;
  min-height: 40px;
}
.b6i_head:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #E03D62;
  margin-top: 5px;
}
.b6i_head > span {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
  text-align: left;
}

.b6i_text {
  font-size: 14px;
  color: #404040;
  text-align: left;
}

.b6i_blue {
  padding: 15px;
  background: #E6F8FF;
  border-radius: 10px;
  font-size: 12px;
  color: #041A3C;
  transform: translateY(70px);
  margin-top: -70px;
}

.b7:before {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #F2FBFE;
  border-radius: 50%;
  position: absolute;
  right: -161px;
  top: -220px;
}
.b7 .content {
  max-width: 910px;
}
.b7 p {
  text-align: center;
}
.b7 p > a {
  color: #3DB5E0;
  transition: 0.3s;
}
.b7 p > a:hover {
  filter: brightness(0.7);
}

footer {
  margin-top: 150px;
}

.f_block {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #D5D5D5;
  padding: 30px 0;
}
.f_block > div {
  font-size: 16px;
  color: #404040;
}
.f_block > div:nth-child(1) {
  flex-shrink: 0;
}

.recommendations {
  margin-top: 100px;
}
.recommendations:before {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #FFEFF3;
  border-radius: 50%;
  position: absolute;
  right: -161px;
  top: 60px;
}
.recommendations p {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.r_items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-top: 30px;
}
.r_items:before {
  display: block;
  content: "";
  width: 2px;
  height: calc(100% - 235px);
  background: #3DB5E0;
  position: absolute;
  left: calc(50% - 1px);
  top: 85px;
}

.r_item {
  display: flex;
  width: 100%;
  max-width: 380px;
  flex-direction: column;
  gap: 15px;
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  z-index: 1;
}
.r_item:nth-child(even) {
  align-self: flex-end;
}
.r_item:nth-child(even):before {
  top: calc(50% - 1px);
  left: unset;
  right: 400px;
}
.r_item:nth-child(even):after {
  right: unset;
  left: -222px;
}
.r_item:before {
  display: block;
  content: "";
  width: 190px;
  height: 2px;
  background: #3DB5E0;
  position: absolute;
  top: calc(50% - 1px);
  left: 400px;
}
.r_item:after {
  box-sizing: border-box;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  border: 5px solid #3DB5E0;
  border-radius: 50%;
  position: absolute;
  right: -222px;
  top: 50%;
  transform: translateY(-50%);
}

.ri_count, .li_count {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #E03D62;
  border-radius: 50%;
  font-size: 20px;
  line-height: 50px;
  color: #fff;
  text-align: center;
}

.ri_text {
  font-size: 16px;
}
.ri_text code {
  display: inline-block;
  margin-bottom: unset;
}

.setup_ACL {
  margin-top: 100px;
}
.setup_ACL:before {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #FAF9EB;
  border-radius: 50%;
  position: absolute;
  left: -161px;
  top: -45px;
}
.setup_ACL p {
  text-align: center;
}

.s_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
}

.s_item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 20px;
  padding: 30px;
}
.s_item:nth-child(2) .si_img {
  background: #E0D73D;
}
.s_item:nth-child(3) .si_img {
  background: #E03D62;
}

.si_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #3DB5E0;
  border-radius: 50%;
}
.si_img:before {
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  background: url(../images/star.svg) center/cover no-repeat;
}

.si_text {
  font-size: 16px;
  color: #404040;
}

.s_block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
}
.s_block p {
  text-align: left;
}

.b_block {
  background: #E6F8FF;
  border-radius: 10px;
  padding: 15px;
}

.launch {
  margin-top: 100px;
}
.launch:before {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #F2FBFE;
  border-radius: 50%;
  position: absolute;
  left: -161px;
  top: -280px;
}
.launch:after {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #FFEFF3;
  border-radius: 50%;
  position: absolute;
  right: -161px;
  top: 600px;
}
.launch .content > p {
  max-width: 780px;
  margin: 0 auto 15px;
  text-align: center;
}
.launch .content > p:last-child {
  margin-bottom: 0;
}

.l_foot {
  position: relative;
}
.l_foot:before {
  display: block;
  content: "";
  width: 382px;
  height: 382px;
  background: #FAF9EB;
  border-radius: 50%;
  position: absolute;
  left: -161px;
  top: -740px;
}

.l_items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.l_item {
  display: flex;
  gap: 30px;
  background: #FFFFFF;
  box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
  border-radius: 20px;
  padding: 30px;
}

.li_block {
  padding-top: 13px;
}
.li_block p {
  margin-bottom: 15px;
  text-align: left;
}
.li_block p span {
  display: inline-block;
}
.li_block p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1700px) {
  .b1 {
    background: url(../images/b1_bg.svg) center top/100% no-repeat;
  }
} /*1700*/
@media only screen and (max-width: 1400px) {
  .b1 {
    padding-top: 50px;
    background: url(../images/b1_bg.svg) center top/1400px no-repeat;
  }
} /*1400*/
@media only screen and (max-width: 1240px) {
  .r_items {
    max-width: 900px;
    margin: 30px auto 0;
  }
  .r_item:nth-child(even):after {
    left: -82px;
  }
  .r_item:before {
    width: 50px;
  }
  .r_item:after {
    right: -82px;
  }
} /*1240*/
@media only screen and (max-width: 1200px) {
  .b6_item {
    width: calc(50% - 10px);
  }
} /*1200*/
@media only screen and (max-width: 1024px) {
  section {
    margin-top: 100px !important;
  }
  section:before, section:after {
    display: none !important;
  }
  .l_foot:before {
    display: none !important;
  }
  .h_menu > ul {
    gap: 20px;
  }
  .h_menu > ul > li > a {
    font-size: 15px;
  }
  .b1 {
    margin-top: 0 !important;
  }
  .b2_items {
    gap: 10px;
  }
  .b2_item {
    gap: 10px;
    padding: 20px 15px;
    border-radius: 10px;
  }
  .b3_stage {
    top: 30px;
  }
  .b3_stage.s2 {
    left: 30%;
  }
  .b4 h2 {
    text-align: center;
  }
  .b4 h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .b4_block {
    padding-right: 0;
  }
  .b4_img {
    width: 150px;
    height: 150px;
    position: static;
    margin: -30px auto;
  }
  .b5_items {
    grid-gap: 10px;
  }
  .b5_item, .b6_item {
    padding: 20px;
    border-radius: 10px;
  }
  footer {
    margin-top: 100px;
  }
  .f_block {
    flex-direction: column;
    gap: 10px;
  }
  .f_block > div {
    text-align: center;
  }
  .r_items {
    align-items: center !important;
    gap: 20px;
  }
  .r_item {
    max-width: 100%;
    align-items: center;
    padding: 20px;
  }
  .r_item:before, .r_item:after {
    display: none;
  }
  .ri_text {
    text-align: center;
  }
  .s_items {
    grid-gap: 10px;
  }
  .s_item {
    padding: 20px 15px;
    box-shadow: 0px 2px 15px rgba(64, 64, 64, 0.1);
  }
  .s_block {
    padding: 20px 15px;
    box-shadow: 0px 2px 15px rgba(64, 64, 64, 0.1);
    gap: 20px;
  }
  .l_item {
    flex-direction: column;
    gap: 0;
  }
  .li_count {
    align-self: center;
  }
} /*1024*/
@media only screen and (max-width: 768px) {
  section {
    margin-top: 50px !important;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  h2:after {
    width: 130px;
    bottom: -15px;
  }
  p {
    font-size: 14px;
  }
  .btn {
    height: 50px;
    line-height: 50px;
  }
  header {
    height: 50px;
  }
  .burger {
    display: block;
  }
  .h_menu {
    width: 200px;
    padding: 15px;
    position: absolute;
    top: 50px;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 30px rgba(64, 64, 64, 0.1);
    transform: translateX(120%);
    transition: 0.5s;
  }
  .h_menu.opened {
    transform: translateX(0);
  }
  .h_menu > ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .h_menu > ul > li > a {
    font-size: 20px;
  }
  .h_login {
    position: absolute;
    top: 15px;
    right: 60px;
  }
  .b1 {
    margin-bottom: -15px;
    padding-top: 30px 0 15px;
    background: unset;
  }
  .b1 .content {
    gap: 20px;
  }
  .b1_bot {
    box-shadow: 0px 2px 15px rgba(64, 64, 64, 0.1);
    padding: 10px;
  }
  .b2 {
    margin-bottom: -15px;
  }
  .b2_items {
    display: flex;
    flex-wrap: wrap;
  }
  .b2_item {
    box-shadow: 0px 2px 15px rgba(64, 64, 64, 0.1);
    width: calc(50% - 5px);
  }
  .b2_item:nth-child(3) {
    width: 100%;
  }
  .b3_stages {
    height: unset;
    background: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .b3_stage {
    max-width: 100%;
    padding: 15px;
    border-radius: 10px;
    gap: 10px;
    position: relative;
    inset: unset !important;
    transform: translateX(0) !important;
  }
  .b3_text {
    max-width: 100%;
    position: static;
  }
  .b3s_head {
    font-size: 18px;
  }
  .b3s_text br {
    display: none;
  }
  .code_block {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(64, 64, 64, 0.1);
  }
  .cb_top {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .b5_items {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-top: 50px;
  }
  .b6_item {
    width: 100%;
  }
  .b6i_head {
    min-height: unset;
  }
  footer {
    margin-top: 50px;
  }
  .f_block {
    padding: 15px 0;
  }
  .l_items {
    width: calc(100% + 30px);
    transform: translateX(-15px);
  }
  .l_item {
    padding: 20px 15px;
  }
} /*768*/
@media only screen and (max-width: 540px) {
  .s_items {
    grid-template-columns: repeat(1, 1fr);
  }
  .s_item {
    align-items: center;
  }
  .si_text {
    text-align: center;
  }
} /*540*/
@media only screen and (max-width: 480px) {
  h2 br {
    display: none;
  }
  .b2_item {
    width: 100%;
  }
  .code_block {
    width: calc(100% + 30px);
    transform: translateX(-15px);
  }
  code {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .ri_text {
    font-size: 14px;
  }
  .f_block > div {
    font-size: 14px;
  }
  .r_items {
    width: calc(100% + 30px);
    transform: translateX(-15px);
  }
} /*480*/
@media only screen and (max-width: 380px) {
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  .logo {
    max-width: 140px;
  }
  .logo > img {
    width: 100%;
  }
} /*380*/

/*# sourceMappingURL=style.css.map */
