@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), local("Montserrat-Regular"),
    url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), local("Montserrat-SemiBold"),
    url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), local("Montserrat-Bold"),
    url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "DMSans";
  src: local("DMSans"), local("DMSans-Bold"),
    url("../fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  background-color: #ffffff;
}
ol,
ul {
  list-style: none;
}
* {
  margin: 0;
  padding: 0;
  outline: none;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
}

.left {
  float: left;
}
.right {
  float: right;
}
section {
  padding: 100px 0;
  overflow: hidden;
}
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
}
h1 {
  color: #2e3a59;
  font-size: 28px;
  font-weight: 700;
  line-height: 39.2px;
  margin-bottom: 20px;
}
h2 {
  color: #4f5668;
  font-size: 16px;
  line-height: 27.2px;
  margin-bottom: 60px;
}
h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  margin-bottom: 12px;
}
p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.5px;
}
img {
  width: 100%;
}
.hide_block {
  display: none !important;
}
/* svg styles */
#svg_equa,
#svg_chart,
#svg_layers,
#arrow_up {
  fill: #2e3a59;
}
#calculator,
#services,
#media,
#system {
  fill: #8f9bb3;
}

/* svg styles end */

/* index */
/* header start*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  padding: 40px 0;
}
.header.default {
  position: fixed;
  top: 0;
  background: rgba(46, 58, 89, 0.85);
  padding: 16px 0;
  z-index: 3;
}
.header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo {
  float: left;
  margin-right: 10px;
  max-width: 127px;
  width: 100%;
}
.mobile_logo,
.language_m {
  display: none;
}
.header_menu {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.nav {
  display: flex;
  align-items: center;
  float: right;
  flex-wrap: wrap;
}
.language {
  position: relative;
}
.arrow {
  position: absolute;
  right: -2px;
  top: 8.5px;
  width: 0;
  height: 0;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  cursor: pointer;
}
.arrow_active {
  transform: rotate(-180deg);
  border-top: 4px solid #73ff8d;
}
.nav .nav_link {
  float: left;
  margin-right: 27px;
  cursor: pointer;
}
.nav .nav_link:first-child {
  position: relative;
  padding-right: 12px;
}
.nav .nav_link:last-child {
  margin-right: 0;
  padding-right: 14px;
}
.nav .open_form {
  margin-left: 17px;
  margin-right: 21px;
}
.nav .open_form a {
  color: #73ff8d;
  font-weight: 600;
  line-height: 48px;
  padding: 13.5px 24px;
  border-radius: 4px;
  border: 1px solid #73ff8d;
}
.nav a {
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
}
.list_active .list {
  color: #73ff8d;
}
.submenu {
  padding-bottom: 30px;
  top: 15px;
}
.number {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.nav ul {
  display: none;
  position: fixed;
  top: 43px;
  max-width: 387px;
  border-radius: 4px;
  background-color: #182035;
  padding: 24px;
}
.nav ul li {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  width: max-content;
}
.nav ul li:last-child {
  margin-bottom: 0;
}
.nav .menu_open {
  position: absolute;
  display: block;
  width: max-content;
}
.language .menu_open,
.language:hover ul {
  border-radius: 4px;
  left: -12px;
  top: 30px;
  padding: 0;
  overflow: hidden;
}
.language .menu_open li,
.language_m .menu_open li,
.language:hover ul li {
  font-size: 16px;
  color: #ffffff;
  padding: 15px;
  background-color: #73ff8d;
  margin-bottom: 0;
  width: 100%;
}
.language .menu_open li a,
.language_m .menu_open li a,
.language:hover ul li a {
  color: #2e3a59 !important;
}
.language .menu_open li:hover,
.language_m .menu_open li:hover,
.language:hover ul li:hover {
  background-color: #182035;
}
.language .menu_open li:hover a,
.language_m .menu_open li:hover a,
.language:hover ul li:hover a {
  color: #73ff8d !important;
}
.language ul li a,
.language ul li a:hover {
  color: #2e3a59 !important;
}
/* header end */

/* section_top */
.section_top {
  background: #000 url(../img/section-top-bg.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 187px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.top_wrapper {
  max-width: 654px;
  position: relative;
}
.top_wrapper img {
  position: absolute;
  top: -70px;
  left: 590px;
  max-width: 801px;
  width: auto;
}
.top_wrapper h1 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 60px;
  text-align: left;
  margin-bottom: 27px;
}
.top_wrapper p {
  font-size: 16px;
  line-height: 27.2px;
  text-align: left;
  margin-bottom: 44px;
}
.btn {
  border-radius: 4px;
  background-color: #73ff8d;
  color: #2e3a59;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  max-width: max-content;
  text-align: left;
  padding: 14.5px 24px;
  position: relative;
  cursor: pointer;
}
.top_wrapper .btn {
  padding-left: 52px;
  display: block;
  z-index: 2;
}
.top_wrapper .btn::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/svg/ci-cokie.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  left: 25px;
  top: 16px;
}
/* section_top end */
/* services */
.services {
  background-color: #f7f9fc;
  text-align: center;
  padding-bottom: 50px;
}
.services_info {
  /* display: flex !important; */
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  /* border-right: 1px solid #e4e9f2; */
  border-radius: 4px;
}
.services h1 {
  margin-bottom: 40px;
}
.services_b {
  max-width: 254px;
  width: 100%;
  text-align: left;
  border-radius: 4px;
  padding: 35px 18px 30px 30px;
  background-color: #ffffff;
}
.services_b p {
  max-width: 220px;
}
.services_img {
  margin-bottom: 16px;
  max-width: 40px;
  height: 40px;
}
.services_info a {
  color: #2e3a59;
}
.services_info .slick-list {
  /* display: flex !important; */
  margin-left: 0;
  padding-bottom: 48px;
}
.services_info .slick-slide {
  display: flex;
  border: 1px solid #e4e9f2;
  background-color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
}
.services .wrapper > .wrapper {
  padding: 0;
  margin: 0 -57px;
  height: 0;
}
.services .wrapper > .my-dots {
  padding: 0;
}
.services_info .slick-slide {
  display: flex;
  margin-left: 32px;
}
.services_info .rewiews_dots {
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  bottom: 0;
  top: unset;
  z-index: 3;
}
.services_info .rewiews_dots li {
  background-color: #2e3a59;
  cursor: pointer;
}
.my-dots li.prev {
  display: block;
  height: 24px;
  width: 24px;
  background: url(../img/svg/arrow.svg) no-repeat;
  transform: rotate(-180deg);
  background-size: contain;
  cursor: pointer;
}
.my-dots li.next {
  display: block;
  height: 24px;
  width: 24px;
  background: url(../img/svg/arrow.svg) no-repeat;
  background-size: contain;
  cursor: pointer;
}
/* services end */
/* section utility" */
.utility {
  text-align: center;
}
.utility_info {
  display: flex;
  justify-content: space-between;
  margin: 0 -16px;
}
.utility_b {
  max-width: 352px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 16px;
}
.utility_txt {
  padding: 30px;
  text-align: left;
  border-radius: 0 0 4px 4px;
  border: 1px solid #e4e9f2;
}
.utility_pic {
  height: 200px;
  transition: 0.8s;
}
.utility_b img {
  object-fit: cover;
  height: inherit;
  border-radius: 4px 4px 0 0;
}
.utility_b h4 {
  color: #2e3a59;
}
.utility_b p {
  color: #2e3a59;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
}
.utility_b:hover .utility_pic {
  height: 221px;
  margin-top: -20px;
}
.utility_b:hover .utility_txt {
  padding-top: 34px;
  padding-bottom: 34px;
  margin-bottom: -20px;
}

/* section utility end */
/* section why */
.why {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%);
  color: #ffffff;
}
.why_info {
  display: flex;
  justify-content: space-between;
}
.caption {
  max-width: 352px;
}
.why h1,
.why h2 {
  color: #ffffff;
}
.why p {
  opacity: 0.7;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
}
.why ul {
  max-width: 516px;
}
.why li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 45px;
}
.why li::before {
  width: 10px;
  height: 10px;
  background-color: #73ff8d;
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.6s;
}
.why li:last-child {
  margin-bottom: 0;
}
.why li:hover::before {
  box-shadow: 0px 0px 27.4818px #73ff8d;
  width: 16px;
  height: 16px;
  top: 4px;
  transition: 0.6s;
}

/* section why end */

/* industry */
.industry {
  text-align: center;
  padding: 100px 0 160px 0;
}
.industry_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
.industry_b {
  max-width: 352px;
  width: 100%;
  height: 400px;
  padding: 40px 30px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  margin: 0 15px;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 4px;
}

.industry_b_1 {
  background: #000 url(../img/arif-riyanto-vJP-wZ6hGBg-unsplash_1.jpg) no-repeat
    center;
  background-size: 100%;
}
.industry_b_2 {
  background: #000 url(../img/cardmapr-nl-pwxESDWRwDE-unsplash_1.jpg) no-repeat
    center;
  background-size: 100%;
}
.industry_b_3 {
  background: #000 url(../img/Rectangle_135.jpg) no-repeat center;
  background-size: 100%;
}
.industry_b_4 {
  background: #000 url(../img/andrey-sharpilo-_PcWGCSoqRg-unsplash_1.jpg)
    no-repeat center;
  background-size: 100%;
}
.industry_b_5 {
  background: #000 url(../img/Rectangle_137.jpg) no-repeat center;
  background-size: 100%;
}
.industry_b_6 {
  background: #000 url(../img/mario-gogh-VBLHICVh-lI-unsplash_1.jpg) no-repeat
    center;
  background-size: 100%;
}
.industry_b h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
  color: #ffffff;
  padding-bottom: 13px;
  margin-bottom: 11px;
  border-bottom: 1px solid #ffffff;
}
.industry_b p {
  color: #ffffff;
}
.industry_txt {
  position: absolute;
  bottom: 40px;
  padding-right: 30px;
}
/* industry end */
/* form_d */
.form_d_info {
  display: flex;
  align-items: center;
}
.form_d_heading {
  max-width: 408px;
  width: 100%;
  margin-right: 128px;
}
.form_d_heading h1 {
  margin-bottom: 47px;
}
.form_d_heading li {
  color: #2e3a59;
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  position: relative;
  padding-left: 67px;
  margin-bottom: 21px;
}
.form_d_heading li::before {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: -4px;
}
.form_d_heading li:nth-child(1)::before {
  background: url(../img/svg/clock.svg) no-repeat 50% 50%;
  background-size: contain;
}
.form_d_heading li:nth-child(2)::before {
  background: url(../img/svg/bulb.svg) no-repeat 50% 50%;
  background-size: contain;
}
.form_d_heading li:nth-child(3)::before {
  background: url(../img/svg/download_done.svg) no-repeat 50% 50%;
  background-size: contain;
}

.checklist_d {
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  background-color: #ffffff;
  max-width: 480px;
  width: 100%;
}
.form_d {
  background-color: #f7f9fc;
}
.checklist_d_heading {
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  background-color: #1a223a;
  text-align: center;
  padding: 28px 0;
}
.checklist_d_heading h4 {
  color: #73ff8d;
  margin-bottom: 10px;
}
.checklist_d_heading p {
  color: #ffffff;
}
.checklist_d_form {
  padding: 42px 0 37px 84px;
}
.field {
  display: flex;
  flex-direction: column;
  max-width: 280px;
  width: 100%;
}
.field label {
  color: #2e3a59;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.field input {
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  background-color: #ffffff;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 32px;
  padding: 8px 16px 8px 16px;
}
.field ._error {
  border: 1px solid #ff0000;
}
.field input::placeholder {
  color: #a4a4a4;
}
.checkbox_label {
  font-size: 14px;
  line-height: 18px;
  color: #140e04;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: 100%;
  margin-bottom: 32px;
}
.checkbox_label::before {
  content: "";
  align-self: center;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 2px;
  margin: 0 12px 0 0;
  border: 2px solid #2e3a59;
}
.checkbox_input:checked + .checkbox_label::after {
  transform: scale(1);
}
.checkbox_label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/svg/check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(0);
  transition: transform 0.5s ease 0s;
}
.checkbox_input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.frm-submit {
  border-radius: 4px;
  background-color: #10182f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  max-width: 280px;
  width: 100%;
  height: max-content;
}
/* form_d end */
/* security */
.security {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%);
  color: #ffffff;
}
.security_info {
  position: relative;
}
.security_info img {
  max-width: 395px;
  position: absolute;
  top: 0;
  left: 680px;
}
.security h1 {
  color: #ffffff;
  margin-bottom: 40px;
}
.security ul {
  max-width: 495px;
  width: 100%;
}
.security li p {
  color: #bbbec5;
}
.security li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 45px;
}
.security li::before {
  width: 10px;
  height: 10px;
  background-color: #73ff8d;
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
  transition: 0.6s;
}
.security li:hover::before {
  box-shadow: 0px 0px 27.4818px #73ff8d;
  width: 16px;
  height: 16px;
  top: 4px;
  transition: 0.6s;
}
/* security end */

/* customers */
.customers {
  padding: 100px 0 70px 0;
}
.customers h1 {
  margin-bottom: 75px;
  text-align: center;
}
.customers img {
  height: inherit;
  max-width: inherit;
  object-fit: contain;
}
.customers_b_pic {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 130px !important;
}
.customers .slick-list {
  margin-left: 0;
}
.customers .slick-slide {
  margin-bottom: 30px;
  margin-left: 117px;
}
.customers .slick-slide > div {
  display: flex !important;
  justify-content: center;
  margin-bottom: 30px;
}

/* form_d end */

/* offices */
.offices {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%);
  padding: 142px 0;
}
.offices_b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.offices_heading {
  max-width: 544px;
  z-index: 2;
}
.offices_heading h1,
.offices_heading h2 {
  color: #ffffff;
}
.offices_heading h2 {
  margin-bottom: 47px;
}
.offices .btn {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: block;
}
.offices_heading img {
  max-width: 551px;
}

.offices_map {
  position: relative;
  max-width: 551px;
}
.city_address {
  position: absolute;
  top: 0;
  max-width: 169px;
  width: 100%;
}
.city_address::before {
  width: 6px;
  height: 6px;
  background-color: #73ff8d;
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.6s;
}
.city_address:nth-child(1) {
  left: 307px;
  top: 95px;
}
.city_address:nth-child(2) {
  left: 268px;
  top: 95px;
}
.city_address:nth-child(3) {
  left: 262px;
  top: 88px;
}
.city_address:nth-child(4) {
  left: 142px;
  top: 115px;
}
.city_address:nth-child(5) {
  left: 132px;
  top: 105px;
}
.city_address:nth-child(6) {
  left: 340px;
  top: 145px;
}
.city_address:hover::before {
  box-shadow: 0px 0px 27.4818px #73ff8d;
  width: 16px;
  height: 16px;
  top: -5px;
  left: -5px;
}
.city_address span {
  display: none;
  position: relative;
  width: 100%;
  left: 22px;
  top: -10px;
}
.city_address:hover span {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 4px;
  padding: 4px 10px;
  z-index: 2;
  overflow: scroll;
  white-space: nowrap;
}
.city_address:hover span::-webkit-scrollbar {
  width: 0;
  height: 0;
}
/* offices end */
/* crm */
.crm {
  text-align: center;
}
.crm h2 {
  margin: 0 auto;
  margin-bottom: 44px;
  max-width: 738px;
  padding: 0 24px;
}
.crm .pc_m {
  max-width: 576px;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.btn_b {
  background-color: #10182f;
  color: #ffffff;
  font-weight: 400;
  margin: 0 10px;
}
.btn_t {
  border: 1px solid #73ff8d;
  background-color: #ffffff;
  color: #2e3a59;
  font-weight: 400;
  margin: 0 10px;
}
.crm .btn_t {
  position: relative;
  padding-left: 54px;
  cursor: default;
}
.crm .btn_t::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/svg/settings.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  left: 27px;
  top: 13px;
}
.crm_buttons {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.crm_info {
  display: flex;
  justify-content: space-between;
  margin: 0 -34px;
}
.crm_b {
  max-width: 256px;
  width: 100%;
  text-align: left;
  margin: 0 34px;
}
.crm_b p {
  max-width: 220px;
}
.crm_img {
  padding: 16px;
  border-radius: 4px;
  background-color: #e4e9f2;
  max-width: 73px;
  margin-bottom: 20px;
}
.crm_img img {
  max-width: 40px;
  height: auto;
}
.crm_active {
  padding-bottom: 19px;
  border-bottom: 3px solid #73ff8d;
  position: relative;
  z-index: 1;
}
/* crm end */
/* reviews */
.reviews {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%);
  text-align: center;
  padding-bottom: 76px;
}
.reviews h1 {
  color: #ffffff;
  margin-bottom: 40px;
}
.reviews_b {
  padding: 70px 40px 45px 40px;
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  background-color: #ffffff;
  max-width: 736px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
}
.reviews_b img {
  position: absolute;
  max-width: 100px;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
}
.reviews_info {
  display: flex;
  max-width: 736px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.reviews .my-dots {
  top: -150px;
}
.slick-list,
.slick-slider {
  position: relative;
  display: block;
  z-index: 2;
}
.slick-list {
  margin-left: -32px;
  overflow: visible !important;
}
.slick-slide {
  margin-left: 32px;
}

.my-dots {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  top: -180px;
  padding: 0 73px;
}
.my-dots li.prev_r {
  display: block;
  height: 24px;
  width: 24px;
  background: url(../img/svg/arrow.svg) no-repeat;
  transform: rotate(-180deg);
  background-size: contain;
  cursor: pointer;
}
.my-dots li.next_r {
  display: block;
  height: 24px;
  width: 24px;
  background: url(../img/svg/arrow.svg) no-repeat;
  background-size: contain;
  cursor: pointer;
}
.rewiews_dots {
  position: relative;
  top: 0;
  justify-content: center;
  display: flex !important;
}
.rewiews_dots li {
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  width: 16px;
  height: 3px;
  border-radius: 20px;
  background-color: #e4e9f2;
  margin: 0 5px;
}
.rewiews_dots li.slick-active {
  background-color: #73ff8d;
}
/* reviews end */
/* connect */
.connect h1 {
  text-align: center;
  margin-bottom: 38px;
}
.connect_content {
  border-radius: 4px;
  display: flex;
}
.connect_info {
  background-color: #212b45;
  padding: 50px;
  color: #ffffff;
  max-width: 410px;
  width: 100%;
}
.connect_b:first-child {
  margin-bottom: 24px;
}
.connect_b p a {
  color: #ffffff;
}
.connect_b p:first-child {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.connect_info h4 {
  margin-bottom: 30px;
}
.connect_form {
  background-color: #f7f9fc;
  padding: 50px;
  width: 100%;
}
.connect_form form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.connect_form .field:nth-child(1),
.connect_form .field:nth-child(3) {
  margin-right: 40px;
}
.connect_form .frm-submit {
  margin-top: 35px;
}
/* connect end */
/* footer */
.foоter {
  background: #f7f9fc;
  overflow: hidden;
}
.footer_info {
  display: flex;
  padding: 50px 0 40px 0;
  padding-right: 60px;
}
.footer_line {
  border-bottom: 1px solid #b9c5d6;
  width: 100%;
  bottom: 1px;
}
.footer_nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer_location {
  padding-right: 50px;
}
.footer_location img {
  max-width: 127px;
  margin-bottom: 24px;
}
.footer_pictures {
  display: flex;
  justify-content: space-between;
  margin: 0 -7px;
  margin-bottom: 32px;
}
.footer_pictures img {
  max-width: 24px;
  margin: 0 7px;
}
.footer_location > div p {
  position: relative;
  padding-left: 37px;
  font-size: 14px;
}
.footer_location > div p a {
  color: #2e3a59;
}
.footer_location > div p::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
}
.footer_location > div p:nth-child(1) {
  margin-bottom: 34px;
}
.footer_location > div p:nth-child(1)::before {
  background: url(../img/svg/location.svg) no-repeat 50% 50%;
  background-size: contain;
}
.footer_location > div p:nth-child(2)::before {
  background: url(../img/svg/mail.svg) no-repeat 50% 50%;
  background-size: contain;
}
.footer_nav h6 {
  font-weight: 600;
  margin-bottom: 30px;
}
.footer_b ul li {
  margin-bottom: 20px;
  line-height: 21px;
}
.footer_b ul li:last-child {
  margin-bottom: 0;
}
.footer_b ul li a {
  color: #2e3a59;
}
.footer_b .arrow {
  display: none;
}
.footer_partners {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 39px 50px 39px;
}
.footer_partners img {
  max-height: 50px;
  max-width: 130px;
  width: auto;
  height: max-content;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
.copyright {
  color: #8b93a8;
}
.footer .nav_link .arrow_active {
  border-top: 4px solid #2e3a59;
}
/* footer end */
.top_wrapper .txt_m {
  display: none;
}
.txt_m {
  display: none;
}
/* index end */

/* index2 */
/* section_top  */
.index2 .section_top {
  padding: 180px 0 80px 0;
}
.index2 .top_wrapper {
  max-width: 449px;
}
.index2 .top_wrapper h1 {
  font-size: 28px;
  line-height: 39.2px;
  margin-bottom: 20px;
}
.index2 .top_wrapper img {
  max-width: 752px;
  top: -50px;
  left: 450px;
}
.top_wrapper_s {
  border-radius: 4px;
  background-color: #182035;
  padding: 20px 84px 20px 20px;
}
.top_wrapper_s p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 22.5px;
  opacity: 0.8;
}
.top_wrapper_s li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.top_wrapper_s li::before {
  width: 6px;
  height: 6px;
  background-color: #73ff8d;
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
/* section_top end */
/* countries */
.countries {
  padding: 100px 0 76px 0;
}
.countries h1 {
  margin-bottom: 30px;
}
.company_o {
  margin-bottom: 36px;
}
.countries_row {
  display: flex;
}
.countries_row a,
.countries_row a:hover {
  color: #000000;
}
.countries_row > div {
  margin-right: 60px;
  text-align: center;
  max-width: 95px;
  width: 100%;
  margin-bottom: 24px;
}
.countries_row > div:last-child {
  margin-right: 0;
}
.countries img {
  max-width: 72px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}
/* countries end */
/* service_pack */
.service_pack {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 0 10px 0;
}
.service_pack h1,
.service_pack h2 {
  color: #ffffff;
}
.service_pack_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -40px;
}
.service_pack_b {
  text-align: left;
  max-width: 288px;
  width: 100%;
  margin-bottom: 90px;
  margin-right: 40px;
}
.service_pack_b p {
  font-size: 15px;
  line-height: 22.5px;
}
.service_pack_img {
  max-width: 73px;
  border-radius: 4px;
  background-color: #313d5a;
  padding: 16px;
  margin-bottom: 20px;
}
.service_pack_img img {
  max-width: 40px;
  height: auto;
}
.service_pack #svg_equa,
.service_pack #svg_chart,
.service_pack #svg_layers {
  fill: #ffffff;
}
/* service_pack end */
/* fundamental */
.fundamental {
  background-color: #f7f9fc;
  text-align: center;
}
.fundamental_row {
  display: flex;
  justify-content: space-between;
  max-width: 992px;
  margin: 0 auto;
  padding: 0 32px;
}
.fundamental_b {
  max-width: 165px;
  width: 100%;
}
.fundamental_b p {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
}
.fundamental h2 {
  max-width: 775px;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 65px;
}
.fundamental img {
  max-width: 40px;
  height: auto;
  margin-bottom: 24px;
}
/* fundamental end */
/* index2 end */

/* about us */
.about_us .section_top {
  padding: 280px 0 200px 0;
  background: #000 url(../img/about_us_bg.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.about_us .top_wrapper {
  max-width: 557px;
}
.about_us .top_wrapper h1 {
  font-size: 28px;
  line-height: 39.2px;
}
.about_us .top_wrapper p {
  max-width: 448px;
  padding-right: 90px;
  margin-bottom: 0;
}
.about_us .top_wrapper img {
  max-width: 536px;
  top: -105px;
  left: 670px;
}
.about_us .utility {
  background-color: #f7f9fc;
}
.about_us .utility_txt {
  background-color: #ffffff;
}
/* additionaly */
.additionaly_row {
  display: flex;
  justify-content: space-between;
}
.additionaly img {
  max-width: 544px;
  margin-right: 139px;
  object-fit: cover;
  height: -webkit-fill-available;
}
.additionaly_info h1 {
  margin-bottom: 50px;
}
.additionaly_b {
  margin-bottom: 50px;
  position: relative;
  padding-left: 25px;
  padding-right: 66px;
}
.additionaly_b::before {
  width: 2px;
  height: 20px;
  background-color: #2e3a59;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}
.additionaly_b:last-child {
  margin-bottom: 0;
}
.additionaly_b p {
  margin-bottom: 25px;
}
.additionaly_b a {
  border-radius: 4px;
  background-color: #10182f;
  font-size: 16px;
  line-height: 48px;
  color: #ffffff;
  padding: 14.5px 24px;
}
/* additionaly end */
/* cooperation */
.cooperation {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%);
  color: #ffffff;
  text-align: center;
  padding: 145px 0;
}
.cooperation h1 {
  color: #ffffff;
  margin-bottom: 50px;
}
.cooperation_row {
  display: flex;
  justify-content: space-between;
}
.cooperation_b {
  max-width: 230px;
}
.cooperation_numeric {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  position: relative;
  margin-bottom: 16px;
}
.cooperation_numeric::before {
  width: 30px;
  height: 4px;
  background-color: #73ff8d;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
}
/* cooperation end */
/* advantage */
.advantage {
  background-color: #f7f9fc;
}
.advantage h1 {
  margin-bottom: 40px;
}
.advantage_d {
  display: flex;
  justify-content: space-between;
}
.advantage_d p {
  max-width: 500px;
  font-size: 16px;
  line-height: 32px;
}
/* advantage end */
/* about us end */

/* index3 */
.index3 .section_top {
  padding: 280px 0 228px 0;
}
.index3 .top_wrapper {
  max-width: 448px;
}
.index3 .top_wrapper img {
  position: absolute;
  top: -120px;
  left: 610px;
  max-width: 395px;
  width: auto;
}
.index3 .top_wrapper h1 {
  font-size: 28px;
  line-height: 39.2px;
}
.index3 .top_wrapper p {
  margin-bottom: 0;
}
/* protection */
.protection {
  background-color: #f7f9fc;
}
.protection h1 {
  text-align: center;
  margin-bottom: 40px;
}
.protection_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.protection_b {
  max-width: 256px;
  text-align: left;
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  padding: 30px;
  background-color: #ffffff;
}
.protection_img img {
  max-width: 40px;
  height: auto;
}
.protection_img {
  border-radius: 4px;
  margin-bottom: 20px;
}
/* protection end */
/* more_info */
.more_info {
  padding: 100px 0;
}
.more_info_b {
  padding: 77px 30px;
  text-align: center;
  margin: 0 auto;
  /* box-shadow: 0 0 120px 55px #e4e9f240; */
  box-shadow: 0 -55px 45px -45px #e4e9f240, 0 55px 45px -45px #e4e9f240;
  border-radius: 4px;
}
.more_info a {
  color: #ffffff;
  font-size: 16px;
  line-height: 48px;
  text-align: left;
  border-radius: 4px;
  background-color: #10182f;
  padding: 14.5px 24px;
  padding-left: 52px;
  position: relative;
}
.more_info a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/svg/label.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  left: 24px;
  top: 13px;
}
/* more_info end */
/* index3 end */
/* documentation */
.documentation .header {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%), #2e3a59;
}
.documentation section {
  padding: 234px 0 100px 0;
}
.documentation_info {
  display: flex;
  justify-content: space-between;
}
.documentation_txt_row {
  max-width: 863px;
  width: 100%;
}
.documentation_txt {
  border-left: 2px solid #e4e9f2;
  padding-left: 31px;
  height: 100%;
}
.documentation_info p {
  font-size: 16px;
  line-height: 34px;
}
.documentation_menu li {
  color: #2e3a59;
  font-size: 15px;
  font-weight: 500;
  line-height: 37.5px;
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  padding: 0 14px;
  width: max-content;
  margin-bottom: 14px;
  cursor: pointer;
}
.documentation_menu li:last-child {
  margin-bottom: 0;
}
.documentation_txt p {
  margin-bottom: 30px;
}
.documentation_txt p:last-child {
  margin-bottom: 0;
}
.documentation_txt .txt {
  margin-bottom: 10px;
}
.documentation_active {
  background-color: #e4e9f2;
}
.documentation_menu{
  margin-right: 10px;
}
/* documentation end */
/* index3 */
/* referral */
.referral h1 {
  text-align: center;
  margin-bottom: 64px;
}
.referral_row {
  display: flex;
  justify-content: space-between;
}
.referral_b {
  padding: 77px 72px 38px 72px;
  border: 1px solid #e4e9f2;
  max-width: 544px;
  text-align: center;
  color: #2e3a59;
}
.referral_b img {
  max-width: 160px;
  margin-bottom: 21px;
}
.referral_b h4 {
  margin-bottom: 41px;
}
/* referal end */
/* no_problems */
.no_problems_i {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.no_problems_i img {
  max-width: 544px;
  height: 448px;
  object-fit: cover;
  border-radius: 4px;
}
.no_problems_b {
  max-width: 448px;
}
.no_problems_b h1 {
  margin-bottom: 23px;
}
.no_problems_b p {
  font-size: 20px;
  line-height: 28px;
}
/* no_problems end */
/* index3 end */

/* referral_page */
.referral_page .header {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%), #2e3a59;
}
.referral_page .section_top {
  padding: 322px 0 185px 0;
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 65%);
}
.referral_page .top_wrapper {
  position: relative;
  max-width: 100%;
}
.referral_page .top_wrapper_info {
  max-width: 448px;
  position: relative;
  float: right;
}
.referral_page .top_wrapper h1 {
  margin-bottom: 23px;
  font-size: 28px;
  line-height: 39.2px;
}
.referral_page .top_wrapper p {
  font-size: 16px;
  line-height: 27.2px;
  margin-bottom: 40px;
}
.referral_page .top_wrapper img {
  position: absolute;
  top: -195px;
  left: -415px;
  max-width: 944px;
  width: auto;
}
.referral_page .more_info p {
  margin-bottom: 33px;
}
.referral_benefits {
  padding: 187px 0;
  text-align: center;
}
.referral_benefits p {
  font-size: 18px;
  line-height: 28px;
}
.referral_benefits_i {
  max-width: 640px;
  margin: 0 auto;
}
.for_you {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%);
  color: #ffffff;
}
.for_you h1 {
  color: #ffffff;
}
.for_you_b p {
  margin-bottom: 62px;
}
.for_you_b a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 14.5px 24px;
}
.for_you_b {
  max-width: 544px;
  width: 100%;
  padding: 61px 50px 58px 50px;
  border: 1px solid #e4e9f2;
}
.for_you_b:hover {
  background: #42b958;
  border: 1px solid #42b958;
  color: #ffffff;
  transition: 0.6s;
}
.for_you_b:hover h1 {
  color: #ffffff;
  transition: 0.6s;
}
.for_you_b:hover a {
  background-color: #10182f;
  transition: 0.6s;
}
.for_you_b > div {
  max-width: 352px;
}
.for_you_row {
  display: flex;
  justify-content: space-between;
}
.recommendation {
  background-color: #f7f9fc;
}
.recommendation_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recommendation_b {
  max-width: 448px;
}
.recommendation_info img {
  max-width: 480px;
}
/* referral_page end */
/* crm_page */
.crm_page .section_top {
  position: relative;
  padding: 228px 0 356px 0;
}
.crm_page .section_top img {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -24px;
  max-width: 1256px;
}
.crm_page .top_wrapper {
  max-width: 100%;
  text-align: center;
}
.crm_page .top_wrapper h1 {
  text-align: center;
  padding: 0 61px;
  font-size: 28px;
  line-height: 39.2px;
}
.crm_page .top_wrapper p {
  text-align: center;
  padding: 0 125px;
}
.crm_page .top_wrapper .btn {
  margin: 0 auto;
}
.crm_page .top_wrapper .btn::before {
  background: url(../img/svg/happy.svg) no-repeat 50% 50%;
  background-size: contain;
  top: 15px;
}
/* crm_benefits */
.crm_benefits_heading {
  max-width: 544px;
  margin: 0 auto;
  text-align: center;
}
.crm_benefits h1 {
  margin-bottom: 20px;
}
.crm_benefits_option {
  display: flex;
  padding-bottom: 0;
  /* border-bottom: 1px solid #e4e9f2; */
  margin-bottom: 20px;
  overflow-x: scroll;
  white-space: nowrap;
  position: relative;
}
.crm_benefits_option::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.crm_benefits_option::after {
  content: "";
  background: #e4e9f2;
  height: 1px;
  width: 100%;
  background-size: contain;
  position: absolute;
  bottom: 1.5px;
}
.crm_benefits_option li {
  margin-right: 30px;
  cursor: pointer;
}
.crm_benefits_row {
  border-radius: 8px;
  border-top: 1px solid #e4e9f2;
  border-bottom: 1px solid #e4e9f2;
  border-left: 1px solid #e4e9f2;
  display: flex;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.crm_benefits_b {
  padding: 20px;
  text-align: left;
  max-width: 280px;
  width: 100%;
  position: relative;
  border-right: 1px solid #e4e9f2;
}
.saving {
  position: absolute;
  right: 0;
  top: 15px;
  border-radius: 4px;
  background-color: #73ff8d;
  padding: 6px 17px;
}
.crm_benefits_advanced {
  background-color: #f7f8fc;
  /* border: 1px solid #e4e9f2; */
}
.crm_benefits_title {
  font-weight: 500;
  margin-bottom: 18px;
}
.crm_benefits_price {
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
}
.crm_benefits_price span {
  display: none;
}
.crm_benefits_description {
  margin-bottom: 16px;
}
.crm_benefits_b a {
  display: block;
  width: max-content;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  border-radius: 4px;
  background-color: #10182f;
  padding: 8px 29px;
}
.crm_benefits_b_line {
  margin: 0 -20px;
}
.crm_benefits_every_m {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e9f2;
  margin-top: 20px;
  margin-bottom: 20px;
}
.crm_benefits_every_m span {
  display: none;
}
.crm_benefits_category {
  font-weight: 600;
  margin-bottom: 16px;
}
.crm_benefits_list li {
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}
.crm_benefits_list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/svg/done.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  left: 0px;
  top: 0px;
}
.crm_benefits_more_info {
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  border-radius: 8px;
  border: 2px solid #2e3a59;
  text-align: center;
  cursor: pointer;
}
.crm_benefits_more_info a {
  color: #2e3a59;
  position: relative;
}
.crm_benefits_more_info a::before {
  content: "";
  width: 7px;
  height: 10px;
  background: url(../img/svg/arrow_right.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  right: -37px;
  top: 7px;
  transition: 0.8s;
}
.crm_benefits_item {
  position: relative;
}
.crm_benefits_item_line {
  border-bottom: #e4e9f2 solid 1px;
  position: absolute;
  width: 100%;
  bottom: 1px;
}
/* crm_benefits end */
/* automation */
.automation {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%);
  color: #ffffff;
}
.automation_heading {
  text-align: center;
  max-width: 736px;
  margin: 0 auto;
}
.automation h1,
.automation h2 {
  color: #ffffff;
}
.automation_info {
  display: flex;
  flex-direction: column;
  max-width: 832px;
  margin: 0 auto;
  margin-bottom: 50px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 12px 20px;
}
.automation_b_line {
  border-bottom: 1px solid #3b4b76;
  margin: 0 -20px;
  margin-bottom: 22px;
}
.automation_info .automation_b:first-child {
  padding: 0 20px;
}
.automation_info .automation_b:first-child p {
  font-weight: 500;
  margin-bottom: 9px;
}
.automation_b {
  display: flex;
  justify-content: space-between;
}
.automation_b div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.automation_b .automation_b_heading,
.automation_b h4 {
  display: none;
}
.automation_b p {
  text-align: left;
  max-width: 110px;
  width: 100%;
}
.automation_b p {
  margin-bottom: 24px;
  font-weight: 700;
}
.automation_b p:first-child {
  max-width: 305px;
  width: 100%;
}
.automation_info .automation_b p:first-child {
  color: #94a4d7;
  font-weight: 500;
}
.automation_b p:nth-child(3) {
  color: #73ff8d;
}
.automation_button {
  text-align: center;
}
.automation_button a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 14.5px 24px;
}
/* automation end */
/* possibility */
.possibility {
  background-color: #f7f9fc;
  text-align: center;
  padding: 100px 0 15px 0;
}
.possibility_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 71px;
  margin: 0 -25px;
}
.possibility_b {
  max-width: 200px;
  width: 100%;
  margin: 0 25px;
  margin-bottom: 85px;
}
.possibility img {
  max-width: 40px;
  height: auto;
  margin-bottom: 24px;
}
/* possibility end */
/* crm_page end */
/* legal_page */
.legal_page .header {
  background: linear-gradient(262.85deg, #192038 0%, #2e3a59 100%), #2e3a59;
}
/* business */
.business {
  padding: 228px 0 41px 0;
  text-align: center;
}
.business h1 {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 23px;
}
.business h2 {
  margin-bottom: 16px;
}
.volume {
  display: flex;
  justify-content: center;
  max-width: 670px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.volume ul {
  display: flex;
  margin: 0 -10px;
}
.volume li {
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  color: #2e3a59;
  font-size: 15px;
  line-height: 37.5px;
  padding: 7px 24px;
  padding-left: 50px;
  position: relative;
  margin: 0 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.volume li::before {
  content: "$";
  width: 18px;
  height: 18px;
  background: #73ff8d;
  border-radius: 50%;
  background-size: contain;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translate(0%, -50%);
  font-size: 10px;
  line-height: 1.8;
}
.volume_active {
  background: #73ff8d;
}
.volume .volume_active::before {
  color: #ffffff;
  background: #2e3a59;
}
.business_service {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.8s ease-out;
}
.furture {
  padding-top: 17px;
  border-top: 1px solid #e4e9f2;
  margin-top: 29px;
  display: block;
  opacity: 1;
  height: auto;
}
.arrow_down a::before {
  transform: rotate(90deg);
}
.business_service_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  background-color: #ffffff;
  margin-bottom: 6px;
  padding: 12px;
}
.business_service_b:hover {
  background: #f7f8fc;
}
.business_service_b:last-child {
  margin-bottom: 0;
}
.business_service_b a {
  color: #ffffff;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  padding: 14.5px 29px;
  background-color: #10182f;
  border-radius: 4px;
  height: 100%;
  margin-right: 3px;
}
.business_service_info {
  text-align: left;
  position: relative;
  padding: 0 24px;
}
.business_service_info::before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #2e3a59;
  position: absolute;
  left: -1px;
  top: 2px;
}
.business_service_info h4 {
  margin-bottom: 9px;
}
/* business end */
/* some_services */
.some_services {
  padding: 100px 0 68px 0;
  background-color: #f7f9fc;
  text-align: center;
}
.some_services_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.some_services_b {
  border-radius: 4px;
  max-width: 544px;
  width: 100%;
  margin-bottom: 32px;
  text-align: left;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #e4e9f2;
  height: 100%;
}
.some_services_b:nth-child(3) {
  position: relative;
  /* bottom: 32px; */
}
.some_services_b:nth-child(4) {
  position: relative;
  bottom: 0px;
}

.some_services_b h4 {
  margin-bottom: 6px;
}
.some_services_b p {
  margin-bottom: 20px;
}
.some_services_b ul {
  margin-bottom: 30px;
}
.some_services_b li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 22.5px;
}
.some_services_b li:last-child {
  margin-bottom: 0;
}
.some_services_b li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/svg/done.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  left: 0px;
  top: 0px;
}
.some_services_b a {
  display: block;
  max-width: max-content;
  color: #ffffff;
  font-size: 14px;
  line-height: 48px;
  text-align: center;
  padding: 0 29px;
  background-color: #10182f;
  border-radius: 4px;
}
.some_services_info .slick-slide {
  display: flex;
  background-color: #ffffff;
  border: 1px solid #e4e9f2;
  border-radius: 4px;
}
/* some_services end */
/* with_us */
.with_us {
  text-align: center;
  padding: 100px 0 180px 0;
  background: #000 url(../img/about_us_bg.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.with_us h1 {
  margin-bottom: 40px;
  color: #ffffff;
}
.with_us_row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.with_us_b {
  padding: 44px 30px;
  border-radius: 4px;
  background-color: #434d67;
  color: #ffffff;
  display: flex;
  max-width: 928px;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
}
.with_us_b:last-child {
  margin-bottom: 0;
}
.with_us_b:hover {
  background: #73ff8d;
  color: #2e3a59;
}
.with_us_b:hover .with_us_b_numeric {
  color: #2e3a59;
}
.with_us_b_numeric {
  color: #73ff8d;
  padding-right: 60px;
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  display: flex;
  align-items: center;
}
.with_us_b h4 {
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid #2b3245;
  max-width: 236px;
  width: 100%;
  margin-bottom: 0;
}
/* with_us end */
.legal_page .utility {
  background-color: #f7f9fc;
}
.legal_page .utility_txt {
  background-color: #ffffff;
}
/* question */
.question {
  background-color: #f7f9fc;
  text-align: center;
}
.accordion_info {
  max-width: 808px;
  width: 100%;
  margin: 0 auto;
}
.accordion_info .accordion {
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 22.5px;
  border-radius: 4px;
  border: 1px solid #e4e9f2;
  background-color: #ffffff;
  padding: 18px 24px;
  transition: 0.4s;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
  position: relative;
}
.accordion:last-child {
  margin-bottom: 0;
}
.accordion:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/svg/plus.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  right: 30px;
}
.rmv-cls:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/svg/plus.svg) no-repeat 50% 50%;
  background-size: contain;
}
.accordion_active:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/svg/minus.svg) no-repeat 50% 50%;
  background-size: contain;
}
.panel {
  overflow: hidden;
  text-align: left;
  font-size: 15px;
  line-height: 22.5px;

  padding: 10px 24px;
  margin-bottom: 10px;
}
/* question end */
/* legal_page end */
/* referral_page */
.referral_page .top_wrapper .btn::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/svg/contact_friend.svg) no-repeat 50% 50%;
  background-size: contain;
  top: 15px;
}
/* referral_page end */
/* legal_page */
.crm_benefits_row .slick-slide {
  margin-left: 0;
  max-width: 280px;
  width: 100%;
}
.crm_benefits_row .slick-list {
  margin-left: 0;
}
.crm_benefits_row {
  overflow: hidden;
}
/* legal_page end */

/* overlay_form */

.overlay_form {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  z-index: 2;
}
.overlay_form .popup {
  position: absolute;
  display: flex;
  align-items: center;
  max-width: 640px;
  background: #ffffff;
  border-radius: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  padding: 40px;
  font-family: "Montserrat", sans-serif;
}
.authorization {
  display: flex;
  padding-bottom: 0;
  margin-bottom: 20px;
  overflow-x: scroll;
  white-space: nowrap;
  position: relative;
  /* border-bottom: #e4e9f2 solid 1px; */
}
.authorization::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.authorization_b {
  position: relative;
}
.authorization_line {
  border-bottom: #e4e9f2 solid 1px;
  position: absolute;
  width: 100%;
  bottom: 1px;
}
.authorization li {
  margin-right: 63px;
  font-size: 15px;
  line-height: 22px;
  cursor: pointer;
}
.hide_block {
  display: none !important;
}
.authorization_active {
  padding-bottom: 19px;
  border-bottom: 3px solid #73ff8d;
  position: relative;
  z-index: 1;
}
.overlay_form .popup img {
  width: 60px;
  height: auto;
  margin: 0 30px 0 0;
}
.overlay {
  background: #161616ba;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
}
.overlay.is-on {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}
.overlay .content {
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 680px;
  max-height: 100%;
  height: max-content;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.overlay.is-on .content {
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
}
.overlay.is-on .content::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.content .forms {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 40px;
  overflow: hidden;
}
.desktop_overlay p {
  max-width: 480px;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 20px;
}
#close {
  position: absolute;
  right: 17px;
  top: 33px;
  font-size: 15px;
  cursor: pointer;
  background: url(../img/svg/close_overlay.svg) no-repeat center;
  width: 40px;
  height: 40px;
}
#close p {
  display: none;
}
.form__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -40px;
}
.field_overlay {
  margin-right: 40px;
}
.field_overlay input {
  padding: 8px 20px;
}
.overlay_button {
  max-width: 280px;
  width: 100%;
  margin-right: 40px;
  margin-top: 35px;
}
.developer_login_form .overlay_button {
  margin-top: 10px;
}
.error_message {
  display: none;
  font-size: 15px;
  color: red;
  margin-bottom: 10px;
}
/* overlay end */

/* button top */
#button_top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4e9f2;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button_top:hover {
  cursor: pointer;
  background-color: #212b45;
}
#button_top:hover #arrow_up {
  fill: #ffffff;
}
#button_top:active {
  background-color: #73ff8d;
}
#button_top.show {
  opacity: 1;
  visibility: visible;
}

/* button top end */

/* mobile */
@media only screen and (max-width: 1239px) {
  .wrapper {
    max-width: 1024px;
    padding: 0 40px;
  }
  .utility_info {
    justify-content: center;
  }
  .utility_b {
    max-width: 290px;
    transition: 2s;
  }
  .utility_txt {
    display: block;
    padding: 24px;
  }
  .utility_pic {
    height: 185px;
  }
  .utility_b:hover .utility_pic {
    height: 205px;
  }
  .industry_info {
    justify-content: center;
  }
  .industry_info .slick-list .slick-slide {
    border-radius: 4px;
  }
  .industry_b {
    margin: 0 5px;
  }
  .services .wrapper > .wrapper {
    padding: 0;
    margin: 0 -17px;
  }
  .services_info {
    max-width: 833px;
  }
  .services .wrapper > .my-dots {
    max-width: 941px;
  }
  .crm_info {
    flex-wrap: wrap;
  }
  .crm_b {
    margin-bottom: 40px;
  }
  .crm_benefits_row {
    border-right: 1px solid #e4e9f2;
  }
  .my-dots {
    padding: 0 10px;
  }
  .customers .slick-slide {
    margin-left: 73px;
  }
  .industry {
    text-align: center;
    padding: 100px 0 70px 0;
  }
  .industry_info {
    max-width: 755px;
    margin: 0 auto;
    overflow: hidden;
  }
  .connect_form .frm-submit {
    margin-top: 14px;
  }
  .industry_info .slick-slide {
    margin-bottom: 30px;
  }
  .top_wrapper img {
    top: -10px;
    left: 410px;
  }
  .security_info img {
    left: 540px;
  }
  .footer_nav {
    flex-wrap: wrap;
  }
  .footer_b {
    width: 40%;
    margin-bottom: 30px;
  }
  .footer_pictures {
    justify-content: flex-start;
  }
  .footer_b .arrow {
    display: none;
  }
  .footer_info {
    padding-right: 0;
    padding-bottom: 10px;
  }
  /* index2 */
  .service_pack_info {
    justify-content: space-evenly;
  }
  /* index2 end */
  /* index3 */
  .no_problems_i img {
    max-width: 425px;
  }
  /* index3 end */
  /* referral_page */
  .referral_page .top_wrapper img {
    left: -530px;
  }
  .cooperation {
    padding: 145px 0 105px 0;
  }
  .cooperation_row {
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 640px;
    margin: 0 auto;
  }
  .cooperation_b {
    margin-bottom: 40px;
    margin-right: 20px;
    margin-left: 20px;
  }
  .for_you_b {
    max-width: 444px;
  }
  /* referral_page end */
  /* index3 */
  .index3 .top_wrapper img {
    left: 540px;
  }
  .referral_b {
    padding: 45px 35px;
    max-width: 444px;
  }
  .referral_b img {
    max-width: 130px;
  }
  .referral_b h4 {
    margin-bottom: 30px;
  }
  /* index3 end */
  /* security_page */
  .protection {
    padding: 100px 0 60px 0;
  }
  .protection_info {
    justify-content: space-evenly;
    max-width: 640px;
    margin: 0 auto;
  }
  .protection_b {
    margin: 0 20px;
    margin-bottom: 40px;
  }
  /* security_page end */
  /* legal_page */
  .business {
    padding-top: 188px;
  }
  .some_services_b {
    max-width: 405px;
    border: none;
  }
  .some_services_info .slick-list {
    margin-left: 0;
  }
  .some_services_info {
    overflow: hidden;
    display: block;
  }
  .some_services_info .slick-slide {
    margin-left: 32px;
  }
  .some_services_b {
    margin-bottom: 0;
  }
  .some_services {
    padding: 100px 0;
  }
  .with_us {
    padding: 100px 0;
  }
  .with_us_b {
    padding: 24px 21px 30px 24px;
  }
  .with_us_b_numeric {
    padding-right: 19px;
  }
  .with_us_b h4,
  .with_us_b_numeric {
    font-size: 16px;
    line-height: 22px;
  }
  .additionaly img {
    max-width: 424px;
    margin-right: 90px;
  }
  /* legal_page end */
  /* about_us */
  .advantage_d p {
    max-width: 410px;
  }
  .about_us .top_wrapper img {
    left: 470px;
  }
  /* about_us end */
  /* crm_page */
  .crm_page .section_top {
    padding: 188px 0 316px 0;
  }
  .possibility {
    padding-bottom: 0;
  }
  .possibility_info {
    justify-content: space-evenly;
  }
  /* crm_page end */
  /* documentation */
  .documentation_txt_row {
    max-width: 710px;
  }
  /* documentation end */
}
@media (min-width: 1024px) and (max-width: 1239px) {
  .nav .nav_link {
    margin-right: 16px;
  }
  .nav a,
  .number {
    font-size: 15px;
  }
  .nav .open_form a {
    padding: 10.5px 14px;
  }
}
@media (min-width: 768px) and (max-width: 1239px) {
  .possibility_b {
    margin-right: 45px;
    margin-left: 45px;
  }
}
@media only screen and (min-width: 1024px) {
  .submenu:hover ul {
    position: absolute;
    display: block;
    min-width: max-content;
  }
  .nav_link:hover .arrow {
    border-top: 4px solid #73ff8d;
    transform: rotate(-180deg);
  }
  .nav a:hover,
  .header.default .nav a:hover {
    color: #73ff8d;
  }
  .nav_link:hover .list {
    color: #73ff8d;
  }
}
@media only screen and (max-width: 1023px) {
  .logo {
    display: none;
  }
  .header.default {
    padding: 31px 0;
  }
  .top_wrapper img {
    top: 80px;
    left: 330px;
  }
  .header_burger {
    display: block;
    width: 32px;
    height: 18px;
    margin: 0;
    margin-top: 5px;
    cursor: pointer;
    background: url(../img/svg/menu.svg) no-repeat center;
    background-size: contain;
  }
  .header_menu {
    overflow: scroll;
    padding-right: 0;
  }
  .header_menu_b {
    display: none;
  }
  .header_menu_active > .header_menu_b {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 100%;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    width: 100%;
  }
  .header_burger_active {
    background: url(../img/svg/close.svg) no-repeat center;
    background-size: contain;
    width: 40px;
    height: 40px;
    position: absolute;
    width: 40px;
    right: 40px;
    top: 24px;
    z-index: 2;
    margin-top: 0;
  }
  .header_menu_active {
    background: #182035;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    display: inline-block;
    padding-right: 0;
  }
  .header_menu_active .nav {
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    height: max-content;
  }
  .mobile_logo {
    display: block;
    position: absolute;
    top: -3px;
    left: 0;
    max-width: 127px;
    width: 100%;
  }
  .header_menu_active .mobile_logo {
    top: 28px;
    left: 40px;
  }
  .header_menu_active .nav .nav_link {
    padding: 17px 15px;
    border-bottom: 1px solid #434f71;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    position: unset;
  }
  .header_menu_active .nav .nav_link:first-child {
    border-top: 1px solid #434f71;
    text-align: left;
  }
  .header_menu_active .nav .nav_link:nth-child(6),
  .header_menu_active .nav .nav_link:nth-child(7) {
    border-bottom: none;
    text-align: center;
  }
  .header_menu_active .nav .nav_link:nth-child(6) {
    order: 7;
  }
  .header_menu_active .nav .nav_link:nth-child(7) {
    order: 6;
    margin-top: 43px;
  }
  .header_menu .nav .language_m {
    display: none;
  }
  .header_menu_active .language_m {
    display: block;
    position: absolute;
    top: 37px;
    right: 120px;
    z-index: 2;
  }
  .header_menu_active .language_m ul {
    display: none;
  }
  .header_menu_active .language_m .menu_open {
    display: block;
    border-radius: 4px;
    background-color: #73ff8d;
    left: -12px;
    top: 30px;
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
  }
  .language_m a {
    font-size: 16px;
    color: #ffffff;
  }
  .header_menu_active .menu_open li:hover a,
  .header_menu_active .menu_open li:active a {
    color: #73ff8d !important;
  }
  .language_m .arrow {
    right: -16px;
    top: 6.5px;
  }
  .header_menu_active .nav .language {
    display: none;
  }
  .header_menu_active .nav .arrow {
    right: -16px;
    top: 8px;
  }
  .nav_link_b {
    max-width: 387px;
  }
  .nav_link .list {
    position: relative;
  }
  .header_menu_active .nav .menu_open {
    position: relative;
    background-color: unset;
    top: 0;
    padding: 18px 0 13px 0;
  }
  .nav_link_b {
    position: relative;
    width: max-content;
    margin: 0 auto;
  }
  .customers .slick-slide {
    margin-left: 64px;
  }
  .offices {
    padding-bottom: 260px;
  }
  .offices_map {
    position: absolute;
    right: 0;
    top: 140px;
  }

  /* referral_page */
  .referral_page .section_top {
    padding: 295px 0 165px 0;
  }
  .referral_page .top_wrapper img {
    top: -215px;
  }
  .cooperation {
    padding: 100px 0 60px 0;
  }
  .referral_benefits {
    padding: 100px 0;
  }
  /* referral_page end */
  /* index3 */
  .index3 .top_wrapper img {
    left: 510px;
  }
  .no_problems {
    padding: 180px 0;
  }
  .no_problems_i img {
    position: absolute;
    right: -100px;
  }
  /* index3 end */
  /* legal_page */
  .some_services_info {
    margin-right: -40px;
  }
  .some_services_b {
    max-width: 385px;
  }
  .about_us .section_top {
    padding: 260px 0 260px 0;
  }
  /* legal_page end */
  /* crm_page */
  .crm_page .section_top {
    padding: 148px 0 236px 0;
  }
  .crm_page .top_wrapper h1 {
    text-align: center;
    padding: 0 20px;
    font-size: 24px;
    line-height: 30px;
  }
  .crm_page .top_wrapper p {
    padding: 0 35px;
  }
  /* crm_page end */
}
@media (min-width: 992px) and (max-width: 1239px) {
  .connect_info {
    max-width: 100%;
  }
  .connect_form form {
    justify-content: center;
  }
  .connect_form .field:nth-child(1),
  .connect_form .field:nth-child(3) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  .top_wrapper img {
    top: 180px;
    left: 230px;
  }
  .services_info {
    max-width: 545px;
  }
  .services .wrapper > .my-dots {
    max-width: 620px;
  }
  .utility {
    padding-bottom: 40px;
  }
  .utility_info {
    flex-direction: column;
    align-items: center;
  }
  .utility_b {
    margin-bottom: 20px;
  }
  .utility_b:last-child {
    margin-bottom: 0;
  }
  .utility_b:hover .utility_pic {
    height: 165px;
    margin-top: 0;
  }
  .utility_b:hover .utility_txt {
    padding: 24px;
    margin-bottom: 0;
  }
  .utility_pic {
    height: 165px;
  }
  .utility_txt {
    text-align: center;
  }
  .why_info {
    flex-direction: column;
    align-items: center;
  }
  .caption {
    max-width: 516px;
    text-align: center;
  }
  .industry {
    padding: 60px 0 30px 0;
  }
  .industry_info {
    max-width: 395px;
  }
  .form_d_info {
    flex-direction: column;
  }
  .form_d_heading {
    max-width: 480px;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .customers {
    padding: 60px 0;
  }
  .customers .slick-list {
    overflow: hidden !important;
  }
  .customers .slick-slide {
    margin-left: 80px;
    margin-bottom: 0;
  }
  .reviews_info,
  .reviews_b {
    max-width: 505px;
  }
  .reviews .wrapper > .wrapper {
    margin: 0 -30px;
  }
  .my-dots {
    padding: 0px;
    max-width: 614px;
  }
  .crm_info {
    justify-content: center;
  }
  .offices {
    padding-top: 60px;
  }
  .connect_content {
    flex-direction: column;
  }
  .connect_info {
    max-width: 100%;
  }
  .connect_form form {
    flex-direction: column;
    align-items: center;
  }
  .connect_form .field:nth-child(1),
  .connect_form .field:nth-child(3) {
    margin-left: 40px;
  }
  .top_wrapper img {
    top: 230px;
    left: 80px;
  }
  .security {
    padding: 60px 0 15px 0;
  }
  .offices_map {
    top: 250px;
  }
  .reviews_info,
  .reviews_b {
    max-width: 475px;
  }
  .my-dots {
    max-width: 580px;
  }
  .services_info .slick-list {
    padding-bottom: 30px;
  }
  .services {
    padding-bottom: 30px;
  }
  .footer_partners {
    padding-right: 15px;
    padding-left: 15px;
  }
  .footer_partners img {
    max-height: 40px;
  }
  /* documentation */
  .documentation_info p {
    font-size: 15px;
    line-height: 22.5px;
  }
  .documentation_txt_row {
    max-width: 455px;
  }
  /* documentation end */
  /* index2 */
  .countries img {
    max-width: 50px;
  }
  .countries_row p {
    font-size: 14px;
    line-height: 21px;
  }
  .fundamental_row {
    justify-content: center;
    flex-wrap: wrap;
  }
  .fundamental h2 {
    margin-bottom: 22px;
  }
  .fundamental_b {
    margin-bottom: 40px;
  }
  .fundamental {
    padding: 60px 0 20px 0;
  }
  .service_pack {
    padding: 60px 0 20px 0;
  }
  .service_pack_b {
    margin-bottom: 40px;
  }
  .countries {
    padding: 60px 0 36px 0;
  }
  .company_o {
    margin-bottom: 16px;
  }
  .customers .slick-slide > div {
    margin-bottom: 0;
  }
  /* index2 end */
  /* referral_page */
  .referral_page .section_top {
    padding: 195px 0 95px 0;
  }
  .referral_page .top_wrapper h1 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .referral_page .top_wrapper p {
    font-size: 15px;
    line-height: 22.5px;
    margin-bottom: 20px;
  }
  .referral_page .top_wrapper_info {
    max-width: 350px;
  }
  .more_info_b h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .for_you_row {
    flex-direction: column;
    align-items: center;
  }
  .referral_page .top_wrapper img {
    top: -255px;
    left: -535px;
    max-width: 844px;
  }
  .more_info {
    padding: 60px 0;
  }
  .more_info_b {
    padding: 45px 30px;
  }
  .cooperation {
    padding: 60px 0 20px 0;
  }
  .referral_benefits {
    padding: 60px 0;
  }
  .for_you {
    padding: 60px 0 20px 0;
  }
  .for_you_b {
    margin-bottom: 40px;
  }

  .recommendation_info {
    position: relative;
  }
  .recommendation_b {
    position: absolute;
    left: 0;
    max-width: 380px;
    z-index: 2;
  }
  .recommendation_info img {
    max-width: 440px;
    position: relative;
    left: 390px;
  }
  .recommendation_info h1 {
    font-size: 24px;
    line-height: 30px;
  }
  /* referral_page end */
  /* index3 */
  .index3 .section_top {
    padding-top: 230px;
  }
  .referral_b img {
    max-width: 110px;
  }
  .referral_row {
    justify-content: space-evenly;
  }
  .referral_b {
    padding: 30px 25px;
    max-width: 325px;
  }
  .referral_b h4 {
    padding: 0 50px;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .no_problems_i img {
    left: 430px;
  }
  .no_problems_b {
    max-width: 380px;
  }
  .no_problems_b h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .no_problems_b p {
    font-size: 14px;
    line-height: 21px;
  }
  /* index3 end */
  /* security_page */
  .protection {
    padding: 60px 0 20px 0;
  }
  /* security_page end */
  /* legal_page */
  .some_services {
    padding: 60px 0;
  }
  .with_us {
    padding: 60px 0;
  }
  .additionaly img {
    max-width: 320px;
    margin-right: 60px;
  }
  .additionaly_b {
    padding-right: 20px;
  }
  /* legal_page end */
  /* about_us */
  .advantage_d {
    margin-right: -82px;
  }
  .advantage_d p {
    font-size: 16px;
    line-height: 27px;
    margin-right: 82px;
  }
  .about_us .section_top {
    padding: 110px 0 260px 0;
  }
  .about_us .top_wrapper img {
    left: 350px;
    top: 50px;
  }
  /* about_us end */
  /* crm_page */
  .automation_b {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .automation_b_line {
    display: none;
  }
  .automation_info {
    max-width: 480px;
    padding: 34px 30px;
  }
  .automation_b h4 {
    display: block;
    margin-bottom: 16px;
    text-align: center;
  }
  .automation_b:last-child {
    margin-bottom: 0;
  }
  .automation_b p:last-child {
    margin-bottom: 0;
  }
  .automation_b .automation_b_heading {
    display: flex;
  }
  .automation_b_txt {
    display: flex;
    flex-direction: row-reverse;
  }
  .automation_b_txt div {
    flex-direction: column;
  }
  .automation_b div:first-child {
    align-items: flex-end;
  }
  .automation_b div p:first-child {
    display: none;
  }
  .automation_b div:first-child p {
    text-align: right;
    font-weight: 700;
  }
  .automation_b_heading p:nth-child(2n) {
    color: #94a4d7;
  }
  .possibility {
    padding-top: 60px;
  }
  .possibility h2 {
    margin-bottom: 40px;
  }
  .possibility_b {
    margin-bottom: 48px;
  }
  /* crm_page end */
}
@media only screen and (max-width: 767px) {
  .foоter .wrapper {
    padding: 0;
  }
  .footer_partners {
    display: none;
  }
  .footer_b ul {
    display: none;
  }
  .footer_b .menu_open {
    display: block;
    padding: 0 40px;
    padding-bottom: 17px;
  }
  .footer_b {
    position: relative;
    border-bottom: 1px solid #d8dde3;
    width: 100%;
    margin-bottom: 17px;
  }
  .footer_b .arrow {
    display: block;
    border-top: 4px solid #2e3a59;
    right: 20px;
    top: 50%;
    transform: translate(0%, -50%);
  }
  .footer_b .arrow_active {
    transform: rotate(-180deg);
  }
  .footer_nav h6,
  .footer_location,
  .footer_pictures,
  .copyright {
    padding: 0 40px;
  }
  .footer_info {
    flex-direction: column;
    position: relative;
    padding: 40px 0 30px 0;
  }
  .footer_nav {
    flex-direction: column;
  }
  .footer_location {
    padding-right: 0;
    border-bottom: 1px solid #d8dde3;
    margin-bottom: 17px;
  }
  .footer_location img {
    margin-bottom: 30px;
  }
  .foоter_address {
    position: absolute;
    bottom: 0;
  }
  .footer_nav h6 {
    margin-bottom: 17px;
  }
  .footer_b_container {
    width: max-content;
    position: relative;
  }
  .footer_pictures {
    margin-bottom: 110px;
  }
  .foоter_address {
    bottom: 82px;
  }
  .footer_location > div p:nth-child(1) {
    margin-bottom: 19px;
  }
  .footer_b:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-top: 7px;
  }
  .footer_title {
    position: relative;
    width: max-content;
  }
  .services_info .slick-list {
    margin-left: 0;
  }
  .services .wrapper > .my-dots {
    max-width: 350px;
  }
  .security {
    position: relative;
    padding: 60px 0 325px 0;
  }
  .security_info {
    position: inherit;
  }
  .security_info img {
    max-width: 290px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
  }
  .security_info img {
    top: unset;
    bottom: 30px;
  }
  .services_info {
    max-width: 256px;
  }
  /* documentation */
  .documentation section {
    padding: 150px 0 40px 0;
  }
  .documentation_info {
    flex-direction: column;
  }
  .documentation_menu ul {
    display: flex;
    overflow-x: scroll;
    white-space: nowrap;
    margin-bottom: 38px;
  }
  .documentation_menu li {
    margin-bottom: 0;
    margin-right: 16px;
  }

  .documentation_menu ul::-webkit-scrollbar {
    width: 0;
  }
  .documentation_txt {
    border-left: none;
    padding-left: 0;
  }
  /* documentation end */
  /* index2 */
  .index2 .top_wrapper img {
    left: 150px;
  }
  .index2 .top_wrapper h1,
  .index2 .top_wrapper p,
  .index2 .top_wrapper .top_wrapper_s {
    position: relative;
    z-index: 2;
  }
  .index2 .top_wrapper img {
    left: 80%;
    transform: translate(-50%);
    top: 110px;
  }
  .countries h1 {
    font-size: 24px;
    line-height: 33.6px;
  }
  .countries_row {
    flex-wrap: wrap;
  }
  /* referral_page */
  .referral_page .section_top {
    padding: 110px 0 0 0;
  }
  .referral_page .top_wrapper {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .referral_page .top_wrapper img {
    position: unset;
    margin: 0 -40px;
  }
  .referral_page .top_wrapper_info {
    margin-bottom: 40px;
  }
  .recommendation_info img {
    max-width: 380px;
    left: 300px;
    top: 60px;
  }
  /* referral_page end */
  /* index3 */
  .index3 .top_wrapper_heading {
    max-width: 350px;
  }
  .index3 .top_wrapper img {
    left: 350px;
  }
  .referral_row {
    flex-direction: column;
    align-items: center;
  }
  .referral_b {
    margin-bottom: 40px;
  }
  .referral {
    padding: 60px 0 20px 0;
  }
  .no_problems {
    padding: 60px 0;
  }
  .no_problems_i {
    flex-direction: column;
  }
  .no_problems_b {
    text-align: center;
    margin-bottom: 40px;
  }
  .no_problems_i img {
    position: unset;
  }
  .question h2 {
    margin-bottom: 40px;
  }
  .accordion_info .accordion {
    padding: 16px 24px;
    padding-right: 50px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .accordion:after {
    position: absolute;
    right: 16px;
  }
  /* index3 end */
  /* legal_page */
  .crm_benefits_row {
    overflow: visible;
  }
  .crm_benefits_row .slick-list {
    overflow: hidden !important;
    margin-right: -40px;
    margin-left: 0;
    border-top: 1px solid #e4e9f2;
    border-bottom: 1px solid #e4e9f2;
    border-radius: 8px 0 0 8px;
  }
  .crm_benefits_row,
  .crm_benefits_advanced {
    border: none;
  }
  .crm_benefits_b {
    border-left: 1px solid #e4e9f2;
  }
  .volume {
    margin-bottom: 24px;
  }
  .volume ul {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .volume ul::-webkit-scrollbar {
    width: 0;
  }
  .volume ul {
    margin-right: -20px;
  }
  .volume ul li:last-child {
    margin-right: -20px;
  }
  .volume a:first-child li {
    margin-left: 40px;
  }
  .volume a:last-child li {
    margin-right: 40px;
  }
  .with_us_b {
    flex-direction: column;
    position: relative;
  }
  .with_us_b_numeric {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
  }
  .with_us_b h4 {
    border: none;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 16px;
    max-width: 480px;
  }
  .with_us_b h4,
  .with_us_b .with_us_b_description {
    position: relative;
    left: 26px;
    margin-right: 26px;
  }
  .additionaly_row {
    flex-direction: column-reverse;
  }
  .additionaly img {
    max-width: 100%;
    margin-right: 0;
    max-height: 468px;
  }
  .additionaly_info {
    margin-bottom: 50px;
  }
  /* legal_page end */
  /* about_us */
  .advantage_d {
    flex-direction: column;
  }
  .advantage_d p {
    max-width: 100%;
    margin-bottom: 60px;
  }
  .advantage {
    padding: 60px 0 0 0;
  }
  .about_us .top_wrapper {
    max-width: 460px;
  }
  .about_us .top_wrapper img {
    left: 150px;
    top: 110px;
  }
  /* about_us end */
  /* crm_page */
  .crm_page .section_top img {
    bottom: 0;
  }
  /* crm_page end */
}
@media only screen and (min-width: 680px) {
  .developer_login_form .overlay_button,
  .developer_login_form .overlay_button .frm-submit {
    max-width: 100%;
  }
}
@media only screen and (max-width: 679px) {
  .overlay_button {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 639px) {
  .wrapper {
    padding: 0 15px;
  }
  section {
    padding: 40px 0;
  }
  p {
    font-size: 14px;
    line-height: 21px;
  }
  h1 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 16px;
  }
  h4 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .header {
    padding: 30px 0;
  }
  .header.default {
    padding: 33px 0;
  }
  .section_top {
    padding: 109px 0 191px 0;
  }
  .top_wrapper h1 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .top_wrapper p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
  }
  .top_wrapper img {
    top: unset;
    bottom: -230px;
    left: -20px;
    max-width: 445px;
  }
  .top_wrapper .btn {
    z-index: 2;
  }
  .top_wrapper .txt_d {
    display: none;
  }
  .txt_d {
    display: none;
  }
  .top_wrapper .txt_m {
    display: block;
  }
  .txt_m {
    display: block;
  }
  .crm_buttons {
    margin: 0 -20px;
    align-items: center;
  }
  .crm_buttons .btn {
    margin: 0 20px;
    max-width: 273px;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
  .crm .btn_t::before {
    left: 75px;
  }
  .header_burger_active {
    right: 15px;
  }
  .header_menu_active .mobile_logo {
    left: 15px;
    top: 30px;
  }
  .header_menu_active .language_m {
    right: 86px;
  }
  .reviews .my-dots {
    display: none;
  }
  .services h1 {
    margin-bottom: 20px;
  }
  .offices {
    padding: 40px 0 425px 0;
    position: relative;
  }
  .offices_b {
    position: inherit;
  }
  .offices_heading h2 {
    margin-bottom: 51px;
  }
  .offices_map {
    left: 50%;
    transform: translate(-50%);
    width: 110%;
    top: unset;
    bottom: 395px;
  }
  .offices_map_d {
    position: absolute;
    width: 640px;
    left: -44px;
  }
  .offices_map_address {
    position: absolute;
  }
  .city_address:nth-child(1) {
    left: 314px;
    top: 113px;
  }
  .city_address:nth-child(2) {
    left: 268px;
    top: 106px;
  }
  .city_address:nth-child(3) {
    left: 262px;
    top: 99px;
  }
  .city_address:nth-child(4) {
    left: 121px;
    top: 136px;
  }
  .city_address:nth-child(5) {
    left: 109px;
    top: 123px;
  }
  .city_address:nth-child(6) {
    left: 351px;
    top: 170px;
  }
  .city_address {
    width: 95px;
  }
  .city_address:hover span {
    width: 95px;
  }
  .city_address span {
    top: -10px;
    word-wrap: break-word;
    left: -110px !important;
  }
  /* documentation */
  .documentation_info p {
    font-size: 14px;
    line-height: 21px;
  }
  /* documentation end */
  /* index2 */
  .index2 .section_top {
    padding: 109px 0 30px 0;
  }
  .service_pack {
    padding: 40px 0 0 0;
  }
  .fundamental {
    padding: 40px 0 0 0;
  }
  .countries {
    padding: 40px 0 16px 0;
  }
  .countries img {
    max-width: 35px;
    margin-bottom: 0;
    margin-right: 16px;
  }
  .countries_row a {
    display: flex;
    align-items: center;
  }
  .countries_row > div {
    text-align: center;
    max-width: 145px;
    width: 100%;
    margin-bottom: 24px;
    margin-right: 25px;
  }
  .countries_row > div:last-child {
    margin-right: 25px;
  }
  .countries h1 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .service_pack_b {
    max-width: 260px;
  }
  .city_address:nth-child(1) span {
    left: -181px;
  }
  /* index2 end */
  /* referral_page */
  .referral_page .section_top {
    padding: 90px 0 0 0;
  }
  .recommendation_info img {
    max-width: 300px;
    left: 240px;
    top: 30px;
  }
  .recommendation_b {
    max-width: 360px;
  }
  /* referral_page end */
  /* index3 */
  .index3 .section_top {
    padding-bottom: 150px;
  }
  .index3 .top_wrapper h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .index3 .top_wrapper img {
    left: 300px;
  }
  .index3 .top_wrapper_heading {
    max-width: 290px;
  }
  .index3 .top_wrapper img {
    max-width: 290px;
  }
  .referral {
    padding: 40px 0 0 0;
  }
  .referral h1 {
    margin-bottom: 40px;
  }
  .no_problems_b h1 {
    font-size: 20px;
    margin-bottom: 16px;
    padding: 0 30px;
  }
  /* index3 end */
  /* legal_page */
  .crm_benefits_title {
    font-size: 15px;
    line-height: 22px;
  }
  .saving {
    top: 18px;
    font-size: 15px;
    line-height: 22px;
  }
  .business {
    padding-top: 130px;
  }
  .business h1,
  .business h2 {
    padding: 0 10px;
  }
  .business h1 {
    margin-bottom: 16px;
  }
  .business h2 {
    margin-bottom: 20px;
  }
  .business_service {
    padding-top: 14px;
    margin-top: 16px;
  }
  .business_service_b {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  .business_service_info {
    margin-bottom: 20px;
  }
  .business_service_info h4 {
    margin-bottom: 16px;
  }
  .business_service_info p {
    font-size: 15px;
    line-height: 22px;
  }
  .business_service_b a {
    margin-left: 24px;
  }
  .some_services_b {
    padding: 24px 22px;
  }
  .some_services_b p {
    margin-bottom: 16px;
  }
  .some_services_b ul {
    margin-bottom: 16px;
  }
  .some_services_b li {
    font-size: 14px;
    line-height: 21px;
  }
  .additionaly_info h1 {
    margin-bottom: 24px;
  }
  .additionaly_b {
    margin-bottom: 40px;
    padding-left: 34px;
  }
  .additionaly_b h4 {
    margin-bottom: 16px;
  }
  .additionaly_b p {
    margin-bottom: 20px;
  }
  .additionaly_b::before {
    left: 11px;
  }
  .additionaly_info {
    margin-bottom: 40px;
  }
  .volume li p {
    font-size: 15px;
  }
  /* legal_page end */
  /* about_us */
  .advantage_d p {
    margin-bottom: 40px;
  }
  .advantage {
    padding: 40px 0 0 0;
  }
  .advantage h1 {
    margin-bottom: 24px;
  }
  .about_us .section_top {
    padding: 90px 0 290px 0;
  }
  .about_us .top_wrapper img {
    top: 145px;
    left: 100px;
  }
  .about_us .top_wrapper h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .about_us .top_wrapper p {
    padding-right: 60px;
  }
  /* about_us end */
  /* crm_page */
  .crm_page .section_top {
    padding: 110px 0 283px 0;
  }
  .crm_page .top_wrapper h1 {
    font-size: 20px;
    line-height: 28px;
    padding: 0;
    text-align: left;
  }
  .crm_page .top_wrapper p {
    padding: 0;
    text-align: left;
  }
  .crm_page .top_wrapper .btn {
    margin: 0;
  }
  .crm_page .section_top img {
    max-width: unset;
    width: auto;
    transform: none;
    bottom: -82px;
    left: -65px;
    max-height: 375px;
  }
  .crm_benefits h1 {
    margin-bottom: 16px;
    padding: 0 30px;
  }
  .crm_benefits_heading h2 {
    font-size: 14px;
    line-height: 21px;
    padding: 0 20px;
  }
  .possibility {
    padding-top: 40px;
    padding-bottom: 10px;
  }
  .possibility_info {
    padding: 0 60px;
  }
  .possibility_b {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .possibility_b h4 {
    font-size: 18px;
    line-height: 25px;
  }
  /* crm_page end */
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 40px;
  }
  .services {
    padding: 30px 0;
  }
  .services .my-dots li.prev,
  .services .my-dots li.next {
    display: none !important;
  }
  .services_info {
    margin-right: -15px;
  }
  .services_info .slick-list {
    margin-left: 0;
  }
  .services_info .slick-slide {
    margin-left: 16px;
  }
  .utility h1 {
    padding: 0 30px;
  }
  .utility h2 {
    padding: 0 50px;
  }
  .caption {
    text-align: left;
  }
  .why li {
    padding-left: 26px;
    margin-bottom: 40px;
  }
  .industry {
    padding: 40px 0;
    padding-bottom: 70px;
  }
  .industry h1 {
    padding: 0 40px;
    margin-bottom: 16px;
  }
  .industry h2 {
    padding: 0 25px;
    margin-bottom: 30px;
  }
  .industry_b {
    width: 210px !important;
    height: 240px;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 18px;
  }
  .industry_b h4 {
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 6px;
    margin-bottom: 7px;
  }
  .industry_txt p {
    font-size: 12px;
    line-height: 18px;
  }
  .industry_txt {
    bottom: 16px;
    padding-right: 18px;
  }
  .industry_info {
    max-width: 100%;
    overflow: visible;
  }
  .industry_info .slick-slide {
    margin-left: 16px;
  }
  .industry_info .slick-list {
    margin-left: 0;
  }
  .form_d_heading {
    margin-bottom: 20px;
  }
  .form_d_heading h1 {
    margin-bottom: 20px;
  }
  .form_d_heading li {
    font-size: 14px;
    line-height: 19px;
    padding-left: 46px;
    margin-bottom: 20px;
  }
  .form_d_heading li::before {
    width: 30px;
    height: 30px;
  }
  .checklist_d_heading {
    padding: 20px 11px;
    text-align: left;
  }
  .checklist_d_heading h4 {
    font-size: 20px;
    line-height: 30px;
    padding-right: 60px;
  }
  .checklist_d_form {
    padding: 30px 16px 40px 16px;
  }
  .field {
    max-width: 100%;
  }
  .frm-submit {
    display: block;
    margin: 0 auto;
  }
  .security {
    padding: 40px 0 367px 0;
    position: relative;
  }
  .security h1 {
    margin-bottom: 30px;
  }
  .security li {
    margin-bottom: 30px;
  }
  .customers {
    padding: 50px 0;
  }
  .customers .wrapper {
    padding-right: 0;
  }
  .customers h1 {
    margin-bottom: 30px;
  }
  .crm_info {
    justify-content: flex-start;
    margin: 0;
  }
  .crm h2 {
    margin-bottom: 40px;
  }
  .crm_buttons {
    display: flex;
    flex-direction: column;
  }
  .crm .pc_m {
    margin-bottom: 10px;
  }
  .crm_img {
    margin-bottom: 16px;
  }
  .crm_b {
    margin-left: 10px;
  }
  .reviews h1 {
    padding: 0 30px;
  }
  .reviews_b {
    padding: 70px 17px 45px 17px;
  }
  .reviews {
    padding-bottom: 40px;
  }
  .connect h1 {
    margin-bottom: 20px;
  }
  .connect_info {
    padding: 30px 20px;
  }
  .connect_info h4 {
    margin-bottom: 20px;
    line-height: 24px;
  }
  .connect_form {
    padding: 30px 16px;
  }
  .connect_form .field:nth-child(1),
  .connect_form .field:nth-child(3) {
    margin-left: 0px;
  }
  .connect_form .field:nth-child(1),
  .connect_form .field:nth-child(3) {
    margin-right: 0px;
  }
  .footer_nav h6,
  .footer_location,
  .footer_pictures,
  .copyright {
    padding: 0 15px;
  }
  .footer_b .arrow {
    right: 0px;
  }
  .footer_b .menu_open {
    padding: 0 0 17px 15px;
  }
  .authorization {
    margin-bottom: 16px;
  }
  .authorization_active {
    padding-bottom: 16px;
  }
  .authorization::after {
    width: 180%;
  }
  .content .forms {
    padding: 30px 15px 40px 15px;
  }
  .forms_desktop h1 {
    line-height: 28px;
    margin-bottom: 30px;
  }
  .desktop_overlay p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 30px;
  }
  .services .wrapper {
    padding: 0;
  }
  .services_info {
    max-width: 100%;
  }
  .nav ul li {
    text-align: left;
  }
  .nav ul li a {
    font-size: 14px;
    line-height: 21px;
  }
  .nav_link_b {
    margin: 0;
  }
  .header_menu_active .nav .nav_link {
    text-align: left;
  }
  .header_menu_active .nav .menu_open {
    padding-left: 0;
  }
  #close {
    right: 15px;
    top: 27px;
  }
  .offices_map_d {
    left: -110px;
  }
  .city_address:nth-child(1) {
    left: 248px;
  }
  .city_address:nth-child(2) {
    left: 202px;
  }
  .city_address:nth-child(3) {
    left: 198px;
  }
  .city_address:nth-child(4) {
    left: 55px;
  }
  .city_address:nth-child(5) {
    left: 45px;
  }
  .city_address:nth-child(6) {
    left: 287px;
  }
  /* index2 */
  .index2 .top_wrapper h1 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .top_wrapper_s {
    padding: 20px 39px 20px 15px;
  }
  .index2 .top_wrapper p {
    padding-right: 36px;
  }
  .index2 .top_wrapper img {
    left: 50%;
    max-width: 200%;
  }
  /* index2 end */
  /* referral_page */
  .more_info {
    padding: 50px 0;
  }
  .more_info_b {
    margin: 0 -15px;
    padding: 30px 15px;
  }
  .more_info_b h1 {
    font-size: 18px;
    line-height: 25px;
  }
  .referral_page .more_info p {
    margin-bottom: 20px;
  }
  .cooperation {
    padding: 40px 0 0 0;
  }
  .cooperation h1 {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .referral_benefits {
    padding: 40px 0;
  }
  .referral_benefits p {
    font-size: 14px;
    line-height: 21px;
    padding: 0 10px;
  }
  .for_you {
    padding: 40px 0 0 0;
  }
  .for_you_b {
    padding: 40px 25px;
    text-align: center;
  }
  .for_you_b p {
    margin-bottom: 40px;
  }
  .for_you_b > div {
    max-width: 100%;
  }
  .recommendation_info {
    text-align: center;
    flex-direction: column;
  }
  .recommendation_b,
  .recommendation_info img {
    position: unset;
  }
  .recommendation_info h1 {
    font-size: 20px;
    padding: 0 20px;
  }
  .recommendation_info h1 {
    padding: 0 20px;
  }
  .recommendation_info img {
    max-width: 288px;
    margin-top: 40px;
  }
  /* referral_page end */
  /* index3 */
  .index3 .top_wrapper img {
    position: unset;
    margin: 0 auto;
  }
  .index3 .section_top {
    padding: 110px 0 40px 0;
  }
  .index3 .top_wrapper {
    display: flex;
    flex-direction: column;
  }
  .index3 .top_wrapper p {
    margin-bottom: 28px;
  }
  .referral_b img {
    max-width: 80px;
  }
  .referral_b h4 {
    padding: 0 20px;
    margin-bottom: 12px;
  }
  .no_problems {
    padding: 40px 0;
  }
  .no_problems_b h1 {
    padding: 0 10px;
  }
  .no_problems_b p {
    padding: 0 20px;
  }
  .no_problems_i img {
    height: 240px;
  }
  /* index3 end */
  /* security_page */
  .protection_img {
    margin-bottom: 16px;
  }
  .protection_b h4 {
    margin-bottom: 16px;
  }
  .protection_b {
    margin-right: 0;
    margin-left: 0;
  }
  /* security_page end */
  /* legal_page */
  .crm_benefits_b {
    padding: 24px 20px;
    max-width: 250px;
  }
  .some_services_b {
    max-width: 250px;
  }
  .with_us_b h4 {
    max-width: 219px;
  }
  .with_us_b:nth-child(2) h4 {
    padding-right: 60px;
  }
  .some_services_info .slick-slide {
    margin-left: 16px;
  }
  .crm_benefits_row .slick-slide {
    max-width: 250px;
  }
  /* legal_page end */
  /* about_us */
  .advantage h1 {
    text-align: center;
  }
  .about_us .top_wrapper img {
    top: unset;
    bottom: -350px;
    left: 0;
    max-width: 380px;
  }
  /* about_us end */
  /* crm_page */
  .automation_info {
    padding: 34px 15px 40px 15px;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 30px;
  }
  .automation h1 {
    line-height: 28px;
    padding: 0 20px;
  }
  .automation h2 {
    padding: 0 20px;
  }
  .automation_b h4 {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .automation_b p {
    margin-bottom: 8px;
    font-weight: 500;
  }
  .automation_b_txt {
    padding: 0 15px;
  }
  /* crm_page end */
}
@media only screen and (max-width: 320px) {
  .referral_page .top_wrapper h1 {
    padding-right: 130px;
  }
  .service_pack_info {
    justify-content: flex-start;
  }
}
