* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
  display: block;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  top: 0;
  left: 0;
  padding: 0;
  background: #080808 url(../img/bg.png) top no-repeat;
  background-size: 100% auto;
  width: 100%;
  color: #fefefe;
}

html,
body {
  width: 100vw;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth; /* включаем плавную прокрутку */
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
  height: 5px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #62f68c;
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #102e19;
  border-radius: 10px;
  background-color: #fff;
}

/* Header styles */
.container {
  width: 100%;
  max-width: 1590px;
  display: block;
  margin: 0 auto;
}
.header_items {
  display: flex;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
}
.header_item {
  margin-left: auto;
}
.header_item:first-child {
  margin-left: 0px;
}
.header_logo {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fefefe;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}
.header_item_navs {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.header_item_nav a {
  color: rgba(254, 254, 254, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.9px;
  cursor: pointer;
  transition: all 0.5s;
}
.header_item_nav a:hover {
  color: #fefefe;
  font-weight: 600;
}

/* Language selector styles */
.header_lang_selected {
  vertical-align: middle;
  border-radius: 18px;
  border: 1px solid rgba(254, 254, 254, 0.05);
  background: linear-gradient(
    180deg,
    rgba(254, 254, 254, 0.05) 0%,
    rgba(254, 254, 254, 0.25) 100%
  );
  box-shadow: 0 -4px 10.6px -1px rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.5s;
}
.header_lang_selected:hover {
  opacity: 0.5;
}

/* Скрываем мобильное меню на десктопе */
.mobile-menu-toggle {
  display: none;
}
.main_container {
  width: 100%;
  max-width: 1074px;
  display: block;
  margin: 0 auto;
}
.intro {
  width: 100%;
  height: auto;
  margin-top: 79px;
}
.intro_blocks {
  display: flex;
  align-items: center;
}
/* Intro block styles */
.intro_block_tittle {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #f5f8ff 0.38%, #313131 367.22%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 56px */
  letter-spacing: -2.8px;
  white-space: nowrap;
}
.intro_block_button {
  margin-top: 42px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 245, 245, 0.96);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  padding: 18px 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 19.8px */
  letter-spacing: -0.9px;
  border-radius: 24px;
  border: 2px solid rgba(254, 254, 254, 0.05);
  background: linear-gradient(
    180deg,
    rgba(254, 254, 254, 0.05) 0%,
    rgba(254, 254, 254, 0.25) 100%
  );
  box-shadow: 0 -4px 10.6px -1px rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(10px);
}
/* SVG icon styles */
.intro_block_button:hover {
  opacity: 0.5;
}
/* Image styles */
.intro_informations {
  width: 100%;
  height: auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 33.5px;
}
/* Intro informations block styles */
.intro_informations_block_tittle {
  color: #fefefe;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.6px;
}
.intro_informations_block_items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
  margin-top: 28px;
}
.intro_informations_block_item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.intro_informations_block_item_number {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080808;
  font-family: "Inter", sans-serif;
  font-size: 18.667px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 24.267px */
  letter-spacing: -0.933px;
}
.intro_informations_block_item_text {
  color: rgba(254, 254, 254, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.8px;
}
.intro_informations_block_arrow {
  vertical-align: middle;
}
.intro_informations_block_rect {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 2px solid rgba(254, 254, 254, 0.05);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 -4px 27.9px 0 rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(12.899999618530273px);
  max-width: 414px;
  width: 100%;
}
.intro_informations_block_rect_content {
  padding: 42px 24px;
}
.intro_informations_block_rect_icon {
  display: block;
  margin: 0 auto;
}
.intro_informations_block_rect_tittle {
  margin-top: 12px;
  color: #fefefe;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  letter-spacing: -1.4px;
}
.intro_informations_block_rect_text {
  margin-top: 18px;
  color: rgba(254, 254, 254, 0.7);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.9px;
}

.solution {
  width: 100%;
  height: auto;
  margin-top: 128px;
}
.solution_tittle {
  color: #fefefe;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.6px;
}
.solution_tittle span {
  font-weight: 600;
}
.solution_text {
  display: block;
  margin: 0 auto;
  margin-top: 24px;
  width: 100%;
  text-align: center;
  max-width: 618px;
  color: rgba(254, 254, 254, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1px;
}
.solution_text span {
  color: #fefefe;
}
.solution_blocks {
  display: grid;
  grid-template-columns: calc(33.3% - 25.5px) calc(33.3% - 25.5px) 33.3%;
  grid-column-gap: 25.5px;
  width: 100%;
  height: auto;
  margin-top: 62px;
}
.solution_block {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 2px solid rgba(254, 254, 254, 0.05);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 -4px 10.6px -1px rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(10px);
}
.solution_block_content {
  padding: 42px 24px;
}
.solution_block_icon {
  vertical-align: middle;
}
.solution_block_tittle {
  margin-top: 12px;
  color: #fefefe;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.9px;
}

.solution_block:first-child {
  background: url(../img/solution_1_bg.png) center no-repeat;
  background-size: 100% 100%;
}
.solution_block:nth-child(2) {
  background: url(../img/solution_2_bg.png) center no-repeat;
  background-size: 100% 100%;
}
.solution_block:last-child {
  background: url(../img/solution_3_bg.png) center no-repeat;
  background-size: 100% 100%;
}

.solution_button {
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  color: rgba(245, 245, 245, 0.96);
  text-align: center;
  font-family: "Inter", sans-serif;
  padding: 16px 28px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 19.8px */
  letter-spacing: -0.9px;
  border-radius: 24px;
  border: 2px solid rgba(254, 254, 254, 0.05);
  background: linear-gradient(
    180deg,
    rgba(254, 254, 254, 0.05) 0%,
    rgba(254, 254, 254, 0.25) 100%
  );
  box-shadow: 0 -4px 10.6px -1px rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(10px);
  display: block;
  margin: 0 auto;
  margin-top: 62px;
}
.solution_button:hover {
  opacity: 0.5;
}
.solution_button svg {
  vertical-align: middle;
  margin-left: 8px;
}

.types {
  width: 100%;
  height: auto;
  margin-top: 128px;
}

.types_tittle {
  color: #fefefe;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.6px;
}
.types_text {
  margin-top: 24px;
  color: rgba(254, 254, 254, 0.7);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1px;
}
.types_blocks {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-top: 82px;
}
.types_block {
  width: 100%;
  height: auto;
  border-radius: 32px 0 0 32px;
  border: 2px solid rgba(254, 254, 254, 0.25);
  background: linear-gradient(180deg, #3c3c3c 0%, #242424 100%);
}
.types_block:nth-child(2) {
  border-radius: 32px 32px 0 0;
  background: #fefefe;
}
.types_block:last-child {
  border-radius: 0 32px 32px 0;
}
.types_block_content {
  padding: 42px 28px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.types_block_price {
  color: #fefefe;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.6px;
}
.types_block_tittle {
  margin-top: 12px;
  color: #fefefe;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.4px;
}
.types_block_text {
  margin-top: 14px;
  color: rgba(254, 254, 254, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.8px;
}
.types_block_items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 62px;
  list-style: none;
}
.types_block_item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fefefe;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.8px;
}
.types_block_item svg {
  vertical-align: middle;
}
.types_button {
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  color: #080808;
  font-family: "Inter", sans-serif;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.8px;
  border-radius: 24px;
  background: #fefefe;
  margin-top: 160px;
}
.types_button:hover {
  opacity: 0.5;
}
.types_block_info {
  color: #080808;
  width: fit-content;
  margin-left: auto;
  font-family: "Inter", sans-serif;
  padding: 8px 18px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 15.6px */
  letter-spacing: -0.6px;
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.05);
}

.types_block:last-child .types_button {
  margin-top: 62px;
}

.types_block:nth-child(2) .types_block_price {
  color: #080808;
}

.types_block:nth-child(2) .types_block_tittle {
  color: #080808;
}

.types_block:nth-child(2) .types_block_text {
  color: #080808;
}

.types_block:nth-child(2) .types_block_item {
  color: #080808;
}

.types_block:nth-child(2) .types_button {
  background: #080808;
  color: #fefefe;
}

.steps {
  width: 100%;
  height: auto;
  margin-top: 128px;
}

.steps_tittle {
  color: #fefefe;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.6px;
}
.steps_blocks {
  width: 100%;
  height: auto;
  margin-top: 82px;
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
}
.steps_blocks::after {
  content: " ";
  position: absolute;
  width: 3px;
  background: rgba(254, 254, 254, 0.7);
  height: calc(100% - 120px);
  left: calc(50% - 1.5px);
  top: 77px;
}
.steps_block {
  width: 100%;
  height: auto;
  position: relative;
}
.steps_block_step {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 15.6px */
  letter-spacing: -0.6px;
}
.steps_block_step_tittle {
  margin-top: 12px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.6px;
}
.steps_block_step_text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -1px;
  max-width: 385px;
}

.steps_block:nth-child(2n + 1) {
  margin-left: 75px;
}

.steps_block:nth-child(2n) {
  margin-left: 202px;
}

.steps_block:nth-child(2) {
  margin-top: 202px;
}

.steps_block:nth-child(3) {
  margin-top: 69px;
}

.steps_block:nth-child(4) {
  margin-top: 250px;
}

.steps_block:nth-child(5) {
  margin-top: 69px;
}

.steps_block:last-child {
  margin-top: 250px;
}

.steps_block:first-child::after {
  position: absolute;
  content: " ";
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border-radius: 74.25px;
  background: #fff;
  right: 65px;
  top: 65px;
  z-index: 1;
}

.steps_block:nth-child(2)::after {
  position: absolute;
  content: " ";
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border-radius: 74.25px;
  background: #fff;
  left: -210px;
  top: 65px;
  right: inherit;
  z-index: 1;
}

.steps_block:nth-child(3)::after {
  position: absolute;
  content: " ";
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border-radius: 74.25px;
  background: #fff;
  right: 65px;
  top: 65px;
  z-index: 1;
}

.steps_block:nth-child(4)::after {
  position: absolute;
  content: " ";
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border-radius: 74.25px;
  background: #fff;
  left: -210px;
  top: 65px;
  right: inherit;
  z-index: 1;
}

.steps_block:nth-child(5)::after {
  position: absolute;
  content: " ";
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border-radius: 74.25px;
  background: #fff;
  right: 65px;
  top: 65px;
  z-index: 1;
}

.steps_block:last-child::after {
  position: absolute;
  content: " ";
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border-radius: 74.25px;
  background: #fff;
  left: -210px;
  top: 65px;
  right: inherit;
  z-index: 1;
}

.free {
  width: 100%;
  height: auto;
  margin-top: 128px;
}

.free_items {
  display: flex;
  align-items: center;
}
.free_item:last-child {
  margin-left: auto;
}
.free_item:first-child {
  margin-right: 20px;
}
.free_item_teg {
  color: rgba(8, 8, 8, 0.96);
  outline: none;
  border: none;
  cursor: pointer;
  transition: all .5s;
  text-align: center;
  font-family: "Inter", sans-serif;
  padding: 16px 28px;
  border-radius: 24px;
  background: #fefefe;
  font-size: 16px;
  font-style: normal;
  width: fit-content;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: -0.8px;
}
.free_item_teg:hover{
  opacity: .5;
}
.free_item_tittle {
  margin-top: 24px;
  color: #fefefe;
  font-family: "Inter", sans-serif;
  max-width: 358px;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.6px;
}
.free_item_text {
  margin-top: 24px;
  color: rgba(254, 254, 254, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.9px;
  max-width: 491px;
}
.free_item_image {
  vertical-align: middle;
}

.faq {
  width: 100%;
  height: auto;
  margin-top: 128px;
}

.faq_items {
  display: flex;
  align-items: center;
}
.faq_item:last-child {
  margin-left: auto;
}
.faq_item:first-child {
  margin-right: 20px;
}
.faq_item_tittle {
  color: #fefefe;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.6px;
}
.faq_item_text {
  margin-top: 24px;
  color: rgba(254, 254, 254, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.9px;
  max-width: 600px;
}
.faq_buttons {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.faq_button button{
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 245, 245, 0.96);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 19.8px */
  letter-spacing: -0.9px;
  padding: 16px 28px;
}
.faq_button:first-child button{
  border-radius: 24px;
  border: 2px solid rgba(254, 254, 254, 0.05);
  background: linear-gradient(
    180deg,
    rgba(254, 254, 254, 0.05) 0%,
    rgba(254, 254, 254, 0.25) 100%
  );
  box-shadow: 0 -4px 10.6px -1px rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(10px);
}
.faq_button:last-child button{
  border-radius: 24px;
  background: #fefefe;
  color: rgba(8, 8, 8, 0.96);
}
.faq_button button:hover {
  opacity: 0.5;
}
.faq_item_image {
  vertical-align: middle;
}

footer {
  width: 100%;
  height: auto;
  margin-top: 95px;
  padding-bottom: 110px;
}

.footer_items {
  display: flex;
  align-items: center;
}
.footer_item:last-child {
  margin-left: auto;
}
.footer_item:first-child {
  margin-right: 20px;
}
.footer_item_socials {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer_item_social {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
.footer_item_social_rect:hover {
  opacity: 0.5;
}
.footer_item_social_rect {
  cursor: pointer;
  transition: all 0.5%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(254, 254, 254, 0.05);
  background: linear-gradient(
    180deg,
    rgba(254, 254, 254, 0.05) 0%,
    rgba(254, 254, 254, 0.25) 100%
  );
  box-shadow: 0 -4px 10.6px -1px rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(10px);
}
.footer_item_social_rect:hover {
  opacity: 0.5;
}
.footer_item_social_text {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.6px;
}

@media (min-width: 320px) and (max-width: 499px) {
  .container,
  .main_container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header_item:nth-child(2) {
    display: none;
  }
  .intro_blocks {
    flex-direction: column;
    gap: 30px;
  }
  .intro_block_tittle {
    font-size: 45px;
    white-space: normal;
    text-align: center;
  }
  .intro_block_button {
    font-size: 16px;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
  }
  .intro_block_tittle br {
    display: none;
  }
  .intro_block_image {
    width: 100%;
    max-width: 567px;
  }
  .intro_informations {
    flex-direction: column;
    gap: 30px;
  }
  .intro_informations_block_tittle {
    font-size: 25px;
    text-align: center;
  }
  .intro_informations_block_item {
    gap: 12px;
  }
  .intro_informations_block_item_text {
    font-size: 16px;
  }
  .intro_informations_block_item_number {
    font-size: 16px;
  }
  .intro_informations_block_arrow {
    transform: rotate(90deg);
  }
  .intro_informations_block_rect_tittle {
    font-size: 20px;
  }
  .intro_informations_block_rect_text {
    font-size: 16px;
  }
  .solution_blocks {
    grid-template-columns: 100%;
    grid-row-gap: 20px;
  }
  .types_blocks {
    flex-direction: column;
    gap: 30px;
  }
  .types_block {
    border-radius: 32px;
  }
  .types_block:nth-child(2) .types_button {
    margin-top: 50px;
  }
  .types_block:last-child .types_button {
    margin-top: 50px;
  }
  .types_button {
    margin-top: 50px;
  }
  .types_block:nth-child(2) {
    border-radius: 32px;
  }
  .types_block:last-child {
    border-radius: 32px;
  }
  .steps_block:first-child::after {
    display: none;
  }
  .steps_blocks::after {
    display: none;
  }
  .steps_block:nth-child(2)::after {
    display: none;
  }
  .steps_block:nth-child(3)::after {
    display: none;
  }
  .steps_block:nth-child(4)::after {
    display: none;
  }
  .steps_block:nth-child(5)::after {
    display: none;
  }
  .steps_block:last-child::after {
    display: none;
  }
  .steps_block:nth-child(2n + 1) {
    margin-left: 0;
  }
  .steps_block_step_text {
    font-size: 16px;
    text-align: center;
  }
  .steps_block_step {
    text-align: center;
  }
  .steps_blocks {
    grid-template-columns: 100%;
    grid-row-gap: 50px;
  }
  .steps_block_step_tittle {
    font-size: 25px;
    text-align: center;
  }
  .steps_block:nth-child(2) {
    margin-top: 0px;
  }
  .steps_block:nth-child(3) {
    margin-top: 0px;
  }
  .steps_block:nth-child(4) {
    margin-top: 0px;
  }
  .steps_block:nth-child(5) {
    margin-top: 0px;
  }
  .steps_block:last-child {
    margin-top: 0px;
  }
  .steps_block:nth-child(2n) {
    margin-left: 0px;
  }

  .free_items {
    flex-direction: column;
    gap: 30px;
  }
  .free_item:last-child {
    margin-left: 0;
  }
  .free_item:first-child {
    margin-right: 0;
  }

  .faq_items {
    flex-direction: column;
    gap: 30px;
  }
  .faq_item:last-child {
    margin-left: 0;
  }
  .faq_item:first-child {
    margin-right: 0;
  }

  .footer_items {
    flex-direction: column;
    gap: 30px;
  }
  .footer_item:last-child {
    margin-left: 0;
  }
  .footer_item:first-child {
    margin-right: 0;
  }

  .faq_buttons {
    flex-direction: column;
    gap: 10px;
  }
  .faq_item_tittle {
    text-align: center;
  }
  .faq_item_text {
    text-align: center;
  }
  .free_item_tittle {
    text-align: center;
    max-width: 100%;
  }
  .free_item_text {
    text-align: center;
  }
  .free_item_teg {
    display: block;
    margin: 0 auto;
  }
  footer {
    padding-bottom: 50px;
  }
}

@media (min-width: 500px) and (max-width: 799px) {
  .container,
  .main_container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header_item:nth-child(2) {
    display: none;
  }
  .intro_blocks {
    flex-direction: column;
    gap: 30px;
  }
  .intro_block_tittle {
    white-space: normal;
    text-align: center;
  }
  .intro_block_button {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
  }
  .intro_block_tittle br {
    display: none;
  }
  .intro_block_image {
    width: 100%;
    max-width: 567px;
  }
  .intro_informations {
    flex-direction: column;
    gap: 30px;
  }
  .intro_informations_block_tittle {
    text-align: center;
  }
  .intro_informations_block_item {
    gap: 12px;
  }

  .intro_informations_block_arrow {
    transform: rotate(90deg);
  }

  .solution_blocks {
    grid-template-columns: 100%;
    grid-row-gap: 20px;
  }
  .types_blocks {
    flex-direction: column;
    gap: 30px;
  }
  .types_block {
    border-radius: 32px;
  }
  .types_block:nth-child(2) .types_button {
    margin-top: 50px;
  }
  .types_block:last-child .types_button {
    margin-top: 50px;
  }
  .types_button {
    margin-top: 50px;
  }
  .types_block:nth-child(2) {
    border-radius: 32px;
  }
  .types_block:last-child {
    border-radius: 32px;
  }
  .steps_block:first-child::after {
    display: none;
  }
  .steps_blocks::after {
    display: none;
  }
  .steps_block:nth-child(2)::after {
    display: none;
  }
  .steps_block:nth-child(3)::after {
    display: none;
  }
  .steps_block:nth-child(4)::after {
    display: none;
  }
  .steps_block:nth-child(5)::after {
    display: none;
  }
  .steps_block:last-child::after {
    display: none;
  }
  .steps_block:nth-child(2n + 1) {
    margin-left: 0;
  }
  .steps_block_step_text {
    display: block;
    margin: 0 auto;
    margin-top: 8px;
    text-align: center;
  }
  .steps_block_step {
    text-align: center;
  }
  .steps_blocks {
    grid-template-columns: 100%;
    grid-row-gap: 50px;
  }
  .steps_block_step_tittle {
    text-align: center;
  }
  .steps_block:nth-child(2) {
    margin-top: 0px;
  }
  .steps_block:nth-child(3) {
    margin-top: 0px;
  }
  .steps_block:nth-child(4) {
    margin-top: 0px;
  }
  .steps_block:nth-child(5) {
    margin-top: 0px;
  }
  .steps_block:last-child {
    margin-top: 0px;
  }
  .steps_block:nth-child(2n) {
    margin-left: 0px;
  }

  .free_items {
    flex-direction: column;
    gap: 30px;
  }
  .free_item:last-child {
    margin-left: 0;
  }
  .free_item:first-child {
    margin-right: 0;
  }

  .faq_items {
    flex-direction: column;
    gap: 30px;
  }
  .faq_item:last-child {
    margin-left: 0;
  }
  .faq_item:first-child {
    margin-right: 0;
  }

  .footer_items {
    flex-direction: column;
    gap: 30px;
  }
  .footer_item:last-child {
    margin-left: 0;
  }
  .footer_item:first-child {
    margin-right: 0;
  }

  .faq_buttons {
    justify-content: center;
  }
  .faq_item_tittle {
    text-align: center;
  }
  .faq_item_text {
    text-align: center;
  }
  .free_item_tittle {
    text-align: center;
    max-width: 100%;
  }
  .free_item_text {
    text-align: center;
  }
  .free_item_teg {
    display: block;
    margin: 0 auto;
  }
  footer {
    padding-bottom: 50px;
  }
}

@media (min-width: 800px) and (max-width: 1199px) {
  .container,
  .main_container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header_item_navs {
    gap: 15px;
  }
  .header_item_nav a {
    font-size: 16px;
  }
  .intro_blocks {
    flex-direction: column;
    gap: 30px;
  }
  .intro_block_tittle {
    white-space: normal;
    text-align: center;
  }
  .intro_block_button {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
  }
  .intro_block_tittle br {
    display: none;
  }
  .intro_block_image {
    width: 100%;
    max-width: 567px;
  }
  .intro_informations {
    flex-direction: column;
    gap: 30px;
  }
  .intro_informations_block_tittle {
    text-align: center;
  }
  .intro_informations_block_item {
    gap: 12px;
  }

  .intro_informations_block_arrow {
    transform: rotate(90deg);
  }

  .steps_block:first-child::after {
    display: none;
  }
  .steps_blocks::after {
    display: none;
  }
  .steps_block:nth-child(2)::after {
    display: none;
  }
  .steps_block:nth-child(3)::after {
    display: none;
  }
  .steps_block:nth-child(4)::after {
    display: none;
  }
  .steps_block:nth-child(5)::after {
    display: none;
  }
  .steps_block:last-child::after {
    display: none;
  }
  .steps_block:nth-child(2n + 1) {
    margin-left: 0;
  }
  .steps_block_step_text {
    display: block;
    margin: 0 auto;
    margin-top: 8px;
    text-align: center;
  }
  .steps_block_step {
    text-align: center;
  }
  .steps_blocks {
    grid-template-columns: 100%;
    grid-row-gap: 50px;
  }
  .steps_block_step_tittle {
    text-align: center;
  }
  .steps_block:nth-child(2) {
    margin-top: 0px;
  }
  .steps_block:nth-child(3) {
    margin-top: 0px;
  }
  .steps_block:nth-child(4) {
    margin-top: 0px;
  }
  .steps_block:nth-child(5) {
    margin-top: 0px;
  }
  .steps_block:last-child {
    margin-top: 0px;
  }
  .steps_block:nth-child(2n) {
    margin-left: 0px;
  }
}

@media (min-width: 1200px) and (max-width: 1640px) {
  .container,
  .main_container {
    padding-left: 20px;
    padding-right: 20px;
  }
}


