@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
*, ol, ul, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0B0B0E;
  color: #FFF;
  font-family: "Space Mono";
}
body.hidden {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .container {
    max-width: 992px;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 379px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 5px;
  }
}

.new_container {
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .new_container {
    max-width: 992px;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .new_container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .new_container {
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .new_container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}

.section_title {
  color: #FFF;
  font-size: 77px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 77px */
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .section_title {
    font-size: 60px;
  }
}
@media (max-width: 379px) {
  .section_title {
    font-size: 52px;
  }
}

.frame {
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.frame.one {
  background-image: url(../img/frame-home-page.png);
}
@media (max-width: 767px) {
  .frame.one {
    background-image: url(../img/more-home-page-mobile.png);
  }
}
@media (max-width: 379px) {
  .frame.one {
    background-image: url(../img/frame-home-page-mobile.png);
  }
}
.frame.two {
  background-image: url(../img/frame-home-page-two.png);
}
@media (max-width: 767px) {
  .frame.two {
    background-image: url(../img/more-home-page-mobile-two.png);
  }
}
@media (max-width: 379px) {
  .frame.two {
    background-image: url(../img/frame-home-page-two-mobile.png);
  }
}
.frame.three {
  background-image: url(../img/frame-about-page.png);
}
@media (max-width: 767px) {
  .frame.three {
    background-image: url(../img/more-about-page-mobile.png);
  }
}
@media (max-width: 379px) {
  .frame.three {
    background-image: url(../img/frame-about-page-mobile.png);
  }
}
.frame.four {
  background-image: url(../img/frame-industries-page.png);
}
@media (max-width: 767px) {
  .frame.four {
    background-image: url(../img/more-industries-page-mobile.png);
  }
}
@media (max-width: 379px) {
  .frame.four {
    background-image: url(../img/frame-industries-page-mobile.png);
  }
}
.frame.five {
  background-image: url(../img/frame-pricing-page.png);
}
@media (max-width: 767px) {
  .frame.five {
    background-image: url(../img/more-pricing-page-mobile.png);
  }
}
@media (max-width: 379px) {
  .frame.five {
    background-image: url(../img/frame-pricing-page-mobile.png);
  }
}
.frame.six {
  background-image: url(../img/frame-demo-page.png);
}
@media (max-width: 767px) {
  .frame.six {
    background-image: url(../img/more-demo-page-mobile.png);
  }
}
@media (max-width: 379px) {
  .frame.six {
    background-image: url(../img/frame-demo-page-mobile.png);
  }
}
.frame.seven {
  background-image: url(../img/frame-features-page.png);
}
@media (max-width: 767px) {
  .frame.seven {
    background-image: url(../img/more-features-page-mobile.png);
  }
}
@media (max-width: 379px) {
  .frame.seven {
    background-image: url(../img/frame-features-page-mobile.png);
  }
}

.page_row {
  display: flex;
  flex-wrap: wrap;
}

.page_button {
  height: 70px;
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 45px;
  border-radius: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all ease;
  width: max-content;
  overflow: hidden;
  position: relative;
}
@media (max-width: 379px) {
  .page_button {
    height: 50px;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.page_button.green {
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%);
}
.page_button.green::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: inherit;
  z-index: 0;
}
.page_button.green > * {
  position: relative;
  z-index: 1;
}
.page_button.green:hover {
  color: #1FA273;
  position: relative;
}
.page_button.green:hover::before {
  opacity: 1;
}
.page_button.white {
  background: #fff;
  color: #11998E;
  padding: 0 65px;
}
@media (max-width: 379px) {
  .page_button.white {
    padding: 0 35px;
  }
}
.page_button.white:hover {
  background: #CCC;
}

.mobile_tab {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: #0B0B0E;
  transition: 0.3s all ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px 0;
}
.mobile_tab.active {
  right: 0;
  z-index: 100;
}
.mobile_tab .close_btn {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
.mobile_tab .close_btn svg {
  width: 30px;
  height: 30px;
}
.mobile_tab li a {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}

.breadcrumbs {
  margin: 35px 0 69px 0;
}
@media (max-width: 479px) {
  .breadcrumbs {
    margin-top: 15px;
    margin-bottom: 31px;
  }
}
.breadcrumbs .container {
  max-width: 1160px;
}
@media (max-width: 1279px) {
  .breadcrumbs .container {
    max-width: 992px;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .breadcrumbs .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .breadcrumbs .container {
    max-width: 100%;
  }
}
@media (max-width: 379px) {
  .breadcrumbs .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}
.breadcrumbs .page_row {
  align-items: center;
  gap: 0 16px;
}
@media (max-width: 479px) {
  .breadcrumbs .page_row {
    gap: 0 10px;
  }
}
.breadcrumbs .page_row .old, .breadcrumbs .page_row span, .breadcrumbs .page_row .now {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .breadcrumbs .page_row .old, .breadcrumbs .page_row span, .breadcrumbs .page_row .now {
    font-size: 12px;
  }
}
.breadcrumbs .page_row .now {
  color: #1FA273;
}
.breadcrumbs .page_row .old {
  transition: 0.3s all ease;
}
.breadcrumbs .page_row .old:hover {
  color: #B5B5B6;
}

.restaurant_info {
  margin-top: 165px;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .restaurant_info {
    margin-top: 60px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .restaurant_info {
    margin-top: 91px;
    gap: 36px 0;
  }
}
@media (max-width: 379px) {
  .restaurant_info {
    margin-top: 53px;
    gap: 30px 0;
  }
}
.restaurant_info .item_mobile_circle {
  position: absolute;
  right: -20px;
  top: 70px;
  display: none;
}
@media (max-width: 767px) {
  .restaurant_info .item_mobile_circle {
    display: block;
    width: 178.155px;
    height: 458.169px;
  }
}
@media (max-width: 479px) {
  .restaurant_info .item_mobile_circle {
    width: 150px;
    height: 400px;
    top: 90px;
  }
}
.restaurant_info .item_mobile_circle img {
  width: 100%;
  height: 100%;
}
.restaurant_info .info_item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 10;
}
@media (max-width: 379px) {
  .restaurant_info .info_item {
    gap: 14px 0;
  }
}
.restaurant_info .info_item:nth-child(2) {
  max-width: 350px;
}
@media (max-width: 479px) {
  .restaurant_info .info_item:nth-child(2) {
    max-width: 300px;
  }
}
@media (max-width: 379px) {
  .restaurant_info .info_item:nth-child(2) {
    max-width: 198px;
  }
}
.restaurant_info .info_item:nth-child(3) {
  max-width: 290px;
  margin-left: 200px;
}
@media (max-width: 991px) {
  .restaurant_info .info_item:nth-child(3) {
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .restaurant_info .info_item:nth-child(3) {
    max-width: 200px;
  }
}
@media (max-width: 379px) {
  .restaurant_info .info_item:nth-child(3) {
    max-width: 148px;
  }
}
.restaurant_info .info_item:nth-child(4) {
  max-width: 415px;
  margin-left: 404px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .restaurant_info .info_item:nth-child(4) {
    margin-left: 0;
  }
}
@media (max-width: 379px) {
  .restaurant_info .info_item:nth-child(4) {
    max-width: 269px;
    margin-top: 0;
  }
}
@media (max-width: 379px) {
  .restaurant_info .info_item .item_circle {
    width: max-content;
    height: max-content;
  }
}
.restaurant_info .info_item svg {
  width: 23px;
  height: 16px;
}
@media (max-width: 767px) {
  .restaurant_info .info_item svg {
    width: 38px;
    height: 24px;
  }
}
@media (max-width: 479px) {
  .restaurant_info .info_item svg {
    width: 17px;
    height: 12px;
  }
}
.restaurant_info .info_item .item_text {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}
@media (max-width: 479px) {
  .restaurant_info .info_item .item_text {
    font-size: 14px;
  }
}
@media (max-width: 379px) {
  .restaurant_info .info_item .item_text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 15.4px */
  }
}
.restaurant_info .info_item .item_text span {
  font-weight: 700;
}
.restaurant_info .item_laptop {
  position: absolute;
  right: -70px;
  bottom: -310px;
  z-index: 1;
  max-width: 616.79px;
  max-height: 489.019px;
}
@media (max-width: 767px) {
  .restaurant_info .item_laptop {
    position: relative;
    right: unset;
    bottom: unset;
    width: 100%;
    height: 100%;
    margin: 63px auto 0;
  }
}
@media (max-width: 379px) {
  .restaurant_info .item_laptop {
    width: 100%;
    height: 100%;
    margin-top: 14px;
  }
}
.restaurant_info .item_laptop img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .restaurant_info .item_laptop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.just_select.active {
  border-radius: 30px 30px 0 0;
  background: #272B2A;
}

.custom-select {
  position: relative;
  width: 100%;
}

.select-selected {
  cursor: pointer;
  font-family: "Space Mono", "Roboto Mono";
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 120px;
  border: 1px solid #2CAB5C;
  background: #0B0B0E;
}
@media (max-width: 1279px) {
  .select-selected {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .select-selected {
    font-size: 12px;
    height: 40px;
  }
}

.select-items {
  position: absolute;
  color: #fff;
  width: 100%;
  z-index: 99;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Space Mono", "Roboto Mono";
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  padding: 20px 20px 20px 20px;
  background: #272B2A;
  border-radius: 0 0 30px 30px;
}
@media (max-width: 1279px) {
  .select-items {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .select-items {
    font-size: 12px;
  }
}
.select-items a {
  color: #FFF;
  font-family: "Space Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.select-items div, .select-items a {
  cursor: pointer;
  font-family: "Space Mono";
}

.select-hide {
  display: none;
}

/* Barcha elementlarga umumiy */
.from-left,
.from-right,
.scale-up, .opacity-up, .from-bottom {
  opacity: 0;
  transition: all 0.8s ease;
}

/* Boshlang‘ich holatlar */
.from-left {
  transform: translateX(-100px);
}

.from-right {
  transform: translateX(100px);
}

.scale-up {
  transform: scale(0.7);
}

.opacity-up {
  opacity: 0;
}

.from-bottom {
  transform: translateY(100px);
}

/* Aktiv bo‘lganda */
.show {
  opacity: 1;
  transform: none;
}

header {
  padding-top: 40px;
}
@media (max-width: 767px) {
  header {
    padding-top: 20px;
  }
}
header .page_row {
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 0 40px;
}
header .page_row .header_logo {
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  max-width: 105px;
  max-height: 60px;
}
@media (max-width: 767px) {
  header .page_row .header_logo {
    max-width: 90px;
    max-height: 51.364px;
  }
}
@media (max-width: 479px) {
  header .page_row .header_logo {
    max-width: 63.08px;
    max-height: 36px;
  }
}
@media (max-width: 379px) {
  header .page_row .header_logo {
    max-width: 64px;
    max-height: 36px;
  }
}
header .page_row .header_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  header .page_row .header_logo img {
    display: none;
  }
}
header .page_row .header_logo img.mobile {
  display: none;
}
@media (max-width: 767px) {
  header .page_row .header_logo img.mobile {
    display: block;
  }
}
@media (max-width: 991px) {
  header .page_row nav {
    display: none;
  }
}
header .page_row nav .links {
  display: flex;
  align-items: center;
  gap: 0 60px;
}
@media (max-width: 1279px) {
  header .page_row nav .links {
    gap: 0 35px;
  }
}
header .page_row nav .links li a {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s all ease;
}
@media (max-width: 1279px) {
  header .page_row nav .links li a {
    font-size: 20px;
  }
}
header .page_row nav .links li a:hover {
  color: #1FA273;
}
header .page_row .header_hamburger {
  display: none;
}
@media (max-width: 991px) {
  header .page_row .header_hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header .page_row .header_hamburger svg {
  width: 34px;
  height: 34px;
}
@media (max-width: 479px) {
  header .page_row .header_hamburger svg {
    width: 24px;
    height: 24px;
  }
}

.hero .hero_information {
  margin-top: 136px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
}
@media (max-width: 991px) {
  .hero .hero_information {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .hero .hero_information {
    margin-top: 278px;
  }
}
@media (max-width: 479px) {
  .hero .hero_information {
    margin-top: 210px;
  }
}
@media (max-width: 379px) {
  .hero .hero_information {
    margin-top: 45px;
  }
}
.hero .hero_information .hero_title {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 767px) {
  .hero .hero_information .hero_title {
    display: none;
  }
}
@media (max-width: 379px) {
  .hero .hero_information .hero_title {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.hero .hero_information .hero_title.mobile {
  display: none;
}
@media (max-width: 767px) {
  .hero .hero_information .hero_title.mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .hero .hero_information .hero_title .section_title {
    color: #FFF;
    font-size: 47px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 47px */
    text-transform: uppercase;
    text-align: start;
  }
}
@media (max-width: 479px) {
  .hero .hero_information .hero_title .section_title {
    font-size: 35px;
  }
}
@media (max-width: 379px) {
  .hero .hero_information .hero_title .section_title {
    color: #FFF;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 32px */
    text-transform: uppercase;
    text-align: right;
    word-wrap: break-word;
  }
}
.hero .hero_information .hero_title .section_title:last-child {
  text-align: end;
}
@media (max-width: 767px) {
  .hero .hero_information .hero_title .section_title:last-child {
    text-align: start;
  }
}
@media (max-width: 379px) {
  .hero .hero_information .hero_title .section_title:last-child {
    text-align: right;
  }
}
.hero .hero_information .page_row {
  align-items: center;
  justify-self: center;
  gap: 0 21px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero .hero_information .page_row {
    flex-direction: column-reverse;
  }
}
.hero .hero_information .page_row .button_info {
  max-width: 603px;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .hero .hero_information .page_row .button_info {
    font-size: 22px;
    line-height: 120%;
  }
}
@media (max-width: 479px) {
  .hero .hero_information .page_row .button_info {
    font-size: 18px;
  }
}
@media (max-width: 379px) {
  .hero .hero_information .page_row .button_info {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    margin-bottom: 57px;
  }
}
@media (max-width: 767px) {
  .hero .hero_information .page_row .page_button {
    margin: 60px auto 0 auto;
    width: 100%;
    max-width: 440px;
    font-size: 20px;
    height: 70px;
  }
}
@media (max-width: 479px) {
  .hero .hero_information .page_row .page_button {
    font-size: 18px;
    height: 50px;
    margin-top: 40px;
  }
}
@media (max-width: 379px) {
  .hero .hero_information .page_row .page_button {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    height: 50px;
  }
}

.software {
  margin-top: 145px;
  padding-left: 60px;
  margin-bottom: 90px;
}
@media (max-width: 1279px) {
  .software {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .software {
    margin-top: 110px;
    margin-bottom: 40px;
  }
}
@media (max-width: 379px) {
  .software {
    margin-top: 95px;
    margin-bottom: 45px;
  }
}
.software .section_title {
  max-width: 821px;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .software .section_title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .software .section_title {
    font-size: 30px;
  }
}
@media (max-width: 379px) {
  .software .section_title {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 28px */
    text-transform: uppercase;
    max-width: 100%;
  }
}
.software .software_advantages {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 10px;
}
@media (max-width: 767px) {
  .software .software_advantages {
    margin-top: 30px;
  }
}
@media (max-width: 379px) {
  .software .software_advantages {
    margin-top: 18px;
    gap: 5px;
  }
}
.software .software_advantages li {
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: max-content;
  height: 40px;
  border-radius: 120px;
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%);
  overflow: hidden;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .software .software_advantages li {
    font-size: 20px;
    padding: 0 15px;
  }
}
@media (max-width: 379px) {
  .software .software_advantages li {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 30px;
    padding: 0 15px;
  }
}
.software .page_row {
  margin-top: 65px;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 767px) {
  .software .page_row {
    margin-top: 30px;
  }
}
@media (max-width: 379px) {
  .software .page_row {
    gap: 10px 0;
    flex-direction: column;
  }
}
.software .page_row .tutorial_item {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.software .page_row .tutorial_item .item_circle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .software .page_row .tutorial_item .item_circle {
    top: 90px;
    bottom: auto;
  }
}
@media (max-width: 379px) {
  .software .page_row .tutorial_item .item_circle {
    top: 0;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .software .page_row .tutorial_item .item_circle svg {
    width: 279.122px;
    height: 90.687px;
  }
}
@media (max-width: 379px) {
  .software .page_row .tutorial_item .item_circle svg {
    width: 212px;
    height: 82px;
  }
}
.software .page_row .tutorial_item:first-child {
  padding: 30px;
  max-width: 540px;
  gap: 141px 0;
  background: linear-gradient(101deg, #272B2A -0.8%, #141A19 100%);
}
@media (max-width: 1279px) {
  .software .page_row .tutorial_item:first-child {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 991px) {
  .software .page_row .tutorial_item:first-child {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .software .page_row .tutorial_item:first-child {
    padding: 25px 20px;
    gap: 96px 0;
  }
}
.software .page_row .tutorial_item:first-child .item_info {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  text-transform: uppercase;
  max-width: 376px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .software .page_row .tutorial_item:first-child .item_info {
    font-size: 22px;
  }
}
@media (max-width: 479px) {
  .software .page_row .tutorial_item:first-child .item_info {
    font-size: 20px;
  }
}
@media (max-width: 379px) {
  .software .page_row .tutorial_item:first-child .item_info {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    text-transform: uppercase;
    max-width: 100%;
  }
}
.software .page_row .tutorial_item:first-child .item_info:nth-child(2) {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: none;
  max-width: 100%;
}
@media (max-width: 379px) {
  .software .page_row .tutorial_item:first-child .item_info:nth-child(2) {
    font-size: 14px;
    font-style: normal;
    line-height: 120%; /* 16.8px */
  }
}
.software .page_row .tutorial_item:first-child .item_info:nth-child(2) span {
  font-weight: 700;
}
.software .page_row .tutorial_item:last-child {
  max-width: 600px;
  padding: 30px 30px 30px 40px;
  gap: 110px 0;
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%);
}
@media (max-width: 1279px) {
  .software .page_row .tutorial_item:last-child {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 991px) {
  .software .page_row .tutorial_item:last-child {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .software .page_row .tutorial_item:last-child {
    padding: 25px 20px;
    gap: 41px 0;
  }
}
@media (max-width: 379px) {
  .software .page_row .tutorial_item:last-child {
    gap: 20px 0;
  }
}
.software .page_row .tutorial_item:last-child .item_info {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 452px;
}
@media (max-width: 379px) {
  .software .page_row .tutorial_item:last-child .item_info {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    text-transform: uppercase;
  }
}
.software .page_row .tutorial_item:last-child .item_info span {
  font-weight: 700;
}
.software .page_row .tutorial_item:last-child .item_circle {
  position: absolute;
  left: 0;
  bottom: -7px;
  right: unset;
  top: unset;
  margin: 0;
}
.software .page_row .tutorial_item:last-child .item_circle img {
  width: 200px;
}
@media (max-width: 767px) {
  .software .page_row .tutorial_item:last-child .item_circle img {
    width: 300px;
  }
}
.software .page_row .tutorial_item:last-child .page_button {
  margin-left: auto;
}
@media (max-width: 767px) {
  .software .page_row .tutorial_item:last-child .page_button {
    height: 70px;
    font-size: 20px;
  }
}
@media (max-width: 379px) {
  .software .page_row .tutorial_item:last-child .page_button {
    height: 50px;
    font-size: 18px;
  }
}

.hospitalty {
  padding-top: 90px;
  padding-left: 60px;
  position: relative;
}
@media (max-width: 1279px) {
  .hospitalty {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .hospitalty {
    padding-top: 50px;
  }
}
@media (max-width: 379px) {
  .hospitalty {
    padding-top: 55px;
  }
}
.hospitalty .item_mobile_circle {
  position: absolute;
  right: 0;
  display: none;
}
@media (max-width: 767px) {
  .hospitalty .item_mobile_circle {
    display: block;
    bottom: -300px;
    width: 285px;
    height: 476px;
  }
}
@media (max-width: 479px) {
  .hospitalty .item_mobile_circle {
    width: 220px;
  }
}
@media (max-width: 379px) {
  .hospitalty .item_mobile_circle {
    bottom: -245px;
    width: 217px;
    height: 362px;
  }
}
.hospitalty .item_mobile_circle img {
  width: 100%;
  height: 100%;
}
.hospitalty .section_title {
  max-width: 1010px;
  font-size: 50px;
  font-weight: 400;
}
@media (max-width: 1279px) {
  .hospitalty .section_title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .hospitalty .section_title {
    font-size: 30px;
  }
}
@media (max-width: 379px) {
  .hospitalty .section_title {
    font-size: 28px;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 28px */
    text-transform: uppercase;
    max-width: 100%;
  }
}
.hospitalty .hospitalty_text {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  margin-top: 23px;
  max-width: 771px;
}
@media (max-width: 767px) {
  .hospitalty .hospitalty_text {
    margin-top: 20px;
    font-size: 20px;
    max-width: 269px;
  }
}
@media (max-width: 479px) {
  .hospitalty .hospitalty_text {
    font-size: 18px;
  }
}
@media (max-width: 379px) {
  .hospitalty .hospitalty_text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    margin-top: 15px;
    max-width: 188px;
  }
}
.hospitalty .hospitalty_text span {
  font-weight: 700;
}

.based {
  margin-top: 180px;
  padding-bottom: 70px;
  padding-left: 60px;
}
@media (max-width: 991px) {
  .based {
    margin-top: 60px;
    padding-left: 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .based {
    margin-top: 206px;
    padding-bottom: 70px;
  }
}
@media (max-width: 379px) {
  .based {
    margin-top: 168px;
    padding-bottom: 40px;
  }
}
.based .section_title {
  max-width: 966px;
}
@media (max-width: 767px) {
  .based .section_title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .based .section_title {
    font-size: 30px;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 379px) {
  .based .section_title {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 28px */
    text-transform: uppercase;
  }
}
.based .page_row {
  margin-top: 148px;
  flex-direction: column;
}
@media (max-width: 991px) {
  .based .page_row {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .based .page_row {
    gap: 30px 0;
    margin-top: 35px;
  }
}
@media (max-width: 379px) {
  .based .page_row {
    margin-top: 50px;
    gap: 60px 0;
  }
}
.based .page_row .based_item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.based .page_row .based_item:nth-child(2) {
  margin-top: 108px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .based .page_row .based_item:nth-child(2) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(2) {
    margin-top: 50px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(2) {
    margin-top: 0;
  }
}
.based .page_row .based_item:nth-child(2) .item_img {
  position: absolute;
  top: -136px;
  right: 0;
}
@media (max-width: 991px) {
  .based .page_row .based_item:nth-child(2) .item_img {
    top: 0;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(2) .item_img {
    max-width: 198px;
    max-height: 66.469px;
    top: 70px;
  }
}
@media (max-width: 445px) {
  .based .page_row .based_item:nth-child(2) .item_img {
    max-width: 140px;
    top: 90px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(2) .item_img {
    width: 158px;
    height: 53.041px;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(2) .item_img img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(2) .item_title {
    max-width: 133px;
    margin-bottom: 39px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(2) .item_title {
    margin-bottom: 52px;
  }
}
.based .page_row .based_item:nth-child(3) {
  margin: 50px auto 0 auto;
}
@media (max-width: 991px) {
  .based .page_row .based_item:nth-child(3) {
    margin: 50px 0 0 0;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(3) {
    margin-top: 0;
  }
}
.based .page_row .based_item:nth-child(3) .item_title {
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(3) .item_title {
    max-width: 346px;
    margin-bottom: 20px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(3) .item_title {
    margin-bottom: 10px;
  }
}
.based .page_row .based_item:nth-child(3) .item_img {
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(3) .item_img {
    margin-bottom: 20px;
  }
}
.based .page_row .based_item:nth-child(3) .item_img svg {
  width: 222px;
  height: 37px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(3) .item_img svg {
    width: 256px;
    height: 42.666px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(3) .item_img svg {
    width: 185px;
    height: 30.833px;
  }
}
.based .page_row .based_item:nth-child(3) .more_information {
  display: flex;
  align-items: center;
  gap: 0 43px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(3) .more_information {
    flex-direction: column;
    gap: 20px 0;
    align-items: start;
  }
}
.based .page_row .based_item:nth-child(3) .more_information .item_info {
  max-width: 570px;
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(3) .more_information .item_info {
    max-width: 100%;
  }
}
.based .page_row .based_item:nth-child(3) .more_information .litle_info {
  max-width: 327px;
  color: #B5B5B6;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(3) .more_information .litle_info {
    font-size: 20px;
    max-width: 100%;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(3) .more_information .litle_info {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    max-width: 277px;
  }
}
.based .page_row .based_item:nth-child(4) {
  margin-top: 237px;
}
@media (max-width: 991px) {
  .based .page_row .based_item:nth-child(4) {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(4) {
    margin-top: 22px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(4) {
    margin-top: 0;
  }
}
.based .page_row .based_item:nth-child(4) .item_title {
  margin-bottom: 16px;
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(4) .item_title {
    margin-bottom: 20px;
  }
}
.based .page_row .based_item:nth-child(4) .item_img {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(4) .item_img {
    margin-bottom: 20px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(4) .item_img {
    margin-bottom: 21px;
  }
}
.based .page_row .based_item:nth-child(4) .item_img img {
  width: 147px;
  height: 48px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(4) .item_img img {
    width: 171px;
    height: 55.5px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(4) .item_img img {
    width: 114px;
    height: 37px;
  }
}
.based .page_row .based_item:nth-child(5) {
  margin-top: 128px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .based .page_row .based_item:nth-child(5) {
    margin-left: 0;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(5) {
    margin-top: 50px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(5) {
    margin-top: 0;
  }
}
.based .page_row .based_item:nth-child(5) .item_title {
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(5) .item_title {
    max-width: 242px;
    margin-bottom: 20px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(5) .item_title {
    margin-bottom: 10px;
    max-width: 180px;
  }
}
.based .page_row .based_item:nth-child(5) .item_img {
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(5) .item_img {
    margin: 0;
    position: absolute;
    right: 0;
    top: 60px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(5) .item_img {
    top: 40px;
  }
}
.based .page_row .based_item:nth-child(5) .item_img img {
  width: 192.699px;
  height: 83.003px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(5) .item_img img {
    width: 148.999px;
    height: 64.181px;
  }
}
@media (max-width: 400px) {
  .based .page_row .based_item:nth-child(5) .item_img img {
    width: 120px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(5) .item_img img {
    width: 107px;
    height: 43.868px;
  }
}
.based .page_row .based_item:nth-child(6) {
  margin-top: 30px;
  margin-left: 149px;
}
@media (max-width: 991px) {
  .based .page_row .based_item:nth-child(6) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(6) {
    margin-top: 50px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(6) {
    margin-top: 0;
  }
}
.based .page_row .based_item:nth-child(6) .item_number {
  top: -92px;
}
@media (max-width: 991px) {
  .based .page_row .based_item:nth-child(6) .item_number {
    top: unset;
    position: relative;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(6) .item_title {
    order: 2;
    margin-bottom: 20px;
    max-width: 346px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(6) .item_title {
    margin-top: 10px;
    max-width: 202px;
  }
}
.based .page_row .based_item:nth-child(6) .item_img {
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(6) .item_img {
    margin-bottom: 20px;
    order: 3;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(6) .item_img {
    margin-bottom: 14px;
  }
}
.based .page_row .based_item:nth-child(6) .item_img svg {
  width: 225px;
  height: 46.731px;
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(6) .item_img svg {
    width: 199px;
    height: 40.672px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item:nth-child(6) .item_img svg {
    width: 137px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item:nth-child(6) .item_info {
    order: 4;
  }
}
.based .page_row .based_item .item_number {
  position: absolute;
  top: -116px;
  left: 0;
  background: linear-gradient(90deg, rgb(44, 171, 92), rgb(17, 153, 142));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 55px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 66px */
  letter-spacing: -2.75px;
}
@media (max-width: 991px) {
  .based .page_row .based_item .item_number {
    position: relative;
    left: unset;
    top: unset;
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item .item_number {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item .item_number {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 26.4px */
    letter-spacing: -1.1px;
    margin-bottom: 10px;
  }
}
.based .page_row .based_item .item_title {
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 36px */
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .based .page_row .based_item .item_title {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .based .page_row .based_item .item_title {
    font-size: 30px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item .item_title {
    margin-bottom: 19px;
    max-width: 206px;
    font-size: 22px;
  }
}
.based .page_row .based_item .week {
  display: flex;
  align-items: stretch;
  gap: 3px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .based .page_row .based_item .week {
    margin-bottom: 20px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item .week {
    margin-bottom: 23px;
  }
}
.based .page_row .based_item .week .week_item {
  width: 48px;
  height: 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 6px 6px 6px;
  border-radius: 10px;
  background: #27272B;
}
@media (max-width: 767px) {
  .based .page_row .based_item .week .week_item {
    height: 59px;
    width: 59px;
  }
}
@media (max-width: 460px) {
  .based .page_row .based_item .week .week_item {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item .week .week_item {
    width: 40.678px;
    height: 40.678px;
  }
}
.based .page_row .based_item .week .week_item.active {
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%), #27272B;
}
.based .page_row .based_item .week .week_item .item_name {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.42px;
}
@media (max-width: 767px) {
  .based .page_row .based_item .week .week_item .item_name {
    font-size: 16px;
  }
}
@media (max-width: 379px) {
  .based .page_row .based_item .week .week_item .item_name {
    font-size: 14px;
  }
}
.based .page_row .based_item .week .week_item .item_circle {
  margin-left: auto;
}
.based .page_row .based_item .week .week_item .item_circle svg {
  width: 15px;
  height: 14.233px;
}
@media (max-width: 379px) {
  .based .page_row .based_item .week .week_item .item_circle svg {
    width: 12.712px;
    height: 12.062px;
  }
}
.based .page_row .based_item .item_info {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 379px) {
  .based .page_row .based_item .item_info {
    max-width: 100%;
  }
}
.based .page_row .based_item .item_info p {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}
@media (max-width: 379px) {
  .based .page_row .based_item .item_info p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
  }
}

.consultation {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .consultation {
    margin-top: 65px;
  }
}
@media (max-width: 479px) {
  .consultation {
    margin-top: 70px;
  }
}
@media (max-width: 379px) {
  .consultation {
    margin-top: 50px;
  }
}
.consultation .container {
  max-width: 1380px;
}
@media (max-width: 1279px) {
  .consultation .container {
    max-width: 992px;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .consultation .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .consultation .container {
    max-width: 100%;
  }
}
@media (max-width: 379px) {
  .consultation .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}
.consultation .consultation_item {
  padding: 60px 60px 70px 60px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(90deg, #2CAB5C, #11998E);
  width: 100%;
  max-width: 1380px;
  height: 453px;
}
@media (max-width: 991px) {
  .consultation .consultation_item {
    padding: 30px;
    overflow: hidden;
    height: 700px;
  }
}
@media (max-width: 767px) {
  .consultation .consultation_item {
    height: 758px;
    padding: 30px 40px 30px 20px;
  }
}
@media (max-width: 479px) {
  .consultation .consultation_item {
    padding: 30px 20px;
    height: 568px;
  }
}
.consultation .consultation_item .item_img, .consultation .consultation_item .item_circle {
  position: absolute;
  left: 0;
  bottom: -5.5px;
}
.consultation .consultation_item .item_img {
  z-index: 1;
  width: 650px;
  height: 530px;
  bottom: 0;
}
@media (max-width: 1279px) {
  .consultation .consultation_item .item_img {
    width: 500px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .consultation .consultation_item .item_img {
    right: 0;
    width: 100%;
    height: 60%;
    margin: auto;
  }
}
@media (max-width: 450px) {
  .consultation .consultation_item .item_img {
    height: 250px;
    width: 300px;
  }
}
@media (max-width: 379px) {
  .consultation .consultation_item .item_img {
    left: 0;
    margin: auto;
    width: 310.5px;
    bottom: -16.5px;
    height: 270.46px;
    right: 0;
  }
}
.consultation .consultation_item .item_img img {
  width: 100%;
  height: 100%;
}
.consultation .consultation_item .item_circle {
  left: unset;
  right: 0;
}
@media (max-width: 767px) {
  .consultation .consultation_item .item_circle {
    left: auto;
    top: 0;
    right: -310px;
    width: 790.551px;
    height: 593.57px;
  }
}
@media (max-width: 479px) {
  .consultation .consultation_item .item_circle {
    right: -310px;
    width: 755.551px;
    height: 460.57px;
  }
}
@media (max-width: 767px) {
  .consultation .consultation_item .item_circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
  }
}
.consultation .consultation_item .item_circle img.mobile {
  display: none;
}
@media (max-width: 767px) {
  .consultation .consultation_item .item_circle img.mobile {
    display: block;
  }
}
.consultation .consultation_item .item_info {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin-left: auto;
}
@media (max-width: 1279px) {
  .consultation .consultation_item .item_info {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .consultation .consultation_item .item_info {
    margin-left: 0;
    max-width: 100%;
  }
}
.consultation .consultation_item .item_info .item_title {
  color: #FFF;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 60px */
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .consultation .consultation_item .item_info .item_title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .consultation .consultation_item .item_info .item_title {
    font-size: 35px;
  }
}
@media (max-width: 379px) {
  .consultation .consultation_item .item_info .item_title {
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 35px */
    text-transform: uppercase;
    max-width: 260px;
  }
}
.consultation .consultation_item .item_info .item_description {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  margin: 20px 0 41px 0;
}
@media (max-width: 767px) {
  .consultation .consultation_item .item_info .item_description {
    margin: 20px 0 30px 0;
  }
}
@media (max-width: 479px) {
  .consultation .consultation_item .item_info .item_description {
    max-width: 260px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    margin: 15px 0 17px 0;
  }
}
.consultation .consultation_item .item_info .page_button {
  margin-left: auto;
}
@media (max-width: 767px) {
  .consultation .consultation_item .item_info .page_button {
    margin-left: 0;
    width: 100%;
    height: 70px;
    font-size: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 479px) {
  .consultation .consultation_item .item_info .page_button {
    padding: 0 50px;
    height: 50px;
    font-size: 18px;
    padding: 0 10px;
    max-width: 260px;
  }
}

footer {
  padding: 27px 0;
}
@media (max-width: 767px) {
  footer {
    padding: 50px 0 30px 0;
  }
}
@media (max-width: 479px) {
  footer {
    padding: 31px 0 20px 0;
  }
}
footer .page_row {
  justify-content: space-between;
  gap: 0 40px;
  align-items: center;
}
@media (max-width: 991px) {
  footer .page_row {
    gap: 5px 0;
  }
}
@media (max-width: 767px) {
  footer .page_row {
    flex-direction: column-reverse;
    gap: 24px 0;
  }
}
@media (max-width: 479px) {
  footer .page_row {
    gap: 25px 0;
  }
}
footer .page_row .footer_logo_title, footer .page_row .about_links {
  color: #9A9AA3;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  transition: 0.3s all ease;
}
@media (max-width: 479px) {
  footer .page_row .footer_logo_title, footer .page_row .about_links {
    font-size: 16px;
    color: #FFF;
  }
}
@media (max-width: 379px) {
  footer .page_row .footer_logo_title, footer .page_row .about_links {
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
  }
}
footer .page_row .footer_logo_title:hover, footer .page_row .about_links:hover {
  color: #1FA273;
}
@media (max-width: 479px) {
  footer .page_row .footer_logo_title {
    font-size: 12px;
    color: #9A9AA3;
  }
}
@media (max-width: 379px) {
  footer .page_row .footer_logo_title {
    color: #9A9AA3;
  }
}
@media (max-width: 767px) {
  footer .page_row .about_links:first-child {
    margin-bottom: 8px;
  }
}
footer .page_row .footer_nav {
  display: flex;
  align-items: center;
  gap: 0 35px;
}
@media (max-width: 991px) {
  footer .page_row .footer_nav {
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .page_row .footer_nav {
    flex-direction: column;
    gap: 0;
  }
}
footer .page_row .footer_nav .social_media {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media (max-width: 767px) {
  footer .page_row .footer_nav .social_media {
    margin-top: 25px;
    gap: 10px;
  }
}
footer .page_row .footer_nav .social_media li a {
  display: inline-block;
  transition: all 0.3s ease;
}
footer .page_row .footer_nav .social_media li a:hover svg path:nth-child(2) {
  fill: #1FA273 !important;
}
footer .page_row .footer_nav .social_media li a svg {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  footer .page_row .footer_nav .social_media li a svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 479px) {
  footer .page_row .footer_nav .social_media li a svg {
    width: 30px;
    height: 30px;
  }
}
footer .page_row .footer_nav .social_media li a svg path {
  transition: fill 0.3s ease;
}
footer .page_row .footer_nav .social_media li a svg path:first-child {
  fill: white;
}
footer .page_row .footer_nav .social_media li a svg path:nth-child(2) {
  fill: #0B0B0E;
}

.sector .container {
  max-width: 1160px;
}
@media (max-width: 1279px) {
  .sector .container {
    max-width: 992px;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .sector .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .sector .container {
    max-width: 100%;
  }
}
@media (max-width: 379px) {
  .sector .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}
.sector .section_title {
  font-size: 50px;
  max-width: 876px;
}
@media (max-width: 991px) {
  .sector .section_title {
    font-size: 35px;
  }
}
@media (max-width: 479px) {
  .sector .section_title {
    font-size: 27px;
  }
}
.sector .sector_description {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 23px;
  max-width: 680px;
}
@media (max-width: 991px) {
  .sector .sector_description {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .sector .sector_description {
    font-size: 14px;
    max-width: 274px;
    margin-top: 20px;
  }
}
.sector .experts {
  display: flex;
  align-items: start;
  gap: 0 20px;
  justify-content: space-between;
  margin-top: 67px;
}
@media (max-width: 991px) {
  .sector .experts {
    flex-direction: column;
    gap: 36px 0;
  }
}
@media (max-width: 479px) {
  .sector .experts {
    flex-direction: column-reverse;
    margin-top: 116px;
  }
}
.sector .experts .item_img {
  width: max-content;
  height: max-content;
  flex: 0 0 auto;
}
@media (max-width: 479px) {
  .sector .experts .item_img {
    margin: 0 auto;
  }
}
.sector .experts .item_img svg {
  width: 470px;
  height: 498px;
}
@media (max-width: 991px) {
  .sector .experts .item_img svg {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 479px) {
  .sector .experts .item_img svg {
    width: 236px;
    height: 250px;
  }
}
.sector .experts .item_information {
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  gap: 38px 0;
  max-width: 560px;
}
@media (max-width: 991px) {
  .sector .experts .item_information {
    margin-top: 0;
  }
}
@media (max-width: 479px) {
  .sector .experts .item_information {
    gap: 20px 0;
    max-width: 100%;
  }
}
.sector .experts .item_information .item_title {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  max-width: 520px;
  line-height: 120%; /* 28.8px */
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .sector .experts .item_information .item_title {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .sector .experts .item_information .item_title {
    font-size: 18px;
    max-width: 100%;
  }
}
.sector .experts .item_information .item_title span {
  font-weight: 700;
}
.sector .experts .item_information .item_description {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
}
@media (max-width: 991px) {
  .sector .experts .item_information .item_description {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .sector .experts .item_information .item_description {
    font-size: 14px;
  }
}
.sector .restaurant_info {
  position: relative;
  margin-top: 121px;
  gap: 0;
  padding-left: 0;
}
@media (max-width: 1279px) {
  .sector .restaurant_info {
    margin-top: 70px;
  }
}
@media (max-width: 991px) {
  .sector .restaurant_info {
    gap: 30px 0;
  }
}
@media (max-width: 479px) {
  .sector .restaurant_info {
    margin-top: 34px;
  }
}
.sector .restaurant_info .info_item {
  gap: 15px 0;
}
.sector .restaurant_info .info_item:first-child {
  position: absolute;
  top: -280px;
  right: 196px;
  max-width: 360px;
}
@media (max-width: 1279px) {
  .sector .restaurant_info .info_item:first-child {
    right: 100px;
    top: -210px;
  }
}
@media (max-width: 991px) {
  .sector .restaurant_info .info_item:first-child {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}
.sector .restaurant_info .info_item:nth-child(2) {
  margin-left: 400px;
  max-width: 346px;
}
@media (max-width: 1279px) {
  .sector .restaurant_info .info_item:nth-child(2) {
    margin-left: 300px;
  }
}
@media (max-width: 991px) {
  .sector .restaurant_info .info_item:nth-child(2) {
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .sector .restaurant_info .info_item:nth-child(2) {
    max-width: 314px;
  }
}
.sector .restaurant_info .info_item:nth-child(3) {
  margin-left: 0;
  max-width: 496px;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .sector .restaurant_info .info_item:nth-child(3) {
    margin-top: 0;
  }
}
.sector .item_talk {
  margin-left: auto;
  max-width: 438px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media (max-width: 991px) {
  .sector .item_talk {
    margin-top: 20px;
    gap: 20px 0;
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .sector .item_talk {
    margin-top: 60px;
    max-width: 300px;
  }
}
.sector .item_talk .item_title, .sector .item_talk .author {
  color: #FFF;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 40.8px */
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .sector .item_talk .item_title, .sector .item_talk .author {
    font-size: 25px;
  }
}
@media (max-width: 479px) {
  .sector .item_talk .item_title, .sector .item_talk .author {
    font-size: 22px;
  }
}
.sector .item_talk .item_title span, .sector .item_talk .author {
  background: linear-gradient(90deg, #2CAB5C, #11998E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback uchun */
}

.program {
  margin-top: 146px;
  padding-bottom: 70px;
}
@media (max-width: 479px) {
  .program {
    margin-top: 199px;
    padding-bottom: 20px;
  }
}
.program .container {
  max-width: 1160px;
}
@media (max-width: 1279px) {
  .program .container {
    max-width: 992px;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .program .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .program .container {
    max-width: 100%;
  }
}
@media (max-width: 379px) {
  .program .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}
.program .section_title {
  font-size: 50px;
  max-width: 934px;
}
@media (max-width: 991px) {
  .program .section_title {
    font-size: 35px;
  }
}
@media (max-width: 479px) {
  .program .section_title {
    font-size: 27px;
  }
}
.program .program_description {
  max-width: 680px;
  color: #FFF;
  margin-top: 23px;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .program .program_description {
    margin-top: 20px;
    font-size: 14px;
  }
}
.program .page_row {
  margin-top: 70px;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px 0;
}
@media (max-width: 479px) {
  .program .page_row {
    margin-top: 30px;
  }
}
.program .page_row .prog_item {
  display: flex;
  padding: 30px 40px 30px 30px;
  position: relative;
  width: calc(50% - 10px);
  flex: 0 0 auto;
  border-radius: 20px;
  background: linear-gradient(101deg, #272B2A -0.8%, #141A19 100%), #27272B;
  overflow: hidden;
  min-height: 250px;
}
@media (max-width: 991px) {
  .program .page_row .prog_item {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .program .page_row .prog_item {
    padding: 20px;
    min-height: 163px;
  }
}
.program .page_row .prog_item:last-child {
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%);
}
.program .page_row .prog_item .item_info {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .program .page_row .prog_item .item_info {
    font-size: 12px;
  }
}
.program .page_row .prog_item .item_info span {
  font-weight: 700;
}
.program .page_row .prog_item .item_number {
  color: rgba(255, 255, 255, 0.07);
  text-align: right;
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 90px */
  letter-spacing: -3.75px;
  position: absolute;
  right: 0;
  bottom: 8px;
}
@media (max-width: 479px) {
  .program .page_row .prog_item .item_number {
    font-size: 45px;
  }
}

.analytix {
  margin-bottom: 348px;
}
@media (max-width: 991px) {
  .analytix {
    margin-bottom: 60px;
  }
}
@media (max-width: 479px) {
  .analytix {
    margin-bottom: 150px;
  }
}
@media (max-width: 379px) {
  .analytix {
    margin-bottom: 130px;
  }
}
@media (max-width: 991px) {
  .analytix .section_title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .analytix .section_title {
    font-size: 37px;
  }
}
.analytix .analytix_info {
  max-width: 900px;
  margin-top: 70px;
  position: relative;
}
@media (max-width: 991px) {
  .analytix .analytix_info {
    max-width: 700px;
    margin-top: 50px;
  }
}
@media (max-width: 479px) {
  .analytix .analytix_info {
    max-width: 100%;
    margin-top: 25px;
  }
}
.analytix .analytix_info .item_title {
  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 50px */
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .analytix .analytix_info .item_title {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .analytix .analytix_info .item_title {
    font-size: 23px;
    max-width: 314px;
  }
}
@media (max-width: 991px) {
  .analytix .analytix_info .item_title br {
    display: none;
  }
}
.analytix .analytix_info .item_more_info {
  display: flex;
  flex-direction: column;
  position: absolute;
  gap: 30px 0;
  right: -24%;
  bottom: -93%;
}
@media (max-width: 1279px) {
  .analytix .analytix_info .item_more_info {
    right: -6%;
    bottom: -157%;
  }
}
@media (max-width: 991px) {
  .analytix .analytix_info .item_more_info {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-left: auto;
  }
}
@media (max-width: 479px) {
  .analytix .analytix_info .item_more_info {
    max-width: 100%;
    margin-left: 0;
  }
}
.analytix .analytix_info .item_more_info .item_title {
  background: linear-gradient(90deg, #2CAB5C, #11998E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback uchun */
  max-width: 600px;
}
@media (max-width: 1279px) {
  .analytix .analytix_info .item_more_info .item_title {
    max-width: 550px;
  }
}
@media (max-width: 479px) {
  .analytix .analytix_info .item_more_info .item_title {
    text-align: end;
  }
}
@media (max-width: 991px) {
  .analytix .analytix_info .item_more_info .item_title br {
    display: block;
  }
}
.analytix .analytix_info .item_more_info .item_description {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 703px;
}
@media (max-width: 1279px) {
  .analytix .analytix_info .item_more_info .item_description {
    max-width: 470px;
  }
}
@media (max-width: 479px) {
  .analytix .analytix_info .item_more_info .item_description {
    font-size: 14px;
  }
}
.analytix .analytix_info .item_more_info .item_description span {
  font-weight: 700;
}

.used .section_title {
  font-size: 50px;
  font-weight: 400;
  max-width: 966px;
}
@media (max-width: 991px) {
  .used .section_title {
    font-size: 40px;
    max-width: 700px;
  }
}
@media (max-width: 479px) {
  .used .section_title {
    font-size: 27px;
    max-width: 100%;
  }
}
.used .page_row {
  align-items: stretch;
  gap: 20px 10px;
  margin-top: 50px;
}
@media (max-width: 479px) {
  .used .page_row {
    gap: 10px 5px;
    margin-top: 28px;
  }
}
.used .page_row .used_item {
  padding: 0 23px;
  border-radius: 120px;
  border: 1px solid #2CAB5C;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s all ease;
}
@media (max-width: 991px) {
  .used .page_row .used_item {
    font-size: 18px;
    height: 40px;
  }
}
@media (max-width: 479px) {
  .used .page_row .used_item {
    font-size: 12px;
    padding: 0 7px;
  }
}
.used .page_row .used_item.active {
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%);
}

.industries {
  margin-top: 160px;
  padding-bottom: 85px;
}
@media (max-width: 991px) {
  .industries {
    margin-top: 70px;
    padding-bottom: 60px;
  }
}
@media (max-width: 479px) {
  .industries {
    margin-top: 120px;
    padding-bottom: 30px;
  }
}
.industries .section_title {
  font-size: 50px;
  font-weight: 400;
  max-width: 1045px;
}
@media (max-width: 991px) {
  .industries .section_title {
    font-size: 40px;
    max-width: 700px;
  }
}
@media (max-width: 479px) {
  .industries .section_title {
    font-size: 22px;
    max-width: 100%;
    max-width: 100%;
  }
}
.industries .item_description {
  max-width: 749px;
  margin-top: 47px;
}
@media (max-width: 479px) {
  .industries .item_description {
    max-width: 100%;
    margin-top: 25px;
  }
}
.industries .item_description p {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .industries .item_description p {
    font-size: 14px;
  }
}
.industries .item_description p a {
  text-decoration: underline;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .industries .item_description p a {
    font-size: 14px;
  }
}

.pricing {
  margin-bottom: 80px;
}
@media (max-width: 479px) {
  .pricing {
    margin-bottom: 39px;
  }
}
@media (max-width: 991px) {
  .pricing .section_title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .pricing .section_title {
    font-size: 27px;
    letter-spacing: -0.27px;
  }
}
.pricing .restaurant_info {
  margin-top: 41px;
  padding-left: 0;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 58px;
}
@media (max-width: 1279px) {
  .pricing .restaurant_info {
    gap: 0 20px;
  }
}
@media (max-width: 991px) {
  .pricing .restaurant_info {
    flex-wrap: wrap;
    gap: 30px 20px;
  }
}
@media (max-width: 479px) {
  .pricing .restaurant_info {
    margin-top: 40px;
    margin-bottom: 90px;
  }
}
@media (max-width: 379px) {
  .pricing .restaurant_info {
    margin-bottom: 83px;
  }
}
.pricing .restaurant_info .info_item {
  gap: 20px 0;
}
@media (max-width: 479px) {
  .pricing .restaurant_info .info_item {
    gap: 14px 0;
  }
}
.pricing .restaurant_info .info_item:first-child {
  max-width: 276px;
}
@media (max-width: 479px) {
  .pricing .restaurant_info .info_item:first-child {
    max-width: 100%;
  }
}
.pricing .restaurant_info .info_item:nth-child(2) {
  max-width: 364px;
  margin-left: 0;
}
@media (max-width: 1279px) {
  .pricing .restaurant_info .info_item:nth-child(2) {
    max-width: 320px;
  }
}
@media (max-width: 479px) {
  .pricing .restaurant_info .info_item:nth-child(2) {
    max-width: 100%;
  }
}
.pricing .restaurant_info .info_item:last-child {
  margin: 0;
  max-width: 360px;
}
@media (max-width: 479px) {
  .pricing .restaurant_info .info_item:last-child {
    max-width: 100%;
  }
}
.pricing .restaurant_info .info_item .item_text {
  font-size: 18px;
}
@media (max-width: 479px) {
  .pricing .restaurant_info .info_item .item_text {
    font-size: 14px;
    line-height: normal;
  }
}
.pricing .item_title {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 659px;
  margin-bottom: 65px;
}
@media (max-width: 479px) {
  .pricing .item_title {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.pricing .item_title span {
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 25.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing .item_info {
  max-width: 667px;
  margin-bottom: 37px;
}
@media (max-width: 479px) {
  .pricing .item_info {
    max-width: 280px;
    margin-bottom: 30px;
  }
}
@media (max-width: 379px) {
  .pricing .item_info {
    max-width: 256px;
  }
}
.pricing .item_info p {
  color: #B5B5B6;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .pricing .item_info p {
    font-size: 12px;
  }
}
.pricing .item_button {
  max-width: 667px;
  position: relative;
}
@media (max-width: 479px) {
  .pricing .item_button {
    max-width: 100%;
  }
}
.pricing .item_button .page_button {
  padding: 0 75px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .pricing .item_button .page_button {
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .pricing .item_button .page_button {
    max-width: 340px;
    width: 100%;
    height: 50px;
    padding: 0 60px;
    font-size: 18px;
    line-height: normal;
    max-width: 100%;
  }
}
.pricing .item_button .btn_circle {
  position: absolute;
  left: 84px;
  top: -20px;
}
@media (max-width: 991px) {
  .pricing .item_button .btn_circle {
    display: none;
  }
}
.pricing .item_button .circle_mobile {
  display: none;
}
@media (max-width: 479px) {
  .pricing .item_button .circle_mobile {
    display: block;
    position: absolute;
    right: 0;
    top: -160px;
  }
}

.video .page_row {
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .video .page_row {
    gap: 30px 0;
  }
}
@media (max-width: 479px) {
  .video .page_row {
    gap: 20px 0;
  }
}
@media (max-width: 379px) {
  .video .page_row {
    gap: 35px 0;
  }
}
.video .page_row .left_side {
  max-width: 608px;
  display: flex;
  flex-direction: column;
  gap: 23px 0;
  position: relative;
}
@media (max-width: 1279px) {
  .video .page_row .left_side {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .video .page_row .left_side {
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .video .page_row .left_side {
    gap: 15px 0;
  }
}
.video .page_row .left_side .item_title {
  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 50px */
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .video .page_row .left_side .item_title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .video .page_row .left_side .item_title {
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 27px */
    letter-spacing: -0.27px;
    text-transform: uppercase;
  }
}
.video .page_row .left_side .item_info {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 521px;
}
@media (max-width: 479px) {
  .video .page_row .left_side .item_info {
    max-width: 100%;
    font-size: 14px;
  }
}
.video .page_row .left_side .circle {
  position: absolute;
  right: 65px;
  bottom: -80px;
}
@media (max-width: 479px) {
  .video .page_row .left_side .circle {
    display: none;
  }
}
.video .page_row .video_side {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 500px;
  height: 333px;
  transition: 0.3s all ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .video .page_row .video_side {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .video .page_row .video_side {
    height: 225px;
  }
}
@media (max-width: 379px) {
  .video .page_row .video_side {
    height: 199px;
  }
}
.video .page_row .video_side:hover .play_button {
  box-shadow: 0 0 54px 0 rgba(31, 162, 115, 0.55);
  width: 110px;
  height: 110px;
}
@media (max-width: 379px) {
  .video .page_row .video_side:hover .play_button {
    width: 80px;
    height: 80px;
  }
}
.video .page_row .video_side.active .banner, .video .page_row .video_side.active .banner_mobile {
  display: none;
}
.video .page_row .video_side.active .play_button {
  display: none;
}
.video .page_row .video_side .banner, .video .page_row .video_side .banner_mobile {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all;
}
@media (max-width: 479px) {
  .video .page_row .video_side .banner, .video .page_row .video_side .banner_mobile {
    display: none;
  }
}
.video .page_row .video_side .banner_mobile {
  display: none;
}
@media (max-width: 479px) {
  .video .page_row .video_side .banner_mobile {
    display: block;
  }
}
.video .page_row .video_side video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video .page_row .video_side .play_button {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 90px;
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%), #D9D9D9;
  transition: 0.3s all ease;
  pointer-events: all;
}
@media (max-width: 479px) {
  .video .page_row .video_side .play_button {
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 379px) {
  .video .page_row .video_side .play_button {
    width: 53.784px;
    height: 53.784px;
  }
}
.video .page_row .video_side .play_button img {
  margin-left: 10px;
  width: 38px;
  height: 38px;
}
@media (max-width: 479px) {
  .video .page_row .video_side .play_button img {
    width: 22px;
    height: 22px;
    margin-left: 5px;
  }
}

.register {
  margin-top: 111px;
  margin-bottom: 93px;
}
@media (max-width: 479px) {
  .register {
    margin-top: 160px;
    margin-bottom: 29px;
  }
}
@media (max-width: 379px) {
  .register {
    margin-top: 151px;
    margin-bottom: 39px;
  }
}
.register .section_title {
  font-size: 60px;
}
@media (max-width: 1279px) {
  .register .section_title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .register .section_title {
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 27px */
    text-transform: uppercase;
  }
}
.register .page_row {
  margin-top: 46px;
  align-items: start;
  justify-content: space-between;
  gap: 0 77px;
  flex-wrap: nowrap;
}
@media (max-width: 1279px) {
  .register .page_row {
    gap: 0 20px;
  }
}
@media (max-width: 991px) {
  .register .page_row {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
@media (max-width: 479px) {
  .register .page_row {
    margin-top: 16px;
  }
}
.register .page_row .left_side {
  max-width: 393px;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}
@media (max-width: 991px) {
  .register .page_row .left_side {
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .register .page_row .left_side {
    font-size: 14px;
  }
}
.register .page_row .right_side {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  width: 100%;
}
@media (max-width: 479px) {
  .register .page_row .right_side {
    gap: 10px 0;
  }
}
.register .page_row .right_side .input_row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 479px) {
  .register .page_row .right_side .input_row {
    flex-direction: column;
    gap: 10px 0;
    align-items: start;
  }
}
.register .page_row .right_side .input_row:first-child .item_input:last-child .custom-select {
  z-index: 100;
}
.register .page_row .right_side .input_row .item_input {
  width: calc(50% - 8px);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 479px) {
  .register .page_row .right_side .input_row .item_input {
    width: 100%;
  }
}
.register .page_row .right_side .input_row .item_input label {
  color: #B5B5B6;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .register .page_row .right_side .input_row .item_input label {
    font-size: 12px;
  }
}
.register .page_row .right_side .input_row .item_input input {
  border-radius: 120px;
  border: 1px solid #2CAB5C;
  height: 60px;
  width: 100%;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: transparent;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
@media (max-width: 479px) {
  .register .page_row .right_side .input_row .item_input input {
    font-size: 12px;
    height: 40px;
    padding: 0 15px;
  }
}
.register .page_row .right_side .input_row .item_input input:focus {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .register .page_row .right_side .input_row .item_input input:focus {
    font-size: 12px;
  }
}
.register .page_row .right_side .input_row .item_input input::placeholder {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 479px) {
  .register .page_row .right_side .input_row .item_input input::placeholder {
    font-size: 12px;
  }
}
.register .page_row .right_side .input_row .page_button {
  width: calc(50% - 5px);
  flex: 0 0 auto;
  border: none;
  outline: none;
  cursor: pointer;
  height: 60px;
}
@media (max-width: 479px) {
  .register .page_row .right_side .input_row .page_button {
    width: 100%;
    font-size: 16px;
    height: 40px;
    margin-top: 10px;
  }
}
@media (max-width: 379px) {
  .register .page_row .right_side .input_row .page_button {
    margin-top: 0;
  }
}

.reports {
  position: relative;
}
.reports .section_title {
  font-size: 50px;
  max-width: 951px;
}
@media (max-width: 991px) {
  .reports .section_title {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .reports .section_title {
    font-size: 22px;
  }
}
.reports .item_mobile_circle {
  position: absolute;
  right: 0;
  bottom: -150px;
  display: none;
}
@media (max-width: 479px) {
  .reports .item_mobile_circle {
    display: block;
  }
}
@media (max-width: 379px) {
  .reports .item_mobile_circle {
    bottom: -140px;
  }
}
.reports .item_mobile_circle img {
  width: 200px;
  height: 250px;
}
@media (max-width: 379px) {
  .reports .item_mobile_circle img {
    height: max-content;
    width: max-content;
  }
}
.reports .item_info {
  display: flex;
  gap: 0 36px;
  align-items: end;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .reports .item_info {
    flex-direction: column;
    gap: 20px 0;
  }
}
@media (max-width: 479px) {
  .reports .item_info {
    margin-top: 99px;
    align-items: start;
  }
}
@media (max-width: 379px) {
  .reports .item_info {
    margin-top: 77px;
    align-items: start;
  }
}
.reports .item_info .left_side {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 521px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .reports .item_info .left_side {
    max-width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .reports .item_info .left_side {
    font-size: 14px;
    max-width: 330px;
  }
}
@media (max-width: 379px) {
  .reports .item_info .left_side {
    max-width: 287px;
  }
}
.reports .item_info .right_side {
  color: #B5B5B6;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  max-width: 413px;
}
@media (max-width: 991px) {
  .reports .item_info .right_side {
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .reports .item_info .right_side {
    font-size: 12px;
    max-width: 216px;
  }
}
@media (max-width: 379px) {
  .reports .item_info .right_side {
    max-width: 178px;
  }
}

.effectly {
  margin-top: 256px;
  padding-bottom: 70px;
}
@media (max-width: 479px) {
  .effectly {
    margin-top: 150px;
    padding-bottom: 30px;
  }
}
@media (max-width: 379px) {
  .effectly {
    margin-top: 163px;
    padding-bottom: 25px;
  }
}
.effectly .section_title {
  max-width: 620px;
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 30px */
  letter-spacing: -0.3px;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .effectly .section_title {
    font-size: 22px;
  }
}
.effectly .just_select {
  display: none;
}
@media (max-width: 479px) {
  .effectly .just_select {
    display: flex;
    margin-top: 20px;
  }
}
.effectly .just_select .select-items {
  padding-left: 15px;
}
.effectly .just_select .select-selected {
  padding-left: 11px;
  padding-right: 8px;
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%);
}
.effectly .just_select .select-selected.non_max {
  background: linear-gradient(90deg, #FFF 85.28%, rgba(255, 255, 255, 0) 94.91%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.effectly .page_row {
  margin-top: 77px;
  align-items: stretch;
  gap: 20px 10px;
}
@media (max-width: 479px) {
  .effectly .page_row {
    display: none;
  }
}
.effectly .page_row .data_title {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B5B5B6;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  padding: 0 25px;
  font-weight: 400;
  line-height: normal;
  border-radius: 120px;
  border: 1px solid #3C3C3E;
  transition: 0.3s all ease;
}
@media (max-width: 1279px) {
  .effectly .page_row .data_title {
    font-size: 18px;
  }
}
.effectly .page_row .data_title:hover {
  color: #1FA273;
}
.effectly .page_row .data_title.active {
  color: #FFF;
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 100%);
}
.effectly .page_row .data_info .right_side {
  max-width: 481.149px;
  max-height: 407.762px;
}
.effectly .page_row .data_info .right_side img {
  width: 100%;
  height: 100%;
}
.effectly .page_row:nth-child(4) {
  margin-top: 53px;
  width: 100%;
}
@media (max-width: 479px) {
  .effectly .page_row:nth-child(4) {
    display: flex;
    margin-top: 20px;
  }
}
.effectly .page_row:nth-child(4) .data_info {
  padding: 40px 24px 50px 50px;
  border-radius: 30px;
  background: linear-gradient(101deg, rgba(39, 43, 42, 0.4) -0.8%, rgba(20, 26, 25, 0.4) 100%);
  backdrop-filter: blur(7px);
  display: none;
  align-items: center;
  gap: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
@media (max-width: 1279px) {
  .effectly .page_row:nth-child(4) .data_info {
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .effectly .page_row:nth-child(4) .data_info {
    flex-direction: column;
    gap: 20px 0;
  }
}
@media (max-width: 479px) {
  .effectly .page_row:nth-child(4) .data_info {
    backdrop-filter: blur(17px);
    gap: 10px 0;
    padding: 25px 20px 23px 20px;
  }
}
@media (max-width: 379px) {
  .effectly .page_row:nth-child(4) .data_info {
    gap: 7px 0;
  }
}
.effectly .page_row:nth-child(4) .data_info.active {
  display: flex;
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.effectly .page_row:nth-child(4) .data_info .item_title {
  background: linear-gradient(90deg, #2CAB5C 0%, #11998E 25.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -3.2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
@media (max-width: 991px) {
  .effectly .page_row:nth-child(4) .data_info .item_title {
    font-size: 60px;
  }
}
@media (max-width: 479px) {
  .effectly .page_row:nth-child(4) .data_info .item_title {
    font-size: 22px;
    line-height: 100%; /* 22px */
    letter-spacing: -0.88px;
  }
}
.effectly .page_row:nth-child(4) .data_info .left_side {
  display: flex;
  flex-direction: column;
  gap: 43px 0;
  max-width: 586px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
@media (max-width: 1279px) {
  .effectly .page_row:nth-child(4) .data_info .left_side {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .effectly .page_row:nth-child(4) .data_info .left_side {
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .effectly .page_row:nth-child(4) .data_info .left_side {
    gap: 20px 0;
  }
}
.effectly .page_row:nth-child(4) .data_info .left_side .item_description {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 479px) {
  .effectly .page_row:nth-child(4) .data_info .left_side .item_description {
    font-size: 12px;
    line-height: 120%; /* 14.4px */
  }
}
.effectly .page_row:nth-child(4) .data_info .left_side .item_description span {
  font-weight: 700;
}
.effectly .page_row:nth-child(4) .data_info .right_side {
  flex: 0 0 auto;
  opacity: 0;
  transform: scale(0.8) translateX(50px);
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
@media (max-width: 1279px) {
  .effectly .page_row:nth-child(4) .data_info .right_side {
    max-width: 400px;
  }
}
.effectly .page_row:nth-child(4) .data_info .right_side img {
  transition: transform 0.3s ease;
}
@media (max-width: 1279px) {
  .effectly .page_row:nth-child(4) .data_info .right_side img {
    width: 100%;
    height: 100%;
  }
}
.effectly .page_row:nth-child(4) .data_info .right_side img:hover {
  transform: scale(1.05);
}
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}
.effectly .page_row:nth-child(4) .data_title {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.effectly .page_row:nth-child(4) .data_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 171, 92, 0.2), transparent);
  transition: left 0.5s ease;
}
.effectly .page_row:nth-child(4) .data_title:hover::before {
  left: 100%;
}
.effectly .page_row:nth-child(4) .data_title:hover {
  transform: translateY(-2px);
  color: #2CAB5C;
}
.effectly .page_row:nth-child(4) .data_title.active {
  color: #2CAB5C;
  transform: scale(1.02);
}
.effectly .page_row:nth-child(4) .data_info:nth-child(3) {
  /* padding-top: 173px; */
  /* position: relative; */
}
@media (max-width: 1279px) {
  .effectly .page_row:nth-child(4) .data_info:nth-child(3) {
    padding-top: 240px;
  }
}
@media (max-width: 991px) {
  .effectly .page_row:nth-child(4) .data_info:nth-child(3) {
    padding-top: 30px;
  }
}
.effectly .page_row:nth-child(4) .data_info:nth-child(3) .item_title {
  position: absolute;
  left: 50px;
  top: 40px;
  width: 100%;
  max-width: 1029px;
}
@media (max-width: 991px) {
  .effectly .page_row:nth-child(4) .data_info:nth-child(3) .item_title {
    position: relative;
    left: auto;
    top: auto;
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */

.software {
  margin-top: 145px;
  margin-bottom: 90px;
}
@media (max-width: 1279px) {
  .software {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .software {
    margin-top: 110px;
    margin-bottom: 40px;
  }
}
@media (max-width: 379px) {
  .software {
    margin-top: 95px;
    margin-bottom: 45px;
  }
}
.software .container {
  padding: 0 60px;
}
@media (max-width: 1279px) {
  .software .container {
    padding: 0;
  }
}

.hospitalty {
  padding-top: 90px;
  position: relative;
}
@media (max-width: 1279px) {
  .hospitalty {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .hospitalty {
    padding-top: 50px;
  }
}
@media (max-width: 379px) {
  .hospitalty {
    padding-top: 55px;
  }
}
.hospitalty .container {
  padding: 0 60px;
}
@media (max-width: 1279px) {
  .hospitalty .container {
    padding: 0;
  }
}
.based {
  margin-top: 180px;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .based {
    margin-top: 60px;
    padding-left: 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .based {
    margin-top: 206px;
    padding-bottom: 70px;
  }
}
@media (max-width: 379px) {
  .based {
    margin-top: 168px;
    padding-bottom: 40px;
  }
}
.based .container {
  padding: 0 60px;
}
@media (max-width: 1279px) {
  .based .container {
    padding: 0;
  }
}

