@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300; 400;500;700;900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:active,
:focus {
  outline: 0;
}
a:active,
a:focus {
  outline: 0;
}
aside,
footer,
header {
  display: block;
}
body,
html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
}
button,
input,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
.wrapper {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  background: #ECECEC;
}
.container {
  width: 100%;
  max-width: 1190px;
  padding: 0 15px;
  margin: 0 auto;
}
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  background-color: #fff;
}
.header_inner {
  padding: 5px 0;
}
.header_text {
  display: block;
}
.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.header_logo img {
  height: 60px;
  width: 120px;
}
.header_logo span {
  font-weight: 500;
  line-height: 100%;
  color: #2c394b;
  font-size: 16px;
}
.header_logo span .header_small {
  font-size: 10px;
}
.intro {
    background-image: url(../img/hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #000000;
    padding-top: 20px;
}
.intro .top_item-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 280px;
}
.intro_inner {
  padding: 70px 0 18px;

}
.intro_title {
  font-weight: 800;
  font-size: 24px;
  padding-bottom: 12px;
  text-transform: uppercase;

}

.intro_title span {
    display: inline;
}

.intro_title span {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;

}
.intro_arrow {
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 100%;
  cursor: pointer;
  width: 100%;
  height: 40px;
  padding: 10px 0;
  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;
  background: #ece9e8;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.intro_arrow img {
  width: 24px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.intro_arrow.rotate img {
  rotate: 180deg;
}
.intro_label {
  font-weight: 600;
  font-size: 14px;
  line-height: 121.4285714286%;
  margin-bottom: 8px;
}
.intro_list {
  padding-bottom: 4px;
}
.intro_list li {
  font-size: 10px;
  line-height: 120%;
  padding-left: 20px;
  padding-bottom: 8px;
  position: relative;
}
.intro_list li span {
  font-weight: 600;
}
.intro_list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: url(../img/intro/tick.svg) center/cover no-repeat;
}
.intro_img {
  display: none;
  position: relative;
}
.intro_img img {
  position: relative;
  z-index: 4;
}
.intro_img img.bg {
  position: absolute;
  z-index: 0;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 120%;
  max-width: 120%;
}
.intro_link {
  display: none;
}
.top {
  padding-top: 40px;
  padding-bottom: 15px;
}
.top_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 8px;
}
.top_title img {
  width: 12px;
}
.top_item {
  margin-bottom: 36px;
  padding: 16px;
  position: relative;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #2b2b2b;
  background: #fff;
}
.top_item.main {
  -webkit-box-shadow: 0 1.75627px 8.78133px rgba(80, 73, 70, 0.158);
  box-shadow: 0 1.75627px 8.78133px rgba(80, 73, 70, 0.158);
  border: 2px solid #2b2b2b;
  border-radius: 8px 0 8px 8px;
}
.top_item.main .top_item-bage {
  background: #739c44;
}
.top_item-bage {
  position: absolute;
  top: 40%;
  right: 30%;
  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;
  width: 42px;
  height: 38px;
  background: #739c44;
  border-radius: 7px 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
}
.top_item-best {
  position: absolute;
  bottom: 100%;
  right: -1px;
  background: #2b2b2b;
  border: 3px solid #2b2b2b;
  -webkit-box-shadow: 0 -1px 3px rgba(254, 184, 71, 0.47);
  box-shadow: 0 -1px 3px rgba(254, 184, 71, 0.47);
  border-radius: 7px 7px 0 0;
  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;
  gap: 7px;
  padding: 5px 9px;
}
.top_item-best span {
  font-weight: 600;
  font-size: 10px;
  line-height: 120%;
  color: #fff;
}
.top_item-best img {
  height: 12px;
}
.top_item-column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.top_item-info {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top_item-title {
  display: none;
}
.top_item-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 14px;
  text-align: center;
}
.top_item-logo img:nth-child(1) {
  height: 90px;

}
.top_item-logo img:nth-child(2) {
  -o-object-fit: contain;
  object-fit: contain;
  height: 24px;
}
.top_item-rating {
  margin-bottom: 24px;
}
.top_item-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 5px;
}
.top_item-stars img {
  height: 15px;
}
.top_item-rate {
  font-weight: 700;
  font-size: 12px;
  line-height: 116.6666666667%;
  text-align: center;
  color: #000000;
}
.top_item-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 121.4285714286%;
  color: #000000;
  margin-bottom: 8px;
}
.top_item-list {
  padding-bottom: 15px;
}
.top_item-list li {
  font-size: 12px;
  line-height: 120%;
  color: #2c394b;
  padding-left: 22px;
  padding-bottom: 10px;
  position: relative;
}
.top_item-list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(../img/top/tick.png) center/cover no-repeat;
}
.top_item-button {
  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;
  padding: 18px 37px;
  gap: 12px;
  min-width: 220px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0010a7),
    to(#0f23e3)
  );
  background: -o-linear-gradient(left, #0010a7 0, #0f23e3 100%);
  background: linear-gradient(90deg, #0010a7 0, #0f23e3 100%);
  -webkit-box-shadow: 4px 4px 5px rgba(252, 119, 42, 0.3);
  box-shadow: 4px 4px 5px rgba(252, 119, 42, 0.3);
  border-radius: 32px;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  white-space: nowrap;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.top_item-link {
  font-size: 14px;
  line-height: 16px;
  line-height: 114.2857142857%;
  text-align: center;
  display: inline-block;
  width: 100%;
  color: #5b618d;
  padding-top: 20px;
}
.top_item-users {
  padding-bottom: 24px;
  font-weight: 600;
  font-size: 12px;
  line-height: 116.6666666667%;
  color: #000000;
  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;
  gap: 8px;
}
.top_item-users img {
  width: 16px;
  height: 16px;
}
.top_item-usersicon img {
  width: 48px;
}
.top_item-userstext {
  font-size: 12px;
  line-height: 20px;
  color: #2c394b;
}
.top_item-userstext span {
  font-weight: 700;
  font-size: 14px;
}
.top_item-userstext br {
  display: none;
}
.services {
  background: #fff;
  padding: 20px 0 0;
}
.services_title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  line-height: 114.2857142857%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}
.services_images {
  padding-top: 20px;
}
.services_images img {
  width: 100%;
  padding-bottom: 20px;
}
.services_desc {
  display: none;
}
.solution .swiper-wrapper {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.solution_inner {
  margin: 32px 0;
}
.solution_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 116.6666666667%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 22px;
}
.solution_item {
  background: #fff;
  border: 2px solid #2b2b2b;
  border-radius: 12px;
}
.solution_item.main {
  border: 2px solid #2b2b2b;
  -webkit-filter: drop-shadow(0 4px 5px rgba(254, 78, 8, 0.25))
    drop-shadow(-5px -2px 5px rgba(254, 78, 8, 0.3))
    drop-shadow(4px -2px 5.1px rgba(254, 78, 8, 0.29));
  filter: drop-shadow(0 4px 5px rgba(254, 78, 8, 0.25))
    drop-shadow(-5px -2px 5px rgba(254, 78, 8, 0.3))
    drop-shadow(4px -2px 5.1px rgba(254, 78, 8, 0.29));
}
.solution_item.main .solution_item-header {
  background: #2b2b2b;
}
.solution_container {
  padding: 24px 16px 36px;
}
.solution_item-header {
  padding: 9px;
  background: #2b2b2b;
  border-radius: 7px 7px 0 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #fff;
}
.solution_item-logo {
  text-align: center;
  padding-bottom: 20px;
}
.solution_item-logo img {
  height: 30px;
}
.solution_item-stars {
  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;
  gap: 5px;
  margin-bottom: 20px;
}
.solution_item-stars img {
  height: 20px;
}
.solution_item-list {
  margin-bottom: 20px;
}
.solution_item-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 10px;
}
.solution_item-list li img {
  height: 24px;
}
.solution_arrows {
  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;
  gap: 40px;
  margin-top: 23px;
}
.solution_arrows div {
  width: 24px;
  height: 24px;
  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-radius: 50%;
  cursor: pointer;
}
.solution_arrows div img {
  width: 9px;
}
.solution_prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq {
  background: #fff;
  padding: 16px 0 32px;
}
.faq .container {
  max-width: 1000px;
}
.faq_title {
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 16px;
  color: #030e31;
  font-size: 20px;
}
.faq_item {
  padding: 16px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid #BFBFBF;
  box-shadow: 10px 10px 5px #aaaaaa;

}
.faq_item.active .faq_item-arrow {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.faq_item.active .faq_item-content {
  padding-top: 18px;
}
.faq_item-top {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
  line-height: 125%;
  color: #000000;
  font-size: 12px;
}
.faq_item-arrow {
  position: absolute;
  right: 0;
  top: 2px;
  width: 17px;
  height: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.faq_item-content {
  cursor: auto;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 150%;
  color: #000000;
  font-size: 12px;
}
.footer {
  background: #f4f1f0;
}
.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0 60px;
}
.footer_main {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 29%;
  flex: 0 0 29%;
}
.footer_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 128%;
  color: #000;
  margin-bottom: 30px;
  max-width: 140px;
}
.footer_rights {
  font-size: 14px;
  line-height: 157%;
  color: #000;
  max-width: 200px;
  display: none;
}
.footer_rights.mobile {
  display: block;
}
.footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.footer_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 110px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.footer_list li {
  margin-bottom: 4px;
}
.footer_list li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 200%;
  color: #000;
}
.footer_bottom {
  grid-gap: 15px;
  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;
}
.footer_img {
  display: none;
}
.footer_language {
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  position: relative;
  cursor: pointer;
}
.footer_language.active .footer_language-list {
  opacity: 1;
  visibility: visible;
  bottom: 120%;
}
.footer_language-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer_language-img {
  padding-right: 10px;
}
.footer_language-img img {
  width: 25px;
}
.footer_language-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 138%;
  color: #000;
}
.footer_language-arrow {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  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;
}
.footer_language-list {
  min-width: 130%;
  position: absolute;
  bottom: 80%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  right: 0;
  padding: 7px;
  border-radius: 8px;
  background-color: #f4f1f0;
}
.footer_language-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  padding: 5px;
}
.footer_text {
  font-weight: 300;
  font-size: 11px;
  line-height: 166%;
  color: #000;
}
.popup_row {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
.popup_bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.popup_img {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 280px;
  flex: 0 0 280px;
}
.popup_img img:nth-child(1) {
  height: 42px;
}
.popup_img img:nth-child(2) {
  max-width: 250px;
}
.popup_img > img {
  width: 100%;
}
.popup_img span {
  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;
  gap: 10px;
}
.popup_img span img {
  height: 24px;
}
.popup_simg {
  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;
  gap: 3px;
}
.popup_simg img {
  height: 25px;
}
.popup_column {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.popup_title {
  font-weight: 800;
  font-size: 54px;
  color: #2c3035;
  text-align: center;
  margin-bottom: 28px;
}
.popup_title span {
  color: #eb4e71;
}
.popup_text {
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  color: #2b2b2b;
}
.popup_list {
  padding-bottom: 16px;
}
.popup_list li {
  font-size: 20px;
  font-weight: 500;
  padding-left: 28px;
  padding-bottom: 11px;
  position: relative;
}
.popup_list li::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/popup/tick.svg) center/cover no-repeat;
}
.popup_button {
  padding: 20px 50px;
  background: #2b2b2b;
  -webkit-box-shadow: 1px 2px 4.7px rgba(230, 55, 72, 0.45);
  box-shadow: 1px 2px 4.7px rgba(230, 55, 72, 0.45);
  border-radius: 32px;
  margin-top: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-bottom: 12px;
}
.popup_button a {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.pack_timer {
  position: relative;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #2c3035;
  margin-top: 40px;
}
.pack_timer > span {
  font-weight: 300;
}
.pack_timer-time {
  border: 2px solid #ff3447;
  border-radius: 13px;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #2c3035;
  color: #ff3447;
  padding: 10px 42px;
}
.pack_timer-item {
  color: #000;
  display: inline-block;
}
.pack_timer-offer {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 4px;
  display: inline-block;
  white-space: nowrap;
}
.popup_area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.popup_area .popup_block {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-300px);
  -ms-transform: translateY(-300px);
  transform: translateY(-300px);
}
.popup_area.active {
  opacity: 1;
  visibility: visible;
}
.popup_area.active .popup_block {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  border-radius: 16px;
}
.popup_container {
  min-height: 100%;
  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;
}
.popup_block {
  position: relative;
  background-color: #f1f2f9;
  max-width: 900px;
  padding: 36px 26px 38px 35px;
  margin: 0 15px;
  background: #fff;
  border-radius: 10px;
  border: #98c8ff solid 8px;
}
.popup_close {
  position: absolute;
  top: 23px;
  right: 23px;
  cursor: pointer;
}
.popup_close img {
  width: 23px;
}
.adblock {
  position: fixed;
  width: 100%;
  z-index: 10000;
  left: 0;
  top: 0;
  background: #373636;
  padding: 10px 14px 10px 22px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.adblock.hidden {
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
}
.adblock_container {
  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;
  gap: 15px;
  max-width: 1140px;
  margin: 0 auto;
}
.adblock_img {
  position: relative;
  text-align: center;
  margin-bottom: 3px;
  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;
  gap: 3px;
}
.adblock_img img {
  height: 15px;
}
.adblock_img span {
  color: #fff;
  font-weight: 500;
}
.adblock_img span b {
  font-weight: 700;
}
.adblock_close {
  content: "ad";
  position: absolute;
  top: -8px;
  left: -8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 10px;
  cursor: pointer;
  color: #fff;
}
.adblock_label {
  font-weight: 500;
  font-size: 10px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}
.adblock_button {
  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;
  gap: 8px;
  padding: 10px 15px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff404c),
    to(#e63748)
  );
  background: -o-linear-gradient(left, #ff404c 0, #e63748 100%);
  background: linear-gradient(90deg, #ff404c 0, #e63748 100%);
  -webkit-box-shadow: 1px 2px 4.7px rgba(230, 55, 72, 0.45);
  box-shadow: 1px 2px 4.7px rgba(230, 55, 72, 0.45);
  border-radius: 32px;
  font-weight: 700;
  font-size: 14px;
  line-height: 121.4285714286%;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.adblock_button img {
  display: none;
}
.cookies {
  position: fixed;
  bottom: 12px;
  left: 12px;
  padding: 18px 20px;
  z-index: 10000;
  background: #fff;
  border: 0.5px solid rgba(44, 57, 75, 0.38);
  -webkit-box-shadow: 10px 4px 12.5px -3px rgba(231, 231, 231, 0.72);
  box-shadow: 10px 4px 12.5px -3px rgba(231, 231, 231, 0.72);
  border-radius: 11px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.cookies.hidden {
  -webkit-transform: translateY(200%);
  -ms-transform: translateY(200%);
  transform: translateY(200%);
  opacity: 0;
  pointer-events: none;
}
.cookies_text {
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 8px;
  max-width: 300px;
  color: #2c394b;
}
.cookies_text a {
  text-decoration: underline;
  color: inherit;
}
.cookies_close {
  position: absolute;
  top: 9px;
  right: 9px;
  cursor: pointer;
}
.cookies_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  line-height: 121.4285714286%;
  padding: 5px 0;
  text-align: center;
  color: #839ffe;
  cursor: pointer;
}
.cookies_button img {
  width: 12px;
}
@media (min-width: 500px) {
  .intro {
    background-image: url(../img/hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #000000;
    padding-bottom: 0;
    max-height: 100% !important;

  }
  .intro_arrow {
    opacity: 0;
    pointer-events: none;
  }
  .services_images {
    display: none;
  }
  .services_desc {
    display: block;
    padding: 30px 0 20px;
  }
  .services_desc img {
    width: 100%;
  }
  .solution_inner {
    margin: 50px 0;
  }
  .adblock_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .adblock_label {
    text-align: left;
  }
}
@media (min-width: 767px) {
  .header_inner {
    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: 10px 0;
  }
  .header_text {
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 115%;
    color: #000000;
  }
  .header_logo {
    gap: 10px;
  }
  .header_logo img {
    height: 60px;

  }
  .header_logo span {
    font-size: 18px;
  }
  .header_logo span .header_small {
    font-size: 10px;
  }
  .intro_inner {
    padding: 80px 0 30px;

  }
  .intro_title {
    font-size: 36px;
    padding-bottom: 16px;
  }
  .intro_title span {
    font-size: 20px;
    display: inline-block;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .intro_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .intro_label {
    font-size: 18px;
  }
  .intro_list li {
    font-size: 12px;
  }
  .intro_list {
    padding-bottom: 20px;
  }
  .intro_list li {
    padding-bottom: 12px;
    font-size: 12px;
  }
  .intro_img {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .intro_img img {
    max-width: 100%;
  }
  .intro_link {
    font-weight: 600;
    font-size: 16px;
    line-height: 115%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #2b2b2b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .intro_link img {
    width: 18px;
  }
  .top_title {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .top_title img {
    width: 16px;
  }
  .top_title br {
    display: none;
  }
  .top_item {
    padding: 25px;
  }
  .top_item-bage {
    width: 56px;
  }
  .top_item-bage {
    height: 56px;
  }
  .top_item-best span {
    font-size: 12px;
  }
  .top_item-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 122.7272727273%;
    text-align: center;
    margin-bottom: 14px;
    color: #2c394b;
  }
  .top_item-title {
    display: block;
  }
  .top_item-logo img:nth-child(1) {
    height: 90px;
  }
  .top_item-logo img:nth-child(2) {
    height: 28px;
  }
  .top_item-logo {
    padding-bottom: 20px;
  }
  .top_item-stars img {
    height: 20px;
  }
  .top_item-stars {
    gap: 6px;
  }
  .top_item-rate {
    font-size: 12px;
  }
  .top_item-list li {
    font-size: 14px;
  }
  .top_item-list {
    padding-bottom: 0;
  }
  .top_item-link {
    padding-top: 24px;
  }
  .top_item-users {
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .top_item-users img {
    width: 20px;
    height: 20px;
  }
  .top_item-userstext {
    font-size: 14px;
  }
  .top_item-userstext br {
    display: inline;
  }
  .top_item-userstext span {
    font-size: 16px;
  }
  .services {
    padding: 30px 0 10px;
  }
  .services_title {
    font-size: 18px;
  }
  .solution_inner {
    margin: 70px 0;
  }
  .solution_title {
    font-size: 30px;
  }
  .solution_container {
    padding: 44px 16px 54px;
  }
  .faq {
    padding: 24px 0 46px;
  }
  .faq_title {
    font-size: 36px;
  }
  .faq_item {
    margin-bottom: 16px;
    border-radius: 12px;
    padding: 20px;
  }
  .faq_item-top {
    font-size: 16px;
  }
  .faq_item-content {
    font-size: 14px;
  }
  .footer_rights {
    display: block;
  }
  .footer_rights.mobile {
    display: none;
  }
  .adblock_column {
    gap: 20px;
  }
  .adblock_img img {
    height: 20px;
  }
  .adblock_img span {
    font-size: 20px;
  }
  .adblock_close {
    top: -14px;
    left: -14px;
  }
  .adblock_label {
    font-size: 14px;
  }
  .adblock_button img {
    display: block;
  }
}
@media (min-width: 900px) {
  .top_item {
    padding: 35px;
    border-radius: 12px;
  }
  .top_item.main {
    border-radius: 12px 0 12px 12px;
  }
  .top_item.main .top_item-cta {
    -ms-flex-line-pack: start;
    align-content: start;
  }
  .top_item .top_item-cta {
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .top_item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .top_item-rating {
    margin-bottom: 0;
  }
  .top_item-button {
    font-size: 18px;
  }
  .top_item-button img {
    display: none;
  }
  .solution_arrows {
    display: none;
  }
}
@media (min-width: 1023px) {
  .header_text {
    font-size: 20px;
  }
  .header_logo img {
    height: 60px;
  }
  .header_logo span {
    font-size: 22px;
  }
  .header_logo span .header_small {
    font-size: 12px;
  }
  .intro_inner {
    padding: 90px 0 40px;
  }
  .intro_title {
    font-size: 46px;
  }
  .intro_title span {
    font-size: 24px;
  }
  .intro_label {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .intro_list li {
    font-size: 14px;
  }
  .intro_list {
    padding-bottom: 30px;
  }
  .intro_list li {
    font-size: 14px;
  }
  .intro_list li::after {
    width: 18px;
    height: 18px;
  }
  .intro_img {
    margin-top: -5%;
  }
  .intro_link {
    font-size: 20px;
  }
  .intro_link img {
    width: 23px;
  }
  .top_title {
    font-size: 14px;
  }
  .top_title img {
    width: 20px;
  }
  .top_item {
    padding: 40px 40px 5px 50px;
  }
  .top_item-bage {

    width: 68px;
  }
  .top_item-bage {
    height: 68px;
  }
  .top_item-logo img:nth-child(1) {
    height: 116px;
  }
  .top_item-logo img:nth-child(2) {
    height: 32px;
  }
  .top_item-logo {
    padding-bottom: 27px;
  }
  .top_item-rating {
    padding: 9px 16px;
  }
  .top_item-stars img {
    height: 24px;
  }
  .top_item-rate {
    font-size: 14px;
  }
  .top_item-label {
    font-size: 16px;
  }
  .top_item-label {
    margin-bottom: 18px;
  }
  .top_item-list li {
    font-size: 14px;
    padding-bottom: 16px;
    padding-left: 26px;
  }
  .top_item-list li::after {
    width: 16px;
    height: 16px;
    top: 1px;
  }
  .top_item-button img {
    display: block;
  }
  .top_item-users {
    font-size: 16px;
  }
  .top_item-users img {
    width: 24px;
    height: 24px;
  }
  .services {
    padding: 40px 0 20px;
  }
  .services_title {
    font-size: 22px;
  }
  .solution_inner {
    margin: 90px 0;
  }
  .solution_title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .solution_container {
    padding: 54px 20px 54px;
  }
  .solution_item-logo {
    padding-bottom: 26px;
  }
  .solution_item-stars {
    margin-bottom: 30px;
  }
  .solution_item-list li {
    margin-bottom: 26px;
  }
  .solution_item-list {
    margin-bottom: 30px;
  }
  .faq {
    padding: 38px 0 58px;
  }
  .faq_title {
    font-size: 44px;
  }
  .faq_item {
    padding: 26px 31px;
  }
  .faq_item-top {
    font-size: 18px;
  }
  .faq_item-content {
    font-size: 16px;
  }
  .adblock_column {
    gap: 30px;
  }
  .adblock_img img {
    height: 24px;
  }
  .adblock_img span {
    font-size: 24px;
    padding-top: 2px;
  }
  .adblock_close {
    font-size: 16px;
  }
  .adblock_label {
    font-size: 18px;
  }
  .adblock_button {
    font-size: 16px;
    padding: 12px 54px;
  }
}
@media (min-width: 1200px) {
  .header_logo {
    gap: 14px;
  }
  .header_logo img {
    height: 60px;
  }
  .header_logo span {
    font-size: 27px;
  }
  .header_logo span .header_small {
    font-size: 14px;
  }
  .intro_inner {
    padding: 105px 0 50px;
  }
  .intro_title {
    font-size: 56px;
  }
  .intro_title span {
    font-size: 28px;
  }
  .intro_list li {
    font-size: 16px;
  }
  .intro_list::after {
    width: 20px;
    height: 20px;
  }
  .intro_list li {
    font-size: 16px;
  }
  .top_item {
    padding: 56px 50px 60px 60px;
  }
  .top_item-row {
    gap: 26px;
  }
  .top_item-label {
    font-size: 20px;
  }
  .top_item-label {
    margin-bottom: 24px;
  }
  .top_item-button {
    padding: 20px 23px;
    font-size: 20px;
  }
  .services {
    padding: 50px 0 30px;
  }
  .services_title {
    font-size: 24px;
  }
  .solution_inner {
    margin: 120px 0;
  }
  .solution_title {
    font-size: 40px;
    margin-bottom: 36px;
  }
  .solution_container {
    padding: 74px 30px 54px;
  }
  .adblock_column {
    gap: 45px;
  }
  .adblock_img img {
    height: 28px;
  }
  .adblock_img span {
    font-size: 27px;
  }
  .adblock_close {
    font-size: 18px;
  }
  .adblock_label {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .popup_title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .footer_language-list {
    right: auto;
    left: 0;
  }
  .footer_inner {
    display: block;
    padding: 50px 0;
  }
  .footer_title {
    display: none;
  }
  .footer_rights {
    max-width: none;
  }
  .footer_row {
    display: block;
  }
  .footer_lists {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid #2e384a;
  }
  .footer_img {
    display: block;
    max-width: 245px;
  }
  .footer_img img {
    width: 100%;
  }
  .footer_text {
    margin-bottom: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid #2e384a;
    font-size: 12px;
  }
  .popup_bg {
    display: none;
  }
  .popup_img {
    display: none;
  }
}
@media (max-width: 600px) {
  .popup_title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .popup_text {
    margin-bottom: 24px;
  }
  .popup_button {
    padding: 20px 20px;
    width: 100%;
  }
  .popup_button img {
    display: none;
  }
  .popup_block {
    padding: 30px;
  }

  .top_item-bage {
    right: 5%;
    top: 5%;
  }
}
@media (max-width: 500px) {
  .intro .top_item-button {
    width: 100%;
  }
  .popup_title {
    font-size: 30px;
  }
  .popup_text {
    font-size: 20px;
  }
  .popup_list li {
    font-size: 16px;
  }
  .popup_button a {
    font-size: 16px;
  }
  .pack_timer {
    margin-top: 20px;
  }
  .pack_timer-time {
    padding: 10px 25px;
    font-size: 34px;
  }
  .popup_block {
    padding: 30px 20px;
  }
  .cookies {
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    bottom: auto;
    padding: 10px;
    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;
  }
  .cookies.hidden {
    -webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
  }
  .cookies_text {
    margin-bottom: 0;
  }
  .cookies_close {
    display: none;
  }
}
@media (any-hover: hover) {
  .top_item-button:hover {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
  }
  .faq_item:hover:hover .faq_item-arrow {
    padding-bottom: 15px;
  }
  .footer_list li a:hover {
    text-decoration: underline;
  }
  .footer_language-item:hover {
    background-color: #222b3e;
  }
  .adblock_button:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .cookies_text a:hover {
    text-decoration: none;
  }
  .cookies_button:hover {
    text-decoration: underline;
  }
}


