@import "general.css";
/*begin my css */


/*   Alert styles   */



.alert{
  display: none;
  position: fixed;
  left: 10%;
  top: 15%;
  right: 10%;
  z-index: 10;
}
.alert .container{
  width: 100%;
  padding: 0;
}
.alert #goodMessage{
  border: 1px solid #00c400;
}
.section_img {
    padding: 50px 0;
}
.section_img .title{
    color:#Fff;
}
.alert.alert--active{
  display: block;
}
.message{
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.my-alert__close{
  position: absolute;
  right: 15px;
  top: 10px;
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: url(../img/close_black.svg) center / contain no-repeat;
}
.message.fancybox-content{
  max-width: 95%;
}




/*   Alert styles END   */



.container {
  width: 1500px;
  margin: 0 auto;
}
.header_top {
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 4;
  transition: 1s;
  background-color: #fff;
}
.header_top.scroll {
  box-shadow: 0 0px 4px rgb(0 0 0 / 12%);
}
.header_top.hide,
.header_top.scroll.hide{
  transform: translateY(-105%);
}
.header_top .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: block;
  width: 145px;
  height: 45px;
  flex-shrink: 0;
  margin-right: 180px;
  background: url('../img/logo_png.png') center / contain no-repeat;
}
.head_menu {
  display: flex;
  margin-left: 0;
  margin-right: auto;
}
.head_menu > li:not(:last-child) {
  margin-right: 40px;
}
 .menu_link--main{
    display:none;
}
.menu_link {
  font-size: 20px;
  font-weight: bold;
  color: #0E254A;
  position: relative;
}
.menu_link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background-color: #0E254A;
  opacity: 0;
  transition: 0.4s;
}
.sub_menu_link {
  position: relative;
  z-index: 1;
}
.sub_link--main{
  display:none;
}
.sub_menu_link:hover {
  z-index: 2;
}
.sub_menu_link .menu_link {
  position: relative;
  z-index: 2;
}
.sub_menu_link:hover > .menu_link:after,
.sub_menu_link > .menu_link.active:after {
  opacity: 1;
}
.sub_menu {
  position: absolute;
  width: 300px;
  top: -20px;
  left: -20px;
  opacity: 0;
  z-index: 1;
  transition: 0.3s;
  pointer-events: none;
  transform-origin: 50% -50px;
  transform: rotateX(-15deg);
}
.sub_menu_list {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 70px 0 10px;
  border-radius: 25px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}
.sub_menu_link:hover > .sub_menu,
.sub_link:hover > .sub_menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.sub_link {
  display: block;
  padding: 10px 20px;
  color: #232323;
  font-size: 18px;
}
.sub_link:hover {
  color: #fff;
  background-color: #5087de;
}
.head_tel {
  display: table;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
  color: #0E254A;
}
.head_tel:hover {
  color: #5087DE;
}
.head_login {
  font-size: 20px;
  font-weight: bold;
  color: #5087DE;
  text-decoration: underline;
}
.head_login:hover{
  color: #4478cc;
}
.try_btn {
  display: block;
  width: 250px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: #25D77E;
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  margin-left: 30px;
  transition: 1s;
  white-space: nowrap;
  box-shadow: 0px 1px 5px rgb(0 0 0 / 34%);
}
.blue_btn,
.red_btn,
.try_btn,
.tel_form_btn{
  position: relative;
  overflow: hidden;
}
.try_btn:before,
.red_btn:before,
.blue_btn:before,
.tel_form_btn:before{
  content: "";
  position: absolute;
  top: -40%;
  right: 110%;
  width: 30px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(20deg);
}
.try_btn:hover{
  background-color: #23cc77;
}
.try_btn:hover:before,
.red_btn:hover:before,
.blue_btn:hover:before,
.tel_form_btn:hover:before{
  right: -50%;
  transition: 1s;
}

.try_btn.hide{
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  width: 0;
}

.mob_menu {
  display: none;
  width: 30px;
  flex-shrink: 0;
  margin-right: 30px;
  position: relative;
}
.menu_btn {
  display: block;
  cursor: pointer;
}
.menu_btn span {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #0E254A;
  transform: rotate(0deg);
  transition: 0.4s;
}
.menu_btn:hover span,
.mob_menu.active .menu_btn span {
  width: 100%;
  background-color: #0E254A;
}
.menu_btn .menu2,
.menu_btn .menu3 {
  margin-top: 5px;
}
.menu_btn .menu1,
.menu_btn .menu3 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.mob_menu.active .menu1 {
  transform: rotateZ(45deg) translate(5px, 6px);
}
.mob_menu.active .menu2 {
  opacity: 0;
  transform: translateX(-100%);
}
.mob_menu.active .menu3 {
  transform: rotateZ(-45deg) translate(6px, -6px);
}
.under_nav {
  position: absolute;
  display: none;
  left: 0;
  top: 100%;
  margin-top: 15px;
  width: 250px;
  max-height: 350px;
  border-radius: 0 0 10px 10px;
  overflow: auto;
  z-index: 3;
  /*overflow: hidden;*/
  background-color: #fff;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
}
.under_nav .menu {
  flex-direction: column;
}
section {
  padding: 90px 0;  
}
.main_section{
  padding-bottom:0;
}
.breadcrumbs{
  display:none;
}
.page {
  padding-top: 160px;
}
.main_block {
  padding-top: 30px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.main_block .text_item {
  font-weight: 500;
}
.title {
  font-size: 46px;
  font-weight: bold;
  color: #0E254A;
  margin-bottom: 30px;
}
.title.title_center {
  text-align: center;
}
.title.small_title {
  font-size: 30px;
}
.text_item {
  font-size: 20px;
  line-height: 146%;
  overflow:hidden;
}
.text_item img{
   display:block;	
   max-width:100%;
}
.text_item--review{
  max-height:250px;
}
.text_item p{
  line-height:155%;
}
.ov-x{
  overflow-x:hidden;
}
.main_btn {
  display: table;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px 50px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0px 1px 5px rgb(0 0 0 / 34%);
}
.blue_btn {
  color: #fff;
  background-color: #5087DE;
}
.blue_btn:hover{
  background-color: #477bce;
}
.main_img {
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
}
.main_img_half {
  width: 48%;
}
.main_img_half .main_img_block:last-child {
  margin-bottom: 0;
}
.main_img_block {
  position: relative;
  margin-bottom: 80px;
}
.main_img_item {
  border-radius: 0 50px 50px 0;
  overflow: hidden;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
}
.main_img_item img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.main_logo {
  position: absolute;
  width: 230px;
  padding: 10px 10px 20px;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
}
.main_logo_1 {
  right: 50px;
  top: -50px;
}
.main_logo_1 .main_logo__img img {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
}
.main_logo_2 {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}
.main_logo_3 {
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
}
.main_logo__img {
  border-radius: 40px;
  height: 140px;
  overflow: hidden;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.main_logo__img img {
  display: block;
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}
.main_img_block_2 {
  width: 90%;
}
.main_img_block_3 .main_img_item {
  border-radius: 50px 0 0 50px;
}
.main_logo__name {
  font-weight: bold;
  margin-bottom: 5px;
}
.main_logo__text {
  font-size: 13px;
}
.main_logo__name,
.main_logo__text {
  text-align: center;
  padding: 0 5px;
}
.download_text {
  display: none;
  color: #5087DE;
  font-weight: 500;
  width: 200px;
  overflow: hidden;
  border-radius: 10px;
  max-width: 90%;
}
.download_text:hover {
  text-decoration: underline;
}
.download_text a{
  display:block;
}
.download_text img{
  display: none;
  width: 100%;
  object-fit: cover;
}
.download_text_market .download_market,
.download_text_appstore .download_appstore{
  display: block;
}
.download_text_market .download_appstore,
.download_text_appstore .download_market{
  display: none;
}
.center {
  text-align: center;
}
.fw_500 {
  font-weight: 500;
}
.main_video {
  width: 80%;
  height: 500px;
  margin: 60px auto 0;
  position: relative;
}
.main_video iframe {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.main_video.active iframe {
  opacity: 1;
  pointer-events: auto;
}
.main_video_img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: 40px;
}
.main_video_img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(3, 7, 15, 0.5), transparent);
}
.main_video_img img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.play_btn {
  position: absolute;
  width: 120px;
  height: 70px;
  left: 50%;
  top: 50%;
  cursor: pointer;
  z-index: 3;
  transform: translate(-50%, -50%);
  background: url('../img/play_icon.svg') center left 53% / 30px 25px no-repeat, #5087DE;
}
.main_video:hover{
  cursor:pointer;
}
.play_btn:hover{
  background-color:#3f74c7;
}
.main_video:hover .main_video_img:after{
  background: linear-gradient(180deg, rgb(3 7 15 / 22%), transparent);
}
.advan_list {
  margin: 75px 0 20px;
  display: flex;
  justify-content: space-between;
}
.advan_item {
  text-align: center;
  width: 30%;
}
.advan_list .advan_item:nth-child(1){transition-delay: 0.2s;}
.advan_list .advan_item:nth-child(2){transition-delay: 0.6s;}
.advan_list .advan_item:nth-child(3){transition-delay: 1s;}

.advan_item.way{
  opacity: 0;
  transition: 1s;
  transform: translateY(40px);
}
.advan_item.way.way--active{
  opacity: 1;
  transform: none;
}
.advan_img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advan_img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.advan_name {
  font-size: 28px;
  font-weight: bold;
  color: #0E254A;
  margin-bottom: 20px;
}
.advan_text {
  font-size: 20px;
  color: #0E254A;
  line-height: 155%;
}
/*.section_img {
  padding: 0;
}*/
.section_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.pay_block {
  position: relative;
  margin-top: -100px;
}
.pay_block--main{
  margin-top:-70px;
}
.pay_block img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.pay_block .container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.pay_info {
  width: 560px;
  padding: 50px;
  margin-left: 100px;
  border-radius: 25px;
  background-color: #EDF0F7;
  transform: translateY(-80px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}
.pay_info:after,
.pay_info:before {
  content: "";
  position: absolute;
  background-color: #EDF0F7;
}
.pay_info:after {
  width: 230px;
  height: 2px;
  left: 99%;
  bottom: 60px;
  transform-origin: left;
  transform: rotateZ(13deg);
}
.pay_info:before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 100%;
  bottom: 0;
  margin-left: 205px;
}
.pay_info_title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.more_btn {
  display: table;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  color: #5087DE;
  text-decoration: underline;
}
.more_btn.center_more {
  margin-left: auto;
  margin-right: auto;
}
.more_btn:hover {
  text-decoration: none;
}
.about_slider .title {
  font-size: 30px;
}
.slider_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider_row.slider_row_reverse {
  flex-direction: row-reverse;
}
.slider_row_reverse {
  margin-top: 60px;
}
.about_slider {
  width: 35%;
  margin-left: 60px;
}
.slider_block {
  width: 50%;
}
.app_slider .slick-slide {
  outline: none;
}
.slide_app__img {
  border-radius: 30px;
  margin: 5px 10px 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.slide_app__img img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.slick-slide .slide_app__name span,
.slick-slide .slide_app__name:before{
  transition-delay: 0s;
}
.slide_app__name {
  font-size: 20px;
  text-align: right;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.slide_app__name span{
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.8s;
  transform: translateX(30px);
}
.slide_app__name:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  margin-right: 10px;
  border-top: 2px solid #0E254A;
  transition: 0.3s;
  transition-delay: 1.4s;
}
.slick-current .slide_app__name:before{
  width: 40px;
  transition-delay: 1.3s;
}
.slick-current .slide_app__name span{
  transform: none;
  opacity: 1;
  transition-delay: 0.8s;
}
.slick-dots {
  display: flex;
  justify-content: center;
}
.slick-dots > li button {
  width: 0;
  height: 0;
  font-size: 0;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  background-color: rgba(112, 112, 112, 0.4);
}
.slick-dots > li:not(:last-child) {
  margin-right: 20px;
}
.slick-dots > .slick-active button {
  background-color: #0E254A;
}
.tel_request {
  margin-top: 80px;
}
.tel_request .text_item{
  font-weight:500;
}
.tel_request.mt_0 {
  margin-top: 0;
}
.mb_80 {
  margin-bottom: 80px;
}
.tel_form {
  position: relative;
  width: 600px;
  max-width: 100%;
  margin: 30px auto 0;
  font-size: 20px;
}
.tel_form .input_err{
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.tel_form.mt_0 {
  margin-top: 0;
}
.tel_form_input {
  width: 100%;
  display: block;
  padding: 25px 40px;
  border: none;
  outline: none;
  font-weight: bold;
  border-radius: 45px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  -webkit-appearance: none;
}
.tel_form_btn {
  position: absolute;
  top: 50%;
  right: 10px;
  color: #fff;
  border: none;
  outline: none;
  font-weight: 500;
  cursor: pointer;
  padding: 17px 30px;
  border-radius: 35px;
  background-color: #5087DE;
  transform: translateY(-50%);
}
.tel_form_btn:hover{
  background-color: #477bce;
}
.tel_form_btn.disabled {
    cursor: default;
    pointer-events: none;
    /* filter: grayscale(100%); */
}
.product_slider {
  height: 700px;
  margin-left: -20px;
}
.product_slider .slick-slide {
  outline: none;
  height: auto;
}
.product_slider .slick-track {
  display: flex;
  height: 100%;
}
.prod_item {
  position: relative;
  height: 570px;
  transition: 1s;
  opacity: 0.5;
  margin: 45px 20px 30px;
  border-radius: 40px;
  pointer-events: none;
  transform: scale(0.94);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.product_slider .slick-current .prod_item{
  margin-right:40px;
  margin-left:20px;
}
.prod_item.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  height: 630px;
  margin-top: 20px;
}
.prod_item.active .prod_img {
  height: 350px;
}
.prod_img {
  display: block;
  height: 270px;
  overflow: hidden;
  transition: 1s;
  border-radius: 40px 40px 0 0;
}
.prod_img img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.prod_text {
  text-align: center;
  padding: 40px 30px;
}
.prod_text .title {
  display: block;
  font-size: 32px;
  margin-bottom: 15px;
}
.prod_text .more_btn {
  margin: 50px auto 0;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}
.prod_text .text_item {
  max-height: 110px;
  overflow: hidden;
}
.product_scroll {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: -30px;
  background-color: #fff;
  border-radius: 30px;
  height: 28px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.product_scroll_item {
  position: relative;
  height: 26px;
  width: 50px;
  margin-left: 10%;
  border-radius: 50px;
  background-color: #5087DE;
}
.product_scroll_item img {
  display: block;
  width: 70px;
  position: absolute;
  left: 60%;
  top: 70%;
  transform: translate(-50%, -50%);
}
.product_section {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.product_slider {
  width: 130%;
}
.product_slider .slick-dots{
  padding-right: 25%;
}
.serv-part{
  display:flex;
  justify-content: center;
}
.serv_tab {
  margin: 60px 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E2E2E2;
  border-radius: 40px;
}
.serv_tab__item {
  margin-right: -6px;
  border-radius: 40px;
  padding: 15px 45px;
  outline: none;
  color: #333;
  font-weight: 500;
  transition: 0.4s;
  background-color: #E2E2E2;
}
.serv_tab__item.active,
.serv_tab__item.active:hover {
  color: #fff;
  z-index: 2;
  background-color: #5087DE;
}
.serv_tab__item:hover {
  /*background-color: @color_blue;*/
  color: #5087DE;
}
.serv_content {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.serv_img {
  width: 70%;
  flex-shrink: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
}
.serv_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.serv_text {
  width: 40%;
  z-index: 2;
  padding: 60px;
  flex-shrink: 0;
  background-color: #fff;
  margin-right: -10%;
  border-radius: 40px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.text_item > p:not(:last-child),
.text_item > ul,
.text_item > ul > li:not(:last-child) {
  margin-bottom: 20px;
}
.text_item--2 > ul{
  margin-bottom:0;
}
.text_item--2 > ul > li:not(:last-child){
  margin-bottom:15px;
}
.text_item > ul {
  list-style: disc inside;
}
.serv_content_block {
  position: relative;
  z-index: 1; 
  margin-left: -15px;
  margin-right: -15px;
}
.serv_content {
  position: absolute;
  left: 15px;
  top: 15px;
  right: 15px;
  opacity: 0;
  z-index: 1;
  transition: 1s;
  pointer-events: none;
  transform: translateY(50px);
}
.serv_content.active {
  transform: none;
  z-index: 2;
  opacity: 1;
}
.support {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.support_img {
  width: 520px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 35px;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
}
.support_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.support_text {
  width: 30%;
}
.animated {
  width: 650px;
  flex-shrink: 0;
  z-index: 2;
  margin-right: -300px;
  transform: translateY(130px);
  opacity: 0;
  transition: 0.2s;
}
.animated svg {
  width: 100%;
  transition: 0.4s;
}
.animated.way.way--active{
  opacity: 1;
}
@keyframes first {
  /*0% {
    transform: translateY(2440px);
  }
  10% {
    transform: translateY(2440px);
  }
  20% {
    transform: translateY(2340px);
  }
  30% {
    transform: translateY(2340px);
  }
  40% {
    transform: translateY(2340px);
  }
  50% {
    transform: translateY(2240px);
  }
  60% {
    transform: translateY(2240px);
  }
  70% {
    transform: translateY(2140px);
  }
  80% {
    transform: translateY(2140px);
  }
  90%{
    transform: translateY(2040px);
  }
  100% {
    transform: translateY(2040px);
  }*/

  0% {
    transform: translateY(2440px);
    opacity: 0;
  }
  10% {
    transform: translateY(2440px);
    opacity: 1;
  }
  20% {
    transform: translateY(2340px);
  }
  30% {
    transform: translateY(2340px);
  }
  40% {
    transform: translateY(2340px);
  }
  50% {
    transform: translateY(2240px);
  }
  60% {
    transform: translateY(2140px);
  }
  70% {
    transform: translateY(2040px);
  }
  /*80% {
    transform: translateY(2140px);
  }
  90%{
    transform: translateY(2040px);
  }*/
  80%, 100% {
    transform: translateY(2040px);
  }
}
@keyframes second {
  0% {
    transform: translateY(2340px);
    opacity: 0;
  }
  10% {
    transform: translateY(2340px);
    opacity: 0;
  }
  20% {
    transform: translateY(2340px);
    opacity: 0;
  }
  30% {
    transform: translateY(2340px);
    opacity: 0;
  }
  40% {
    transform: translateY(2340px);
    opacity: 1;
  }
  50%{
    transform: translateY(2240px);
  }
  60% {
    transform: translateY(2140px);
  }
  70% {
    transform: translateY(2040px);
  }
  80%, 100% {
    transform: translateY(2040px);
  }
  /*90% {
    transform: translateY(2040px);
  }
  100% {
    transform: translateY(2040px);
  }*/
}
@keyframes write {
  0% {
    transform: translate(158px, 10588px);
    opacity: 0;
  }
  10% {
    transform: translate(158px, 10588px);
    opacity: 0;
  }
  20% {
    transform: translate(158px, 10588px);
    opacity: 1;
  }
  30% {
    transform: translate(158px, 10588px);
    opacity: 0;
  }
  40% {
    transform: translate(158px, 10588px);
    opacity: 0;
  }
  50% {
    transform: translate(158px, 10588px);
    /*opacity: 0;*/
  }
  60% {
    transform: translate(158px, 10588px);
    /*opacity: 0;*/
  }
  70% {
    transform: translate(158px, 10588px);
  }
  80%, 100% {
    transform: translate(158px, 10588px);
    opacity: 0;
  }
  /*90% {
    transform: translate(158px, 10588px);
  }
  100% {
    transform: translate(158px, 10588px);
    opacity: 0;
  }*/
}
@keyframes third {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }
  10% {
    transform: translateY(200px);
    opacity: 0;
  }
  20% {
    transform: translateY(200px);
    opacity: 0;
  }
  30% {
    transform: translateY(200px);
    opacity: 0;
  }
  40% {
    transform: translateY(200px);
    opacity: 0;
  }
  50% {
    transform: translateY(200px);
    opacity: 0;
  }
  60% {
    transform: translateY(100px);
    opacity: 1;
  }
  70% {
    transform: translateY(0);
  }
  80%, 100% {
    transform: translateY(0);
  }
  /*90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }*/
}
@keyframes fourth {
  0% {
    transform: translate(82px, 200px);
    opacity: 0;
  }
  10% {
    transform: translate(82px, 200px);
  }
  20% {
    transform: translate(82px, 200px);
  }
  30% {
    transform: translate(82px, 200px);
  }
  40% {
    transform: translate(82px, 200px);
  }
  50% {
    transform: translate(82px, 200px);
    opacity: 0;
  }
  60% {
    transform: translate(82px, 200px);
    opacity: 0;
  }
  70% {
    transform: translate(82px, 100px);
    opacity: 1;
  }
  80%, 100% {
    transform: translate(82px, 100px);
    opacity: 1;
  }
  /*90% {
    transform: translate(82px, 100px);
    opacity: 1;
  }
  100% {
    transform: translate(82px, 100px);
  }*/
}
@keyframes fifth {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }
  10% {
    transform: translateY(200px);
  }
  20% {
    transform: translateY(200px);
  }
  30% {
    transform: translateY(200px);
  }
  40% {
    transform: translateY(200px);
  }
  50% {
    transform: translateY(200px);
  }
  60% {
    transform: translateY(200px);
  }
  70% {
    transform: translateY(200px);
    opacity: 0;
  }
  /*80% {
    transform: translateY(200px);
    opacity: 1;
  }*/
  80%, 100% {
    transform: translateY(200px);
    opacity: 1;
  }
  /*90% {
    transform: translateY(200px);
    opacity: 0;
  }
  100% {
    transform: translateY(200px);
    opacity: 1;
  }*/
}
.animated.way.way--active #first_msg {
  animation-name: first;
}
.animated.way.way--active #second_msg {
  animation-name: second;
}
.animated.way.way--active #write {
  animation-name: write;
  opacity: 0;
}
.animated.way.way--active #third_msg {
  animation-name: third;
}
.animated.way.way--active #fourth_msg {
  animation-name: fourth;
}
.animated.way.way--active #fifth_msg {
  animation-name: fifth;
}
#write{
  transform: translate(158px, 10588px);
}
.msg_item {
  /*animation-delay: 2s;*/
  animation-duration: 0s;
  animation-iteration-count: 1;
}
.animated.way.way--active .msg_item {
  animation-duration: 10s;
}
.comment_slider {
  margin-top: 60px;
}
.comment {
  display: flex;
  height: 500px;
  margin: 20px 30px 30px;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.comment_img {
  width: 40%;
  flex-shrink: 0;
  position: relative;
}
.comment_img img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.comment_img_name {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.comment_img_icon {
  width: 40px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 15px;
  background: center / contain no-repeat;
}
.comment_text {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.comment_text_block {
  height: 100%;
  padding: 70px 60px 60px;
  background-color: #E5E5E5;
}
.comment_text_block .title {
  font-size: 30px;
  margin-bottom: 30px;
}
.comment_text_img {
  overflow: hidden;
  flex-shrink: 0;
}
.comment_text_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.comment_arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment_icon {
  width: 50px;
  height: 80px;
  flex-shrink: 0;
  margin: 0 20px 15px;
  transform: rotateZ(35deg);
  background: url('../img/comment_icon.svg') center / contain no-repeat;
}
.comment_arrow {
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
}
.comment_arrow:hover {
  color: #5087DE;
  text-decoration: underline;
}
.gray {
  background-color: #F8F8F8;
}
.partner_list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right:-6%;
  overflow-x:hidden;
}
.part_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12%;
  margin-right: 6%;
  height: 100px;
  margin-bottom: 30px;
}
.part_item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner_bottom {
  margin-top: -60px;
  transform: translateY(110px);
}
.partner_btn {
  display: table;
  margin: 20px auto 0;
  font-size: 20px;
  padding: 17px 70px;
  border-radius: 40px;
}
/*.cassa_text p:first-child{
  display:block;
}
.cassa_text p{
  display:none;
}
.cassa_text--active p{
  display:block;
}*/
.cassa_text_block{
  display: none;
}

.cassa_text {
    max-height: 220px;
    overflow: hidden;
    transition: 0.5s;
    position: relative;
    padding-bottom: 50px;
}
.cassa_text.active{
  max-height: 4000px;
}
.cassa_text{
  font-size:18px;
}
.cassa_text p{
  font-size: 18px;
}
.cassa_text ul li{
  font-size:18px;
}
.cassa_text_btn{
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #fff;
}

footer {
  padding: 70px 0 50px;
  background-color: #0E254A;
}
footer .container {
  padding: 0 70px;
}
.footer_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.foot_list {
  width: 33.3%;
}
.foot_list_name {
  font-size: 24px;
  font-weight: bold;
  color: #707070;
  margin-bottom: 30px;
}
.foot_link {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.foot_link:hover {
  text-decoration: underline;
}
.foot_list_item {
  max-width: 270px;
}
.foot_list_item > li:not(:last-child) {
  margin-bottom: 20px;
}
.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.copyright {
  color: #fff;
  font-size: 20px;
}
.soc_list {
  display: flex;
}
.soc_list > li:not(:last-child) {
  margin-right: 30px;
}
.soc_btn {
  display: block;
  width: 45px;
  height: 35px;
  background: center / contain no-repeat;
}
.whatsapp{
  background-image: url('../img/whatsapp.svg'); 
}
.telegram {
  background-image: url('../img/telegram.svg');
}
.youtube {
  background-image: url('../img/youtube.svg');
}
.facebook {
  background-image: url('../img/facebook.svg');
}
.instagram {
  background-image: url('../img/instagram.svg');
}


.popup,
.reg_title_2,
.reg_step_last,
.reg_timer__block{
  display: none;
}
#reg_popup,
#login_popup{
  width: 760px;
  max-width: 95%;
  padding: 40px;
  border-radius: 40px;
}
#login_popup{
  width: 1000px;
}
#reg_popup .fancybox-close-small{
  top: 0;
  right: -50px;
  width: 45px;
  height: 45px;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.5);
}
#reg_popup .fancybox-close-small:hover{
  background-color: rgba(255, 255, 255, 1);
}

.title.reg_title{
  font-size: 34px;
  width: 400px;
  max-width: 100%;
  margin: 0 auto 30px;
}
.input_block{
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  z-index: 1;
}

.input_err{
  display: none;
  color: red;
  margin-top: 5px;
}
.pass_err{
  position: absolute;
  top: 100%;
  margin-top: 5px;
  margin-bottom: 0;
}

.pass_eye{
  position: absolute;
  /*right: 30px;*/
  /*bottom: 15px;*/
  /*width: 30px;*/
  bottom: 0;
  right: 15px;
  width: 50px;
  z-index: 99999;
  cursor: pointer;
  /*height: 25px;*/
  height: 50px;
  background: url('../img/no-view.svg') center / 25px no-repeat;
}
/*.pass_eye:after{
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  z-index: 2;
  border: 1px solid red;
  transform: translate(-50%, -50%);
}*/
.pass_eye.active{
  background-image: url('../img/view.svg');
}
.reg_slider{
  padding: 0 40px;
}
.reg_slider .slick-dots{
  pointer-events: none;
}
.reg_step{
  margin: 0 20px 30px;
}
.input_name{
  font-size: 20px;
  margin-bottom: 10px;
  color: #0E254A;
  opacity: 0.3;
}
.reg_input{
  outline: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 24px;
  -webkit-appearance: none;
  border: 1px solid #0E254A;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.reg_input.error{
  border-color: red;
}
.reg_input::-webkit-outer-spin-button,
.reg_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form_input[type='number'] {
    -moz-appearance:textfield;
}

.reg_step_next{
  display: table;
  margin: 50px auto 0;
  padding: 15px 90px;
  text-align: center;
  border-radius: 50px;
  font-size: 20px;
  outline: none;
}
.reg_step_next.reg_back{
  opacity: 0.3;
  transition: 0.4s;
  background-color: #25D77E;
}
.reg_step_next.reg_back:hover{
  opacity: 1;
}

.pop-bottom{
  display:flex;
  justify-content: space-between;
  margin-top: 50px;
}
.pop-bottom a{
  width: 44%;
  display: block;
  padding: 15px 20px;
  margin: 0;
}

/*.reg_timer{
  text-align: center;
  font-size: 20px;
  color: #5087DE;
}*/
/*.reg_timer__block.active{
  display: flex;
}*/
.reg_timer__block{
  display: flex;
  font-size: 20px;
  align-items: center;
  justify-content: space-between;
}
.reg_second_timer{
  color: #0E254A;
  opacity: 0.3;
}
.reg_send_sms{
  outline: none;
  color: #5087DE;
  text-decoration: underline;
  opacity: 0;
  pointer-events: none;
}
.reg_send_sms.active{
  opacity: 1;
  pointer-events: auto;
}
.reg_send_sms:hover{
  text-decoration: none;
}

.reg_step_list{
  font-size: 20px;
  line-height: 140%;
}
.reg_step_list a{
  color: #5087DE;
  text-decoration: underline;
}
.reg_step_list a:hover{
  text-decoration: none;
}
.reg_step_list > li{
  margin-bottom: 15px;
}
.reg_step_last .title{
  font-size: 20px;
  margin-bottom: 20px;
}
.reg_step_last .text_item{
  opacity: 0.4;
}
.reg_step_last .main_btn{
  padding: 17px 50px;
}

.cassa_type{
  display: flex;
  flex-direction: column;
}
.cassa_type .cassa_type_item:not(:last-child){
  margin-bottom: 30px;
}


.cassa_type_item{
  padding: 30px 40px 0;
  border-radius: 30px;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  background-color: #E5E5E5;
}
.cassa_type_item:hover{
  background-color: #5087DE;
}
.cassa_type_item:hover .cassa_type_text{
  opacity: 1;
}
.cassa_type_item:hover .title,
.cassa_type_item:hover .text_item{
  color: #fff;
}
.cassa_type_img{
  width: 55%;
  overflow: hidden;
}
.cassa_type_img img{
  display: block;
  width: 100%;
  object-fit: cover;
}
.cassa_type_text{
  opacity: 0.5;
  transition: 0.4s;
}
.cassa_type_text .title{
  font-size: 34px;
  margin-bottom: 20px;
  color: #333;
}
.cassa_type_text .text_item{
  font-weight: bold;
  color: #333;
}


.popup.foot_popup{
  max-width: 95%;
  width: 600px;
  padding: 50px 30px;
  border-radius: 20px;
}
.foot_popup .text_item{
  margin-bottom: 30px;
}
.popup_link{
  font-size: 20px;
  color: #333;
}
.popup_link:hover{
  text-decoration: underline;
}

/*      Light_Cassa Page styles     */
.cassa_block {
  width: 40%;
  margin-bottom: 60px;
  margin-left: 10%;
}
.cassa_block .main_btn {
  margin-left: 0;
}
.cassa_img {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.cassa_img_block {
  flex-shrink: 0;
}
.cassa_img_block_1 {
  width: 85%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.cassa_img_block_1 .cassa_img_item {
  width: 68%;
}
.cassa_img_block_2 {
  width: 33%;
  margin-left: -21%;
  transform: translateY(-300px);
}
.cassa_img_block_2 .cassa_img_item {
  border-radius: 40px;
}
.cassa_img_item.cassa_img_item_2 {
  width: 25%;
  border-radius: 40px;
}
.cassa_img_item_2 {
  transform: translateY(110px);
}
.cassa_img_item {
  width: 100%;
  border-radius: 0 40px 40px 0;
  overflow: hidden;
}
.cassa_img_item img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.cassa_step {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.cassa_step__img {
  width: 370px;
  margin: 0 auto;
  flex-shrink: 0;
  margin-right: 70px;
  position: relative;
}
.cassa_step__img video{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  height: 95%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  object-fit: cover;
}
.cassa_step__img img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.cassa_step__list {
  position: relative;
  width: 40%;
  margin: 0 auto 0 0;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cassa_step__list:after {
  content: "";
  position: absolute;
  left: 19px;
  right: auto;
  height: auto;
  width: 0;
  top: 120px;
  bottom: 120px;
  border-right: 3px solid #333;
}
.calc_img.cassa_calc_img img{
  width: 80%;
}
.step_item {
  width: 28%;
  text-align: center;

  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
}
.step_num {
  position: relative;
  z-index: 2;
  width: 45px;
  height: 45px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  border: 2px solid #333;
  background-color: #EDF0F7;

  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 20px;
}


.tarif_section {
  padding-bottom: 0;
  overflow: hidden;
}
.tarif {
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.tarif .title {
  color: #fff;
}
.tarif_text {
  width: 100%;
}
.tarif_text .main_btn {
  margin-left: 0;
  margin-top: 30px;
}
.red_btn {
  color: #fff;
  background-color: #FE2F56;
}
.tarif_list {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
}
.tarif_item {
  max-width: 18%;
  text-align: center;
}
.tarif_item .text_item {
  font-size: 24px;
}
.tarif_name {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
}
.tarif_img {
  width: 33%;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: -80px;
  margin-top: -35px;
}
.tarif_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.comment_slider_2 {
  width: 80%;
  margin: 50px auto 0;
  padding: 0 60px;
}
.comment_slider_2 .slider_arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background: url('../img/menu_right.svg') left 55% center / 30% no-repeat, #fff;
}
.comment_slider_2 .slider_next {
  right: 0;
}
.comment_slider_2 .slider_prev {
  left: 0;
  transform: translateY(-50%) rotateZ(180deg);
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.2);
}
.comment_google {
  width: 70%;
  padding: 20px;
  margin: 20px auto;
  background-color: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.comment_google_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comment_google_icon {
  width: 200px;
}
.comment_google_icon img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.comment_user {
  display: flex;
  /*align-items: center;*/
}
.about_user {
  padding-top: 10px;
}
.user_img {
  width: 100px;
  margin-right: 10px;
}
.user_img img {
  display: block;
  width: 100%;
}
.user_name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.user_star {
  display: flex;
  align-items: center;
}
.user_star img {
  width: 100px;
  flex-shrink: 0;
  margin-right: 10px;
}
.comment_google_text {
  font-size: 22px;
  line-height: 140%;
  padding: 30px 30px 30px 110px;
}
/*      Light_Cassa Page styles END     */
/*      POS Page styles   */
.slick-slide {
  outline: none;
}
.light_blue {
  background-color: #EDF0F7;
}
.pos {
  margin: 30px 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pos_text_slider {
  width: 25%;
}
.pos_img_slider {
  width: 20%;
  flex-shrink: 0;
}
.pos_img_slider .slick-track {
  display: flex;
}
.pos_img_slider .slick-slide {
  height: auto;
}
.pos_img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pos_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.pos_list {
  width: 25%;
  font-size: 20px;
  text-align: right;
  line-height: 140%;
  font-weight: bold;
}
.pos_list > .pos_list_item:not(:last-child) {
  margin-bottom: 15px;
}
.pos_list_item {
  position: relative;
  color: #0E254A;
  padding-right: 20px;
  opacity: 0.5;
  transition: 0.4s;
  cursor: pointer;
}
.pos_list_item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  padding: 3px;
  border-radius: 50%;
  background-color: #0E254A;
  transform: translateY(-50%);
}
.pos_list_item.active,
.pos_list_item.active:hover {
  opacity: 1;
  text-decoration: none;
}
.pos_list_item:hover {
  text-decoration: underline;
}
.main_video.pos_video {
  width: 70%;
  height: 600px;
}
.pos_advan {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  margin-right: -3%;
}
.pos_advan_item {
  width: 22%;
  margin-right: 3%;
}
.pos_advan .pos_advan_item:nth-child(1){transition-delay: 0.2s;}
.pos_advan .pos_advan_item:nth-child(2){transition-delay: 0.5s;}
.pos_advan .pos_advan_item:nth-child(3){transition-delay: 0.8s;}
.pos_advan .pos_advan_item:nth-child(4){transition-delay: 1.1s;}

.pos_advan_item.way{
  opacity: 0;
  transition: 1s;
  transform: translateY(50px);
}
.pos_advan_item.way.way--active{
  opacity: 1;
  transform: none;
}

.pos_advan_item .advan_img {
  margin-left: 0;
  margin-right: auto;
}
/*.pay_list,*/
.pay_list_block {
  width: 80%;
  margin: 50px auto 0;
  font-size: 28px;
}
/*.pay_list .pay_list_item:not(:last-child),*/
.pay_list_block ul li:not(:last-child) {
  margin-bottom: 30px;
}
/*.pay_list_item,*/
.pay_list_block ul li {
  line-height: 150%;
  padding-left: 50px;
  background: url('../img/pay_list_icon.svg') top 4px left / 33px no-repeat;
  font-size: 20px;
  min-height: 40px;
}
.calc_icon {
  width: 50px;
  margin: 0 auto 20px;
}
.calc_icon img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.calc_top {
  margin: 40px 0 60px;
  display: flex;
  justify-content: space-between;
}
.calc_item {
  width: 40%;
}
.calc_img {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc_img img {
  display: block;
  width: 35%;
  max-height: 100%;
  object-fit: contain;
}
.calc_name {
  width: 75%;
  margin: 0 auto 50px;
  padding: 20px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  background-color: #EDF0F7;
  color: #0E254A;
  border-radius: 60px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.calc_price {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #0E254A;
}
.breadcrumbs{
  margin-bottom: 30px;
  font-size:14px;
  line-height: 25px;
}
.breadcrumbs a{
  color: #777;
}
.breadcrumbs a[href]:hover{
  cursor: pointer;
  color: #333;
  text-decoration: underline;
}
.breadcrumbs li{
  display: inline-block;
  position: relative;
}
.breadcrumbs li:not(:first-child){
  margin-left: 30px;
}
.breadcrumbs li:not(:first-child):before{
  content: '/';
  position: absolute;
  width: 15px;
  height: 15px;
  left: -23px;
}
.calc_body .title {
  padding-left: 30px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}
.calc_body .calc_row:last-child {
  margin-bottom: 0;
}
.calc_body .calc_row:last-child .calc_row_item {
  padding-bottom: 0;
  border: none;
}
.down_icon {
  flex-shrink: 0;
  margin-left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background: url('../img/menu_down.svg') top 55% center / 40% no-repeat, #fff;
}
.calc_body_block{
  display: none;
}
.calc_body_title{
  cursor: pointer;
}
.calc_body_title.active .down_icon{
  transform: rotateZ(180deg);
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.2);
}
.calc_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.calc_row_item {
  width: 40%;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
.calc_row_item .calc_price {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.calc_row_item .text_item {
  font-size: 24px;
  margin-top: 20px;
}
.connect_section {
  padding-bottom: 0;
}
.connect_block {
  display: flex;
  justify-content: space-between;
}
.connect_text {
  width: 40%;
}
.connect_btn {
  display: table;
  margin-top: 30px;
  padding: 19px 50px;
  border-radius: 40px;
  font-size: 20px;
}
.connect_img {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
}
.connect_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}

#connect_popup{
  border-radius: 20px;
  padding: 30px;
  max-width: 95%;
}
#connect_popup .tel_form_btn{
  position: relative;
  display: table;
  transform: none;
  margin: 30px auto 0;
  left: 0;
}
.connect_popup_title{
  text-align: center;
  font-size: 28px;
}



.gradient_section {
  background: linear-gradient(90deg, #8355D5, #5087DE);
}
.gradient_block {
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
}
.gradient_block .title {
  color: #fff;
}
.gradient_block .text_item {
  font-size: 30px;
}
.gradient_price {
  width: 80%;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  font-weight: bold;
  justify-content: space-between;
}
.gradient_price_old {
  font-size: 35px;
  text-decoration: line-through;
}
.gradient_price_new {
  font-size: 45px;
}
.pb_0 {
  padding-bottom: 0;
}
.light {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.light_item {
  width: 48%;
  padding: 40px 40px 0;
  background-color: #EDF0F7;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.light_item .title {
  font-size: 40px;
}
.light_img {
  width: 80%;
  margin: 30px auto 0;
  height: 200px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.light_img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.light_item .more_btn{
  position: relative;
  z-index: 2;
}

/*      POS Page styles END   */
/*      Tus Page styles   */
.tus_img {
  width: 80%;
  margin: 50px auto 0;
}
.tus_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.tus_img .tus_img__mobile{
  display: none;
}
.tuc-text{
  text-align:center;
}
.tus_advan {
  width: 65%;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 30%);
  justify-content: space-between;
  grid-gap: 70px 10px;
}
.tus_advan_item .advan_img {
  margin-left: 0;
  width: 80px;
  height: 80px;
}
.tus_row_img {
  width: 55%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.tus_row_img .tus_row_img__mobile{
  display: none;
}
.tus_row_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.tus_rows {
  margin-top: 70px;
}
.tus_rows .about_slider {
  width: 30%;
}
.tus_rows .slider_row {
  margin-top: 0;
}
.tus_rows .slider_row:not(:last-child) {
  margin-bottom: 90px;
}
.tus_text_item ul {
  list-style: none;
}
.tus_text_item li {
  padding-left: 40px;
  background: url('../img/list_icon_black.svg') top 3px left / 22px no-repeat;
}
.tus_system {
  margin-top: 90px;
}
.tus_system .title {
  font-size: 30px;
}
.tus_text_item_2 ul {
  width: 80%;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tus_text_item_2 ul li {
  width: 48%;
}
.gallery_slider {
  margin-bottom: 70px;
}
.gal_item {
  height: 280px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.8s;
  transform: scale(0.8);
}
.gal_item img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.gal_item.active {
  transform: none;
}
.faq .faq_item:last-child {
  border-bottom: 1px solid #333;
}
.faq_item {
  border-top: 1px solid #333;
}
.faq_question {
  font-weight: 500;
  font-size: 28px;
  padding: 25px 30px;
  cursor: pointer;
  background: url('../img/menu_right.svg') right 30px center / 12px no-repeat;
}
.faq_question.active {
  background-image: url('../img/menu_down.svg');
  background-size: 19px;
}
.faq_answer {
  display: none;
  padding: 0 30px 30px;
  font-size: 21px;
  line-height: 140%;
}
.light_img.light_img_pos {
  height: 310px;
  margin-top: -80px;
  width: auto;
  margin-left: -40px;
  margin-right: -40px;
}
.light_img.light_img_pos img {
  width: 100%;
}
/*      Tus Page styles END   */
/*      Blog Page styles      */
.main_blog {
  margin-bottom: 30px;
}
.main_blog .blog_img {
  max-height: 520px;
}
.blog_img {
  display: block;
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.blog_img img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.blog_name {
  display: table;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 140%;
  font-weight: bold;
  color: #0E254A;
}
.blog_date {
  font-size: 20px;
  font-weight: 500;
}
.blog_list {
  display: flex;
  flex-wrap: wrap;
}



.blog_list .blog_item:nth-child(1),
.blog_list .blog_item:nth-child(5),
.blog_list .blog_item:nth-child(7){
  width: 31%;
}
.blog_list .blog_item:nth-child(3),
.blog_list .blog_item:nth-child(9){
  width: 33%;
}
.blog_list .blog_item:nth-child(4){
  width: 42%;
  position: relative;
}

.blog_news_list{
  display: none;
}
.blog_list .blog_item:nth-child(3),
.blog_list .blog_item:nth-child(6),
.blog_list .blog_item:nth-child(9) {
  margin-right: 0;
}
.blog_item {
  margin-bottom: 40px;
  margin-right: 2%;
}
/*.blog_normal {
  width: 31%;
}*/
/*.blog_big_img {
  width: 33%;
}*/
/*.blog_no_img {
  flex-basis: 10%;
  flex-grow: 1;
}*/
/*.blog_full_img {
  width: 42%;
}*/
/*.blog_no_img,*/
.blog_list .blog_item:nth-child(2),
.blog_list .blog_item:nth-child(6),
.blog_list .blog_item:nth-child(8) {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 30px 60px;
  background-color: #EDF0F7;
  border-radius: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);

  flex-basis: 10%;
  flex-grow: 1;
}
.blog_list .blog_item:nth-child(2) .blog_img,
.blog_list .blog_item:nth-child(6) .blog_img,
.blog_list .blog_item:nth-child(8) .blog_img{
  display: none;
}

/*.blog_full_img .blog_date,*/
/*.blog_no_img .blog_date,*/
.blog_list .blog_item:nth-child(2) .blog_date,
.blog_list .blog_item:nth-child(6) .blog_date,
.blog_list .blog_item:nth-child(8) .blog_date,

.blog_list .blog_item:nth-child(4) .blog_date {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.blog_icon {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-bottom: 5px;
}
.blog_icon img {
  display: block;
  width: 100%;
  object-fit: contain;
}
/*.blog_big_img .blog_img,*/
/*.blog_full_img .blog_img ,*/
.blog_list .blog_item:nth-child(3),
.blog_list .blog_item:nth-child(9),

.blog_list .blog_item:nth-child(5) .blog_img{
  position: relative;
}

.blog_list .blog_item:nth-child(3) .blog_img,
.blog_list .blog_item:nth-child(9) .blog_img{
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  margin-bottom: 40px;
}
.blog_list .blog_item:nth-child(3) .blog_date,
.blog_list .blog_item:nth-child(9) .blog_date{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

/*.blog_big_img .blog_img:after,*/
/*.blog_full_img .blog_img:after,*/
.blog_list .blog_item:nth-child(3) .blog_img:after,
.blog_list .blog_item:nth-child(9) .blog_img:after,

.blog_list .blog_item:nth-child(4) .blog_img:after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
/*.blog_big_img .blog_name,*/
/*.blog_full_img .blog_name,*/
.blog_list .blog_item:nth-child(3) .blog_name,
.blog_list .blog_item:nth-child(9) .blog_name,

.blog_list .blog_item:nth-child(4) .blog_name {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 50%;
  color: #fff;
  z-index: 2;
  transform: translateY(-50%);
}
/*.blog_full_img .blog_name,*/
.blog_list .blog_item:nth-child(4) .blog_name{
  top: 45%;
}
/*.blog_full_img .blog_date,*/
.blog_list .blog_item:nth-child(4) .blog_date {
  color: #fff;
  z-index: 2;
}
/*.blog_full_img .blog_img,*/
.blog_list .blog_item:nth-child(4) .blog_img {
  height: 100%;
  position: relative;
}
.pagination {
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pag {
  display: block;
  margin-right: 15px;
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
  flex-shrink: 0;
  text-align: center;
  padding: 22px 30px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.pag.active {
  color: #fff;
  background-color: #25D77E;
}
.pag_btn {
  display: block;
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  background: url('../img/menu_right.svg') center / 35% no-repeat;
}
.prev_pag {
  margin-right: 20px;
  transform: rotateZ(180deg);
}
.next_pag {
  margin-left: 10px;
}
/*      Blog Page styles END      */
/*      Blog_Inner Page styles    */
.blog_inner_date {
  margin-bottom: 10px;
}
.inner_img {
  position: relative;
  margin-bottom: 50px;
  max-height: 540px;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.inner_img__main {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.inner_img__small {
  position: absolute;
  width: 390px;
  max-height: 390px;
  border-radius: 40px;
  overflow: hidden;
  left: 50px;
  top: 50%;
  object-fit: cover;
  transform: translateY(-50%);
}
.back_btn {
  display: block;
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: url('../img/up_black.svg') center / 30% no-repeat, #fff;
}
.blog_inner {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.blog_content {
  width: 60%;
}
.blog_content .text_item img{
  max-width:100%;
  height:auto !Important;
}
.blog_content .text_item h1, .blog_content .text_item h2, .blog_content .text_item h3,.blog_content .text_item h4,.blog_content .text_item h5{
  margin-bottom:25px;
}
.blog_content .text_item{
  font-size:18px;
}
.blog_content .text_item {
  font-size: 20px;
}
.blog_content .tel_request {
  margin-top: 0;
}
.blog_content .tel_request .tel_form {
  margin-left: 0;
}
.blog_sidebar {
  width: 31%;
}
.sidebar_title{
  display: none;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.blog_content_item {
  margin-bottom: 30px;
}
.sidebar_news {
  display: flex;
  border-radius: 40px;
  margin-bottom: 50px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.sidebar_news .blog_img {
  width: 50%;
  flex-shrink: 0;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
}
.sidebar_news__about {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 20px 60px;
  border-radius: 0;
  background-color: #EDF0F7;
}
.sidebar_news__about .blog_date {
  position: absolute;
  left: 20px;
  bottom: 30px;
  right: 20px;
}
.news_list .news_list_item:not(:last-child) {
  margin-bottom: 20px;
}
.news_list_item {
  display: block;
  font-size: 26px;
  line-height: 140%;
  font-weight: 500;
  color: #5087DE;
  text-decoration: underline;
}
.news_list_item:hover {
  text-decoration: none;
}
.share_block {
  margin-top: 40px;
  display: flex;
}
.share_title {
  display: none;
}
.share_text {
  font-size: 24px;
}
.share_links {
  flex-shrink: 0;
  margin-left: 20px;
}
.ya-share2 .ya-share2__container_size_m .ya-share2__icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}
.ya-share2 .ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item {
  margin-left: 15px;
  margin-right: 0;
}
.rel_news {
  margin-top: 70px;
}
.rel_news .blog_full_img {
  width: 36%;
}
.rel_news .blog_normal {
  width: 29%;
}
.rel_news .blog_big_img {
  width: 31%;
}
/*      Blog_Inner Page styles END    */
/*      Part_Program Page styles      */
.prog_block {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.prog_heading {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  color: #fff;
  border-radius: 40px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #6B89D1, #855AE6);
}
.prog_tel_request .tel_form {
  margin-bottom: 30px;
}
.prog_heading__top {
  margin-bottom: 50px;
}
.prog_heading__top .title {
  font-size: 30px;
  margin-bottom: 10px;
  color: #fff;
}
.prog_heading__top .text_item {
  padding-right: 50px;
}
.prog_heading__img {
  width: 200px;
  margin: 0 auto;
}
.prog_heading__img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.prog_heading__text {
  margin-top: 50px;
  text-align: center;
}
.prog_heading__text .text_item {
  padding: 0 50px;
}
.prog_discont {
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 10px;
}
.prog_body {
  width: 64%;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.prog_body .prog_item:not(:last-child) {
  margin-bottom: 40px;
}
.prog_item {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.prog_item .advan_img {
  width: 80px;
  height: 80px;
}
/*      Part_Program Page styles END    */
/*      Instruction Page styles   */

.title.title-inst {
  text-align: left;
  margin-bottom: 60px;
  padding-bottom: 25px;
  border-bottom: 2px solid #000;
}

.info {
  display: flex;
  justify-content: space-between;
}
.info_list {
  width: 30%;
  padding-right: 40px;
  flex-shrink: 0;
  border-right: 1px solid #333;
}
.info_list .quest_category:not(:first-child) {
  margin-top: 20px;
}
.quest_category {
  display: table;
  padding-right: 40px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  background: url('../img/menu_right.svg') right center / 10px no-repeat;
}
.quest_category:hover {
  text-decoration: underline;
}
.quest_category.active {
  text-decoration: underline;
  background-image: url('../img/menu_down.svg');
  background-size: 15px;
}
.quest_category_list {
	display: none;
  padding-top: 10px;
  padding-left: 30px;
  font-size: 22px;
  line-height: 140%;
}
.quest_category_list .quest_type:not(:first-child) {
  margin-top: 20px;
}
.quest_type {
  cursor: pointer;
}
.quest_type:hover {
  text-decoration: underline;
}
.quest_type.active,
.quest_type.active:hover {
  font-weight: bold;
  text-decoration: none;
}
.quest_type_list {
  display: none;
  padding-left: 30px;
  padding-top: 10px;
}
.quest_item {
  display: block;
  margin: 10px 0;
  color: #333;
}
.quest_item:hover {
  text-decoration: underline;
}
.quest_item.active {
  color: #25D77E;
  font-weight: bold;
  text-decoration: underline;
}
.info_content_block {
  width: 67%;
  position: relative;
}
.info_content {

}
.info_content .title {
  font-size: 40px;
  margin-bottom: 20px;
}
.info_content.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.answer_list {
  display: none;
  position: relative;
  transition: 0.7s;
  height: 0;
  /*margin-top: 10px;*/
  background-color: #fff;
}
.info_btn {
  display: none;
  margin: 40px auto 0;
  padding: 15px 40px;
  border-radius: 30px;
  text-align: center;
}

/*      Instruction Page styles END   */

@media screen and (max-width: 1800px) {
  .container {
    width: 1500px;
  }
  .logo {
    margin-right: 150px;
  }
  .title {
    font-size: 42px;
  }
  .advan_name {
    font-size: 26px;
  }
  .prod_item{
    transform: scale(0.96);
  }
  .pay_info {
    margin-left: 50px;
  }
  .pay_info:after {
    width: 200px;
  }
  .pay_info:before {
    bottom: 3px;
    margin-left: 185px;
  }
  .product_slider {
    height: 640px;
  }
  .prod_item {
    height: 530px;
  }
  .prod_item.active {
    height: 590px;
  }
  .prod_img {
    height: 240px;
  }
  .prod_item.active .prod_img {
    height: 310px;
  }
  .prod_text .title {
    font-size: 28px;
  }
  .serv_text {
    padding: 50px;
  }
  .animated {
    width: 570px;
  }
  footer .container {
    padding: 0 50px;
  }

  /*      Light_Cassa Page styles      */

  .calc_img{
    height: 350px;
  }

  /*      POS Page styles        */

  /*.pay_list,*/
  .pay_list_block{
    font-size: 26px;
  }


  /*      Instruction Page styles   */
  .quest_category {
    font-size: 24px;
    padding-right: 30px;
  }
  .quest_category_list {
    font-size: 20px;
  }
  .info_content .title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1700px) {
  .container {
    width: 1340px;
  }
  .header_top {
    padding: 17px 0;
  }
  .logo {
    margin-right: 30px;
  }
  .head_menu {
    margin-left: auto;
  }
  .menu_link,
  .head_tel {
    font-size: 17px;
  }
  .sub_link {
    font-size: 17px;
  }
  .sub_menu {
    width: 250px;
  }
  .try_btn,
  .head_login {
    font-size: 17px;
  }
  .try_btn {
    width: 220px;
    padding: 16px 35px;
  }
  .title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .main_section {
    padding-bottom: 0;
  }
  .main_block{
    padding-top: 0;
  }
  .main_btn {
    font-size: 18px;
  }
  .main_logo {
    width: 210px;
  }
  .main_logo__img {
    height: 120px;
  }
  .main_img_block {
    margin-bottom: 60px;
  }
  .play_btn {
    width: 110px;
    height: 65px;
  }
  .prod_item{
    transform: scale(0.96);
  }
  .advan_name {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .advan_text {
    font-size: 18px;
  }
  .pay_info {
    width: 520px;
    margin-left: 0;
    padding: 40px;
  }
  .pay_info .text_item {
    font-size: 18px;
  }
  .pay_info_title {
    font-size: 28px;
  }
  .about_slider {
    width: 40%;
  }
  .about_slider .title {
    font-size: 28px;
  }
  .tel_form {
    width: 550px;
    font-size: 18px;
  }
  .prod_text .text_item {
    font-size: 18px;
  }
  .prod_text .more_btn {
    font-size: 18px;
    margin-top: 40px;
  }
  .product_scroll {
    margin-top: 30px;
  }
  .product_scroll_item img {
    width: 60px;
  }
  .product_slider {
    height: 590px;
  }
  .prod_item {
    height: 470px;
    border-radius: 30px;
  }
  .prod_item.active {
    height: 540px;
  }
  .prod_img {
    height: 210px;
    border-radius: 30px 30px 0 0;
  }
  .prod_item.active .prod_img {
    height: 280px;
  }
  .prod_text .text_item {
    height: 100px;
  }
  .serv_text {
    width: 50%;
    margin-right: -30%;
    padding: 40px;
  }
  .serv_text .text_item {
    font-size: 18px;
  }
  .serv_tab {
    font-size: 18px;
  }
  .animated {
    width: 500px;
    margin-right: -230px;
  }
  .support_img {
    width: 450px;
  }
  .support_text {
    width: 32%;
  }
  .comment {
    height: 390px;
  }
  .comment_text_block {
    padding: 60px 55px 50px;
  }
  .comment_text_block .text_item {
    font-size: 18px;
  }
  .comment_text_block .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .comment_icon {
    width: 45px;
    height: 70px;
  }
  footer {
    padding: 60px 0 40px;
  }
  .foot_list_name {
    font-size: 22px;
  }
  .foot_link,.copyright {
    font-size: 17px;
  }
  .footer_bottom {
    padding: 20px 0;
  }
  .soc_list > li:not(:last-child) {
    margin-right: 25px;
  }
  .soc_btn {
    width: 40px;
    height: 30px;
  }

  #reg_popup{
    width: 650px;
    padding: 30px;
    border-radius: 30px;
  }
  #login_popup{
    width: 900px;
  }
  .title.reg_title,
  .cassa_type_text .title{
    font-size: 30px;
  }
  .input_name{
    font-size: 18px;
  }
  .reg_input{
    font-size: 22px;
  }

  /*      Light_Cassa Page styles      */

  .cassa_img_item_2{
    transform: translateY(50px);
  }
  .main_video.pos_video{
    height: 500px;
  }
  .cassa_step__img{
    width: 340px;
  }
  .calc_price,
  .calc_name,
  .tarif_name{
    font-size: 26px;
  }
  .calc_img{
    height: 300px;
  }
  .calc_row_item{
    padding-bottom: 20px;
  }
  .calc_row{
    margin-bottom: 20px;
  }
  .tarif_item .text_item,
  .comment_google_text,
  .user_name{
    font-size: 20px;
  }
  .tarif_list{
    margin-top: 70px;
  }
  .comment_google{
    width: 80%;
  }
  .user_img{
    width: 90px;
  }
  .comment_google_icon{
    width: 180px;
  }
  .faq_answer{
    font-size: 20px;
  }
  .faq_question{
    font-size: 26px;
  }
  .light_item .title{
    font-size: 34px;
  }
  .light_img.light_img_pos{
    height: 250px;
    margin-top: -20px;
  }

  /*     POS Page styles     */

  /*.pay_list,*/
  .pay_list_block{
    font-size: 24px;
  }
  /*.pay_list_item,*/
  .pay_list_block ul li{
    background-size: 30px;
    background-position: top 3px left;
  }
  .gradient_block .text_item{
    font-size: 26px;
  }
  .gradient_price_old{
    font-size: 30px;
  }
  .gradient_price_new{
    font-size: 40px;
  }
  .connect_img{
    width: 55%;
  }

  /*      TUS Page styles      */

  .tus_advan{
    grid-template-columns: repeat(2, 33%);
  }
  .tus_rows .about_slider{
    width: 35%;
  }

  /*      Blog Page styles      */

  .blog_name{
    font-size: 21px;
  }
  .blog_date{
    font-size: 18px;
  }
  .blog_icon{
    width: 50px;
    height: 50px;
  }
  .pag{
    padding: 17px 25px;
    border-radius: 15px;
  }
  .pag_btn{
    width: 35px;
    height: 35px;
  }

  /*      Blog_Inner Page styles    */

  .back_btn{
    width: 80px;
    height: 80px;
  }
  .news_list_item{
    font-size: 22px;
  }
  .blog_content .text_item{
    font-size:18px;
  }

  /*      Part_Program Page styles   */

  .prog_heading{
    width: 40%;
  }
  .prog_body{
    width: 57%;
    padding: 40px;
  }
  .prog_heading__top{
    margin-bottom: 30px;
  }
  .prog_heading__text{
    margin-top: 20px;
  }
  .prog_item .advan_img{
    width: 70px;
    height: 70px;
  }


  /*      Instruction Page styles   */
  .quest_category_list .quest_type:not(:first-child) {
    margin-top: 10px;
  }
  .info_content .title {
    font-size: 30px;
  }
  .info_list {
    width: 33%;
  }
  .info_content_block {
    width: 64%;
  }
}
@media screen and (max-width: 1500px) {
  .container {
    width: 1200px;
  }
  .logo {
    width: 130px;
    height: 40px;
  }
  .try_btn,
  .head_login,
  .main_btn,
  .head_tel {
    font-size: 16px;
  }
  .title {
    font-size: 32px;
  }
  .text_item {
    font-size: 18px;
  }
  .text_item img{
   display:block;	
   max-width:100%;
   height:auto !important;
  }
  .main_btn {
    padding: 15px 40px;
  }
  .main_img_item {
    border-radius: 0 40px 40px 0;
  }
  .main_img_block_3 .main_img_item {
    border-radius: 40px 0 0 40px;
  }
  .main_video {
    height: 450px;
  }
  .advan_name {
    font-size: 22px;
  }
  .advan_text,
  .pay_info .text_item {
    font-size: 16px;
  }
  .pay_block {
    margin-top: -60px;
  }
  .pay_info {
    width: 450px;
  }
  .pay_info_title {
    font-size: 24px;
  }
  .more_btn,
  .slide_app__name {
    font-size: 18px;
  }
  .product_slider {
    height: 510px;
  }
  .prod_item {
    height: 430px;
  }
  .prod_item.active {
    height: 470px;
  }
  .prod_text .text_item {
    font-size: 16px;
    height: 90px;
  }
  .prod_text {
    padding: 30px 20px;
  }
  .prod_text .title {
    font-size: 24px;
  }
  .prod_item.active .prod_img {
    height: 240px;
  }
  .product_scroll {
    margin-bottom: -50px;
  }  
  .serv_tab {
    font-size: 16px;
    background-color: #E2E2E2;
  }
  .serv_tab__item {
    padding: 13px 40px;
  }
  .animated {
    width: 450px;
    margin-right: -170px;
    transform: translateY(100px);
  }
  .support_img {
    width: 400px;
  }
  .support {
    margin-top: -60px;
    margin-bottom: -160px;
  }
  .comment {
    height: 410px;
  }
  .comment_img {
    width: 40%;
  }
  .comment_text_block {
    padding: 50px 40px 40px;
  }
  .comment_text_block .title {
    font-size: 24px;
  }
  .comment_text_block .text_item {
    font-size: 16px;
  }
  .comment_slider {
    margin-top: 40px;
  }
  .cassa_text{
    max-height: 200px;
  }
  .comment_arrow,
  .partner_btn {
    font-size: 18px;
  }
  .comment_icon {
    height: 60px;
  }
  .foot_list_item {
    max-width: 240px;
  }
  footer .container {
    padding: 0 30px;
  }
  .foot_list_item > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .foot_list_name {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .footer_bottom {
    padding: 15px 0;
  }
  .copyright {
    font-size: 16px;
  }

  .reg_input{
    font-size: 20px;
  }
  .title.reg_title, 
  .cassa_type_text .title{
    font-size: 26px;
  }
  .reg_step_next{
    margin-top: 40px;
  }
  .reg_step{
    margin-bottom: 20px;
  }
  .reg_step_next{
    padding: 15px 80px;
    font-size: 18px;
  }
  .reg_timer,
  .reg_timer__block{
    font-size: 18px;
  }

  /*      Light_Cassa Page styles      */

  .cassa_img_block_1 .cassa_img_item{
    width: 70%;
  }
  .cassa_img_item.cassa_img_item_2{
    width: 25%;
  }
  .main_video.pos_video{
    width: 80%;
    height: 450px;
  }
  .cassa_step__img{
    width: 300px;
  }
  .cassa_step__list:after{
    bottom: 160px;
  }
  .step_num{
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
  .calc_price, 
  .calc_name, 
  .tarif_name{
    font-size: 22px;
  }
  .calc_row_item .text_item{
    margin-top: 10px;
    font-size: 20px;
  }
  .tarif_list{
    margin-top: 50px;
  }
  .tarif_img{
    width: 30%;
  }
  .comment_google_text,
  .user_name{
    font-size: 18px;
  }
  .comment_google_text{
    padding: 20px 20px 20px 90px;
  }
  .user_img{
    width: 80px;
  }
  .comment_google_icon{
    width: 160px;
  }
  .comment_slider_2 .slider_arrow{
    width: 40px;
    height: 40px;
  }
  .faq_question{
    font-size: 24px;
  }
  .faq_answer{
    font-size: 20px;
  }
  .light_item .title{
    font-size: 30px;
  }
  .light_item .more_btn{
    margin-top: 20px;
  }
  .light_img{
    height: 160px;
  }
  .light_img.light_img_pos{
    height: 220px;
    margin-top: -30px;
  }

  /*      POS Page styles      */

  .pos_list > .pos_list_item:not(:last-child){
    margin-bottom: 10px;
  }
  .pos_list{
    font-size: 18px;
  }
  /*.pay_list,*/
  .pay_list_block,
  .gradient_block .text_item{
    font-size: 22px;
  }
  .gradient_price_old{
    font-size: 26px;
  }
  .gradient_price_new{
    font-size: 34px;
  }
  .gradient_block{
    width: 650px;
  }
  .connect_btn{
    font-size: 18px;
    padding: 17px 50px;
  }
  .connect_popup_title{
    font-size: 24px;
  }

  /*      TUS Page styles      */

  .gal_item{
    height: 240px;
  }

  /*      Blog Page styles      */

  .blog_name{
    font-size: 22px;
  }

  /*      Blog_Inner Page styles    */

  .inner_img__small{
    width: 350px;
    left: 40px;
  }
  .back_btn{
    width: 70px;
    height: 70px;
  }
  .blog_content .text_item, 
  .news_list_item,
  .share_text{
    font-size: 20px;
  }

  /*      Part_Program Page styles   */

  .prog_heading__top .title{
    font-size: 26px;
  }
  .prog_heading__img{
    width: 170px;
  }
  .prog_discont{
    font-size: 70px;
  }
  .prog_heading__text .text_item{
    padding: 0;
  }


  /*      Instruction Page styles   */
  .quest_category {
    font-size: 22px;
  }
  .quest_category_list {
    font-size: 18px;
  }
  .info_content .title {
    font-size: 26px;
  }
  .quest_category_list,
  .quest_type_list {
    padding-left: 20px;
  }
  .title.title-inst{
    padding-bottom: 15px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1350px) {
  .container {
    width: 1100px;
  }
  .head_menu > li:not(:last-child) {
    margin-right: 30px;
  }
  .about_slider{
    margin-left:0;
  }
  .menu_link {
    font-size: 16px;
  }
  .sub_link,
  .head_tel {
    font-size: 14px;
  }
  .sub_menu_list {
    padding-top: 60px;
  }
  .sub_menu {
    width: 220px;
  }
  .try_btn,
  .head_login {
    font-size: 15px;
  }
  .try_btn {
    width: 200px;
    padding: 14px 30px;
  }
  .main_block {
    width: 90%;
  }
  .main_block .text_item {
    font-size: 18px;
  }
  .text_item {
    font-size: 16px;
  }
  .main_logo__img {
    border-radius: 30px;
  }
  .main_video {
    height: 420px;
    width: 90%;
  }
  .advan_item {
    width: 31%;
  }
  .advan_name {
    font-size: 20px;
  }
  .advan_img {
    margin-bottom: 10px;
  }
  .pay_block {
    margin-top: -40px;
  }
  .pay_info {
    width: 420px;
    padding: 30px;
  }
  .pay_info .more_btn {
    font-size: 16px;
  }
  .pay_info:after {
    width: 180px;
  }
  .pay_info:before {
    bottom: 10px;
    margin-left: 165px;
  }
  .slide_app__name {
    padding-right: 20px;
  }
  .tel_form_input {
    padding: 20px 30px;
  }
  .tel_form_btn {
    padding: 13px 25px;
  }
  .tel_form {
    width: 500px;
    font-size: 16px;
  }
  .product_slider {
    height: 450px;
  }
  .prod_item {
    height: 390px;
    margin: 25px 10px 15px;
    margin-left: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  }
  .prod_item.active {
    height: 430px;
    margin-top: 10px;
  }
  .prod_img {
    height: 170px;
  }
  .prod_item.active .prod_img {
    height: 220px;
  }
  .prod_text .title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .prod_text .more_btn {
    font-size: 16px;
    margin-top: 30px;
  }
  .product_scroll_item {
    height: 20px;
  }
  .product_scroll_item img {
    width: 50px;
  }
  .serv_text .text_item {
    font-size: 16px;
  }
  .text_item > p:not(:last-child),
  .text_item > ul,
  .text_item > ul > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .animated {
    width: 400px;
    transform: translateY(60px);
  }
  .support_img {
    width: 350px;
  }
  .comment {
    height: 370px;
    margin: 15px 20px 20px;
  }
  .comment_img_name {
    font-size: 18px;
  }
  .comment_img_icon {
    width: 35px;
    height: 25px;
  }
  .comment_text_block {
    padding: 40px 30px 30px;
  }
  .comment_arrow,
  .partner_btn {
    font-size: 16px;
  }
  .comment_icon {
    margin: 0 10px 10px;
  }
  .part_item {
    height: 80px;
  }
  .foot_list_name {
    font-size: 18px;
  }
  .foot_link {
    font-size: 16px;
  }
  .soc_list > li:not(:last-child) {
    margin-right: 20px;
  }
  .foot_list_item {
    max-width: 210px;
  }

  #reg_popup{
    width: 550px;
  }
  #login_popup{
    width: 800px;
  }
  #reg_popup .fancybox-close-small{
    width: 40px;
    height: 40px;
  }
  .reg_slider{
    padding: 0 20px;
  }
  .title.reg_title, 
  .cassa_type_text .title{
    font-size: 24px;
  }
  .title.reg_title{
    width: 330px;
  }
  .input_name,
  .reg_step_list{
    font-size: 16px;
  }
  .reg_input,
  .reg_step_last .title{
    font-size: 18px;
  }
  .reg_step_next{
    padding: 13px 70px;
  }
  .pass_eye{
    /*right: 20px;
    bottom: 10px;*/
  }

  /*      Light_Cassa Page styles      */

  .cassa_img_block_2 .cassa_img_item,
  .cassa_img_item.cassa_img_item_2{
    border-radius: 30px;
  }
  .cassa_img_item{
    border-radius: 0 30px 30px 0;
  }
  .cassa_img_block_1{
    width: 95%;
  }
  .cassa_img_block_1 .cassa_img_item{
    width: 64%;
  }
  .cassa_img_item.cassa_img_item_2{
    width: 30%;
  }
  .cassa_step__img video{
    border-radius: 20px;
  }
  .cassa_img_block_2{
    margin-left: -31%;
  }
  .calc_name{
    width: 85%;
    font-size: 20px;
    padding: 17px;
  }
  .calc_img{
    height: 250px;
  }
  .calc_price{
    font-size: 20px;
    padding-top: 20px;
  }
  .tarif_item .text_item,
  .faq_answer{
    font-size: 18px;
  }
  .tarif_text .main_btn{
    margin-top: 20px;
  }
  .faq_question{
    font-size: 22px;
  }

  /*      POS Page styles      */

  .connect_btn{
    font-size: 16px;
    padding: 15px 40px;
  }
  .connect_img{
    border-radius: 30px 30px 0 0;
  }
  .gradient_block .text_item{
    font-size: 20px;
  }
  .gradient_price_old{
    font-size: 24px;
  }
  .gradient_price_new{
    font-size: 30px;
  }

  /*      TUS Page styles      */

  .tus_advan_item .advan_img{
    width: 70px;
    height: 70px;
  }
  .tus_text_item li{
    padding-left: 30px;
    background-size: 19px;
  }

  /*      Blog Page styles      */

  .blog_name{
    font-size: 20px;
  }
  .blog_date{
    font-size: 16px;
  }
  .blog_img,
  /*.blog_no_img,*/
  .blog_list .blog_item:nth-child(2), 
  .blog_list .blog_item:nth-child(6), 
  .blog_list .blog_item:nth-child(8){
    border-radius: 30px;
  }
  .pag{
    font-size: 16px;
  }

  /*      Blog_Inner Page styles    */

  .blog_content .text_item, 
  .news_list_item, 
  .share_text{
    font-size: 18px;
  }
  .sidebar_news{
    border-radius: 30px;
    margin-bottom: 30px;
  }
  .inner_img,
  .inner_img__small{
    border-radius: 30px;
  }
  .back_btn{
    width: 60px;
    height: 60px;
  }
  .blog_content{
    width: 65%;
  }

  /*      Part_Program Page styles   */

  .prog_block{
    width: 100%;
  }
  .prog_heading,
  .prog_body{
    border-radius: 30px;
  }
  .prog_item{
    width: 80%;
  }
  .prog_body .prog_item:not(:last-child){
    margin-bottom: 30px;
  }


  /*      Instruction Page styles   */
  .info_list {
    padding-right: 30px;
  }
  .quest_category {
    font-size: 20px;
    background-size: 8px;
  }
  .quest_category.active {
    background-size: 12px;
  }
  .quest_category_list {
    font-size: 16px;
  }
  .info_content .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 1000px;
  }
  .logo {
    width: 110px;
    height: 35px;
  }
  .head_login {
    /*display: none;*/
    display: block;
    padding: 10px 20px;
  }
  .sub_menu {
    top: -15px;
  }
  .header_top {
    padding: 15px 0;
  }
  .try_btn{
    width: 180px;
  }
  .head_tel{
    margin-right: 0;
  }
  .page {
    padding-top: 130px;
  }
  .title {
    font-size: 28px;
  }
  .try_btn {
    font-size: 14px;
  }
  .main_img_item {
    border-radius: 0 30px 30px 0;
  }
  .main_img_block_3 .main_img_item {
    border-radius: 30px 0 0 30px;
  }
  .main_video {
    height: 390px;
  }
  .play_btn {
    width: 90px;
    height: 55px;
  }
  .main_video_img {
    border-radius: 30px;
  }
  .advan_text {
    font-size: 14px;
  }
  .advan_name {
    font-size: 18px;
  }
  .pay_block {
    margin-top: -20px;
  }
  .pay_info_title {
    font-size: 22px;
  }
  .pay_info:after {
    width: 130px;
  }
  .pay_info:before {
    bottom: 19px;
    margin-left: 115px;
  }
  .slide_app__name {
    font-size: 16px;
  }
  .about_slider .more_btn {
    font-size: 16px;
  }
  .tel_form {
    width: 450px;
  }
  .product_slider {
    height: 420px;
  }
  .product_section{
    padding-bottom: 60px;
  }
  .product_slider .slick-dots{
    padding-right: 20%;
    padding-top: 20px;
  }
  .prod_item {
    height: 360px;
  }
  .prod_item.active {
    height: 400px;
  }
  .prod_text {
    padding: 20px;
  }
  .prod_text .title {
    font-size: 18px;
  }
  .prod_text .text_item {
    height: 80px;
  }
  .prod_text .more_btn {
    bottom: 30px;
  }
  .prod_text .text_item,
  .prod_text .more_btn {
    font-size: 14px;
  }
  .menu_link:after {
    bottom: -4px;
    height: 1px;
  }
  .serv_tab,
  .serv_text .text_item {
    font-size: 14px;
  }
  .serv_tab__item {
    padding: 12px 40px;
  }
  .serv_text {
    width: 55%;
  }
  .tel_form {
    width: 400px;
    font-size: 14px;
  }
  .animated {
    width: 350px;
    margin-right: -150px;
  }
  .comment {
    height: 330px;
  }
  .comment_text_block .text_item {
    font-size: 14px;
  }
  .comment_text_block .title {
    font-size: 22px;
  }
  .comment_img_name {
    font-size: 16px;
  }
  .partner_btn {
    padding: 13px 50px;
  }
  .partner_bottom {
    margin-top: -80px;
  }
  .more_btn {
    font-size: 16px;
  }
  .soc_btn {
    width: 35px;
  }
  .copyright {
    font-size: 14px;
  }

  .input_block{
    margin-bottom: 20px;
  }
  .reg_timer, 
  .reg_timer__block{
    font-size: 16px;
  }

  /*      Light_Cassa Page styles      */

  .cassa_block{
    margin-left: 7%;
  }
  .cassa_img{
    margin-bottom: -50px;
  }
  .cassa_img_block_1 .cassa_img_item{
    width: 62%;
  }
  .cassa_img_item.cassa_img_item_2{
    width: 29%;
  }
  .cassa_img_block_2{
    transform: translateY(-280px);
  }
  .main_video.pos_video{
    height: 420px;
  }
  .cassa_step__img{
    width: 270px;
  }
  .cassa_step__list{
    padding: 60px 0;
  }
  .cassa_step__list:after{
    top: 100px;
    bottom: 120px;
  }
  .tarif_list{
    margin-top: 40px;
  }
  .comment_slider_2{
    width: 90%;
  }
  .faq_question{
    font-size: 20px;
  }
  .faq_question{
    background-size: 10px;
  }
  .faq_question.active{
    background-size: 16px;
  }
  .light_item .title{
    font-size: 26px;
  }
  .light_item{
    padding: 30px 30px 0;
  }
  .light_img{
    height: 150px;
    margin-top: 20px;
  }
  .light_img.light_img_pos{
    margin-left: -30px;
    margin-right: -30px;
    height: 180px;
    margin-top: -20px;
  }
  .down_icon{
    width: 40px;
    height: 40px;
  }

  /*      POS Page styles      */

  /*.pay_list,*/
  .pay_list_block{
    font-size: 20px;
  }

  /*      TUS Page styles      */

  .tus_rows .title{
    font-size: 24px;
  }

  /*      Blog_Inner Page styles    */

  .inner_img__small{
    width: 300px;
  }
  .blog_content .text_item, 
  .news_list_item, 
  .share_text{
    font-size: 16px;
  }
  .sidebar_news__about .blog_date{
    bottom: 20px;
  }

  /*      Part_Program Page styles   */

  .prog_item{
    width: 100%;
  }

  /*      Instruction Page styles   */

  .title.title-inst{
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .container {
    width: 900px;
  }
  .main_img_block {
    margin-bottom: 40px;
  }
  .main_logo {
    display: none;
  }
  .try_btn {
    padding: 12px 25px;
  }
  .sub_menu {
    top: -10px;
  }
  .sub_menu_list {
    padding-top: 50px;
  }
  .main_img_block_2 {
    width: 93%;
  }
  .main_img {
    margin-top: 70px;
  }
  .main_video {
    height: 350px;
    margin-top: 40px;
  }
  .pay_block {
    margin-top: -10px;
  }
  .pay_info {
    width: 370px;
  }
  .pay_info_title {
    font-size: 20px;
  }
  .pay_info .text_item,
  .pay_info .more_btn {
    font-size: 14px;
  }
  .pay_info:before {
    bottom: 21px;
    width: 18px;
    height: 18px;
  }
  .about_slider .title {
    font-size: 24px;
  }
  .about_slider {
    width: 45%;
  }
  .prod_img {
    border-radius: 20px 20px 0 0;
  }
  .prod_item {
    border-radius: 20px;
  }
  .partner_bottom {
    margin-top: -60px;
    transform: translateY(90px);
  }

  /*      Light_Cassa Page styles      */

  .main_video.pos_video{
    height: 380px;
  }
  .pos_advan{
    justify-content: space-between;
    margin-bottom: -40px;
    margin-right: 0;
  }
  .pos_advan .pos_advan_item:nth-child(even){
    margin-right: 0;
  }
  .pos_advan_item{
    width: 46%;
    margin-bottom: 25px;
  }
  .pos_advan .pos_advan_item:nth-child(odd){transition-delay: 0.2s;}
  .pos_advan .pos_advan_item:nth-child(even){transition-delay: 0.6s;}

  .cassa_step__list,
  .calc_name{
    width: 100%;
  }
  .calc_img{
    height: 200px;
  }
  .calc_row_item .text_item{
    font-size: 18px;
  }
  .tarif_img{
    display: none;
  }
  .gradient_section{
    padding: 70px 0;
  }
  .comment_google{
    width: 90%;
  }
  .user_star img{
    width: 80px;
  }
  .user_img{
    width: 70px;
  }
  .comment_google_text{
    padding-left: 80px;
    font-size: 16px;
  }
  .comment_google_icon{
    width: 140px;
  }
  .faq_question{
    font-size: 18px;
  }
  .faq_answer{
    font-size: 16px;
  }
  .faq_question{
    background-size: 8px;
  }
  .faq_question.active{
    background-size: 13px;
  }
  .light_item .title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .light_img.light_img_pos{
    height: 160px;
  }
  .light_img{
    height: 120px;
  }

  /*      POS Page styles      */

  .connect_section{
    padding-top: 70px;
  }
  .connect_text{
    padding-right: 20px;
  }
  .connect_img{
    width: 65%;
  }
  .gradient_price{
    width: 70%;
  }

  /*      TUS Page styles      */

  .tus_rows{
    margin-top: 50px;
  }
  .tus_row_img{
    width: 50%;
  }
  .tus_rows .about_slider{
    width: 42%;
  }
  .about_slider .title{
    font-size: 22px;
  }
  .title.small_title{
    font-size: 24px;
  }

  /*      Blog Page styles      */

  .blog_name{
    font-size: 18px;
  }
  .blog_date{
    font-size: 14px;
  }
  .blog_icon{
    width: 40px;
    height: 40px;
  }
  .pag_btn{
    margin-bottom: 15px;
    background-size: 30%;
  }


  /*      Instruction Page styles   */
  .quest_category_list,
  .quest_type_list {
    padding-left: 15px;
  }
  .quest_category {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .container {
    width: 800px;
  }
  /*.try_btn {
    font-size: 13px;
  }
  .logo {
    width: 100px;
    margin-right: 10px;
  }
  .menu_link {
    font-size: 15px;
  }
  .head_menu > li:not(:last-child) {
    margin-right: 25px;
  }
  .sub_link {
    padding: 8px 20px;
  }*/

  .menu_link--main{
    display:block;
  }
  .logo {
    margin-right: 0;
    transition: 1.6s;
    width: 100px;
    background-position: right center;
  }
  .head_tel{
    display: none;
  }
  .mob_menu {
    display: block;
  }
  .header_top {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  .header_top .container {
    flex-direction: row-reverse;
  }
  .head_menu {
    flex-direction: column;
  }
  .sub_menu {
    width: 100%;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: 0s;
  }
  .head_menu > li:not(:last-child) {
    margin-right: 0;
  }
  .sub_menu_list {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .menu_link {
    display: block;
    padding: 15px 20px;
    padding-right: 35px;
  }
  .menu_link:after {
    display: none;
    content: none;
  }
  .sub_link {
    padding-left: 35px;
  }
  .sub_menu_link .menu_link {
    background: url('../img/menu_right.svg') right 20px center / 7px no-repeat;
  }
  .sub_menu_link .menu_link--main {
    background:none;
  }
  .sub_menu_link .menu_link.active {
    background-image: url('../img/menu_down.svg');
    background-size: 11px;
  }
  .try_btn {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }
  .try_btn.hide{
    margin-left: auto;
  }

  .page {
    padding-top: 110px;
  }
  section{
    padding: 70px 0;
  }
  .main_block .text_item {
    font-size: 16px;
  }
  .main_img_block {
    margin-bottom: 30px;
  }
  .main_btn {
    font-size: 15px;
  }
  .main_video {
    height: 320px;
    margin-top: 30px;
  }
  .play_btn {
    width: 80px;
    height: 50px;
    background-size: 25px 20px;
  }
  .advan_list {
    margin-top: 60px;
    margin-bottom: 0;
  }
  .pay_info {
    padding: 25px;
    transform: translateY(-60px);
  }
  .pay_info:after {
    width: 70px;
  }
  .pay_info:before {
    bottom: 34px;
    margin-left: 58px;
  }
  .pay_info .more_btn {
    margin-top: 20px;
  }
  .serv_tab__item {
    padding: 13px 25px;
  }
  .slider_row {
    margin-top: 40px;
  }
  .slider_row.slider_row_reverse,
  .slider_row {
    flex-direction: column;
  }
  .about_slider,
  .slider_block {
    width: 100%;
  }
  .about_slider {
    margin-bottom: 20px;
  }
  .product_slider {
    height: 480px;
  }
  .prod_item {
    height: 420px;
  }
  .prod_item.active {
    height: 470px;
  }
  .prod_img {
    height: 230px;
  }
  .prod_item.active .prod_img {
    height: 280px;
  }
  .serv_tab {
    margin: 30px 0 40px 0;
  }
  .serv_text {
    width: 70%;
    padding: 30px;
    margin-right: -60%;
  }
  .serv_img {
    width: 80%;
  }
  .tel_form {
    margin-top: 20px;
  }
  .animated svg {
    height: 100%;
    min-height:390px;
  }
  .support {
    margin-top: 30px;
    margin-bottom: -110px;
  }
  .support_img {
    display: none;
  }
  .animated {
    transform: none;
    margin-right: 30px;
  }
  .support_text {
    width: 50%;
  }
  .comment {
    height: 300px;
    border-radius: 25px;
  }
  .comment_slider {
    margin-top: 20px;
  }
  .comment_text_block {
    padding: 30px;
  }
  .comment_icon {
    height: 50px;
  }
  .partner_list {
    margin-top: 40px;
  }
  .part_item {
    height: 70px;
  }
  .partner_btn {
    font-size: 14px;
  }
  .tel_request {
    margin-top: 60px;
  }
  footer {
    padding: 50px 0 30px;
  }
  .foot_list_item {
    max-width: 170px;
  }
  .foot_list_name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .foot_link {
    font-size: 14px;
  }
  .foot_list_item > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .soc_btn {
    width: 30px;
    height: 25px;
  }

  /*      Light_Cassa Page styles      */

  .cassa_block{
    margin-left: 4%;
    width: 45%;
  }
  .cassa_img{
    margin-bottom: -80px;
  }
  .cassa_img_block_1 .cassa_img_item{
    width: 65%;
  }
  .cassa_img_item.cassa_img_item_2{
    width: 29%;
    transform: translateY(30px);
  }
  .cassa_img_block_2{
    margin-left: -26%;
    transform: translateY(-250px);
  }
  .cassa_img_block_1{
    width: 90%;
  }
  .main_video.pos_video{
    height: 340px;
  }
  .calc_item{
    width: 45%;
  }

   /*      POS Page styles      */

  .pos_text_slider,
  .pos_list{
    width: 30%;
  }
  .pos_img_slider{
    width: 25%;
  }
  .connect_block{
    flex-direction: column;
  }
  .connect_img{
    width: 100%;
  }
  .connect_text{
    width: 50%;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .light_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /*      TUS Page styles      */

  .tus_advan{
    width: 75%;
    grid-template-columns: repeat(2, 40%);
  }
  .tus_rows .about_slider,
  .tus_row_img{
    width: 100%;
  }
  .gal_item{
    height: 210px;
  }

  /*      Blog Page styles      */

  /*.blog_full_img,*/
  .blog_list .blog_item:nth-child(4){
    width: 50%;
  }
  /*.blog_big_img,*/
  .blog_list .blog_item:nth-child(3), 
  .blog_list .blog_item:nth-child(9){
    width: 46%;
  }
  /*.blog_normal,*/
  .blog_list .blog_item:nth-child(1), 
  .blog_list .blog_item:nth-child(5), 
  .blog_list .blog_item:nth-child(7){
    width: 35%;
  }
  .blog_list .blog_item:nth-child(3), 
  .blog_list .blog_item:nth-child(6), 
  .blog_list .blog_item:nth-child(9){
    margin-right: 2%;
  }
  .blog_list{
    margin-right: -2%;
  }

  /*      Blog_Inner Page styles    */

  .inner_img{
    height: 290px;
  }
  .rel_news .blog_full_img{
    width: 55%;
  }
  .rel_news .blog_normal{
    width: 40%;
  }
  .rel_news .blog_big_img{
    width: 45%;
  }

  /*      Part_Program Page styles   */

  .prog_heading,
  .prog_body{
    padding: 30px;
  }

  /*      Instruction Page styles   */
  .info_list {
    width: 36%;
  }
  .info_content_block {
    width: 60%;
  }
  .info_list,
  .quest_category {
    padding-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .container {
    width: 700px;
  }
  
  .cassa_text p,.cassa_text ul,.cassa_text,.cassa_text ol{
    font-size: 16px;
  }
  .cassa_text ul li{
    font-size:16px;
  }
  .breadcrumbs{
    display:block;
  }

  /*.menu_link--main{
    display:block;
  }
  .logo {
    margin-right: 0;
    transition: 1.6s;
    width: 100px;
    background-position: right center;
  }
  .head_tel{
    display: none;
  }
  .mob_menu {
    display: block;
  }
  .header_top {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  .header_top .container {
    flex-direction: row-reverse;
  }
  .head_menu {
    flex-direction: column;
  }
  .sub_menu {
    width: 100%;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: 0s;
  }
  .head_menu > li:not(:last-child) {
    margin-right: 0;
  }
  .sub_menu_list {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .menu_link {
    display: block;
    padding: 15px 20px;
    padding-right: 35px;
  }
  .menu_link:after {
    display: none;
    content: none;
  }
  .sub_link {
    padding-left: 35px;
  }
  .sub_menu_link .menu_link {
    background: url('../img/menu_right.svg') right 20px center / 7px no-repeat;
  }
  .sub_menu_link .menu_link--main {
    background:none;
  }
  .sub_menu_link .menu_link.active {
    background-image: url('../img/menu_down.svg');
    background-size: 11px;
  }
  .try_btn {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }
  .try_btn.hide{
    margin-left: auto;
  }*/

  .pay_info {
    width: 330px;
  }
  .pay_block {
    margin-top: 0;
  }
  .product_slider {
    height: 440px;
  }
  .prod_item {
    height: 380px;
  }
  .prod_item.active {
    height: 420px;
  }
  .prod_item.active .prod_img {
    height: 230px;
  }
  .prod_img {
    height: 180px;
  }
  .serv_img {
    width: 90%;
  }
  .serv_text {
    width: 80%;
    margin-right: -70%;
  }
  .foot_list_item {
    max-width: 130px;
  }

  #reg_popup .fancybox-close-small{
    right: 5px;
  }
  .foot_popup .text_item{
    margin-bottom: 20px;
  }
  .popup_link,
  .reg_step_next{
    font-size: 16px;
  }
  .popup.foot_popup{
    padding: 30px;
  }

  /*      Light_Cassa Page styles      */

  .cassa_block{
    margin-left: 0;
    width: 60%;
  }
  .calc_icon{
    display: none;
  }
  .main_video.pos_video{
    width: 90%;
  }
  .calc_img.cassa_calc_img img{
    width: auto;
  }
  .calc_name{
    font-size: 18px;
  }
  .calc_row_item{
    width: 45%;
  }
  .tarif_name{
    font-size: 20px;
  }
  .tarif_item .text_item,
  .user_name{
    font-size: 16px;
  }
  .comment_slider_2{
    width: 100%;
    padding: 0 50px;
  }
  .user_img{
    width: 60px;
  }
  .user_star img{
    width: 70px;
  }
  .comment_google_text{
    padding-left: 70px;
  }
  .comment_slider_2 .slider_arrow{
    background-size: 25%;
  }
  .faq_question{
    padding: 20px 25px;
  }
  .faq_answer{
    padding: 0 25px 25px;
  }
  .light_item .title{
    font-size: 22px;
  }
  .light_img.light_img_pos{
    height: 130px;
    margin-top: -10px;
  }
  .light_img{
    height: 110px;
  }

   /*      POS Page styles      */

   /*.pay_list,*/
   .pay_list_block,
   .gradient_block .text_item{
    font-size: 18px;
   }
   .gradient_block{
    width: 550px;
   }
   .gradient_price_old{
    font-size: 22px;
   }
   .gradient_price_new{
    font-size: 26px;
   }

   /*      TUS Page styles      */

   .tus_advan{
    width: 85%;
   }
   .tus_text_item_2 ul{
    width: 100%;
   }

   /*      Blog_Inner Page styles    */

   .sidebar_news .blog_img{
    display: none;
   }
   .sidebar_news__about{
    padding-bottom: 50px;
    width: 100%;
   }

   /*      Part_Program Page styles   */

   .prog_block{
    flex-direction: column;
   }
   .prog_heading, 
   .prog_body{
    width: 100%;
   }
   .prog_heading{
    margin-bottom: 30px;
    flex-direction: row;
    padding: 50px;
   }
   .prog_heading__top .title{
    color: #333;
   }
   .prog_heading__text{
    text-align: left;
    margin-top: 0;
   }
   .prog_heading__img{
    flex-shrink: 0;
    margin-right: 100px;
   }
   .prog_body{
    box-shadow: none;
    border-radius: 0;
    padding: 0;
   }
   .prog_item{
    padding: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    background-color: #EDF0F7;
   }
   .prog_item .advan_img{
    margin-left: 0;
    margin-right: 100px;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    margin-left: 20px;
   }
   .prog_item .advan_img img{
    width: 100%;
   }
   .prog_item .advan_text{
    text-align: left;
   }
   .prog_heading__text .text_item,
   .prog_item .advan_text{
    font-size: 18px;
    font-weight: 500;
   }
}
@media screen and (max-width: 800px) {
  .container {
    width: 600px;
  }
  .main_block {
    width: 100%;
  }
  .main_img_item {
    border-radius: 0 20px 20px 0;
  }
  .faq-section{
    padding-bottom:0;
  }
  .advan_img {
    width: 35px;
    height: 35px;
  }
  .advan_img--kassa{
    width:26px;
    height:26px;
  }  
  .tel_form_input{
    font-weight:normal;
  }
  .main_img_block_3 .main_img_item {
    border-radius: 20px 0 0 20px;
  }
  .main_img {
    margin-top: 50px;
  }
  .cassa_img_block_2 .cassa_img_item{
    margin-bottom:20px;  
  }
  .download_text {
    display: table;
  }
  .main_video,
  .advan_item {
    width: 100%;
  }
  .advan_list {
    flex-direction: column;
  }
  .advan_list .advan_item:nth-child(even),
  .advan_list .advan_item:nth-child(odd){
    transition-delay: 0.2s;
  }

  .advan_list .advan_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .advan_name {
    font-size: 20px;
  }
  .advan_text {
    font-size: 16px;
  }
  .pay_block {
    display: flex;
    flex-direction: column-reverse;
  }
  .pay_block .container {
    position: static;
    transform: none;
  }
  .pay_info {
    margin-top: 30px;
    width: 100%;
    transform: none;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .pay_info:after,
  .pay_info:before {
    content: none;
    display: none;
  }
  .serv_tab {
    overflow: auto;
    font-size: 16px;
  }
  .serv_tab {
    margin: 20px 0 35px 0;
  }
  .serv_tab .slick-slide {
    outline: none;
  }
  .serv_tab__item {
    flex-shrink: 0;
    color: rgba(14, 37, 74, 0.5);
    border-radius: 0;
    background-color: transparent;
  }
  .serv_tab__item:hover {
    color: #0E254A;
  }
  .serv_tab__item.active,
  .serv_tab__item.active:hover {
    font-weight: bold;
    text-decoration: underline;
    background-color: transparent;
    color: #0E254A;
  }
  .serv_content {
    /*display: flex;
    flex-direction: column;*/
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    margin: 20px;
  }
  .serv_img,
  .serv_text {
    width: 100%;
  }
  .serv_text {
    margin-right: 0;
    border-radius: 0 0 30px 30px;
  }
  .serv_text .title {
    display: none;
  }
  .serv_img {
    max-height: 300px;
    border-radius: 30px 30px 0 0;
  }
  .comment_slider .slick-track {
    display: flex;
  }
  .comment_slider .slick-slide {
    height: auto;
  }
  .comment {
    height: 90%;
  }
  .tus_system {
     margin-top: 70px;
  }
  .part_item {
    height: 50px;
    width: 18%;
    margin-right: 2%;
  }
  .faq_info{
    margin-bottom:30px;
  }
  .info_list--hidden{
    display:none;
  }
  .info_content_block--show{
    display:block !important;
    width:100%;
  }
  .footer_top {
    flex-wrap: wrap;
  }
  .foot_list {
    width: 45%;
    margin-bottom: 40px;
  }
  .foot_list_item {
    max-width: 100%;
  }
  .footer_bottom {
    margin-top: 20px;
  }

  /*      Light_Cassa Page styles      */

  .cassa_img_block_2 .cassa_img_item, 
  .cassa_img_item.cassa_img_item_2{
    border-radius: 20px;
  }
  .cassa_img_item{
    border-radius: 0 20px 20px 0;
  }
  .cassa_img_block_2{
    transform: translateY(-200px);
  }
  .pay_list_block ul li{
    font-size:15px;
  }
  .main_video.pos_video{
    width: 100%;
  }
  .cassa_step__img{
    width: 250px;
    margin-right: 40px;
  }
  .step_item{
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
  }
  .cassa_step__list{
    padding: 30px 0;
  }
  .cassa_step__list:after{
    left: 18px;
    right: auto;
    height: auto;
    width: 0;
    top: 15%;
    bottom: 15%;
    border-right: 3px solid #333;
  }
  .step_num{
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 20px;
  }
  .calc_name{
    padding: 15px;
    font-size: 16px;
  }
  .calc_price,
  .tarif_name{
    font-size: 18px;
  }
  .calc_row_item .text_item{
    font-size: 16px;
  }
  .comment_google_icon{
    width: 120px;
  }
  .user_star img{
    width: 60px;
  }
  .user_date,
  .comment_google_text{
    font-size: 14px;
  }
  .light{
    flex-direction: column;
  }
  .light .light_item:not(:last-child){
    margin-bottom: 40px;
  }
  .light_item{
    width: 100%;
  }
  .light_img{
    height: 150px;
  }
  .light_img.light_img_pos{
    height: 180px;
  }

  /*      POS Page styles      */

  .pos{
    margin-bottom: 70px;
    flex-wrap: wrap;
  }
  .pos_text_slider{
    width: 100%;
    order: 3;
    margin-top: 20px;
  }
  .pos_img_slider{
    width: 40%;
    order: 1;
  }
  .pos_list{
    width: 45%;
    order: 2;
  }
  /*.pay_list,*/
  .pay_list_block{
    width: 90%;
  }

  /*      Blog Page styles      */

  .blog_img, 
  /*.blog_no_img,*/
  .blog_list .blog_item:nth-child(2), 
  .blog_list .blog_item:nth-child(6), 
  .blog_list .blog_item:nth-child(8){
    border-radius: 20px;
  }
  /*.blog_normal,*/
  .blog_list .blog_item:nth-child(1), 
  .blog_list .blog_item:nth-child(5), 
  .blog_list .blog_item:nth-child(7){
    width: 40%;
  }

  /*      Blog_Inner Page styles    */
  .tel_request {
    margin-top: 50px;
  }
  .share_block{
    flex-direction: column;
  }
  .share_links{
    margin-left: -15px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 690px) {
  body{
    overflow-x:hidden;
  }  
  .container {
    width: 520px;
  }  
  .title {
    font-size: 24px;
  }
  .download_text {
    font-size: 14px;
    /*padding-right: 20px;*/
  }
  .main_block{
    text-align:left;
  }
  .title.title_center,.text_item,.main_block .text_item,.advan_item{
    text-align:left;
  } 
  .advan_img{
    margin:0 0 10px 0;
  }
  .advan_img {
    width: 34px;
    height: 34px;
  }
  .advan_img--kassa{
    width:27px;
    height:27px;
  }  
  .main_btn{
    margin: 20px 0;
  }
  .main_video {
    height: 250px;
    margin-top: 20px;
  }
   .main_block .title{
    text-align:left;
  }  
  .tuc-text .title,.tuc-text .text_item{
    text-align:center;
  }
  .tuc-text .main_btn {
    display: inline-block;
  }  
  .play_btn {
    width: 70px;
    height: 45px;
    background-size: 20px 15px;
  }
  .main_video_img {
    border-radius: 20px;
  }
  .about_slider .title {
    font-size: 22px;
  }
  .tel_request {
    margin-top: 40px;
  }
  .product_section{
    padding-bottom: 60px;
  }
  .product_slider {
    height: 410px;
    margin-bottom: -50px;
  }
  .product_slider .slick-list {
    height: 100%;
  }
  .tus_system {
     margin-top: 50px;
  }
  .tus_rows .slider_row:not(:last-child) {
    margin-bottom: 50px;
  }
  .tus_rows .slider_row:not(:last-child) {
    margin-bottom: 50px;
  }
  .prod_item {
    margin-left: 15px;
    height: 330px;
  }
  .prod_item.active {
    height: 370px;
  }
  .prod_img {
    height: 120px;
  }
  .prod_item.active .prod_img {
    height: 170px;
  }
  .prod_text .title {
    font-size: 16px;
  }
  .prod_text .text_item {
    font-size: 13px;
    height: 90px;
  }
  .product_scroll {
    display: none;
  }
  .slick-dots > li button {
    padding: 5px;
  }
  .serv_tab {
    margin-top:0;
    margin-bottom: 20px;
  }
  .serv_tab__item {
    margin-bottom: 5px;
  }
  .support_text {
    display: none;
  }
  .animated {
    margin: 0 auto;
    width: 400px;
    max-width: 100%;
  }
  .comment {
    margin: 5px 10px 15px;
    height: 95%;
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .comment_img {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
  }
  .comment_arrow {
    font-size: 14px;
  }
  .comment_icon {
    margin: 0 5px 5px;
  }
  .comment_text_block .title {
    font-size: 20px;
  }
  .part_item {
    height: 40px;
  }
  footer .container {
    padding: 0;
  }
  .title.reg_title{
    text-align: center;
  }
  .cassa_type_item{
    padding: 20px 20px 0;
    border-radius: 20px;
  }
  #reg_popup{
    border-radius: 20px;
  }

  /*      Light_Cassa Page styles      */

  .cassa_block{
    width: 100%;
    margin-bottom: 40px;
  }

  .cassa_img{
    align-items: center;
    justify-content: space-between;
  }
  .cassa_img_block_1,
  .cassa_img_block_2{
    width: 48%;
  }
  .cassa_img_block_1 .cassa_img_item,
  .cassa_img_item.cassa_img_item_2{
    width: 100%;
    transform: none;
  }
  .cassa_img_block_1{
    align-items: flex-start;
    flex-direction: column;
  }
  .cassa_img_block_2{
    transform: none;
    margin-left: 0;
  }
  .cassa_img_item_2{
    margin-top: 40px;
  }
  .cassa_img_item.cassa_img_item_2{
    border-radius: 0 20px 20px 0;
  }
  .cassa_img_block_2 .cassa_img_item{
    border-radius: 20px 0 0 20px;
  }

  .main_video.pos_video{
    height: 270px;
    margin-top: 30px;
  }
  .cassa_step__img{
    width: 220px;
    margin-right: 30px;
  }
  .step_num{
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .cassa_step__list:after{
    left: 17px;
    border-width: 2px;
    bottom: 16%;
  }
  .cassa_step{
    margin-top: 40px;
  }
  .down_icon{
    width: 35px;
    height: 35px;
  }
  .calc_top{
    margin-bottom: 40px;
  }
  .calc_item,
  .calc_row_item{
    width: 47%;
  }
  .calc_name{
    font-size: 14px;
  }
  .calc_price{
    font-size: 16px;
  }
  .calc_img{
    height: 160px;
  }
  .calc_item .main_btn{
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .calc_row_item .text_item{
    text-align: center;
  }
  .calc_body .title{
    margin-bottom: 30px;
  }
  .tarif_list{
    flex-direction: column;
    align-items: center;
  }
  .tarif_item{
    max-width: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .tarif_item .text_item,
  .tarif .title{
    text-align: center;
  }
  .tarif_text .main_btn{
    margin-left: auto;
    margin-right: auto;
  }
  .gradient_section{
    padding: 50px 0;
  }
  .comment_slider_2{
    padding: 0;
    margin-top: 20px;
  }
  .comment_google{
    width: 93%;
  }
  .faq_question{
    padding: 17px 20px;
    background-position: right 20px center;
  }
  .faq_answer{
    padding: 0 20px 20px;
  }
  .light_item .title,
  .light_item .text_item{
    text-align: center;
  }

  /*      POS Page styles      */

  /*.pay_list,*/
  .pay_list_block{
    width: 100%;
  }
  .gradient_block .title,
  .gradient_block .text_item{
    text-align: center;
  }

  /*      TUS Page styles      */

  .tus_advan{
    width: 100%;
  }
  .title.small_title{
    font-size: 22px;
  }
  .gal_item{
    height: 260px;
    transform: none;
    margin: 0 20px 20px;
  }
  .gallery_slider{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .tus_advan_item .advan_img{
    width: 45px;
    height: 45px;
  }
  .tus_advan{
    grid-template-columns: repeat(2, 45%);
  }

  /*      Blog_Inner Page styles    */

  .blog_inner{
    flex-direction: column;
  }
  .blog_content,
  .blog_sidebar{
    width: 100%;
  }
  .blog_sidebar{
    margin-top:35px;
  }
  .blog_content .tel_request{
    display: none;
  }
  .rel_news .blog_list{
    display: none;
  }
  .rel_news{
    margin-top: 50px;
  }
  .sidebar_news{
    border-radius: 20px;
  }
  .news_list_item{
    font-size: 18px;
  }
  .sidebar_title{
    display: block;
  }
  .sidebar_news__about{
    position: static;
    padding: 0;
    background-color: transparent;
  }
  .sidebar_news__about .blog_date,
  .sidebar_news__about .blog_icon{
    display: none;
  }
  .sidebar_news{
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 10px;
  }
  .sidebar_news__about .blog_name{
    color: #5087DE;
    font-weight: 500;
    text-decoration: underline;
  }
  .sidebar_news__about .blog_name:hover{
    text-decoration: none;
  }

  /*      Part_Program Page styles   */

  .prog_item,
  .prog_heading{
    padding: 40px;
  }
  .prog_heading__img,
  .prog_item .advan_img{
    margin-right: 50px;
  }
  .prog_heading__img img{
    height: 100%;
    object-fit: contain;
  }
  .prog_tel_request .text_item:first-child{
    display: none;
  }

  /*      Instruction Page styles   */
  .info {
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
    background-color: #EDF0F7;
  }
  .quest_category {
    width: 100%;
    font-size: 24px;
    padding-right: 0;
    background-image: none;
  }
  .quest_category.active {
    text-decoration: none;
    background-image: none;
  }
  .quest_category:hover {
    text-decoration: none;
  }
  .quest_type {
    font-weight: bold;
    padding: 10px 0;
    border-top: 1px solid #333;
    background: url('../img/menu_right.svg') right 10px center / 7px no-repeat;
  }
  .quest_type.active {
    background-size: 10px;
    background-image: url('../img/menu_down.svg');
  }
  .quest_category_list .quest_type:not(:first-child) {
    margin-top: 0;
  }
  .quest_category_list .quest_type:last-child {
    border-bottom: 1px solid #333;
  }
  .quest_category_list {
    padding-left: 0;
  }

  .quest_type_list {
    padding-top: 0;
    padding-bottom: 10px;
  }
  .info_list {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }
  .info_content_block {
    display: none;
  }
  .info_content {
    top: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(20px);
  }
  .answer_list {
    margin-right: -20px;
    margin-left: -35px;
    height: auto;
    padding: 20px;
    padding-left: 35px;
  }
  .answer_list.active {
    margin-bottom: 20px;
  }
  .info_content .title {
    font-size: 20px;
  }
  /*.info_btn {
    display: table;
  }*/
}
@media screen and (max-width: 570px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .try_btn {
    font-size: 13px;
    width: 170px;
  }
  .logo {
    /*width: 80px;*/
    height: 30px;
  }
  .under_nav {
    position: fixed;
    width: 100%;
    bottom: 0;
    top: 50px;
    box-shadow: none;
    border-radius: 0;
    max-height: none;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .tel_form_input{
    font-weight:normal;
  }
  .calc_item .main_btn{
    padding:15px 20px;
    margin-bottom:0px;
  }
  .head_menu {
    overflow: hidden;
    padding-bottom: 50px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  .head_login{
    margin-top: -50px;
  }
  .mob_menu {
    margin-right: 0;
  }
  .main_img_item {
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  }
  .main_img_block_3 .main_img_item {
    border-radius: 10px 0 0 10px;
  }
  .main_img_block {
    margin-bottom: 20px;
  }
  .main_video {
    height: 220px;
  }
  section{
    padding: 50px 0;
  }
  .advan_img {
    width: 31px;
    height: 31px;
  }
  .advan_img--kassa{
    width:27px;
    height:27px;
  }  
  .slide_app__img {
    border-radius: 20px;
  }
  .product_slider {
    margin-bottom: -50px;
  }
  /*.pay_section{
    padding-top: 100px;
  }*/
  .cassa_text p:first-child{
    max-height: 95px;
    overflow: hidden;
  }
  .cassa_text.cassa_text--active p:first-child{
    overflow: none;
    max-height: none;
  }
  .partner_bottom{
    transform: translateY(70px);
  }
  footer .container {
    padding: 0 20px;
  }

  .pass_eye{
    /*width: 25px;
    height: 20px;
    bottom: 14px;*/
  }
  .reg_timer__block{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .reg_second_timer{
    margin-bottom: 10px;
  }
  .cassa_type_item{
    flex-direction: column;
    align-items: center;
  }
  .cassa_type_text{
    text-align: center;
    margin-bottom: 20px;
  }
  .cassa_type_text .title{
    margin-bottom: 10px;
  }
  .cassa_type_img{
    width: 80%;
  }

  /*      Light_Cassa Page styles      */

  .pos_advan .pos_advan_item:nth-child(odd),
  .pos_advan .pos_advan_item:nth-child(even){
    transition-delay: 0.2s;
  }

  /*      POS Page styles      */

  .pos_img_slider{
    width: 45%;
  }
  /*.pay_list,*/
  .pay_list_block{
    font-size: 16px;
  }
  /*.pay_list .pay_list_item:not(:last-child),*/
  .pay_list_block ul li:not(:last-child){
    margin-bottom: 20px;
  }
  /*.pay_list_item,*/
  .pay_list_block ul li{
    background-size: 25px;
    padding-left: 40px;
  }
  .connect_btn{
    font-size: 14px;
    margin-top: 20px;
  }
  .gradient_price{
    width: 80%;
  }
  .connect_text{
    width: 70%;
  }

  /*      Blog Page styles      */

  .blog_list{
    margin-right: 0;
  }
  .blog_item,
  .blog_list .blog_item:nth-child(even), 
  .blog_list .blog_item:nth-child(odd){
    width: 100%;
    margin-right: 0;
  }
  .blog_img,
  /*.blog_full_img .blog_img,*/
  .blog_list .blog_item:nth-child(4) .blog_img{
    height: 300px;
  }
  /*.blog_no_img,*/
  .blog_list .blog_item:nth-child(2), 
  .blog_list .blog_item:nth-child(6), 
  .blog_list .blog_item:nth-child(8){
    min-height: 300px;
  }
  .blog_news_list{
    display: block;
    margin-bottom: 40px;
  }
  .blog_news_list .news_list_item{
    font-size: 18px;
  }
  .pagination{
    margin-top: 30px;
  }
  .pag{
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 14px;
  }
  .pag_btn{
    width: 30px;
    height: 30px;
  }

  /*      Blog_Inner Page styles    */

  .share_text{
    display: none;
  }
  .share_title{
    display: block;
  }
  .share_links{
    margin-top: 0;
  }

  /*      Part_Program Page styles   */

  .prog_item, 
  .prog_heading{
    padding: 30px;
    border-radius: 20px;
  }
  .prog_item .advan_img{
    width: 120px;
    height: 120px;
  }
  .prog_heading__text .text_item, 
  .prog_item .advan_text{
    font-size: 16px;
  }
  .prog_discont{
    font-size: 60px;
  }
  .prog_heading__img{
    width: 150px;
    margin-right: 40px;
  }
  .title-ccc{
    font-size:30px;
  }
}
@media screen and (max-width: 500px) {
  .logo {
    width: 90px;
    flex-shrink: 1;
  }
  .download_text{
    width: 150px;
  }
  .comment_slider {
    margin-left: -20px;
    margin-right: -20px;
  }
  .comment_slider .slick-dots {
    margin-top: -40px;
  }
  .comment {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 40px;
  }
  .comment_img{
    height: 300px;
  }
  .comment_text_block {
    margin: 0 20px;
    z-index: 2;
    border-radius: 20px;
    background-color: #fff;
    transform: translateY(-20px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  }
  .comment_arrows {
    display: none;
  }
  .product_slider .slick-dots{
    padding-right: 0;
  }
  .product_slider,
  .prod_item.active {
    height: auto;
  }
  .product_slider {
    width: auto;
    margin-left: -20px;
    margin-right: -20px;
  }
  .product_slider .slick-current .prod_item{
    margin-right:10px;
    margin-left: 10px;
  }
  .prod_item {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    height: 90%;
  }
  .prod_item.active {
    height: 90%;
    margin: 25px 10px 15px;
    margin-left: 15px;
  }
  .prod_item.active .prod_img,
  .prod_img {
    height: 240px;
  }
  .prod_text {
    padding-bottom: 50px;
  }
  .prod_text .title {
    font-size: 18px;
  }
  .prod_text .text_item {
    font-size: 14px;
    height: auto;
    max-height: 115px;
  }
  .prod_text .more_btn {
    bottom: 20px;
  }
  .prod_img {
    border-radius: 20px 20px 0 0;
  }
  .prod_item {
    border-radius: 20px;
  }
  .serv_text {
    padding: 20px;
  }
  .tel_request {
    margin-top: 30px;
  }
  .support {
    margin-top: 0;
  }
  .foot_list {
    width: 48%;
  }
  .copyright {
    font-size: 13px;
  }

  #reg_popup{
    padding: 20px;
  }
  .reg_slider{
    padding: 0;
  }
  .title.reg_title, .cassa_type_text .title{
    font-size: 22px;
  }
    .calc_item .main_btn{
    padding:15px 10px;
  }  

  /*      Light_Cassa Page styles      */

  .cassa_img_item_2{
    margin-top: 20px;
  }
  .main_video.pos_video{
    height: 230px;
  }
  .pos_advan{
    margin-top: 50px;
  }
  .pos_advan_item{
    width: 100%;
  }
  .pos_advan .pos_advan_item:nth-child(odd){
    margin-right: 0;
  }
  .cassa_step__list{
    padding: 15px 0;
  }
  .cassa_step__img{
    width: 210px;
    margin-right: 25px;
  }
  .step_item .text_item{
    font-size: 14px;
  }
  .calc_body .title{
    padding-left: 20px;
  }
  .cassa_step__list:after{
    top: 12%;
    bottom: 17%;
  }
  .calc_name{
    padding: 12px;
    font-size: 13px;
    margin-bottom: 30px;
  }
  .calc_img{
    height: 140px;
  }
  .calc_price{
    margin-top: 20px;
    padding-top: 10px;
  }
  .calc_price{
    font-size: 14px;
  }
  .calc_row_item .calc_price{
    font-size: 16px;
  }
  .calc_item .main_btn{
    padding: 12px 25px;
  }
  .tarif_text .main_btn{
    margin-top: 0;
  }
  .comment_google_top{
    align-items: flex-start;
  }
  .comment_google_icon{
    width: 100px;
    margin-left: -50px;
  }
  .user_img{
    width: 50px;
  }
  .about_user{
    padding-top: 5px;
  }
  .user_date{
    font-size: 13px;
  }
  .comment_google_text{
    padding: 10px 10px 10px 60px;
  }
  .light{
    margin-left: -20px;
    margin-right: -20px;
  }

  /*      POS Page styles      */

  .pos_list{
    font-size: 16px;
  }
  .pos_img_slider{
    width: 50%;
  }
  .connect_section{
    padding-top: 50px;
  }
  .gradient_price{
    width: 100%;
    flex-direction: column;
  }
  .gradient_price_old{
    font-size: 20px;
    margin-bottom: 20px;
  }

  /*      TUS Page styles     */

  .tus_text_item_2 ul li{
    width: 100%;
  }
  .gallery_slider{
    width: 100%;
  }
  .tus_advan{
    margin-top: 50px;
    grid-template-columns: 100%;
    grid-gap: 50px 10px;
  }
  .tus_img .tus_img__desktop,
  .tus_row_img .tus_row_img__desktop{
    display: none;
  }
  .tus_img .tus_img__mobile,
  .tus_row_img .tus_row_img__mobile{
    display: block;
  }
  .tus_row_img{
    width: 80%;
  }

  /*      Blog_Inner Page styles    */

  .inner_img{
    height: 300px;
  }
  .inner_img__main{
    display: none;
  }
  .inner_img__small{
    position: static;
    width: 100%;
    min-height: 100%;
    max-height: none;
    transform: none;
  }
  .back_btn{
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  /*      Part_Program Page styles   */

  .prog_item .advan_img{
    width: 90px;
    height: 90px;
    margin-left: 10px;
  }
  .prog_heading__img{
    width: 110px;
  }
  .title-ccc{
    font-size:30px;
  }
}
@media screen and (max-width: 400px) {
  .logo {
    margin-left: 10px;
    transition: 1s;
  }
  .title {
    font-size: 22px;
  }
  .header_top.scroll .logo{
    width: 0;
  }
  .download_text{
    width: 120px;
    border-radius: 5px;
  }
  .mob_menu {
    margin-right: 10px;
  }
  .pop-bottom a{
    width: 48%;
  }
  .try_btn {
    overflow: hidden;
    width: 150px;
    /*white-space: normal;*/
    font-size: 12px;
    /*margin: 0 15px;*/
    text-align: center;
    padding: 10px 20px;
    margin-right: 0;
  }
  .main_video {
    height: 160px;
  }
  .advan_name {
    font-size: 18px;
  }
  .advan_text {
    font-size: 14px;
  }
   .calc_item .main_btn{
    padding:15px 10px;
  }  
  .tel_form_input {
    padding: 15px 30px;
  }
  .tel_form_btn {
    width: 100%;
    position: relative;
    right: 0;
    transform: none;
    display: table;
    padding: 12px 20px;
    margin: 15px auto 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  }
  .prod_item.active .prod_img,
  .prod_img {
    height: 180px;
  }
  .footer_bottom {
    flex-direction: column-reverse;
  }
  .copyright {
    margin-top: 20px;
  }

  .comment_img{
    height: 250px;
  }

  .reg_step{
    margin: 0 10px 20px;
  }
  .reg_input{
    font-size: 16px;
  }
  .reg_step_next{
    margin-top: 30px;
  }
  .pass_eye{
    /*bottom: 13px;
    right: 15px;*/
    bottom: -2px;
    right: 13px;
  }
  .popup.foot_popup{
    padding: 20px;
  }

  /*      Light_Cassa Page styles      */

  .main_video.pos_video{
    height: 180px;
  }
  .calc_body .title{
    padding-left: 10px;
  }
  .down_icon{
    width: 30px;
    height: 30px;
    margin-left: 15px;
  }
  .cassa_step__img{
    width: 160px;
    margin-right: 10px;
  }
  .cassa_step__img video{
    border-radius: 10px;
  }
  .cassa_step{
    align-items: center;
  }
  .cassa_step__list:after{
    left: 12px;
    bottom: 25%;
    top: 15%;
  }
  .step_item{
    margin-bottom: 10px;
  }
  .step_num{
    width: 25px;
    height: 25px;
    font-size: 12px;
    margin-right: 10px;
  }
  .step_item .text_item{
    font-size: 12px;
  }
  .calc_name{
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .calc_row_item .text_item{
    font-size: 14px;
    margin-top: 5px;
  }
  .user_name{
    font-size: 14px;
  }
  .user_date{
    font-size: 12px;
  }
  .comment_google{
    padding: 15px 15px 10px;
  }
  .comment_google_icon{
    width: 80px;
  }
  .comment_google_text{
    padding: 10px;
  }
  .user_img{
    width: 40px;
  }
  .user_star img{
    width: 50px;
  }
  .about_user{
    padding-top: 3px;
  }
  .faq_question{
    padding: 15px;
    padding-right: 30px;
    font-size: 16px;
    background-position: right 15px center;
  }
  .faq_question.active{
    background-size: 11px;
  }
  .faq_answer{
    font-size: 14px;
    padding: 0 15px 15px;
  }
  .light_img.light_img_pos,
  .light_img{
    height: auto;
  }

  /*      POS Page styles      */

  .pos_list{
    font-size: 14px;
  }
  .pos_list_item{
    padding-right: 15px;
  }
  .connect_text{
    width: 100%;
  }
  .gradient_block .text_item{
    font-size: 16px;
  }
  .gradient_price_old{
    font-size: 18px;
  }
  .gradient_price_new{
    font-size: 24px;
  }

  /*      TUS Page styles     */

  .title.small_title{
    font-size: 20px;
  }
  .gal_item{
    height: 200px;
  }
  .tus_row_img,
  .tus_img{
    width: 90%;
  }
  .tus_img{
    margin-top: 30px;
  }

  /*      Blog Page styles      */

  .blog_img, 
  /*.blog_full_img .blog_img,*/
  .blog_list .blog_item:nth-child(4) .blog_img{
    height: 230px;
  }
  .blog_list .blog_item:nth-child(4) .blog_img{
    margin-bottom: 0;
  }
  /*.blog_no_img,*/
  .blog_list .blog_item:nth-child(2), 
  .blog_list .blog_item:nth-child(6), 
  .blog_list .blog_item:nth-child(8){
    min-height: 230px;
    padding: 20px 20px 50px;
  }
  /*.blog_full_img .blog_date, */
  /*.blog_no_img .blog_date,*/
  .blog_list .blog_item:nth-child(2) .blog_date, 
  .blog_list .blog_item:nth-child(6) .blog_date, 
  .blog_list .blog_item:nth-child(8) .blog_date,
  .blog_list .blog_item:nth-child(4) .blog_date{
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
  /*.blog_big_img .blog_name, */
  /*.blog_full_img .blog_name,*/
  .blog_list .blog_item:nth-child(4) .blog_name,
  .blog_list .blog_item:nth-child(3) .blog_name, 
  .blog_list .blog_item:nth-child(9) .blog_name{
    left: 20px;
    right: 20px;
  }
  .blog_full_img .blog_name{
    top: 40%;
  }
  .blog_name,
  .blog_news_list .news_list_item{
    font-size: 16px;
  }
  .news_list .news_list_item:not(:last-child){
    margin-bottom: 15px;
  }


  /*      Blog_Inner Page styles      */

  .inner_img{
    height: 240px;
    border-radius: 20px;
  }
  .inner_img__small{
    border-radius: 0;
  }
  .sidebar_title{
    font-size: 22px;
  }
  .news_list_item{
    font-size: 16px;
  }

  /*      Part_Program Page styles   */

  .prog_item, 
  .prog_heading{
    padding: 20px;
    border-radius: 15px;
  }
  .prog_item .advan_img{
    width: 70px;
    height: 70px;
    margin-right: 30px;
  }
  .prog_discont{
    font-size: 50px;
    margin-bottom: 5px;
  }
  .prog_heading__img{
    width: 80px;
    margin-right: 30px;
  }
  .prog_heading__text .text_item, 
  .prog_item .advan_text{
    font-size: 14px;
  }


  /*      Instruction Page styles   */
  .quest_category {
    font-size: 20px;
  }
  .info_content .title {
    font-size: 18px;
  }
  .info_btn {
    font-size: 14px;
  }
}

/*end my css*/
