@charset "UTF-8";
* {
  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: #fff;
  background: #0C0C0C url(../images/bg.png);
  font: 16px/120% "Gilroy", 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/120% "Gilroy", 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: #fff;
  text-decoration: none;
  font: 16px/120% "Gilroy", 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 */
.footer, .header, .content {
  max-width: 1470px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}
h2.hidden {
  display: none;
}

p {
  font-size: 20px;
  line-height: 130%;
  margin-top: 25px;
  color: #81817B;
}
p > span {
  text-decoration: underline;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  height: 65px;
  width: 100%;
  max-width: 300px;
  background: url(../images/btn_dots.png), linear-gradient(180deg, #FFA007 0%, #D6890B 100%);
  box-shadow: 0px 0.320187px 0px #835409, inset 0px 4px 4px #FFA007;
  border-radius: 55px;
  cursor: pointer;
  font-size: 18px;
  line-height: 120%;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Unbounded";
  transition: 0.3s;
}
.btn:hover {
  opacity: 0.7;
}
.btn:before {
  display: block;
  content: "";
  width: 10px;
  height: 8px;
  background: url(../images/arrow_r_w_10x8.svg) center/cover no-repeat;
}

header {
  position: relative;
  z-index: 5;
  padding: 20px 0;
}

.wrapper {
  background: url(../images/bg_img.jpg) center top no-repeat;
  overflow: hidden;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  max-width: 278px;
}

.burger {
  display: none;
  width: 22px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transform: translateY(-2px);
}
.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: #fff;
  position: absolute;
  left: 0;
  top: 8px;
}
.burger span:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -8px;
  transition: 0.3s;
}
.burger span:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.3s;
}

.h_menu {
  flex: 1;
}
.h_menu > ul {
  display: flex;
  width: 100%;
  justify-content: center;
}
.h_menu > ul > li {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Montserrat";
  font-weight: 600;
  padding: 25px 33px;
  position: relative;
}
.h_menu > ul > li.hm_pop {
  cursor: pointer;
  transition: 0.3s;
}
.h_menu > ul > li.hm_pop:hover {
  color: #D6890B;
}
.h_menu > ul > li.hm_pop.opened {
  color: #D6890B;
}
.h_menu > ul > li > a {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Montserrat";
  font-weight: 600;
  transition: 0.3s;
}
.h_menu > ul > li > a:hover {
  color: #D6890B;
}
.h_menu > ul > li > ul {
  display: none;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  backdrop-filter: blur(11px);
  border-radius: 26px;
  position: absolute;
  left: 33px;
  top: 65px;
  padding: 20px;
}
.h_menu > ul > li > ul > li {
  display: block;
  margin-bottom: 20px;
}
.h_menu > ul > li > ul > li:last-child {
  margin-bottom: 0;
}
.h_menu > ul > li > ul > li > a {
  font-size: 13px;
  font-weight: 600;
  font-family: "Montserrat";
  transition: 0.3s;
}
.h_menu > ul > li > ul > li > a:hover {
  color: #D6890B;
}

.h_socials {
  display: flex;
  align-items: center;
  gap: 11px;
}
.h_socials > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: #181717;
  border-radius: 10px;
  transition: 0.3s;
}
.h_socials > a > img {
  max-width: 16px;
}
.h_socials > a:hover {
  background: #fff;
}

.h_tel {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 18px;
  font-size: 22px;
  font-weight: 700;
  font-family: "Montserrat";
  margin-left: 25px;
}
.h_tel:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/tel.svg) center/cover no-repeat;
}

.top_block {
  margin-top: 150px;
}
.top_block .content {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
}
.top_block h1 {
  font-size: 40px;
  font-family: "Ubuntu";
  font-weight: 700;
  text-transform: uppercase;
}
.h1 {
  font-size: 40px;
  font-family: "Ubuntu";
  font-weight: 700;
  text-transform: uppercase;
}
.tbl_text p {
    color: #C8C9CF;
}
.top_block h1 > span {
  line-height: 130%;
}
.top_block h1 > span:nth-child(1) {
  display: block;
  font-size: 55px;
}
.top_block h1 > span:nth-child(2) {
  color: #D6890B;
}

.tbl_text {
  font-size: 18px;
  line-height: 140%;
  color: #C8C9CF;
  margin-top: 10px;
}

.tbl_btn {
  margin-top: 40px;
}

.tb_left {
  max-width: 550px;
  position: relative;
  z-index: 1;
}

.tb_right {
  flex: 1;
  position: relative;
}

.r_1 {
  display: block;
  flex-shrink: 0;
  width: 1331px;
  max-width: unset;
  position: absolute;
  left: 50%;
  transform: translateX(-620px);
  top: -250px;
}

.tb_items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.tb_items.tbi_1 {
  max-width: 630px;
  margin: 0 auto 150px;
}

.tb_item {
  display: flex;
  min-width: 140px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.tbi_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  aspect-ratio: 1/1;
  background: url(../images/btn_dots.png), linear-gradient(180deg, #FFA007 0%, #D6890B 100%);
  box-shadow: 0px 0.320187px 0px #835409, inset 0px 4px 4px #FFA007;
  border-radius: 18px;
}

.tbi_text {
  font-size: 20px;
  text-align: center;
}

.tb_bot {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 150px;
}

.tbb_item {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 26px;
  padding: 15px;
}

.tbb_digit {
  font-size: 14px;
  color: #5D5D5D;
  position: absolute;
  top: 15px;
  right: 15px;
}

.tbb_head {
  font-size: 45px;
  font-weight: 800;
  color: #F4A72C;
  text-align: center;
  font-family: "Montserrat";
}

.tbb_text {
  font-size: 13px;
  color: #C8C9CF;
  text-align: center;
  font-family: "Montserrat";
}

/*стили модальных окон*/
.mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9000;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(11px);
  display: none;
}

.boxes .window {
  display: none;
  max-width: 630px;
  width: 100%;
  max-height: 90dvh;
  overflow: auto;
  background: url(../images/modal_dots.png), linear-gradient(180deg, rgba(12, 12, 12, 0.8) -37%, rgba(14, 15, 20, 0.8) 100%);
  border-radius: 22px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

.close {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 3;
  right: 25px;
  top: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.close:hover {
  opacity: 0.7;
}
.close:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #F89C09;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.close:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #F89C09;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.mf_content {
  padding: 25px;
  border: 1px solid #F89C09;
  border-radius: 22px;
}

.m_form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mf_head {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: "Ubuntu";
  margin-bottom: 15px;
}

.f_input, .f_area {
  display: block;
  width: 100%;
  height: 55px;
  opacity: 0.76;
  border: 1px solid #F89C09;
  color: #fff;
  box-shadow: inset 0px 4px 33px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  font-size: 14px;
  font-family: "Ubuntu";
  padding: 0 15px;
}

.f_area {
  height: 82px;
  padding: 10px 15px;
}

.f_submit {
  color: #fff;
  max-width: 205px;
  margin-top: 20px;
}

.f_bot {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}

.cb_file {
  height: 20px;
  cursor: pointer;
  position: relative;
  background: url(../images/file.svg) center left/19px no-repeat;
  padding-left: 32px;
}
.cb_file:after {
  display: block;
  content: "Прикрепить файл";
  color: #C8C9CF;
  word-wrap: nowrap;
  font-size: 14px;
  font-family: "Ubuntu";
}

.niceCheck {
  display: block;
  cursor: pointer;
}
.niceCheck > input {
  display: none;
}
.niceCheck > input:checked + span:before {
  background: url(../images/mark.png) center/14px no-repeat;
}
.niceCheck > span {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
.niceCheck > span:before {
  display: block;
  content: "";
  height: 20px;
  width: 20px;
  border: 1px solid #F89C09;
}

.main_create {
  margin-top: 120px;
  position: relative;
  padding-bottom: 30px;
}
.main_create .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 17px;
  position: relative;
  z-index: 1;
}

.r_2 {
  display: block;
  width: 1283px;
  height: 1063px;
  position: absolute;
  top: 57px;
  left: 50%;
  transform: translateX(-340px);
}

.mc_block_1 {
  padding-top: 100px;
  margin-right: auto;
}
.mc_block_1.mcb_2 {
  display: flex;
  align-self: flex-start;
  padding-top: 35px;
  gap: 17px;
}
.mc_block_1 .h2_text {
  max-width: 445px;
}

.h2_text {
  width: 100%;
  font-size: 18px;
  line-height: 150%;
  color: #81817B;
  margin-top: 25px;
  position: relative;
}
.h2_text > span {
  text-decoration: underline;
}
.h2_text:before {
  display: block;
  content: "1";
  font-weight: 800;
  font-size: 420px;
  font-family: "Gilroy";
  position: absolute;
  top: -35px;
  right: -24px;
  -webkit-text-stroke: 1px #D6890B;
  color: transparent;
  opacity: 0.4;
}

.mc_block {
  width: 100%;
  max-width: 304px;
  aspect-ratio: 1/1;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border: 1px solid #202020;
  border-radius: 22px;
  padding: 30px;
}
.mc_block.small, .mc_block.small_2 {
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: unset;
  backdrop-filter: unset;
  border: unset;
}
.mc_block.small:before, .mc_block.small_2:before {
  display: block;
  content: "";
  width: 100px;
  aspect-ratio: 1/1;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border: 1px solid #202020;
  border-radius: 22px;
}
.mc_block.small_2 {
  justify-content: flex-end;
  align-items: flex-start;
}
.mc_block.up {
  align-items: flex-start;
}

.msb_img {
  display: flex;
  align-items: center;
  height: 70px;
}

.msb_head {
  font-size: 22px;
  font-weight: 700;
  color: #D6890B;
  margin-top: 21px;
}

.msb_text {
  font-size: 16px;
  line-height: 140%;
  color: #81817B;
  margin-top: 15px;
}

.mc_btn {
  height: 60px;
  max-width: 190px;
  flex-shrink: 0;
  font-size: 17px;
  font-family: "Gilroy";
}

.mc_price {
  height: 60px;
  max-width: 190px;
  width: 100%;
  flex-shrink: 0;
  border: 1px solid #F4A72C;
  border-radius: 55px;
  font-size: 22px;
  line-height: 58px;
  font-weight: 700;
  text-align: center;
  color: #F4A72C;
}

.main_promotion {
  margin-top: 130px;
  position: relative;
  padding-bottom: 30px;
}
.main_promotion .content {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.main_promotion .h2_text:before {
  content: "2";
  top: -22px;
  right: -13px;
}

.r_3 {
  display: block;
  width: 1168px;
  max-width: unset;
  height: 1133px;
  position: absolute;
  top: -400px;
  left: 50%;
  transform: translateX(-950px);
}

.mp_block {
  max-width: 620px;
}

.mp_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 27px;
  margin-top: 40px;
}

.mp_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border: 1px solid #202020;
  border-radius: 22px;
  padding: 35px 15px;
}
.mp_item > img {
  max-width: 52px;
}

.mpi_head {
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: 800;
  color: #D6890B;
  text-align: center;
  margin-top: 24px;
}

.mpi_text {
  font-size: 22px;
  font-family: "Montserrat";
  text-align: center;
  margin-top: 3px;
}

.mp_bot {
  display: flex;
  gap: 17px;
  margin-top: 40px;
}

.main_support {
  margin-top: 230px;
  position: relative;
  padding-bottom: 30px;
}
.main_support .content {
  display: flex;
  position: relative;
  z-index: 1;
}
.main_support .h2_text:before {
  content: "3";
  top: 40px;
  right: -16px;
}
.main_support .mp_items {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.main_support .mp_item > img {
  filter: invert(25%) sepia(51%) saturate(523%) hue-rotate(354deg) brightness(94%) contrast(96%);
}
.main_support .mpi_text {
  margin-top: 24px;
}

.r_4 {
  display: block;
  width: 1331px;
  max-width: unset;
  height: 1003px;
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-210px);
}

.ms_head {
  font-size: 25px;
  font-weight: 800;
  margin-top: 30px;
}

.main_form {
  margin-top: 130px;
  position: relative;
  z-index: 1;
}
.main_form .mf_wrap {
  display: flex;
  justify-content: flex-end;
  border: 2px solid #F89C09;
  box-shadow: inset 0px 4px 33px rgba(0, 0, 0, 0.25);
  border-radius: 22px;
  position: relative;
  padding: 40px;
}
.main_form h2 {
  font-size: 24px;
  margin-bottom: 28px;
}
.main_form .f_submit {
  max-width: 200px;
  height: 50px;
  font-size: 18px;
  font-family: "Ubuntu";
  margin-top: unset;
}
.main_form .cb_file {
  flex-shrink: 0;
}
.main_form .niceCheck {
  flex-shrink: 0;
}

.r_5 {
  display: block;
  width: 704px;
  height: 572px;
  position: absolute;
  right: 710px;
  bottom: 0;
}

.mf_block {
  width: 100%;
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.main_bot, .advantages, .admin, .content_block {
  margin-top: 80px;
}

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

.mb_item {
  display: flex;
  flex-direction: column;
  gap: 17px;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  backdrop-filter: blur(11px);
  border-radius: 22px;
  padding: 25px 30px;
}
.mb_item > img {
  max-width: 60px;
}

.mbi_head {
  font-size: 22px;
  font-weight: 700;
}

.mbi_text {
  font-size: 16px;
  line-height: 130%;
  color: #81817B;
}

footer {
  background: #060606;
  margin-top: 50px;
}

.f_top, .f_bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
}

.f_text {
  max-width: 230px;
  font-size: 20px;
  line-height: 130%;
  color: #81817B;
}

.f_contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.fc_item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fci_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  border: 1px solid #343434;
  flex-shrink: 0;
}
.fci_img > img {
  max-width: 24px;
}

.fci_text {
  flex-shrink: 0;
  font-size: 20px;
  color: #81817B;
}
.fci_text > a, .fci_text span {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.fci_text > a:hover, .fci_text span:hover {
  color: #D6890B;
}

.f_bot {
  border-top: 1px solid #181818;
}

.fb_left {
  display: flex;
  gap: 50px;
}
.fb_left > div, .fb_left > a {
  font-size: 14px;
  line-height: 120%;
  color: #81817B;
}
.fb_left > a {
  transition: 0.3s;
}
.fb_left > a:hover {
  color: #fff;
}

.fb_socials {
  display: flex;
  gap: 10px;
}
.fb_socials > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1/1;
  border: 1px solid #343434;
  border-radius: 12px;
  transition: 0.3s;
}
.fb_socials > a:hover {
  background: #fff;
  border: 1px solid #fff;
}
.fb_socials > a > img {
  max-width: 22px;
}

.create .tb_left, .promotion .tb_left, .support .tb_left {
  max-width: 600px;
}
.create .tb_items, .promotion .tb_items, .support .tb_items {
  height: 370px;
  position: relative;
}
.create .tb_items .tb_item, .promotion .tb_items .tb_item, .support .tb_items .tb_item {
  position: absolute;
}
.create .tb_items .tb_item:nth-child(1), .promotion .tb_items .tb_item:nth-child(1), .support .tb_items .tb_item:nth-child(1) {
  right: 490px;
  top: 0;
}
.create .tb_items .tb_item:nth-child(2), .promotion .tb_items .tb_item:nth-child(2), .support .tb_items .tb_item:nth-child(2) {
  right: 0;
  top: -100px;
}
.create .tb_items .tb_item:nth-child(3), .promotion .tb_items .tb_item:nth-child(3), .support .tb_items .tb_item:nth-child(3) {
  left: -100px;
  bottom: 0;
}

.r_6 {
  display: block;
  flex-shrink: 0;
  width: 947px;
  max-width: unset;
  height: 900px;
  position: absolute;
  left: 50%;
  transform: translateX(-540px);
  top: -240px;
}

.a_blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
  margin-top: 40px;
}

.a_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 26px;
  padding: 25px 30px;
}

.msb_head {
  text-align: center;
}

.msb_text {
  text-align: center;
}

.site_types {
  margin-top: 90px;
}
.site_types .content {
  position: relative;
}

.st_left {
  width: 100%;
  max-width: 950px;
  height: 660px;
  display: flex;
  align-items: flex-start;
  gap: 0 17px;
  position: relative;
}

.st_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  max-width: 305px;
  width: 100%;
  min-height: 215px;
  padding: 30px;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 22px;
  position: relative;
}
.st_item:before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  transform: rotate(-45deg);
  background: #F19809;
  position: absolute;
}
.st_item.sti_1:before {
  bottom: -12px;
  right: -15px;
}
.st_item.sti_2 {
  align-self: center;
}
.st_item.sti_2:before {
  bottom: -11px;
  left: -14px;
}
.st_item.sti_3:before {
  bottom: -11px;
  left: -14px;
}
.st_item.sti_4 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.st_item.sti_4:before {
  display: none;
}

.sti_digit {
  font-weight: 800;
  font-size: 120px;
  line-height: 100%;
  -webkit-text-stroke: 1px #171717;
  color: transparent;
  position: absolute;
  top: -5px;
  right: 10px;
}

.sti_head {
  font-size: 22px;
  font-weight: 700;
  color: #D6890B;
  position: relative;
  z-index: 1;
}

.sti_text {
  font-size: 16px;
  color: #81817B;
  position: relative;
  z-index: 1;
}

.st_right {
  width: 100%;
  max-width: 580px;
  position: absolute;
  right: 15px;
  top: 295px;
}
.st_right p {
  font-size: 18px;
  line-height: 150%;
}
.st_right p > span {
  font-size: 18px;
}
.st_right .mc_price {
  margin-top: 30px;
}

.includes {
  margin-top: 70px;
}

.i_items {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  margin: 30px 0 50px;
}

.i_item {
  width: 100%;
}
.i_item:last-child .ii_block:after {
  display: none;
}

.ii_block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 22px;
  border: 1px solid #242424;
  position: relative;
}
.ii_block:after {
  display: block;
  content: "";
  width: 25px;
  height: 42px;
  background: url(../images/ii_separator.svg) center/cover no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
}
.ii_block > img {
  max-width: 65px;
}

.ii_text {
  font-size: 18px;
  font-family: "Ubuntu";
  color: #C8C9CF;
  text-align: center;
  margin-top: 20px;
}

.work_with {
  margin-top: 70px;
}

.ww_items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 25px;
  margin-top: 30px;
}

.ww_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 22px;
  border: 1px solid #242424;
}

.wwi_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  aspect-ratio: 1/1;
}
.wwi_img > img {
  max-width: 100px;
}

.wwi_text {
  font-size: 22px;
  font-weight: 500;
  font-family: "Ubuntu";
  color: #C8C9CF;
  text-align: center;
}

.prices {
  margin-top: 70px;
}

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

.p_item {
  position: relative;
}

.pi_block {
  max-width: 467px;
  width: 100%;
  aspect-ratio: 467/519;
  display: flex;
  flex-direction: column;
  background: url(../images/pi_bg.png) top center/cover no-repeat;
  position: relative;
  z-index: 1;
  padding: 40px 35px 30px;
}

.pi_digit {
  font-weight: 700;
  font-size: 160px;
  line-height: 100%;
  background: linear-gradient(340.62deg, rgba(255, 160, 7, 0) -26.85%, rgba(255, 160, 7, 0.44) 348.47%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: absolute;
  right: 10px;
  top: -10px;
}

.pi_head {
  font-size: 30px;
  font-weight: 700;
}

.pi_text {
  font-size: 18px;
  line-height: 150%;
  color: #81817B;
  margin-top: 30px;
}

.pi_list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
  margin-bottom: auto;
}
.pi_list > li {
  font-size: 15px;
  line-height: 130%;
  color: #C8C8C6;
  padding-left: 40px;
  position: relative;
}
.pi_list > li:before {
  display: block;
  content: "";
  width: 27px;
  aspect-ratio: 27/28;
  background: url(../images/check_27x28.svg) center/cover no-repeat;
  position: absolute;
  left: 0;
  top: -5px;
}

.pi_price_block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #171716;
}

.pi_order {
  max-width: 140px;
  height: 50px;
  font-size: 18px;
  font-family: "Ubuntu";
}
.pi_order:before {
  display: none;
}

.pi_price {
  font-size: 33px;
  font-weight: 700;
  color: #F4A72C;
}
.pi_price > span {
  font-size: 38px;
}

.promotion, .support {
  margin-top: 200px;
}

.p_bot {
  display: flex;
  width: fit-content;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 26px;
  border: 1px solid #252525;
  padding: 35px 0;
  margin-top: 150px;
}
.p_bot .tbb_item {
  align-items: unset;
  min-height: unset;
  background: unset;
  opacity: unset;
  backdrop-filter: unset;
  border-radius: unset;
  border-right: 1px solid #252525;
  padding: 0 45px;
}
.p_bot .tbb_item:last-child {
  border-right: unset;
}
.p_bot .tbb_item .tbb_head, .p_bot .tbb_item .tbb_text {
  text-align: left;
}

.r_7, .r_8 {
  display: block;
  max-width: unset;
  width: 850px;
  aspect-ratio: 850/805;
  position: absolute;
  top: -290px;
  left: 50%;
  transform: translateX(-540px);
}

.search_engine {
  margin-top: 100px;
}
.search_engine .content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.se_left {
  display: flex;
  max-width: 630px;
  width: 100%;
  gap: 17px;
}

.sel_item {
  min-height: 426px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  border: 1px solid #212121;
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 22px;
  padding: 10px 15px 15px;
}

.sel_digit {
  font-size: 120px;
  line-height: 100%;
  font-weight: 600;
  text-align: center;
  -webkit-text-stroke: 1px #171717;
  color: transparent;
}

.sel_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 70px;
  margin-top: 10px;
}

.sel_head {
  font-size: 22px;
  font-weight: 700;
  color: #D6890B;
  text-align: center;
  margin-top: 25px;
}

.sel_text {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #81817B;
  margin-top: 20px;
}

.se_right .mc_price {
  margin-top: 38px;
}
.se_right p {
  line-height: 150%;
  font-size: 18px;
  max-width: 610px;
}

.we_work {
  margin-top: 70px;
}

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

.we_item {
  min-height: 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  border: 1px solid #212121;
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 22px;
  padding: 15px;
}

.we_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}

.we_text {
  font-size: 22px;
  font-weight: 500;
  font-family: "Ubuntu";
  text-align: center;
  color: #C8C9CF;
  margin-top: 10px;
}

.seo {
  margin-top: 60px;
}
.seo .ii_block {
  aspect-ratio: 243/188;
}

.faq {
  margin-top: 70px;
}

.faq_items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 30px;
}

.faq_item {
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  border: 1px solid #212121;
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 22px;
}

.fi_head {
  padding: 17px 70px 17px 25px;
  font-size: 18px;
  font-family: "Ubuntu";
  border-radius: 22px;
  position: relative;
  cursor: pointer;
}
.fi_head.opened {
  background: #D6890B;
  color: #0E0D0C;
  border-radius: 22px 22px 0 0;
}
.fi_head.opened:after {
  transform: translateY(-50%);
  background: #000 url(../images/arrow_up_9x7.svg) center/9px no-repeat;
}
.fi_head:after {
  display: block;
  content: "";
  width: 33px;
  height: 25px;
  background: #D6890B url(../images/arrow_up_b_9x7.svg) center/9px no-repeat;
  border-radius: 55px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: 0.3s;
}

.fi_text {
  display: none;
  padding: 17px 25px 17px 40px;
  font-size: 16px;
  line-height: 140%;
}

.r_8 {
  width: 1063px;
  aspect-ratio: 1063/708;
  top: -250px;
  transform: translateX(-490px);
}

.s_work {
  margin-top: 65px;
}
.s_work .content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.sw_left {
  max-width: 600px;
}
.sw_left .mc_price {
  margin-top: 40px;
}
.sw_left p {
  font-size: 18px;
  line-height: 150%;
}

.sw_right {
  max-width: 630px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 17px;
}

.sw_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  max-width: 305px;
  width: 100%;
  min-height: 215px;
  padding: 30px 0;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 22px;
  position: relative;
}
.sw_item .sti_head {
  color: #fff;
  text-align: center;
}
.sw_item .sti_img {
  position: relative;
  z-index: 1;
}
.sw_item:first-child:before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  transform: rotate(-45deg);
  background: #F19809;
  position: absolute;
  bottom: -15px;
  right: -16px;
}

.p_items_2 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.p_item_2 .pi_block {
  width: 100%;
  max-width: unset;
  height: 358px;
  background: url(../images/pi_bg_2.svg) left center no-repeat;
  padding: 35px 35px 30px;
}
.p_item_2 .pi_head > span {
  display: block;
  font-size: 20px;
  font-weight: 400;
}

.pi_colls {
  display: flex;
  gap: 50px;
  margin-top: 20px;
}

.pi_coll {
  max-width: 320px;
}
.pi_coll:nth-child(1) {
  max-width: 370px;
}
.pi_coll .pi_price {
  margin-top: 35px;
}
.pi_coll .pi_text {
  margin-top: 0;
}
.pi_coll .pi_list {
  margin-top: 0;
}

.contacts {
  margin-top: 70px;
}
.contacts .content {
  gap: 30px;
}
.contacts .tb_left {
  max-width: 275px;
}

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

.ct_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 237px;
  background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
  opacity: 0.96;
  backdrop-filter: blur(11px);
  border-radius: 22px;
  border: 1px solid #252525;
  padding: 40px 5px 25px;
  position: relative;
}
.ct_item:before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: #F19809;
  transform: rotate(45deg);
  border-radius: 4px;
  position: absolute;
  top: -13px;
  right: -17px;
}
.ct_item:nth-child(2):before {
  top: unset;
  bottom: -13px;
}
.ct_item:nth-child(4):before {
  display: none;
}

.cti_img {
  display: flex;
  width: 60px;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #343434;
}

.cti_head {
  font-size: 20px;
  color: #81817B;
  text-align: center;
  margin-top: 24px;
}

.cti_text {
  font-size: 22px;
  font-weight: 700;
  white-space: no-wrap;
  text-align: center;
  margin-top: 5px;
}
.cti_text > a {
  display: inline-block;
  font-size: 22px;
  line-height: 120%;
  font-weight: 700;
  text-align: center;
}

.map {
  margin-top: 45px;
}

.map_block {
  height: 250px;
  border-radius: 22px;
  overflow: hidden;
}

@media only screen and (min-width: 1920px) {
  .wrapper {
    background-size: cover;
  }
} /*+1920*/
@media only screen and (max-width: 1460px) {
  .mc_block {
    aspect-ratio: unset;
  }
  .mc_block.small, .mc_block.small_2 {
    display: none;
  }
  .mc_block_1 {
    width: calc(100% - 650px);
    flex-wrap: wrap;
    padding-top: 0;
  }
  .mp_bot {
    justify-content: flex-end;
  }
  .se_right h2 br {
    display: none;
  }
} /*1460*/
@media only screen and (max-width: 1350px) {
  .f_top, .f_bot {
    padding: 20px 0;
  }
  .f_logo {
    max-width: 200px;
  }
  .f_text {
    flex: 1;
    max-width: unset;
    font-size: 16px;
  }
  .fc_item {
    gap: 10px;
  }
  .fci_img {
    width: 40px;
    border-radius: 12px;
  }
  .fci_img > img {
    max-width: 18px;
  }
  .fci_text {
    font-size: 16px;
  }
  .fci_text > a, .fci_text span {
    font-size: 18px;
  }
  .a_blocks {
    grid-gap: 15px;
  }
  .a_block {
    padding: 15px;
  }
  .top_block.create, .top_block.promotion, .top_block.support {
    margin-top: 50px;
  }
  .top_block.create .content, .top_block.promotion .content, .top_block.support .content {
    flex-direction: column;
    gap: 50px;
  }
  .top_block.create .tb_items, .top_block.promotion .tb_items, .top_block.support .tb_items {
    height: unset;
    justify-content: flex-start;
  }
  .top_block.create .tb_items .tb_item, .top_block.promotion .tb_items .tb_item, .top_block.support .tb_items .tb_item {
    position: static !important;
  }
  .r_6 {
    transform: unset;
    left: 200px;
    top: -450px;
  }
  .pi_block {
    padding: 20px 20px 30px;
  }
  .pi_text {
    font-size: 16px;
    line-height: 130%;
  }
  .pi_price {
    font-size: 27px;
  }
  .pi_price > span {
    font-size: 32px;
  }
  .r_7, .r_8 {
    left: unset;
    transform: unset;
    right: 0;
    top: -450px;
  }
  .r_8 {
    width: 700px;
    top: -250px;
  }
} /*1350*/
@media only screen and (max-width: 1250px) {
  .st_right {
    top: 460px;
  }
} /*1250*/
@media only screen and (max-width: 1200px) {
  .h_tel {
    margin-left: unset;
    font-size: 18px;
  }
  .h_menu > ul > li {
    padding: 15px;
  }
  .h_menu > ul > li:hover:before {
    bottom: 6px;
  }
  .h_menu > ul > li > ul {
    top: 50px;
    left: 0;
  }
  .tb_left {
    max-width: 370px;
  }
  .p_items {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin: 30px auto 0;
  }
  .sw_left {
    max-width: 400px;
  }
} /*1200*/
@media only screen and (min-width: 1024px) {
  .h_menu > ul > li:after {
    display: block;
    content: "";
    width: 1px;
    height: 9px;
    background: #272727;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .h_menu > ul > li:last-child:after {
    display: none;
  }
  .h_menu > ul > li:hover {
    color: #D6890B;
  }
  .h_menu > ul > li:hover > ul {
    display: block;
  }
  .h_menu > ul > li:hover > a {
    color: #D6890B;
  }
  .h_menu > ul > li:hover:before {
    display: block;
    content: "";
    width: 25px;
    height: 1px;
    background: #D6890B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
  }
} /*+1024*/
@media only screen and (max-width: 1024px) {
  .burger {
    display: block;
  }
  .logo {
    margin-right: auto;
  }
  .h_menu {
    width: 230px;
    display: none;
    position: absolute;
    left: 0;
    top: 70px;
    background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
    backdrop-filter: blur(11px);
    border-radius: 26px;
    padding: 20px;
  }
  .h_menu > ul {
    flex-direction: column;
    width: unset;
  }
  .h_menu > ul > li {
    display: inline-block;
    font-size: 16px;
    padding: 0;
    margin-bottom: 20px;
  }
  .h_menu > ul > li:last-child {
    margin-bottom: 0;
  }
  .h_menu > ul > li.hm_pop:after {
    display: inline-block;
    vertical-align: middle;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 4px 6px 4px;
    border-color: transparent transparent #ffffff transparent;
    transform: rotate(180deg);
    position: absolute;
    left: 80px;
    top: 6px;
    transition: 0.3s;
  }
  .h_menu > ul > li.hm_pop.opened:after {
    transform: rotate(0deg);
  }
  .h_menu > ul > li > a {
    font-size: 16px;
  }
  .h_menu > ul > li > ul {
    position: static;
  }
  .main_create {
    margin-top: 70px;
  }
  .main_create .content h2 {
    padding-left: 60px;
  }
  .mc_block_1 {
    width: 100%;
  }
  .mc_block_1.mcb_2 {
    order: 3;
    justify-content: center;
  }
  .h2_text {
    padding-left: 60px;
    max-width: unset;
    font-size: 16px;
    line-height: 130%;
    margin-top: 10px;
  }
  .h2_text:before {
    right: unset;
    left: 0;
    top: -20px;
    font-size: 140px;
  }
  .mc_block {
    width: calc(50% - 10px);
    max-width: unset;
    order: 2;
  }
  .r_3 {
    display: none;
  }
  .main_promotion {
    margin-top: 30px;
  }
  .main_promotion .content h2 {
    padding-left: 60px;
  }
  .main_promotion .h2_text:before {
    font-size: 100px;
  }
  .mp_block {
    max-width: unset;
  }
  .mp_bot {
    justify-content: center;
  }
  .main_support {
    margin-top: 40px;
  }
  .main_support h2 {
    padding-left: 60px;
  }
  .main_support .h2_text:before {
    font-size: 100px;
    top: -21px;
  }
  .main_support .mp_items {
    margin-top: 20px;
  }
  .r_4 {
    display: none;
  }
  .ms_head {
    text-align: center;
    margin-top: 20px;
  }
  .main_form {
    margin-top: 30px;
  }
  .main_bot, .advantages, .admin, .content_block {
    margin-top: 50px;
  }
  .mb_items {
    margin-top: 30px;
    gap: 15px;
  }
  .mb_item {
    padding: 20px 15px;
  }
  .f_contacts {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .fb_left {
    gap: 25px;
  }
  .fb_socials > a {
    width: 40px;
  }
  .fb_socials > a > img {
    max-width: 18px;
  }
  .a_block .msb_head {
    font-size: 18px;
    margin-top: 15px;
  }
  .a_block .msb_text {
    font-size: 16px;
  }
  .st_left {
    height: unset;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
  }
  .st_item {
    max-width: calc(50% - 8px);
    align-self: unset !important;
    position: static !important;
    padding: 25px 15px;
  }
  .st_item:before {
    display: none;
  }
  .st_right {
    max-width: unset;
    position: static;
    margin-top: 170px;
  }
  .includes {
    margin-top: 50px;
  }
  .i_items {
    gap: 15px;
  }
  .ii_block:after {
    display: none;
  }
  .ii_block > img {
    max-width: 50px;
  }
  .ii_text {
    font-size: 16px;
  }
  .work_with {
    margin-top: 50px;
  }
  .ww_items {
    gap: 15px;
  }
  .wwi_img {
    width: 50px;
  }
  .wwi_img > img {
    max-width: 45px;
  }
  .wwi_text {
    font-size: 16px;
  }
  .prices {
    margin-top: 50px;
  }
  .p_items {
    margin-top: 30px;
  }
  .r_7, .r_8 {
    width: 500px;
    top: -220px;
  }
  .r_8 {
    top: -130px;
  }
  .p_bot .tbb_item {
    padding: 0 25px;
  }
  .search_engine {
    margin-top: 50px;
  }
  .search_engine .content {
    flex-direction: column-reverse;
  }
  .se_right p {
    max-width: unset;
  }
  .se_left {
    max-width: unset;
    justify-content: center;
  }
  .sel_item {
    min-height: unset;
  }
  .we_work {
    margin-top: 50px;
  }
  .we_items {
    margin-top: 30px;
  }
  .seo {
    margin-top: 40px;
  }
  .faq {
    margin-top: 50px;
  }
  .s_work {
    margin-top: 40px;
  }
  .p_item_2 .pi_block {
    height: unset;
    aspect-ratio: unset;
    background: linear-gradient(143.02deg, #101010 13.66%, rgba(16, 16, 16, 0.7) 114.51%);
    border: 1px solid #212121;
    opacity: 0.96;
    backdrop-filter: blur(11px);
    border-radius: 22px;
    padding: 30px 20px;
    position: relative;
  }
  .pi_colls {
    flex-wrap: wrap;
  }
  .pi_coll:nth-child(1) {
    max-width: unset;
    width: 100%;
  }
  .pi_coll .pi_price {
    position: absolute;
    top: -10px;
    right: 15px;
  }
  .contacts .content {
    padding-bottom: 120px;
    position: relative;
  }
  .contacts .tb_left {
    max-width: unset;
    position: static;
  }
  .contacts .tb_left .tbl_btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: unset;
  }
  .contacts .tb_right {
    margin-top: 0;
  }
  .ct_items {
    gap: 10px;
  }
  .ct_item {
    min-height: unset;
  }
  .ct_item:before {
    display: none;
  }
  .cti_head {
    font-size: 16px;
  }
  .cti_text {
    font-size: 16px;
  }
  .cti_text > a {
    font-size: 16px;
  }
} /*1024*/
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 26px !important;
  }
  p {
    font-size: 16px !important;
    margin-top: 20px;
  }
  p > span {
    font-size: 16px !important;
  }
  .top_block {
    margin-top: 20px;
  }
  .top_block .content {
    flex-direction: column;
    gap: 30px;
  }
  .top_block h1 {
    font-size: 25px;
    text-align: center;
  }
  .top_block h1 > span:nth-child(1) {
    font-size: 40px;
  }
  .tb_left {
    max-width: 100%;
  }
  .tb_right {
    margin-top: 30px;
  }
  .tbl_text {
    text-align: center;
    font-size: 16px;
  }
  .tbl_btn {
    margin: 20px auto 0;
  }
  .tb_items {
    max-width: 500px;
    margin: 0 auto;
  }
  .tb_items.tbi_1 {
    margin-bottom: 40px;
  }
  .r_1 {
    width: 700px;
    left: 53%;
    transform: translateX(-50%);
    top: -80px;
  }
  .tb_bot {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    margin-top: 0;
  }
  .tbb_item {
    min-height: unset;
  }
  .tbb_head {
    font-size: 24px;
  }
  .r_2 {
    display: none;
  }
  .r_5 {
    display: none;
  }
  .main_form .mf_wrap {
    padding: 30px 15px;
  }
  .main_form .f_bot {
    flex-wrap: wrap;
    gap: 20px;
  }
  .main_form .f_submit {
    max-width: unset;
    order: 3;
  }
  .mbi_head {
    font-size: 18px;
  }
  .mbi_head br {
    display: none;
  }
  .mbi_text {
    font-size: 16px;
  }
  .mbi_text br {
    display: none;
  }
  .f_text {
    display: none;
  }
  .f_bot {
    flex-wrap: wrap;
  }
  .fb_left {
    width: 100%;
    order: 2;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .copy {
    order: 4;
  }
  .fb_socials {
    width: 100%;
    justify-content: flex-end;
  }
  .a_blocks {
    grid-template-columns: repeat(2, 1fr);
  }
  .r_6 {
    display: none;
  }
  .top_block.create .tb_left, .top_block.promotion .tb_left, .top_block.support .tb_left {
    max-width: unset;
  }
  .top_block.create .tb_items, .top_block.promotion .tb_items, .top_block.support .tb_items {
    justify-content: center;
  }
  .top_block.create .tb_right, .top_block.promotion .tb_right, .top_block.support .tb_right {
    margin-top: 0;
  }
  .st_right {
    margin-top: 50px;
  }
  .i_items {
    flex-wrap: wrap;
  }
  .i_item {
    width: calc(33.3% - 10px);
  }
  .work_with h2 {
    text-align: center;
  }
  .ww_items {
    max-width: 400px;
    margin: 30px auto 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .promotion .content, .support .content {
    gap: 30px !important;
  }
  .p_bot {
    margin-top: 0;
    padding: 15px 0;
  }
  .p_bot .tbb_item {
    padding: 0 20px;
  }
  .r_7, .r_8 {
    display: none;
  }
  .we_items {
    gap: 10px;
  }
  .we_item {
    min-height: unset;
    justify-content: flex-start;
  }
  .we_img {
    width: 45px;
    height: 60px;
  }
  .we_text {
    font-size: 16px;
  }
  .faq_items {
    margin-top: 20px;
  }
  .fi_head, .fi_text {
    padding-left: 15px;
  }
  .s_work .content {
    flex-direction: column;
  }
  .sw_left {
    max-width: unset;
  }
  .sw_right {
    max-width: unset;
    grid-template-columns: repeat(3, 1fr);
  }
  .sw_item {
    min-height: unset;
    gap: 20px;
  }
  .sw_item:first-child:before {
    display: none;
  }
  .sw_item .sti_digit {
    font-size: 70px;
  }
  .sw_item .sti_img {
    max-width: 45px;
  }
  .sw_item .sti_head {
    font-size: 16px;
  }
  .pi_colls {
    gap: 25px;
  }
  .pi_coll {
    max-width: unset;
    width: 100%;
  }
  .ct_items {
    grid-template-columns: repeat(2, 1fr);
  }
  .ct_item {
    padding: 20px 5px;
  }
} /*768*/
@media only screen and (max-width: 600px) {
  .h_tel > span {
    display: none;
  }
  .main_support .mp_items {
    gap: 5px;
  }
  .main_support .mp_item {
    padding: 20px 10px;
  }
  .main_support .mp_item .mpi_text {
    font-size: 14px;
  }
  .mb_items {
    grid-template-columns: repeat(1, 1fr);
  }
} /*600*/
@media only screen and (max-width: 540px) {
  .mc_block {
    width: 100%;
  }
} /*540*/
@media only screen and (max-width: 480px) {
  .header {
    gap: 15px;
  }
  .close {
    top: 15px;
    right: 15px;
  }
  .mf_head {
    font-size: 20px;
    padding: 0 45px;
  }
  .f_bot {
    flex-direction: column;
    align-items: center;
  }
  .mp_items {
    gap: 10px;
    margin-top: 25px;
  }
  .mp_item {
    padding: 20px 10px;
  }
  .mpi_head {
    font-size: 24px;
    margin-top: 15px;
  }
  .mpi_text {
    font-size: 16px;
  }
  .mp_bot {
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
  }
  .sti_digit {
    font-size: 70px;
  }
  .st_item {
    max-width: 100%;
    min-height: unset;
  }
  .top_block.create .tb_items, .top_block.promotion .tb_items, .top_block.support .tb_items {
    justify-content: center;
    gap: 30px;
  }
  .top_block.create .tb_items .tb_item, .top_block.promotion .tb_items .tb_item, .top_block.support .tb_items .tb_item {
    min-width: unset;
  }
  .top_block.create .tb_items .tbi_text, .top_block.promotion .tb_items .tbi_text, .top_block.support .tb_items .tbi_text {
    font-size: 16px;
  }
  .i_item {
    width: calc(50% - 8px);
  }
  .p_bot {
    flex-direction: column;
    padding: 0 20px;
    margin: 0 auto;
  }
  .p_bot .tbb_item {
    border-right: unset;
    border-bottom: 1px solid #252525;
    padding: 20px 0;
  }
  .se_left {
    gap: 10px;
  }
  .sel_digit {
    font-size: 70px;
  }
  .sel_img {
    max-width: 100px;
    margin: 0;
  }
  .sel_head {
    font-size: 20px;
    margin-top: 0;
  }
  .sel_text {
    font-size: 14px;
    line-height: 130%;
  }
  .sel_text br {
    display: none;
  }
  .we_work h2 {
    text-align: center;
  }
  .we_items {
    max-width: 200px;
    grid-template-columns: repeat(1, 1fr);
    margin: 20px auto;
  }
  .sw_right {
    max-width: 200px;
    grid-template-columns: repeat(1, 1fr);
    margin: 20px auto;
  }
} /*480*/
@media only screen and (max-width: 400px) {
  h1 {
    font-size: 22px !important;
  }
  h1 > span {
    font-size: 28px !important;
  }
  .r_1 {
    display: none;
  }
  .main_support .mp_item .mpi_text {
    font-size: 12px;
  }
  .a_blocks {
    grid-template-columns: repeat(1, 1fr);
  }
  .top_block.create .tb_items, .top_block.promotion .tb_items, .top_block.support .tb_items {
    gap: 20px;
  }
  .top_block.create .tb_items .tbi_text, .top_block.promotion .tb_items .tbi_text, .top_block.support .tb_items .tbi_text {
    font-size: 13px;
  }
  .pi_block {
    background: #0F1010;
    border-radius: 14px;
    border: 1px solid #242424;
  }
  .pi_digit {
    font-size: 80px;
    z-index: 2;
    top: 0;
  }
  .pi_head {
    font-size: 24px;
  }
  .pi_list {
    gap: 10px;
    margin-top: 20px;
  }
  .pi_list li {
    line-height: 120%;
    padding-left: 25px;
  }
  .pi_list li:before {
    width: 19px;
    top: -2px;
  }
  .pi_order {
    max-width: 100px;
    font-size: 14px;
  }
  .pi_price_block {
    margin-top: 10px;
  }
  .pi_price {
    font-size: 20px;
  }
  .pi_price > span {
    font-size: 24px;
  }
} /*400*/

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