@charset "UTF-8";

/* EuclidSquare font */
@font-face {
  font-family: "Euclid Square";
  src: local("Euclid Square Regular"), local("Euclid-Square-Regular"),
    url("/public/fonts/EuclidSquare-Regular.woff2") format("woff2"),
    url("/public/fonts/EuclidSquare-Regular.woff") format("woff"),
    url("/public/fonts/EuclidSquare-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Euclid Square";
  src: local("Euclid Square Light"), local("Euclid-Square-Light"),
    url("/public/fonts/EuclidSquare-Light.woff2") format("woff2"),
    url("/public/fonts/EuclidSquare-Light.woff") format("woff"),
    url("/public/fonts/EuclidSquare-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Euclid Square";
  src: local("Euclid Square Semi Bold"), local("Euclid-Square-Semi-Bold"),
    url("/public/fonts/EuclidSquare-SemiBold.woff2") format("woff2"),
    url("/public/fonts/EuclidSquare-SemiBold.woff") format("woff"),
    url("/public/fonts/EuclidSquare-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Euclid Square";
  src: local("Euclid Square Bold"), local("Euclid-Square-Bold"),
    url("/public/fonts/EuclidSquare-Bold.woff2") format("woff2"),
    url("/public/fonts/EuclidSquare-Bold.woff") format("woff"),
    url("/public/fonts/EuclidSquare-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Euclid Square";
  src: local("Euclid Square Italic"), local("Euclid-Square-Italic"),
    url("/public/fonts/EuclidSquare-Italic.woff2") format("woff2"),
    url("/public/fonts/EuclidSquare-Italic.woff") format("woff"),
    url("/public/fonts/EuclidSquare-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Euclid Square";
  src: local("Euclid Square Bold Italic"), local("Euclid-Square-Bold-Italic"),
    url("/public/fonts/EuclidSquare-BoldItalic.woff2") format("woff2"),
    url("/public/fonts/EuclidSquare-BoldItalic.woff") format("woff"),
    url("/public/fonts/EuclidSquare-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

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

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  color: #172a51;
  background-color: #F8F9FF;
  font-family: "Euclid Square";
}

h1 {
  /* font-size: 64px; */
  font-size: 52px;
  font-weight: 700;
  text-align: left;
}

@media (max-width: 1270px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 48px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
    text-align: center;
  }
}

h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

@media (max-width: 1020px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  h2 {
    margin-bottom: 15px;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .container {
    margin: 0 3%;
  }
}

@media (max-width: 900px) {
  .container {
    margin: 0 2%;
  }
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.a_block {
  display: block;
}

p {
}

.flex__row_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex__row_all_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_row_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media (max-width: 700px) {
  .flex_row_desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.flex_row_desc_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .flex_row_desc_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.flex_column_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

button {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

input {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.input_paint {
  background-color: pink;
}

.input_border {
  border: 1px solid pink;
}

.paint_span {
  color: #6091f8;
}

.block__img_cover_container {
  background-image: url();
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.block__img_contain_container {
  background-image: url();
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.img_cover {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-position: center center;
  object-position: center center;
}

.img_contain {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-position: center center;
  object-position: center center;
}

.block_paint {
  background-color: pink;
}

.block_border {
  border: 1px solid pink;
}

.btn {
  padding: 21px 40px;
  background: -o-linear-gradient(left, #83bc2f 0%, #c0d92a 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#83bc2f),
    to(#c0d92a)
  );
  background: linear-gradient(90deg, #83bc2f 0%, #c0d92a 100%);
  border-radius: 150px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0px 29px 30px -4px rgba(131, 188, 47, 0.4);
  box-shadow: 0px 29px 30px -4px rgba(131, 188, 47, 0.4);
  border-radius: 150px;
}

@media (max-width: 400px) {
  .btn {
    font-size: 14px;
  }
}

.btn:hover {
  background: -o-linear-gradient(left, #9dc762 0%, #d1eb36 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#9dc762),
    to(#d1eb36)
  );
  background: linear-gradient(90deg, #9dc762 0%, #d1eb36 100%);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

form .btn {
  width: 100%;
  border: none;
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 86px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #ffffff;
}

.main_btn_container {
  width: 423px;
  margin-bottom: 60px;
}

@media (max-width: 1020px) {
  .main_btn_container {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 60px;
  }
}

/* 1 block */
.main_section {
  position: relative;
  min-height: 700px;
  margin-top: 0;
}

.main_section .container.flex_row_desc {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 700px;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .main_section .container.flex_row_desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main_img_mob {
  display: none;
}

@media (max-width: 900px) {
  .main_img_mob {
    display: block;
  }
}

.main_img {
  height: 100%;
  width: 50%;
  position: absolute;
  right: 0;
  background-image: url(../img_new/main_intro_ellipse.svg);
  background-position: right top;
}

@media (max-width: 900px) {
  .main_img {
    display: none;
  }
}

.main_img img {
  -o-object-position: right center;
  object-position: right center;
}

.main_text {
  -ms-flex-preferred-size: 50%;
  flex-basis: 48%;
  width: 48%;
}

@media (max-width: 900px) {
  .main_text {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
  }
}

.after_title {
  text-align: left;
  margin-top: 25px;
  font-size: 24px;
}

@media (max-width: 900px) {
  .after_title {
    text-align: center;
    margin-top: 36px;
    font-size: 20px;
  }
}

/* 2 block */
.project_header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .project_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.project_section .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
}

@media (max-width: 1020px) {
  .project_section .container {
    padding: 40px 20px;
  }
}

.project_header_decoration {
  width: 3px;
  background-color: #f7f7f8;
  height: 100px;
}

@media (max-width: 1020px) {
  .project_header_decoration {
    display: none;
  }
}

@media (max-width: 1020px) {
  .project_header .br_desc {
    display: none;
  }
}

@media (max-width: 1020px) {
  .project_header h2 {
    margin-bottom: 15px;
  }
}

.project_header > div {
  margin-bottom: 45px;
}

@media (max-width: 900px) {
  .project_header > div {
    margin-bottom: 40px;
  }
}

.project_item_title {
  color: #83bc2f;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
}

.project_item ul {
  max-width: 846px;
  list-style-position: inside;
}

.project_item ul li::marker {
  height: 100%;
}

.project_item:nth-child(2) {
  margin-bottom: 45px;
}

.marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: #83bc2f;
  border-radius: 50%;
  margin-right: 18px;
  margin-top: 5px;
}

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

@media (max-width: 700px) {
  .project_item_li {
    margin-bottom: 16px;
    font-size: 16px;
  }
}

.project_item_li:last-child {
  margin-bottom: 0px;
}

.project_header_item span {
  display: block;
  font-weight: 600;
  font-size: 24px;
}

@media (max-width: 700px) {
  .project_header_item span {
    font-size: 20px;
  }
}

.project_header_item h2 {
  text-align: left;
}

.project_header_item_desc {
  font-size: 20px;
}

@media (max-width: 1020px) {
  .project_header_item_desc {
    font-size: 16px;
  }
}

.project_item_ul {
  margin-bottom: 25px;
  width: 80%;
}

@media (max-width: 900px) {
  .project_item_ul {
    width: 100%;
  }
}

.project_item_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow: auto;
  padding-top: 20px;
}

.project_item_slider::-webkit-scrollbar {
  background-color: transparent;
}

.project_item_slider::-webkit-scrollbar-track {
}

.project_item_slider::-webkit-scrollbar-thumb {
}

.project_item_slider_item {
  position: relative;
  margin-right: 18px;

  width: 337px;
}

@media (max-width: 400px) {
  .project_item_slider_item {
    width: 246px;
    height: 159px;
  }
}

.project_item_slider_item_img {
  width: 337px;
  height: 165px;
  background-color: #7184c0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px -1px rgba(96, 145, 248, 0.63);
  box-shadow: 0px 0px 10px -1px rgba(96, 145, 248, 0.63);
  background-size: cover;
}

@media (max-width: 400px) {
  .project_item_slider_item_img {
    width: 246px;
    height: 121px;
    background-size: cover;
  }
}

.project_item_slider_item_text {
  text-align: center;
  color: #6091f8;
  margin-top: 20px;
}

.slider_item_loop {
  border-radius: 50%;
  background-color: #6091f8;
  background-image: url(../img_new/loop.svg);
  width: 46px;
  height: 46px;
  background-size: 24px;
}

.project_item_slider_1
  .project_item_slider_item:nth-child(1)
  .project_item_slider_item_img {
  background-image: url(../img_new/project/1_min.jpg);
}

.project_item_slider_1
  .project_item_slider_item:nth-child(2)
  .project_item_slider_item_img {
  background-image: url(../img_new/project/2_min.jpg);
}

.project_item_slider_1
  .project_item_slider_item:nth-child(3)
  .project_item_slider_item_img {
  background-image: url(../img_new/project/3_min.jpg);
}

.project_item_slider_2
  .project_item_slider_item:nth-child(1)
  .project_item_slider_item_img {
  background-image: url(../img_new/project/4_min.jpg);
}

.project_item_slider_2
  .project_item_slider_item:nth-child(2)
  .project_item_slider_item_img {
  background-image: url(../img_new/project/5_min.jpg);
}

.project_item_slider_2
  .project_item_slider_item:nth-child(3)
  .project_item_slider_item_img {
  background-image: url(../img_new/project/6_min.jpg);
}

.project_item_slider_3
  .project_item_slider_item:nth-child(1)
  .project_item_slider_item_img {
  background-image: url(../img_new/project/7_min.jpg);
  background-size: cover;
}

.project_item_slider_3
  .project_item_slider_item:nth-child(2)
  .project_item_slider_item_img {
  background-image: url(../img_new/project/8_min.jpg);
}

.project_slider_item_blur {
  -webkit-filter: blur(4px);
  filter: blur(4px);
  width: 337px;
  height: 165px;
  position: absolute;
  background-color: #172a51;
}

@media (max-width: 400px) {
  .project_slider_item_blur {
    width: 246px;
    height: 121px;
  }
}

/* scrum */
.scrum_section .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
}

@media (max-width: 1020px) {
  .scrum_section .container {
    padding: 40px 20px;
  }
}

.scrum_item_ul {
  margin-bottom: 25px;
}

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

@media (max-width: 700px) {
  .scrum_item_li {
    margin-bottom: 16px;
    font-size: 16px;
  }
}

.scrum_item_li:last-child {
  margin-bottom: 0px;
}

.scrum_item_li .marker {
  background-image: url(../img_new/check_marker.svg);
  background-size: 6px;
  background-position: center center;
  background-repeat: no-repeat;
  min-width: 15px;
  min-height: 15px;
}

.scrum_section h2 {
  margin-bottom: 25px;
}

@media (max-width: 900px) {
  .scrum_section h2 {
    margin-bottom: 15px;
  }
}

.scrum_item_slider_1
  .project_item_slider_item:nth-child(1)
  .project_item_slider_item_img {
  background-image: url(../img_new/scrum/1_min.jpg);
}

.scrum_item_slider_1
  .project_item_slider_item:nth-child(2)
  .project_item_slider_item_img {
  background-image: url(../img_new/scrum/2_min.jpg);
}

.scrum_item_slider_1
  .project_item_slider_item:nth-child(3)
  .project_item_slider_item_img {
  background-image: url(../img_new/scrum/3_min.jpg);
}

/* шаблоны проектов */
.templates_section .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
}

@media (max-width: 1020px) {
  .templates_section .container {
    padding: 40px 20px;
  }
}

.templates_section h2 {
  text-align: center;
}

.templates_btn_container {
  width: 423px;
  margin: 0 auto;
  z-index: 8;
}

@media (max-width: 500px) {
  .templates_btn_container {
    width: 100%;
    font-size: 13px;
  }
}

.templates_text {
  width: 56%;
  margin: 0 auto;
  font-size: 24px;
  text-align: center;
}

@media (max-width: 900px) {
  .templates_text {
    width: 90%;
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  .templates_text {
    width: 100%;
    font-size: 16px;
  }
}

section {
  margin-top: 70px;
  margin-bottom: 70px;
}

@media (max-width: 900px) {
  section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.templates_decor_left {
  height: 100%;
  position: absolute;
  background-image: url(../img_new/templates_left.png);
  width: 50%;
  left: -200px;
  margin-top: -60px;
}

@media (max-width: 900px) {
  .templates_decor_left {
    left: -153px;
  }
}

.templates_decor_right {
  position: absolute;
  background-image: url(../img_new/templates_right.png);
  height: 100%;
  width: 50%;
  right: -200px;
}

@media (max-width: 900px) {
  .templates_decor_right {
    right: -111px;
  }
}

.templates_section {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.templates_arrow {
  width: 107%;
  position: absolute;
  height: 74%;
  top: -20px;
  background-image: url(../img_new/templates_arrow.png);
  right: 20px;
  z-index: 4;
  background-position: top;
  background-size: 100% 100%;
}

@media (max-width: 900px) {
  .templates_arrow {
    height: 34%;
  }
}

/* блок интеграция */
.integration_tg .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
}

@media (max-width: 1020px) {
  .integration_tg .container {
    padding: 40px 20px;
  }
}

.integration_tg_item_li .marker {
  margin-right: 18px;
  margin-top: 5px;
  background-image: url(../img_new/check_marker_blue.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  min-width: 21px;
  min-height: 16px;
  background-color: transparent;
}

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

@media (max-width: 700px) {
  .integration_tg_item_li {
    margin-bottom: 16px;
    font-size: 16px;
  }
}

.integration_tg_item_li:last-child {
  margin-bottom: 0px;
}

.integration_tg_text {
  color: #6091f8;
  font-size: 20px;
  font-weight: 500;
  width: 70%;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .integration_tg_text {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .integration_tg_text {
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.integration_tg_image_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.integration_tg_image_block a {
  width: 32%;
  border-radius: 10px;
  height: 100%;
}

.integration_tg_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.integration_tg_content > div {
  width: 49%;
}

.integration_tg_content > div:nth-child(1) {
  width: 44%;
}

@media (max-width: 1200px) {
  .integration_tg_content > div:nth-child(1) {
    width: 51%;
  }

  .integration_tg_content > div:nth-child(2) {
    width: 49%;
  }
}

@media (max-width: 1000px) {
  .integration_tg_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .integration_tg_content > div:nth-child(1) {
    width: 100%;
  }

  .integration_tg_content > div:nth-child(2) {
    width: 100%;
  }

  .integration_tg_image_block a {
    /* height: 319px; */
    margin-top: 40px;
  }
}

.big_ellipse_left_container {
  background-image: url(../img_new/big_left_ellipse.svg);
  background-repeat: no-repeat;
  background-position-x: left;
  background-size: 56%;
}

@media (max-width: 1000px) {
  .big_ellipse_left_container {
    background-image: url(../img_new/big_left_ellipse.svg);
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position-x: 110%;
  }
}

.integration_tg_image_block a {
  display: block;
  border-radius: 10px;
}

.integration_tg_image_block a img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

/* migration */

.mob_version_section .container {
  background-color: #6091f8;
  padding: 60px 0px 60px 40px;
  border-radius: 30px;
  background-image: url(../img_new/mob_version_wave.svg);
  background-size: cover;
  background-position-y: center;
  background-repeat: no-repeat;
}

@media (max-width: 1020px) {
  .mob_version_section .container {
    padding: 40px 0px 20px 20px;
  }
}

.mob_version_section h2 {
  color: #fff;
  margin-bottom: 15px;
}

.mob_version_text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  width: 70%;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .mob_version_text {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .mob_version_text {
    font-size: 16px;
    width: 100%;
    /* margin-bottom: 53px; */
  }
}

.mob_version_slider_item {
  display: block;
  margin-right: 20px;
  width: 258px;
  min-width: 258px;
  height: 490px;
  min-height: 490px;
  max-height: 490px;
  border-radius: 10px;
  background-size: cover;
  -webkit-box-shadow: 0px 0px 10px -1px rgb(96 145 248 / 63%);
  box-shadow: 0px 0px 10px -1px rgb(96 145 248 / 63%);
  margin-bottom: 20px;
}

.mob_version_slider_item:nth-child(1) {
  background-image: url(../img_new/mob_version/1_min.jpg);
}

.mob_version_slider_item:nth-child(2) {
  background-image: url(../img_new/mob_version/2_min.jpg);
}

.mob_version_slider_item:nth-child(3) {
  background-image: url(../img_new/mob_version/3_min.jpg);
}

.mob_version_slider_item:nth-child(4) {
  background-image: url(../img_new/mob_version/4_min.jpg);
}

.mob_version_slider_item:nth-child(5) {
  background-image: url(../img_new/mob_version/5_min.jpg);
}
.mob_version_slider_item:nth-child(6) {
  background-image: url(../img_new/mob_version/6_min.jpg);
}

.mob_version_slider {
  /* display: flex;
  flex-direction: row;
  justify-content: start;
  overflow: hidden; */
  overflow: auto;
  display: flex;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

/* storage block */
.storage_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1200px) {
  .storage_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.storage_image_block {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .storage_image_block {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow: scroll;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-top: 34px;
  }

  .storage_image_block::-webkit-scrollbar {
    background-color: transparent;
  }
}

.storage_image_block .project_item_slider_item {
  width: 100%;
}

@media (max-width: 1200px) {
  .storage_image_block .project_item_slider_item {
    width: auto;
  }
}

.storage_image_block .project_item_slider_item .project_item_slider_item_img {
  width: 100%;
  background-size: cover;
}

@media (max-width: 1200px) {
  .storage_image_block .project_item_slider_item .project_item_slider_item_img {
    height: 165px;
    width: 337px;
    background-size: cover;
  }
}

.storage_txt_block {
  width: 60%;
}

@media (max-width: 1200px) {
  .storage_txt_block {
    width: 100%;
  }
}

.storage_txt_block .integration_tg_item_ul,
.integration_pay_item_ul {
  width: 80%;
}

@media (max-width: 700px) {
  .storage_txt_block .integration_tg_item_ul,
  .integration_pay_item_ul {
    width: 100%;
  }
}

.storage_txt_block .integration_tg_text {
  width: 90%;
}

.storage_txt_block_paint_block {
  padding: 30px 70px 30px 30px;
  background-color: #f8f9ff;
  border-radius: 20px;
  margin-top: 25px;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .storage_txt_block_paint_block {
    font-size: 16px;
    padding: 30px;
  }
}

.storage_section .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
}

@media (max-width: 1020px) {
  .storage_section .container {
    padding: 40px 20px;
  }
}

.storage_slider_item1 {
  background-image: url(../img_new/storage/1_min.jpg);
}

.storage_slider_item2 {
  background-image: url(../img_new/storage/2_min.jpg);
}

.storage_txt_block .integration_tg_text {
  font-size: 26px;
}

@media (max-width: 700px) {
  .storage_txt_block .integration_tg_text {
    font-size: 20px;
  }
}

/* платежный календарь */
.pay_calendar_section .container {
  background-image: url(../img_new/pay_calendar/bg.svg);
  padding: 60px 58px 70px 58px;
  border-radius: 30px;
  background-size: 120%;
  height: 100%;
  background-color: #6091f8;
}

@media (max-width: 900px) {
  .pay_calendar_section .container {
    padding: 40px 20px 30px 20px;
  }
}

.pay_calendar_img {
  height: auto;
  width: 100%;
  margin-top: 50px;
  display: block;
}

@media (max-width: 900px) {
  .pay_calendar_img {
    margin-top: 40px;
  }
}

.pay_calendar_img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.pay_calendar_section {
  color: #fff;
  text-align: center;
}

.pay_calendar_desc {
  font-size: 24px;
}

@media (max-width: 900px) {
  .pay_calendar_desc {
    font-size: 20px;
  }
}

/* integration pay */
.integration_pay_item_li .marker {
  margin-right: 18px;
  margin-top: 5px;
  background-image: url(../img_new/green_marker.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  min-width: 21px;
  min-height: 21px;
  background-color: transparent;
}

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

@media (max-width: 700px) {
  .integration_pay_item_li {
    margin-bottom: 16px;
    font-size: 16px;
  }
}

.pay_integration_companies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 59px;
  padding-bottom: 46px;
  border-bottom: 3px solid #6091f8;
}

@media (max-width: 900px) {
  .pay_integration_companies {
    margin-top: 30px;
    padding-bottom: 20px;
  }
}

.pay_integration_companies_item {
  width: 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 2px solid #f7f7f8;
}

.pay_integration_companies_item:last-child {
  border-right: none;
}

@media (max-width: 800px) {
  .pay_integration_companies_item {
    width: 33%;
    margin-bottom: 30px;
  }

  .pay_integration_companies_item:nth-child(3) {
    border-right: none;
  }
}

.pay_integration_companies_item img {
  width: 70%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pay_integration_section .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
}

@media (max-width: 1020px) {
  .pay_integration_section .container {
    padding: 40px 20px;
  }
}

/* control dosc */
.control_docs_section .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
}

@media (max-width: 1020px) {
  .control_docs_section .container {
    padding: 40px 20px;
  }
}

.control_docs_item_ul {
  margin-bottom: 25px;
  width: 88%;
  font-size: 20px;
}

@media (max-width: 1344px) {
  .control_docs_item_ul {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .control_docs_item_ul {
    font-size: 16px;
  }
}

.control_item_slider_1
  .project_item_slider_item:nth-child(1)
  .project_item_slider_item_img {
  background-image: url(../img_new/control_docs/1_min.jpg);
}

.control_item_slider_1
  .project_item_slider_item:nth-child(2)
  .project_item_slider_item_img {
  background-image: url(../img_new/control_docs/2_min.jpg);
}

/* dashboard_section */
.dashboard_section .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
}

@media (max-width: 1020px) {
  .dashboard_section .container {
    padding: 40px 20px;
  }
}

.dashboard_section .paint_span {
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .dashboard_section .paint_span {
    font-size: 16px;
  }
}

.distribution_section .container {
  background-image: url(../img_new/distribution_bg.jpg);
  padding: 60px 58px 70px 58px;
  border-radius: 30px;
  background-size: 120%;
  height: 100%;
  background-color: #fff;
  height: 688px;
  background-position: bottom;
}

@media (max-width: 900px) {
  .distribution_section .container {
    padding: 40px 20px 30px 20px;
    height: 690px;
  }
}

@media (max-width: 400px) {
  .distribution_section .container {
    height: 662px;
  }
}

.distribution_desc {
  border-left: 3px solid #83bc2f;
  padding-left: 30px;
  width: 60%;
  font-size: 20px;
}

@media (max-width: 1000px) {
  .distribution_desc {
    width: 80%;
  }
}

@media (max-width: 750px) {
  .distribution_desc {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .distribution_desc {
    font-size: 16px;
  }
}

.price_li {
  font-size: 18px;
  width: 70%;
}

@media (max-width: 700px) {
  .price_li {
    font-size: 14px;
  }
}

@media (max-width: 408px) {
  .price_li:nth-child(1),
  .price_li:nth-child(2),
  .price_li:nth-child(3),
  .price_li:nth-child(4) {
    width: 100%;
  }
}

.price_li .marker {
  margin-right: 18px;
  margin-top: 5px;
  background-image: none;
  min-width: 21px;
  min-height: 21px;
  background-color: transparent;
}

.price_desc_header {
  font-weight: 500;
  font-size: 24px;
  width: 70%;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .price_desc_header {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .price_desc_header {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.price_desc {
  position: relative;
  background-color: #6091f8;
  color: #fff;
  padding: 40px 45px;
  border-radius: 30px;
}

@media (max-width: 700px) {
  .price_desc {
    padding: 20px;
  }
}

.price_box {
  background-image: url(../img_new/box.png);
  height: 113%;
  width: 25%;
  position: absolute;
  right: 50px;
  top: -35px;
}

@media (max-width: 900px) {
  .price_box {
    bottom: -27px;
    top: auto;
    background-position: bottom;
  }
}

@media (max-width: 700px) {
  .price_box {
    width: 23%;
    right: -5px;
    bottom: -15px;
  }
}

@media (max-width: 600px) {
  .price_box {
    width: 30%;
  }
}

.price_tarifs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 48px;
  margin-bottom: 38px;
}

.tarif {
  width: 279px;
  height: 411px;
  border: 3px solid #d9d9d9;
  border-radius: 30px;
  margin-right: 15px;
  text-decoration: none;
  color: #172a51;
  cursor: pointer;
  transition: 0.3s ease;
}

.tarif:nth-child(2) {
  border: 3px solid #83bc2f;
}

.tarif:nth-child(3) {
  border: 3px solid #6091f8;
}

.progress {
  display: block;
  display: none;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #c8d4ed;
  background-image: -o-linear-gradient(left, #6091f8, #6091f8);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#6091f8),
    to(#6091f8)
  );
  background-image: linear-gradient(to right, #6091f8, #6091f8);
  background-repeat: no-repeat;
  background-size: 0 100%;

  -webkit-transition: background-size 0.4s ease-in-out;

  -o-transition: background-size 0.4s ease-in-out;

  transition: background-size 0.4s ease-in-out;
}

@media (max-width: 1280px) {
  .progress {
    display: block;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.slick-list {
  /* overflow: hidden; */
}

.price_tarifs_text {
  min-width: 275px;
  height: 349px;
  margin-right: 20px;
  min-width: 279px;
  width: 275;
}

@media (max-width: 600px) {
  .price_tarifs_text {
    width: 50%;
  }
}

.price_tarifs_slider {
  overflow-x: hidden;
  max-width: 72%;
}

@media (max-width: 600px) {
  .price_tarifs_slider {
    width: 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

.price_tarifs_text,
.tarif {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 32px 30px;
}

.price_tarifs_text_h {
  font-size: 24px;
  font-weight: 400;
  /* margin-bottom: 10px; */
}

.tarif_check {
  width: 20px;
  height: 15px;
}

.price_span,
#price_sale {
  font-weight: 400;
  /* font-size: 32px; */
  font-size: 23px;
  text-align: center;
  line-height: 1.7;
}

.price_span span:nth-child(2),
.span_tt {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  /* identical to box height */

  -webkit-text-decoration-line: line-through;

  text-decoration-line: line-through;

  color: #ff0000;
}

.price_span span:nth-child(4) {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #ff0000;
}

.price_span span:nth-child(4) {
  text-align: center;
}

.price_li_border {
  padding-bottom: 9px;
  border-bottom: 1px solid #e5e5e5;
  padding: 9px 0;
  text-align: center;
}

@media (max-width: 700px) {
  .price_li_border {
    padding-bottom: 16px;
  }
}

.price_btn.templates_btn_container {
  margin: 0;
}

@media (max-width: 700px) {
  .price_btn.templates_btn_container {
    margin: 0 auto;
  }
}

.vopros_container {
  position: relative;
}

.vopros_container a {
  position: absolute;
  margin-left: 3px;
  cursor: pointer;
}

.menu_item {
  color: #172a51;
  padding: 8px;
  margin-bottom: 10px;
  margin-right: 9px;
  border: 1px solid #6091f8;
  border-radius: 50px;
  text-decoration: none;
  display: block;
}

.menu_item:hover {
  background-color: #6091f8;
  border: 1px solid transparent;
  color: #fff;
}

.menu_section {
  background-color: #fbfcff;
  max-width: 100%;
  width: 100%;
  opacity: 1;
}

.fixed {
  /* position: fixed;
    top: 0;
    margin-top: 0;
    z-index: 10000; */
  /* height: 20px; */
  opacity: 0;
}

.srok_decor_img {
  width: 45px;
  height: 45px;
  margin-right: 18px;
  min-width: 45px;
}

.srok_decor_img img {
  -o-object-position: left;
  object-position: left;
}

.srok_ul {
  max-width: 846px;
  list-style-position: inside;
}

.srok_ul li::marker {
  background-color: #83bc2f;
  color: #83bc2f;
}

.srok_list_item {
  font-size: 20px;
  margin-bottom: 34px;
}

@media (max-width: 700px) {
  .srok_list_item {
    font-size: 16px;
  }
}

.srok_flex_container > div {
  width: 70%;
}

@media (max-width: 1000px) {
  .srok_flex_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 1000px) {
  .srok_flex_container > div {
    width: 100%;
  }
}

.video_container {
  min-height: 100%;
  /* background-color: #172a51; */
  border-radius: 20px;
  position: relative;
}

@media (max-width: 1000px) {
  .video_container {
    /* min-height: 500px; */
  }
}

@media (max-width: 1000px) {
  .video_container {
    /* min-height: 500px; */
  }
}

@media (max-width: 700px) {
  .video_container {
    /* min-height: 350px; */
  }
}

.generation_section .distribution_desc {
  width: 40%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 1000px) {
  .generation_section .distribution_desc {
    width: 100%;
    margin-bottom: 30px;
  }
}

.generation_section .video_container {
  /* height: 350px; */
}

.generation_section .srok_flex_container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.generation_section .container {
  background-image: url(../img_new/generation_bg.svg);
  background-position: bottom;
  padding: 60px 58px 70px 58px;
  border-radius: 30px;
  background-color: #fff;
}

@media (max-width: 900px) {
  .generation_section .container {
    padding: 40px 20px 30px 20px;
    background-position: bottom left;
    background-size: auto 31%;
  }
}

.srok_section .container {
  padding: 60px 58px 70px 58px;
  border-radius: 30px;
  background-color: #fff;
}

@media (max-width: 900px) {
  .srok_section .container {
    padding: 40px 20px 30px 20px;
  }
}

.fancy_project {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.fancy_project:hover {
  -webkit-box-shadow: inset 0 0 0 1000px #99afed42;
  box-shadow: inset 0 0 0 1000px #99afed42;
}

.reviews_item_img_block {
  width: 25%;
  min-height: 100%;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 800px) {
  .reviews_item_img_block {
    width: 100%;
    padding: 50px 0;
  }
}

.reviews_item:nth-child(1) .reviews_item_img_block {
  background-image: url(../img_new/reviews/1.jpg);
}

.reviews_item:nth-child(2) .reviews_item_img_block {
  background-image: url(../img_new/reviews/2.jpg);
}

.reviews_item:nth-child(3) .reviews_item_img_block {
  background-image: url(../img_new/reviews/3.jpg);
}

.reviews_item:nth-child(4) .reviews_item_img_block {
  background-image: url(../img_new/reviews/4.jpg);
}

.reviews_item:nth-child(5) .reviews_item_img_block {
  background-image: url(../img_new/reviews/5.jpg);
}

.reviews_item {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: inset 0px 0px 0px 3px #d8e4ff;
  box-shadow: inset 0px 0px 0px 3px #d8e4ff;
  margin-bottom: 30px;
  font-size: 20px;
}

@media (max-width: 800px) {
  .reviews_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .reviews_item {
    font-size: 16px;
  }
}

.price_tarifs_text_h {
  padding-top: 0;
}

.reviews_item > div:nth-child(2) {
  max-width: 75%;
  padding: 30px;
}

@media (max-width: 800px) {
  .reviews_item > div:nth-child(2) {
    max-width: 100%;
  }
}

.reviews_item_txt span {
  line-height: 2;
  display: block;
  font-weight: 600;
}

.reviews_item_txt > div:nth-child(1) {
  margin-bottom: 40px;
}

.reviews_img_container_icon {
  width: 44px;
  height: 44px;
  background-image: url(../img_new/reviews/check.svg);
}

.reviews_img_container_h {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  color: #fff;
}

.reviews_section h2 {
  margin-bottom: 45px;
}

@media (max-width: 700px) {
  .reviews_section h2 {
    margin-bottom: 15px;
  }
}

/* modal */
.modal__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: opacity0 0.2s ease-in;
  -o-transition: opacity0 0.2s ease-in;
  transition: opacity0 0.2s ease-in;

  display: flex;
  align-items: center;
}

.modal__content {
  position: relative;
  width: auto;
  margin: 10px;
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
}

@media (min-width: 576px) {
  .modal__content {
    max-width: 500px;
    margin: 50px auto;
  }
}

.modal__show .modal__backdrop,
.modal__show .modal__content {
  opacity: 1;
  z-index: 1050;
  pointer-events: auto;
  overflow-y: auto;
  z-index: 10000;
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
  padding-bottom: 0;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 500;
}

.modal__btn-close {
  float: right;
  font-family: sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #6091f8;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
  text-decoration: none;
}

.modal__btn-close:focus,
.modal__btn-close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.75;
}

.modal__body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
  overflow: auto;
  padding-bottom: 40px;
  padding-top: 0;
}

.modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

@media (max-width: 1000px) {
  .price_span,
  #price_sale {
    font-size: 20px;
  }
}

@media (max-width: 840px) {
  .price_tarifs_text_h {
    font-size: 20px;
  }

  .price_tarifs_text {
    min-width: 48%;
    width: 48%;
    padding: 15px 5px;
  }

  .tarif {
    min-width: 220px;
    width: 220px;
    padding: 15px 5px;
  }

  .price_span,
  #price_sale {
    font-size: 20px;
  }

  .price_span span {
    font-size: 12px;
  }
}

@media (max-width: 550px) {
  .price_tarifs_text_h {
    font-size: 17px;
  }

  .price_span,
  #price_sale {
    font-size: 15px;
  }

  .price_span span {
    font-size: 12px;
  }

  .price_tarifs_text {
    min-width: 36%;
  }
}

.menu_section {
  background-color: #fff;
}

.menu {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .menu {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: scroll;
  }
}

.menu_item:nth-child(5) {
  min-width: 125px;
}

.menu_item:nth-child(11) {
  min-width: 167px;
}

.menu_item:last-child {
  min-width: 196px;
  background-color: #83bc2f;
  color: #fff;
  border: 1px solid #83bc2f;
  text-align: center;
}

.integration_tg_content .integration_tg_text {
  width: 100%;
}

@media (max-width: 900px) {
  .integration_tg_content .integration_tg_item_ul .integration_tg_item_li {
    font-size: 16px;
  }
}

.control_docs_ul li::marker {
  background-color: #83bc2f;
  color: #83bc2f;
}

.control_docs_ul li {
  margin-bottom: 15px;
}

.control_docs_item_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (max-width: 900px) {
  .control_docs_item_ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.control_docs_ul .marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: #83bc2f;
  border-radius: 50%;
  margin-right: 18px;
  margin-top: 5px;
}

.control_docs_ul {
  min-width: 40%;
  max-width: 40%;
  list-style-position: inside;
}

.control_docs_ul:nth-child(1) {
  min-width: 50%;
  max-width: 50%;
  padding-right: 20px;
}

@media (max-width: 900px) {
  .control_docs_ul {
    min-width: 100%;
    max-width: 100%;
  }

  .control_docs_ul:nth-child(1) {
    min-width: 100%;
    max-width: 100%;
  }
}

.distribution_desc p {
  margin-bottom: 20px;
}

a.active {
  background-color: #6091f8;
  border: 1px solid transparent;
  color: #fff;
}

#srok_section {
  /* display: none; */
}

#reviews_section {
  display: none;
}

#generation_section {
  /* display: none; */
}

#fon {
  max-width: 100%;
  border-radius: 20px;
}

.video_btn {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.video_btn_icon {
  /* position: absolute; */
  height: 110px;
  width: 110px;
  /* top: 40%; */
  cursor: pointer;
  background-image: url(../img_new/video_button.svg);
}

.menu_section {
  padding: 20px 0;
}

.menu_section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .menu_section h2 {
    font-size: 24px;
    /* margin-bottom: 10px; */
  }
}

.price_tarifs_text > div {
  padding: 0px 0;
  margin-top: 18px;
}

.price_tarifs_text > div.price_tarifs_text_h {
  padding-top: 0;
  margin-top: 0;
}

.tarif:hover {
  border: 3px solid #d2ed33;
}

@media (max-width: 500px) {
  .tarif {
    min-width: 137px;
    width: 137px;
    padding: 15px 5px;
  }
}

.storage_image_block .project_item_slider_item:nth-child(2) {
  margin-top: 35px;
}

@media (max-width: 1200px) {
  .storage_image_block .project_item_slider_item:nth-child(2) {
    margin-top: 0px;
  }
}

.rus_sistem {
  color: #ff0000;
  font-size: 24px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.rus_sistem img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media (max-width: 900px) {
  .rus_sistem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header .logo {
  width: 160px;
}

@media (max-width: 400px) {
  .header .logo {
    width: 130px;
  }
}

.header.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header_phone {
  font-weight: 400;
  font-size: 24px;
  text-decoration: none;
  color: #172a51;
}

.free_in_rus {
  font-weight: 400;
  font-size: 18px;
  color: #c4cee1;
}

.header_right {
  text-align: right;
}

@media (max-width: 400px) {
  .header_phone {
    font-size: 16px;
  }

  .free_in_rus {
    font-size: 14px;
  }
}

.price_section .container {
  padding: 60px 40px 70px 40px;
  border-radius: 30px;
  background-color: #fff;
}

@media (max-width: 900px) {
  .price_section .container {
    padding: 40px 20px 30px 20px;
  }
}

.price_tarifs_text .price_span {
  text-align: left;
}

.video_container {
  /* background-image: url(../img_new/video_bg.png); */
  background-size: 100%;
}

.price_desc .marker {
  margin-top: 0;
}

footer {
  background: #172a51;
  padding: 20px 0;
}

footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.conf {
  font-size: 14px;
  text-decoration-line: underline;
  color: #ffffff;
}

.big_ellipse_right {
  background-image: url(../img_new/big_right_ellipse.svg);
  background-repeat: no-repeat;
  background-size: 182% 82%;
}

@media (max-width: 1000px) {
  .big_ellipse_right {
    background-image: url(../img_new/big_right_ellipse.svg);
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position-x: -9%;
  }
}

/* модалка тарифы */
.modal_tarif_form input {
  padding: 20px 33px;
  border-radius: 20px;
  font-size: 20px;
  outline: 0 !important;
  border: 0;
  text-align: left;
  width: 100%;
  border: 1px solid #d9d9d9;
  background-color: transparent;
  position: relative;
  color: #838383;
}

.modal_tarif_form button {
  padding: 20px 33px;
  border-radius: 20px;
  font-size: 20px;
  outline: 0 !important;
  border: 0;
  text-align: center;
  width: 100%;
  border: 1px solid #6091f8;
  background-color: transparent;
  position: relative;
  color: #fff;
  background-color: #6091f8;
  margin-top: 20px;
  cursor: pointer;
}

.modal_tarif_form button:hover {
  filter: brightness(0.8);
}

.modal_tarif_form {
  padding-top: 15px;
}

.project_section .project_item_ul .marker {
  margin-top: 8px;
}

@media (max-width: 700px) {
  .project_section .project_item_ul .marker {
    margin-top: 6px;
  }
}

.control_docs_ul .marker {
  margin-top: 8px;
}

@media (max-width: 700px) {
  .control_docs_ul .marker {
    margin-top: 6px;
  }
}

.integration_tg h2 {
  margin-bottom: 15px;
}

.integration_tg_text {
  margin-bottom: 40px;
}

/* @media (max-width: 700px) {
    .tarif2 .price_li_border {
        padding-bottom: 9px;
    }
} */

/* @media (max-width: 700px) {
    .tarif1 .price_li_border {
        padding-bottom: 12px;
    }
} */

@media (max-width: 700px) {
  .tarif .price_li_border {
    padding-bottom: 13px;
  }
}

@media (max-width: 700px) {
  .price_span span:nth-child(2),
  .span_tt {
    font-size: 8px;
  }
}

#promo-video-container {
  border-radius: 10px;
  background: #edf2fc;
  height: 169px;
  max-width: 300px;
  width: 80%;
  position: fixed;
  bottom: -57px;
  left: 23px;
  z-index: 50;
  -webkit-box-shadow: 4px 4px 11px 0px rgba(34, 60, 80, 0.22);
  -moz-box-shadow: 4px 4px 11px 0px rgba(34, 60, 80, 0.22);
  box-shadow: 4px 4px 11px 0px rgba(34, 60, 80, 0.22);
}

#promo-video-container .close-promo-video {
  height: 30px;
  width: 30px;
  position: absolute;
  top: -15px;
  left: -15px;
  border: none;
  background: url("/img/cross-close.svg") center center no-repeat;
  background-size: cover;
  cursor: pointer;
  z-index: 100;
}

#promo-video-player {
  max-height: 691px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#promo-video-container .close-promo-video {
  /* height: 20px;
    width: 20px; */
  top: -11px;
  /* left: unset;
    right: -10px;
    cursor: pointer;
    z-index: 100; */
}

#promo-video-player {
  max-height: 691px;
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%;
    height: 100%; */
  border-radius: 10px;
}

@media (max-width: 768px) {
  #promo-video-container {
    background: #edf2fc;
    height: 171px;
    max-width: unset;
    width: 304px;
    position: fixed;
    bottom: 75px;
    left: calc(50% - 152px);
    z-index: 50;
    border-radius: 10px;
  }

  #promo-video-container .close-promo-video {
    height: 20px;
    width: 20px;
    top: -11px;
    left: unset;
    right: -10px;
    cursor: pointer;
    z-index: 100;
  }

  #promo-video-player {
    max-height: 691px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
}

.menu_section_fixed {
  position: fixed;
  top: 0;
  margin-top: 0;
  z-index: 10000;
  display: none;
  box-shadow: 0px 29px 30px -4px rgb(188 188 188 / 40%);
}

/* .srok_section .video_container{
    display: none;
} */

.srok_list_item:nth-child(2) {
  align-items: center;
}

.srok_ul li {
  margin-top: 10px;
}

.srok_ul li:nth-child(1) {
  margin-top: 15px;
}

section#whatsapp-popup-section {
  margin-top: 10px;
  margin-bottom: 10px;
}

.price_tarifs_text {
  font-size: 16px;
}

@media (max-width: 900px) {
  .price_tarifs_text {
    font-size: 14px;
  }
}

.srok_control_img {
  object-fit: cover;
  border-radius: 15px;
  max-width: 100%;
  max-height: 100%;
}

.srok2_flex_container > div:nth-child(1) {
  width: 60%;
}

.srok2_flex_container > a {
  width: 40%;
}

@media (max-width: 1000px) {
  .srok2_flex_container > div:nth-child(1) {
    width: 100%;
  }

  .srok2_flex_container > a {
    display: none;
  }
}

.tarif_btn {
  width: 100%;
}

.tarif_btn .btn {
  margin-top: 5px;
  font-size: 14px;
  width: 100%;
  padding: 5px;
  font-weight: normal;
  text-transform: none;
  text-align: center;
  box-shadow: none;
  padding: 15px 5px;
}

@media (max-width: 900px) {
  .tarif_btn .btn {
    width: 90%;
    margin: 0 auto;
    font-size: 11px;
  }
}

@media (min-width: 701px) {
  .price_li:nth-child(5),
  .price_li:nth-child(6),
  .price_li:nth-child(7) {
    font-size: 20px;
  }
}

@media (max-width: 416px) {
  /* .price_span {
        font-size: 31px;
    } */
  /* .price_tarifs_text>div.price_tarifs_text_h{
        padding-bottom: 12px;
    } */
  .tarif {
    height: 420px;
  }
}

@media (max-width: 380px) {
  .tarif {
    height: 450px;
  }
}

.modal_form_p {
  font-size: 16px;
  margin-bottom: 10px;
}

/* слайдер */
.price_tarifs_slider {
  flex-basis: 72%;
  display: flex;
  /* overflow-x: scroll; */
}

.tarif {
  min-width: 279px;
}

.price_tarifs::-webkit-scrollbar {
  width: 0;
}
/* /////////////////////////// */
/* Works on Firefox */
.price_tarifs {
  scrollbar-width: thin;
  scrollbar-color: #6091f8 #c8d4ed ;
}

/* Works on Chrome, Edge, and Safari */
.price_tarifs::-webkit-scrollbar {
  width: 12px;
}

.price_tarifs::-webkit-scrollbar-track {
  background-color: #c8d4ed;
  border-radius: 10px;
  margin-top: 70px;
  /* box-shadow:inset 1px 0 0 #e6e6e6 */
}

.price_tarifs::-webkit-scrollbar-thumb {
  background-color: #6091f8;
  border-radius: 10px;
  /* border: 3px solid #6091f8; */
}
/* /////////////////////////// */

@media (max-width: 700px) {
  .tarif {
    min-width: 150px;
    margin-right: 10px;
  }

  #period {
    display: none;
  }
}

.price_tarifs_slider {
  max-width: none;
  overflow: visible;
  flex-basis: none;
}

.price_tarifs {
  overflow-x: auto;
  padding-bottom: 50px;
}

.progress{
  display: none;
}

.menu_item:nth-child(12) {
  display: none;
}

.menu_item:nth-child(10) {
  display: none;
}

.menu_item:nth-child(16) {
  /* display: none; */
}

.menu_item:nth-child(14) {
  display: none;
}


.generation_section{
  display: none;
}

.pay_calendar_section{
  display: none;
}





.mob_version_slider::-webkit-scrollbar {
  width: 0;
}
/* /////////////////////////// */
/* Works on Firefox */
.mob_version_slider {
  scrollbar-width:0;
}

/* Works on Chrome, Edge, and Safari */
.mob_version_slider::-webkit-scrollbar {
  width: 0;
}

.mob_version_slider::-webkit-scrollbar-track {
}

.mob_version_slider::-webkit-scrollbar-thumb {
}
/* /////////////////////////// */

/* новая модалка */
.free_modal_btn,
.modal_block_btn {
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    color: #fff;
    background-color: #30c250;
    border-radius: 11px;
    max-width: 370px;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    /* text-transform: uppercase; */
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.free_modal_btn:hover,
.modal_block_btn:hover {
    -webkit-box-shadow: 0px 0px 12px 2px rgb(52 182 52 / 50%);
    box-shadow: 0px 0px 12px 2px rgb(52 182 52 / 50%);
}

@media(max-width: 500px) {

    .free_modal_btn,
    .modal_block_btn {
        width: 100%;
        font-size: 18px;
    }
}

.main_block_logo {
    margin-bottom: 35px;
}

.main_block_image {
    margin-bottom: -34px;
    margin-top: 10px;
}

@media(max-width: 700px) {
    .main_block_image {
        /* margin-bottom: 0; */
    }
}

.modal_block {
    width: 680px;
    max-width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    color: #162950;
    padding: 35px 5% 35px 5%;
    margin: 0 auto;
    border-radius: 20px;
    z-index: 10;
    overflow: scroll;
    max-height: 100%;
}

.modal_block_container {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    /* background-color: black;
    opacity: 0.6; */
    /* position: relative; */
}

.modal_block_bg {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.6;

}


@media(max-width:768px) {
    .modal_block {
        padding: 15px 5% 25px 5%;
        
    }

    .modal_block_container.active{
      padding-top: 10px;
      padding-bottom: 10px;
    }
}

.modal_block_container.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 100000000000;
}

.modal_block span {
    display: block;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    margin-left: 23px;
}

@media(max-width: 500px) {
    .modal_block span {
        margin-left: 5px;
        margin-bottom: 5px;
    }
}

.modal_block_title {
    color: #162950;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
}

@media(max-width: 1200px) {
    .modal_block_title {
        font-size: 28px;
        margin-bottom: 9px;
    }
}

@media(max-width:500px) {
    .modal_block_title {
        font-size: 23px;
    }
}

.modal_block input {
    font-family: "Euclid Square";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    max-width: 100%;
    padding: 20px 0px 20px 23px;
    border: 1px solid #DBE7FF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    /* outline: none; */
    outline: 0 !important;
    /* border: 0; */
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}

@media(max-width: 500px) {
    .modal_block input {
      padding: 6px 0px 6px 6px;
      font-size: 13px;
      border-radius: 7px;
    }

}

.modal_block .checkbox__input {
    width: auto;
    margin-right: 9px;
}

.no_scroll {
  overflow: hidden;
}

.modal_block_btn {
  margin-top: 30px;
  width: 100%;
  min-width: 100%;
}

@media(max-width: 700px){
  .modal_block_btn{
    margin-top: 0px;
  }
}

.modal_block_after-title{

}

.modal_block_after-title {
  color: #162950;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

@media(max-width: 1200px) {
  .modal_block_after-title {
      font-size: 18px;
  }
}

@media(max-width:500px) {
  .modal_block_after-title {
      font-size: 16px;
  }
}

.modal_block::-webkit-scrollbar {
  width: 0;
}

.checkbox_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 14px;
}

@media (max-width: 500px){
  .checkbox_container {
    font-size: 12px;
}
}

.red_span{
  color: red;
  display: inline !important;
  margin-left: 5px !important;
}

.templates_btn{
  cursor: pointer;
}


/* новый блок для кого */
.for_who_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .for_who_header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.for_who_header span {
  font-weight: 500;
  font-size: 18px;
  color: #6091f8;
}

.for_who_header h2 {
  margin-bottom: 0;
}
@media(max-width: 700px){
  .for_who_header h2 {
    margin-bottom: 15px;
  }
}

@media (max-width: 700px) {
  .for_who_header span {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .for_who_header span {
    font-size: 15px;
  }
}

.for_who_two {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.for_who_two_item {
  flex-basis: 23%;
  width: 23%;
  background-color: #f8f9ff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .for_who_two_item {
    flex-basis: 48%;
    width: 48%;
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .br_desc {
    display: none;
  }
}

@media(max-width: 600px){
  .for_who_two_item {
    padding: 10px;
  }
}

.for_who_two_item img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .for_who_two_item img {
    margin-bottom: 10px;
  }
}

.for_who {
  background-color: #fff;
  padding: 70px 40px 60px 40px;
  border-radius: 30px;
}

@media (max-width: 900px) {
  .for_who {
    padding: 40px 20px 40px 20px;
  }
}

.for_who_two_item_h {
  font-weight: 600;
  font-size: 24px;
  color: #6091f8;
  margin-bottom: 15px;
}

@media (max-width: 1270px) {
  .for_who_two_item_h {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .for_who_two_item_h {
    font-size: 14px;
  }
}

.for_who_two_item_desc {
  font-weight: 400;
  font-size: 20px;
  color: #172a51;
}

@media (max-width: 1270px) {
  .for_who_two_item_desc {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .for_who_two_item_desc {
    font-size: 12px;
  }
}

.for_who_three_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 20px;
  border: 1px solid #d8e4ff;
  border-radius: 20px;
  flex-basis: 49%;
  width: 49%;
  margin-bottom: 20px;
}

.for_who_three_item:last-child {
  flex-direction: column;
  align-items: flex-start;
  background-image: url(../img_new/for_who/decor_bg.svg);
  background-position: top right;
  background-size: 40% 100%;
  background-repeat: no-repeat;
  background-color: #F8F9FF;
}

@media (max-width: 900px) {
  .for_who_three_item {
    padding: 20px 15px;
    width: 100%;
    flex-basis: 100%;
  }

  .for_who_three_item:last-child{
    /* background-position: right; */
  }
}

@media(max-width: 600px){
  .for_who_three_item {
    padding: 20px 10px;
  }
}

.for_who_three_item img {
  width: 108px;
  height: 70px;
  object-fit: contain;
  margin-left: 30px;
}

@media (max-width: 900px) {
  .for_who_three_item img {
    width: 72px;
    height: 62px;
  }
}

@media (max-width: 500px) {
  .for_who_three_item img {
    width: 40px;
    height: 40px;
    margin-left: 7px;
  }
}

.for_who_three {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.for_who_three_item_h {
  font-weight: 600;
  font-size: 24px;
  color: #83bc2f;
  margin-bottom: 15px;
}

@media (max-width: 1270px) {
  .for_who_three_item_h {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .for_who_three_item_h {
    font-size: 16px; 
  }
}

@media (max-width: 365px) {
  .for_who_three_item_h {
    font-size: 14px;
  }
}

.for_who_three_item_after_h {
  font-weight: 400;
  font-size: 20px;
  color: #172a51;
}

@media (max-width: 1270px) {
  .for_who_three_item_after_h {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .for_who_three_item_after_h {
    /* width: 95%; */
  }
}

.for_who_three_item_img_block{
  display: flex;
  align-items: center;
}

.for_who_three_item:last-child .for_who_three_item_h{
  color: #172A51;
}

.for_who_three_item .btn{
  text-transform: none;
  cursor: pointer;
}

@media(max-width: 600px){
  .br_500{
    display: none;
  }
}

@media(max-width: 600px){
  .for_who_three_item:last-child > div:nth-child(2){
    width: 70%;
  }
}


.for_who_btn{
  margin-bottom: 10px;    
  margin-top: 22px;
}

@media (max-width: 600px){
  .for_who_three_item_h {
    margin-bottom: 10px;
}
}

/* блок мессенджер */
.messenger_flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 700px) {
  .messenger_flex {
    flex-direction: column;
  }
}

.messenger_flex_item_txt {
  flex-basis: 48%;
  width: 48%;
  font-weight: 400;
  font-size: 20px;
  color: #172a51;
}

.messenger_flex_item_img {
  flex-basis: 48%;
  width: 48%;
}

.messenger_flex_item_img img {
  object-fit: contain;
  width: 95%;
  -webkit-box-shadow: 0px 0px 30px -1px rgb(96 145 248 / 11%);
  -moz-box-shadow: 0px 0px 30px -1px rgba(96, 145, 248, 0.11);
  box-shadow: 0px 0px 30px -1px rgb(96 145 248 / 11%);
  border-radius: 20px;
  object-position: center center;
}

@media (max-width: 900px) {
  .messenger_flex_item_txt {
    font-size: 16px;
  }

  .messenger_flex_item_img img {
    width: 98%;
    -webkit-box-shadow: 0px 0px 10px -1px rgb(96 145 248 / 11%);
    -moz-box-shadow: 0px 0px 10px -1px rgba(96, 145, 248, 0.11);
    box-shadow: 0px 0px 10px -1px rgb(96 145 248 / 11%);
  }
}

@media(max-width: 700px){
  .messenger_flex_item_img {
    flex-basis: 100%;
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .messenger_flex_item_txt {
    flex-basis: 100%;
    width: 100%;
  }
}

.messenger_flex_item_txt_blue {
  font-weight: 500;
  font-size: 20px;
  color: #6091f8;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .messenger_flex_item_txt_blue {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.messenger_icon{
  margin-right: 18px;
  max-width: 34px;
  max-height: 30px;
  min-width: 34px;
  min-height: 30px;
  width: 34px;
  height: 30px;
}

@media(max-width: 900px){
  .messenger_icon{
    margin-right: 18px;
    max-width: 24px;
    max-height: 21px;
    min-width: 24px;
    min-height: 21px;
    width: 24px;
    height: 21px;
  }
}

.messenger_flex_item_txt_black .flex__row_all{
  margin-bottom: 20px;
  align-items: center;
}

@media(max-width: 900px){
  .messenger_flex_item_txt_black .flex__row_all{
    margin-bottom: 20px;
  }
  .flex__row_all .messenger_flex_item_txt_blue{
    margin-bottom: 0px;
  }
}

.messenger_icon img{
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.section_messenger .container {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
  border-radius: 30px;
  background-image: url(../img_new/messenger/vector_bg.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  
}

@media (max-width: 1020px) {
  .section_messenger .container {
    padding: 40px 20px;
  }
}


@media (max-width: 700px) {
  .section_messenger .container {
    background-size: 350%;
  }
}

.flex__row_all .messenger_flex_item_txt_blue {
  margin-bottom: 0px;
}

