.section_header {
  margin-top: 64px;
  margin-bottom: 64px;
}
.section_header .row {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media only screen and (max-width: 960px) {
  .section_header .row {
    flex-direction: column-reverse;
  }
}
.section_header .row .content-block {
  width: 100%;
  position: relative;
}
.section_header .row .content-block h1 {
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .section_header .row .content-block h1 {
    font-size: 38px;
  }
}
.section_header .row .content-block p.subtitle {
  font-weight: 600;
  color: #5C6373;
  margin-top: -24px;
  margin-bottom: 32px;
}
.section_header .row .content-block p {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 40px;
}
.section_header .row .content-block .go-to-chat a {
  width: 80%;
  min-width: 260px;
  height: 60px;
  display: flex;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  letter-spacing: 0.03em;
  align-items: center;
  justify-content: center;
  background: #1d2945;
  transition: 0.5s;
}
@media only screen and (max-width: 960px) {
  .section_header .row .content-block .go-to-chat a {
    width: 100%;
    min-width: auto;
  }
}
.section_header .row .content-block .go-to-chat a:hover {
  color: #1f2945;
  background: #d5e7ff;
}
.section_header .row .content-block .image-block .image-bg {
  max-width: 100%;
}

.register_tm_section_steps {
  margin-bottom: 64px;
}
.register_tm_section_steps .content-header-block {
  width: 740px;
  margin: auto;
  text-align: center;
  margin-bottom: 56px;
}
@media only screen and (max-width: 960px) {
  .register_tm_section_steps .content-header-block {
    width: 100%;
  }
}
.register_tm_section_steps .content-header-block .section-title {
  margin-bottom: 24px;
}
.register_tm_section_steps .content-header-block p.subtitle {
  color: #5C6373;
  font-size: 18px;
  font-weight: 400;
}
.register_tm_section_steps .steps-wrapper {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
@media only screen and (max-width: 960px) {
  .register_tm_section_steps .steps-wrapper {
    gap: 32px;
  }
}
.register_tm_section_steps .steps-wrapper .column.left {
  text-align: right;
}
.register_tm_section_steps .steps-wrapper .column.right {
  text-align: left;
}
.register_tm_section_steps .steps-wrapper .step-item {
  width: 100%;
}
.register_tm_section_steps .steps-wrapper .step-item img {
  margin-top: 24px;
  margin-bottom: 24px;
  max-width: 50%;
}
.register_tm_section_steps .steps-wrapper .step-item .step-head {
  text-align: left;
  display: flex;
  gap: 24px;
  background: #DDEFFF;
  padding: 20px 32px;
  border-radius: 8px;
  align-items: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 960px) {
  .register_tm_section_steps .steps-wrapper .step-item .step-head {
    padding: 10px 14px;
    gap: 8px;
  }
}
.register_tm_section_steps .steps-wrapper .step-item .step-head h3 {
  font-size: 14px;
  text-transform: uppercase;
}
.register_tm_section_steps .steps-wrapper .step-item .step-head .number {
  font-size: 16px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  color: #1C2944;
  font-weight: bolder;
  line-height: 0.7;
}
.register_tm_section_steps .steps-wrapper .step-item .content {
  text-align: left;
  font-size: 15px;
}
.register_tm_section_steps .steps-wrapper .step-item .content ul {
  list-style-image: url("../img/checkmark.png");
  padding: revert;
}
@media only screen and (max-width: 640px) {
  .register_tm_section_steps .steps-wrapper.desktop {
    display: none;
  }
}
.register_tm_section_steps .steps-wrapper.mobile {
  flex-direction: column;
  display: none;
}
@media only screen and (max-width: 640px) {
  .register_tm_section_steps .steps-wrapper.mobile {
    display: flex;
  }
}
.register_tm_section_steps .steps-wrapper.mobile img {
  display: none;
}

.pr_section_block_panel {
  text-align: center;
  margin-bottom: 56px;
}
.pr_section_block_panel .content-header-block {
  margin-bottom: 48px;
}
.pr_section_block_panel .content-header-block p.subtitle {
  color: #5C6373;
  font-size: 18px;
  font-weight: 400;
}
.pr_section_block_panel .block_panel {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: auto;
  margin-bottom: 42px;
}
.pr_section_block_panel .block_panel.is-three {
  grid-template-columns: repeat(3, 1fr);
}
.pr_section_block_panel .block_panel.is-four {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 960px) {
  .pr_section_block_panel .block_panel {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
@media only screen and (max-width: 640px) {
  .pr_section_block_panel .block_panel {
    grid-template-columns: 1fr;
  }
}
.pr_section_block_panel .block_panel .panel-block {
  text-align: left;
  background: #DDEFFF;
  border-radius: 8px;
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
}
.pr_section_block_panel .block_panel .panel-block .subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 155%;
  margin-top: 8px;
}
.pr_section_block_panel .block_panel .panel-block img {
  margin-bottom: 32px;
}
@media only screen and (max-width: 960px) {
  .pr_section_block_panel .block_panel .panel-block img {
    margin-bottom: 18px;
  }
}
.pr_section_block_panel .section-text {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  max-width: 740px;
  margin: auto;
}

.pr_section_block_panel2 {
  text-align: center;
  margin-bottom: 56px;
}
.pr_section_block_panel2 .content-header-block {
  margin-bottom: 48px;
}
.pr_section_block_panel2 .block_panel {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 960px) {
  .pr_section_block_panel2 .block_panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .pr_section_block_panel2 .block_panel {
    grid-template-columns: 1fr;
  }
}
.pr_section_block_panel2 .block_panel .panel-block {
  text-align: left;
  border-radius: 8px;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
}
.pr_section_block_panel2 .block_panel .panel-block img {
  margin-bottom: 20px;
}
@media only screen and (max-width: 960px) {
  .pr_section_block_panel2 .block_panel .panel-block img {
    margin-bottom: 18px;
  }
}

.pr_list_block {
  margin-bottom: 64px;
  background: #1D2945;
  padding-top: 112px;
  padding-bottom: 112px;
  color: #fff;
}
.pr_list_block .row {
  display: flex;
  gap: 32px;
  align-items: center;
}
.pr_list_block .row .column {
  width: 100%;
}
.pr_list_block .row .column img {
  max-width: 100%;
}
.pr_list_block .row .column p {
  font-size: 18px;
  font-weight: 400;
}
.pr_list_block .row .column h2 {
  margin-bottom: 40px;
}
.pr_list_block .row .column .list_block_content {
  padding-right: 40px;
  box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
  .pr_list_block .row .column .list_block_content {
    padding-right: 0;
  }
}
.pr_list_block .row .column .list_block_content .list_block_row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.pr_list_block .row .column .list_block_content .list_block_row .img-wrapper {
  width: 70px;
}
.pr_list_block .row .column .list_block_content .list_block_row .img-wrapper img {
  width: 100%;
}
.pr_list_block .row .column .list_block_content .list_block_row p {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .pr_list_block .row .column .list_block_content .list_block_row {
    gap: 14px;
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (max-width: 960px) {
  .pr_list_block .row {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 960px) {
  .pr_list_block {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}
@media only screen and (max-width: 640px) {
  .pr_list_block {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

.pr_kik_controllers {
  margin-bottom: 64px;
  padding-top: 112px;
  padding-bottom: 112px;
}
.pr_kik_controllers .row {
  display: flex;
  gap: 32px;
  align-items: center;
}
.pr_kik_controllers .row .column {
  width: 100%;
}
.pr_kik_controllers .row .column img {
  max-width: 100%;
}
.pr_kik_controllers .row .column p {
  font-size: 18px;
  font-weight: 400;
}
.pr_kik_controllers .row .column h2 {
  margin-bottom: 40px;
}
.pr_kik_controllers .row .column .pr_kik_content {
  padding-right: 40px;
  box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
  .pr_kik_controllers .row .column .pr_kik_content {
    padding-right: 0;
  }
}
.pr_kik_controllers .row .column .pr_kik_content .list_block_row {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.pr_kik_controllers .row .column .pr_kik_content .list_block_row .img-wrapper img {
  width: 100%;
}
.pr_kik_controllers .row .column .pr_kik_content .list_block_row p {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .pr_kik_controllers .row .column .pr_kik_content .list_block_row {
    gap: 14px;
  }
}
@media only screen and (max-width: 960px) {
  .pr_kik_controllers .row {
    flex-direction: column;
  }
}
@media only screen and (max-width: 960px) {
  .pr_kik_controllers {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}
@media only screen and (max-width: 640px) {
  .pr_kik_controllers {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

.callback_form {
  color: #fff;
}
.callback_form .work_width {
  background: #1D2945;
  color: #fff;
  padding: 42px;
  box-sizing: border-box;
  border-radius: 18px;
}
@media only screen and (max-width: 640px) {
  .callback_form .work_width {
    padding: 24px;
  }
}
.callback_form .row {
  display: flex;
  gap: 32px;
  align-items: center;
}
.callback_form .row .column {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
}
.callback_form .row .column p {
  margin-bottom: 10px;
}
.callback_form .row .column ul {
  list-style: none;
  padding: 0;
}
.callback_form .row .column ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.callback_form .row .column ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  transform: translateY(-50%);
  width: 15px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.49999L6.21584 10.9164C6.25821 10.9605 6.3298 10.9565 6.36709 10.9081L14 1' stroke='%235395F1' stroke-width='2' stroke-linecap='round'/%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.callback_form .row .column .subtitle {
  text-transform: uppercase;
  margin-bottom: 24px;
}
.callback_form .row .column .arrow-block {
  text-align: right;
}
@media only screen and (max-width: 960px) {
  .callback_form .row .column .arrow-block {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  .callback_form .row {
    flex-direction: column;
  }
}
.callback_form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.callback_form form span.wpcf7-form-control-wrap {
  min-height: 48px;
  height: auto;
}
.callback_form form .one-line {
  position: relative;
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  box-sizing: border-box;
  background: #35456d;
  border-radius: 9px;
  color: #888891;
}
.callback_form form .one-line.cursive .form-text {
  font-style: italic;
}
.callback_form form .one-line .form-text {
  font-size: 14px;
  line-height: 20px;
}
.callback_form form .one-line a {
  color: #598ff5;
}
.callback_form form .one-line a:hover {
  color: #bcd9ff;
}
.callback_form form .one-line .wpcf7-submit {
  background: #598ff5;
  color: #000;
  border-radius: 9px;
  height: 48px;
  width: 48px;
  min-width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.callback_form form .one-line .wpcf7-submit:hover {
  background: #bcd9ff;
}
.callback_form form .wpcf7-response-output {
  border-radius: 8px;
}
.callback_form form label {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.callback_form form label span {
  background: #35456d;
  border-radius: 9px;
}
.callback_form form input, .callback_form form textarea {
  color: #fff;
  box-sizing: border-box;
  padding: 12px 24px;
  font-size: 16px;
  min-height: 48px;
}
.callback_form form textarea {
  height: auto;
  margin-bottom: -6px;
}

.full_size.section_reviews .section-title {
  text-align: center;
  display: block;
}

.section_timeline_steps {
  text-align: center;
  margin-bottom: 56px;
}
.section_timeline_steps .content-header-block {
  margin-bottom: 48px;
}
.section_timeline_steps .block_panel {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  position: relative;
  padding: 10px 0;
}
.section_timeline_steps .timeline-step {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  column-gap: 30px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 960px) {
  .section_timeline_steps .timeline-step {
    column-gap: 15px;
  }
}
.section_timeline_steps .timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: #e0e0e0;
  z-index: -1;
}
.section_timeline_steps .timeline-step:first-child::before {
  top: 0%;
}
.section_timeline_steps .timeline-step:last-child::before {
  bottom: 100%;
}
.section_timeline_steps .timeline-step span {
  grid-column: 2;
  width: 32px;
  height: 32px;
  background: #eef4ff;
  color: #3b82f6;
  border-radius: 50%;
  align-self: self-start;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.section_timeline_steps .timeline-step .text-wrapper {
  max-width: 366px;
  margin-left: auto;
  margin-right: auto;
}
.section_timeline_steps .timeline-step .text-wrapper p {
  margin: 0;
}
.section_timeline_steps .timeline-step .text-wrapper p:first-child {
  text-transform: uppercase;
  font-weight: 700;
  color: #3b82f6;
  font-size: 14px;
  margin-bottom: 8px;
}
.section_timeline_steps .timeline-step .text-wrapper p.subtitle {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}
.section_timeline_steps .timeline-step.left .text-wrapper {
  grid-column: 1;
  grid-row: 1;
  text-align: left;
  margin-right: 42px;
}
@media only screen and (max-width: 960px) {
  .section_timeline_steps .timeline-step.left .text-wrapper {
    margin-right: 0;
  }
}
.section_timeline_steps .timeline-step.right .text-wrapper {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
  margin-left: 42px;
}
@media only screen and (max-width: 960px) {
  .section_timeline_steps .timeline-step.right .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .section_timeline_steps .block_panel::before {
    left: 16px;
    transform: none;
  }
  .section_timeline_steps .timeline-step {
    grid-template-columns: 32px 1fr;
    column-gap: 20px;
  }
  .section_timeline_steps .timeline-step::before {
    left: 16px;
    transform: none;
  }
  .section_timeline_steps .timeline-step span {
    grid-column: 1;
  }
  .section_timeline_steps .timeline-step.left .text-wrapper, .section_timeline_steps .timeline-step.right .text-wrapper {
    grid-column: 2;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.it_startups_safe {
  margin-bottom: 56px;
}
.it_startups_safe .work_width {
  background: #DDEFFF;
  color: #1D2945;
  padding: 42px;
  box-sizing: border-box;
  border-radius: 18px;
}
@media only screen and (max-width: 640px) {
  .it_startups_safe .work_width {
    padding: 24px;
  }
}
.it_startups_safe .work_width .section-title {
  margin-top: 0;
}
.it_startups_safe .work_width p {
  color: #5C6373;
  margin-bottom: 36px;
}
.it_startups_safe .work_width .go-to-chat a {
  width: 80%;
  min-width: 260px;
  height: 60px;
  display: flex;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  letter-spacing: 0.03em;
  align-items: center;
  justify-content: center;
  background: #1d2945;
  transition: 0.5s;
  border-radius: 8px;
}
@media only screen and (max-width: 960px) {
  .it_startups_safe .work_width .go-to-chat a {
    width: 100%;
    min-width: auto;
  }
}
.it_startups_safe .work_width .go-to-chat a:hover {
  color: #1f2945;
  background: #d5e7ff;
}
.it_startups_safe .work_width .safe-block {
  display: flex;
  margin-bottom: 32px;
  gap: 24px;
  font-size: 15px;
  line-height: normal;
}
.it_startups_safe .work_width .safe-block:last-child {
  margin-bottom: 0;
}
.it_startups_safe .row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.it_startups_safe .row .column {
  width: 100%;
}
.it_startups_safe .row .column p {
  font-size: 18px;
  font-weight: 400;
}
@media only screen and (max-width: 960px) {
  .it_startups_safe .row {
    flex-direction: column;
  }
}

.it_startups_facts {
  margin-bottom: 56px;
}
.it_startups_facts .section-title {
  text-align: center;
  display: block;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.facts-grid .mobile-only {
  display: none;
}
.facts-grid .header-cell {
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #1a202c;
}
.facts-grid .header-cell.red-bg {
  background-color: #fce8e8;
  border-right: 1px solid #edf2f7;
}
.facts-grid .header-cell.green-bg {
  background-color: #e6f8e8;
}
.facts-grid .fact-cell {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid #edf2f7;
  font-size: 14px;
  color: #2d3748;
  line-height: 1.5;
}
.facts-grid .fact-cell ul {
  padding-left: 20px;
  margin: 8px 0 0;
}
.facts-grid .fact-cell .icon {
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.facts-grid .fact-cell .icon.cross {
  color: #e53e3e;
}
.facts-grid .fact-cell .icon.check {
  color: #38a169;
}
.facts-grid .fact-cell.col-red {
  border-right: 1px solid #edf2f7;
}
@media (max-width: 768px) {
  .facts-grid {
    grid-template-columns: 1fr;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  .facts-grid .desktop-only {
    display: none;
  }
  .facts-grid .mobile-only {
    display: block;
    border-radius: 8px;
    border: none;
  }
  .facts-grid .fact-cell {
    border: 0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-bottom: 20px;
  }
  .facts-grid .fact-cell.col-red {
    border-right: 0;
  }
}

.it_startups_benefits {
  margin-bottom: 56px;
}
.it_startups_benefits .work_width {
  background: #DDEFFF;
  color: #1D2945;
  padding: 42px;
  box-sizing: border-box;
  border-radius: 18px;
}
@media only screen and (max-width: 640px) {
  .it_startups_benefits .work_width {
    padding: 24px;
  }
}
.it_startups_benefits .work_width .section-title {
  margin-top: 0;
}
.it_startups_benefits .work_width p {
  color: #5C6373;
  margin-bottom: 36px;
}
.it_startups_benefits .row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.it_startups_benefits .row .column {
  width: 100%;
}
.it_startups_benefits .row .column p {
  font-size: 18px;
  font-weight: 400;
}
@media only screen and (max-width: 960px) {
  .it_startups_benefits .row {
    flex-direction: column;
  }
}
.it_startups_benefits .full-row {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 960px) {
  .it_startups_benefits .full-row {
    flex-direction: column;
  }
}
.it_startups_benefits .full-row .benefits-block {
  width: 100%;
}
.it_startups_benefits .full-row .benefits-block .icon {
  margin-bottom: 20px;
}
.it_startups_benefits .full-row .benefits-block h4 {
  color: #1D2945;
  font-size: 24px;
  margin-bottom: 20px;
}
.it_startups_benefits .full-row .benefits-block .description {
  font-size: 16px;
  color: #5C6373;
}

.pr_callback_form .work_width {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.section_special {
  text-align: center;
  color: #fff;
  margin-bottom: 56px;
}
@media only screen and (max-width: 640px) {
  .section_special {
    text-align: left;
  }
}
.section_special img {
  margin-bottom: 32px;
}
.section_special .section-title {
  margin-bottom: 32px;
}
.section_special .blue-accent {
  color: #4793FC;
}
.section_special .work_width {
  background: #1D2945;
  color: #fff;
  padding: 42px;
  box-sizing: border-box;
  border-radius: 18px;
}
@media only screen and (max-width: 640px) {
  .section_special .work_width {
    padding: 24px;
  }
}
.section_special .work_width .content_special_width {
  max-width: 696px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section_special .work_width .content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section_special .work_width .content {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
}
.section_special .work_width .go-to-chat {
  min-width: 60%;
}
@media only screen and (max-width: 640px) {
  .section_special .work_width .go-to-chat {
    width: 100%;
  }
}
.section_special .work_width .go-to-chat a {
  width: 80%;
  min-width: 260px;
  height: 60px;
  display: flex;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  letter-spacing: 0.03em;
  align-items: center;
  justify-content: center;
  background: #4793FC;
  transition: 0.5s;
  border-radius: 8px;
}
@media only screen and (max-width: 960px) {
  .section_special .work_width .go-to-chat a {
    width: 100%;
    min-width: auto;
  }
}
.section_special .work_width .go-to-chat a:hover {
  color: #1f2945;
  background: #d5e7ff;
}
.section_special .work_width .go-to-chat a {
  width: 100%;
}

.section_why_diya {
  margin-bottom: 56px;
}
.section_why_diya .blue-accent {
  color: #4793FC;
}
@media only screen and (max-width: 960px) {
  .section_why_diya .column-content {
    flex-direction: column;
  }
  .section_why_diya .column-content .title-column, .section_why_diya .column-content .content-column {
    width: 100%;
  }
  .section_why_diya .column-content .blocks {
    gap: 24px;
  }
}
@media only screen and (max-width: 640px) {
  .section_why_diya .column-content .blocks {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section_why_diya .column-content,
.section_services .column-content {
  display: flex;
  gap: 40px;
}
.section_why_diya .column-content .title-column,
.section_services .column-content .title-column {
  width: 36%;
}
.section_why_diya .column-content .content-column,
.section_services .column-content .content-column {
  width: 68%;
}
.section_why_diya .column-content .blocks,
.section_services .column-content .blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}
.section_why_diya .column-content .block .icon,
.section_services .column-content .block .icon {
  margin-bottom: 24px;
}
.section_why_diya .column-content .block .icon svg, .section_why_diya .column-content .block .icon img,
.section_services .column-content .block .icon svg,
.section_services .column-content .block .icon img {
  width: 80px;
  height: 80px;
}
.section_why_diya .column-content .block .title,
.section_services .column-content .block .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}
.section_why_diya .column-content .block .subtitle,
.section_services .column-content .block .subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #4A5568;
}

@media only screen and (max-width: 960px) {
  .section_services .title-column {
    display: none;
  }
}
.section_services .work_width {
  background: #DDEFFF;
  color: #1D2945;
  padding: 42px;
  box-sizing: border-box;
  border-radius: 18px;
}
@media only screen and (max-width: 640px) {
  .section_services .work_width {
    padding: 24px;
  }
}
.section_services .work_width {
  margin-bottom: -8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.section_services .section-title {
  margin-bottom: 40px;
}
.section_services .blue-accent {
  color: #4793FC;
}
@media only screen and (max-width: 960px) {
  .section_services .column-content {
    flex-direction: column;
  }
  .section_services .column-content .title-column, .section_services .column-content .content-column {
    width: 100%;
  }
  .section_services .column-content .blocks {
    gap: 24px;
  }
}
@media only screen and (max-width: 640px) {
  .section_services .column-content .blocks {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pr_quizz {
  margin-bottom: 56px;
}
.pr_quizz .content_width {
  display: flex;
}
.pr_quizz .content_width .image-col {
  width: 50%;
  background: #DDEFFF;
  padding: 42px;
  box-sizing: border-box;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  display: flex;
  align-items: center;
}
.pr_quizz .content_width .image-col img {
  max-width: 100%;
}
.pr_quizz .content_width .tests-content {
  width: 50%;
  padding: 48px;
  box-sizing: border-box;
  background: #1D2945;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pr_quizz .content_width .tests-content form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.pr_quizz .content_width .tests-content form span.wpcf7-form-control-wrap {
  min-height: 48px;
  height: auto;
}
.pr_quizz .content_width .tests-content form .wpcf7-submit {
  background: #598ff5;
  color: #fff;
  border-radius: 9px;
  height: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.pr_quizz .content_width .tests-content form .wpcf7-submit:hover {
  background: #bcd9ff;
  color: #000;
}
.pr_quizz .content_width .tests-content form .wpcf7-response-output {
  border-radius: 8px;
}
.pr_quizz .content_width .tests-content form label {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.pr_quizz .content_width .tests-content form label span {
  background: #35456d;
  border-radius: 9px;
}
.pr_quizz .content_width .tests-content form input, .pr_quizz .content_width .tests-content form textarea {
  color: #fff;
  box-sizing: border-box;
  padding: 12px 24px;
  font-size: 16px;
  min-height: 48px;
}
.pr_quizz .content_width .tests-content form textarea {
  height: auto;
  margin-bottom: -6px;
}
.pr_quizz .content_width .tests-content .query-block {
  color: #fff;
}
.pr_quizz .content_width .tests-content .query-block .variants-block {
  margin-bottom: 50px;
}
.pr_quizz .content_width .tests-content .query-block span {
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
}
.pr_quizz .content_width .tests-content .query-block .query-text {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 24px;
}
.pr_quizz .content_width .tests-content .query-block .reason {
  font-size: 11px;
  line-height: normal;
}
.pr_quizz .content_width .tests-content .query-block button {
  transition: 0.3s all;
  font-size: 18px;
  background: #5395F1;
  color: #fff;
  padding: 18px 32px;
  text-align: center;
  border-radius: 5px;
}
.pr_quizz .content_width .tests-content .query-block button.negative-btn {
  background: #9c9c9c;
}
.pr_quizz .content_width .tests-content .query-block button.negative-btn:hover {
  background: #737373;
}
.pr_quizz .content_width .tests-content .query-block button:hover {
  background: #447cc9;
}
.pr_quizz .content_width .tests-content .query-start p.query-title {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 24px;
}
.pr_quizz .content_width .tests-content .query-start p.query-text {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 24px;
}
.pr_quizz .content_width .tests-content .query-start .query-start-btn {
  transition: 0.3s all;
  font-size: 18px;
  background: #5395F1;
  color: #fff;
  padding: 18px;
  text-align: center;
  width: 100%;
  border-radius: 8px;
}
.pr_quizz .content_width .tests-content .query-start .query-start-btn:hover {
  background: #447cc9;
}
.pr_quizz .content_width .tests-content .query-positive p.positive-title,
.pr_quizz .content_width .tests-content .query-negative p.positive-title {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 24px;
}
.pr_quizz .content_width .tests-content .query-positive p.negative-title,
.pr_quizz .content_width .tests-content .query-positive p.disclaimer,
.pr_quizz .content_width .tests-content .query-negative p.negative-title,
.pr_quizz .content_width .tests-content .query-negative p.disclaimer {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 24px;
}
.pr_quizz .content_width .tests-content .query-positive .go-to-chat a,
.pr_quizz .content_width .tests-content .query-negative .go-to-chat a {
  width: 100%;
  padding: 18px;
  display: flex;
  font-size: 16px;
  line-height: 18px;
  background: #5395F1;
  color: #fff;
  letter-spacing: 0.03em;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  box-sizing: border-box;
  border-radius: 8px;
}
.pr_quizz .content_width .tests-content .query-positive .go-to-chat a:hover,
.pr_quizz .content_width .tests-content .query-negative .go-to-chat a:hover {
  background: #447cc9;
  color: #fff;
}
@media only screen and (max-width: 960px) {
  .pr_quizz .content_width {
    flex-direction: column;
  }
  .pr_quizz .content_width .image-col {
    width: 100%;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 0;
  }
  .pr_quizz .content_width .tests-content {
    width: 100%;
    padding: 28px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .pr_quizz .content_width .tests-content {
    padding: 18px;
  }
}

.register_tm_callback_form {
  color: #fff;
}
.register_tm_callback_form .work_width {
  background: #4792FC;
  color: #fff;
  padding: 42px;
  box-sizing: border-box;
  border-radius: 18px;
}
@media only screen and (max-width: 640px) {
  .register_tm_callback_form .work_width {
    padding: 24px;
  }
}
.register_tm_callback_form .row {
  display: flex;
  gap: 32px;
  align-items: center;
}
.register_tm_callback_form .row .column {
  width: 100%;
}
.register_tm_callback_form .row .column p {
  font-size: 18px;
  font-weight: 400;
}
.register_tm_callback_form .row .column .subtitle {
  text-transform: uppercase;
  margin-bottom: 24px;
}
.register_tm_callback_form .row .column .arrow-block {
  text-align: right;
}
@media only screen and (max-width: 960px) {
  .register_tm_callback_form .row .column .arrow-block {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  .register_tm_callback_form .row {
    flex-direction: column;
  }
}
.register_tm_callback_form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.register_tm_callback_form form span.wpcf7-form-control-wrap {
  min-height: 48px;
  height: auto;
}
.register_tm_callback_form form .one-line {
  position: relative;
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  box-sizing: border-box;
  background: #35456d;
  border-radius: 9px;
  color: #888891;
}
.register_tm_callback_form form .one-line.cursive .form-text {
  font-style: italic;
}
.register_tm_callback_form form .one-line .form-text {
  font-size: 14px;
  line-height: 20px;
}
.register_tm_callback_form form .one-line a {
  color: #598ff5;
}
.register_tm_callback_form form .one-line a:hover {
  color: #bcd9ff;
}
.register_tm_callback_form form .one-line .wpcf7-submit {
  background: #598ff5;
  color: #000;
  border-radius: 9px;
  height: 48px;
  width: 48px;
  min-width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.register_tm_callback_form form .one-line .wpcf7-submit:hover {
  background: #bcd9ff;
}
.register_tm_callback_form form .wpcf7-response-output {
  border-radius: 8px;
}
.register_tm_callback_form form label {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.register_tm_callback_form form label span {
  background: #35456d;
  border-radius: 9px;
}
.register_tm_callback_form form input, .register_tm_callback_form form textarea {
  color: #fff;
  box-sizing: border-box;
  padding: 12px 24px;
  font-size: 16px;
  min-height: 48px;
}
.register_tm_callback_form form textarea {
  height: auto;
  margin-bottom: -6px;
}

.oc_section_block_panel1 {
  margin-bottom: 64px;
}
.oc_section_block_panel1 .work_width {
  background: #DDEFFF;
  background-image: url("../img/home_top_bg-min_2.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  border-radius: 16px;
  padding: 96px 88px 112px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1280px) {
  .oc_section_block_panel1 .work_width {
    padding: 72px 56px 80px;
  }
}
@media only screen and (max-width: 960px) {
  .oc_section_block_panel1 .work_width {
    padding: 56px 32px 64px;
  }
}
@media only screen and (max-width: 640px) {
  .oc_section_block_panel1 .work_width {
    padding: 40px 20px 48px;
  }
}
.oc_section_block_panel1 .content-header-block {
  margin-bottom: 56px;
  text-align: center;
}
.oc_section_block_panel1 .block_panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 960px) {
  .oc_section_block_panel1 .block_panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media only screen and (max-width: 640px) {
  .oc_section_block_panel1 .block_panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.oc_section_block_panel1 .panel-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.oc_section_block_panel1 .panel-block img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.oc_section_block_panel1 .panel-block p {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}

.section_block_4 {
  margin-bottom: 64px;
}
.section_block_4 .block_4_row {
  display: flex;
  gap: 60px;
  align-items: center;
  background: #1D2945;
  border-radius: 18px;
  padding: 56px 64px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1280px) {
  .section_block_4 .block_4_row {
    padding: 48px;
  }
}
@media only screen and (max-width: 960px) {
  .section_block_4 .block_4_row {
    flex-direction: column;
    gap: 40px;
    padding: 36px 28px;
  }
}
@media only screen and (max-width: 640px) {
  .section_block_4 .block_4_row {
    padding: 28px 20px;
  }
}
.section_block_4 .block_4_left {
  width: 42%;
  flex-shrink: 0;
  color: #fff;
}
@media only screen and (max-width: 960px) {
  .section_block_4 .block_4_left {
    width: 100%;
  }
}
.section_block_4 .block_4_title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}
@media only screen and (max-width: 1280px) {
  .section_block_4 .block_4_title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .section_block_4 .block_4_title {
    font-size: 26px;
  }
}
.section_block_4 .block_4_description {
  font-size: 18px;
  margin-bottom: 40px;
}
.section_block_4 .go-to-chat a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 56px;
  background: #4793FC;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: background 0.3s;
}
.section_block_4 .go-to-chat a:hover {
  background: rgb(111.1454545455, 170.5636363636, 252.6545454545);
}
@media only screen and (max-width: 960px) {
  .section_block_4 .go-to-chat a {
    max-width: 100%;
  }
}
.section_block_4 .block_4_right {
  width: 58%;
}
@media only screen and (max-width: 960px) {
  .section_block_4 .block_4_right {
    width: 100%;
  }
}
.section_block_4 .block_4_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.section_block_4 .block_4_item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .section_block_4 .block_4_item {
    gap: 14px;
    padding: 16px 0;
  }
}
.section_block_4 .block_4_icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_block_4 .block_4_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section_block_4 .block_4_item_title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .section_block_4 .block_4_item_title {
    font-size: 16px;
  }
}

.section_block_6 .work_width {
  background: #DDEFFF;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-image: url("../img/home_top_bg-min_2.png");
  background-size: cover;
  border-radius: 16px 16px 0px 0px;
  padding: 96px 88px 112px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1280px) {
  .section_block_6 .work_width {
    padding: 72px 56px 80px;
  }
}
@media only screen and (max-width: 960px) {
  .section_block_6 .work_width {
    padding: 56px 32px 64px;
  }
}
@media only screen and (max-width: 640px) {
  .section_block_6 .work_width {
    padding: 40px 20px 48px;
  }
}
.section_block_6 .block_6_row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media only screen and (max-width: 960px) {
  .section_block_6 .block_6_row {
    flex-direction: column;
    gap: 32px;
  }
}
.section_block_6 .block_6_left {
  width: 28%;
  flex-shrink: 0;
}
@media only screen and (max-width: 960px) {
  .section_block_6 .block_6_left {
    width: 100%;
  }
}
.section_block_6 .block_6_title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #1D2945;
}
@media only screen and (max-width: 1280px) {
  .section_block_6 .block_6_title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .section_block_6 .block_6_title {
    font-size: 24px;
  }
}
.section_block_6 .block_6_right {
  width: 72%;
}
@media only screen and (max-width: 960px) {
  .section_block_6 .block_6_right {
    width: 100%;
  }
}
.section_block_6 .block_6_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
@media only screen and (max-width: 768px) {
  .section_block_6 .block_6_list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.section_block_6 .block_6_item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.section_block_6 .block_6_check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #4793FC;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.section_block_6 .block_6_check svg {
  color: #FFFFFF;
}
.section_block_6 .block_6_item_text {
  font-size: 15px;
  line-height: 1.6;
  color: #2D3748;
}

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