body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

button {
  outline: none;
  background: #fff;
  border: none;
  font-family: inherit;
}

html {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #1e2125;
  background-color: #000;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.hero {
  background: rgba(0, 0, 0, 0.7);
}

.hero .video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 823px;
  z-index: -100;
  object-fit: cover;
  object-position: top center;
  background-size: cover;
  background-position: top center;
}

video {
  width: 100%;
  object-fit: cover;
}

.header-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.left-header, .right-header {
  display: flex;
  height: 64px;
  align-items: center;
}

.hero-content .mobile-header,
.hero-content .mobile-logo,
.hero-content .mobile-available-box {
  display: none;
}

.left-header a.logo,
.left-header a.logo:link,
.left-header a.logo:visited,
.left-header a.logo:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.left-header .logo {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 16px;
}

.left-header .logo h1 {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  /* identical to box height */
  letter-spacing: -1.3px;
  color: #FFFFFF;
}

.left-header .logo h1 span {
  font-weight: 400;
}

.left-header .nav-links {
  margin-left: 59px;
  display: flex;
  align-items: center;
  
  gap: 40px;

  height: 100%;
}

.left-header .nav-link {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;

  color: #FFFFFF;
  
  text-decoration: none;
}

.left-header .nav-link > a {
  text-decoration: none;
}

.left-header .nav-link > a:link,
.left-header .nav-link > a:visited,
.left-header .nav-link > a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.right-header .social-links {
  display: flex;
  height: 100%;
  align-items: center;
  margin-right: 40px;
}

.right-header .social-links a {
  display: block;
  width: 24px;
  height: 24px;
}

.right-header .social-links a:not(:last-child) {
  margin-right: 27px;
}

.right-header > a {
  text-decoration: none;
}

.right-header .download-button {
  width: 162px;
  height: 48px;
  border-radius: 36px;
  background: linear-gradient(90deg, #E24A71 0%, #FB5E50 100%);

  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.3px;

  color: #FFFFFF;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 0 210px 0;
}

.hero-content div {
  text-align: center;
}

.hero-content h2 {
  margin: 128px auto 32px;

  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-size: 72px;
  line-height: 76px;
  /* or 106% */
  text-align: center;

  color: #FFFFFF;
}

.hero-content h3 {
  margin: 32px auto 72px;
  font-family: Inter;
  font-style: normal;
  font-weight: 200;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
}

.hero-content h4 {
  margin: 0 auto 40px;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #FFFFFF;
}

.hero-content h4 > a {
  text-decoration: none;
  color: #FFFFFF;
}

.hero-content h4 > a:link,
.hero-content h4 > a:visited,
.hero-content h4 > a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.hero-content p {
  width: 491px;
  margin: 0 auto 43px;
  line-height: 1.8;
  font-weight: 600;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transform: translateY(0);
}

.hero-content.show p {
  opacity: 1;
  transform: translateY(-8px);
  transition: 400ms all linear;
}

.hero-content .download-buttons {
  display: flex;
  margin: 0 auto 20px;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.hero-content .download-buttons a {
  text-decoration: none;
}

.hero-content .download-buttons button {
  height: 48px;
  border-radius: 36px;
  background-color: rgb(246, 94, 114);

  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-content .download-buttons button.mac {
  width: 260px;
}

.hero-content .download-buttons button.windows {
  width: 306px;
}

.hero-content .download-buttons .download-text {
  margin-left: 16px;
  letter-spacing: 0.3p;
}

main {
  background: #3b4146;
}

main .card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 0 0 0;
  background: #fff;
  border-radius: 10px 10px 13px 13px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.7);
  transform: translateY(-90px);
}

.card .description_section {
  padding: 0 5.71%;
}

.card .description_section h2 {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  /* identical to box height */

  color: #1E2125;

  margin-bottom: 16px;
}

.card .description_section p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 200%;
  /* or 32px */
  letter-spacing: -0.323077px;

  color: #1E2125;
}

.card .description_section img {
  margin-top: auto;
  margin-bottom: auto;
}

.card .description_section > div {
  display: flex;
  column-gap: 32px;

  margin-bottom: 80px;
}

.card .description_section > div:nth-child(odd) {
  flex-direction: row;
}

.card .description_section > div:nth-child(even) {
  flex-direction: row-reverse;
}

.card .accolades_section {
  margin: 0 5.71% 80px;
  border: 1px solid #DEE7F1;
  box-sizing: border-box;
}

.card .accolades_section h2 {
  margin-top: 40px;
  margin-bottom: 24px;

  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  /* identical to box height */

  color: #1E2125;
}

.card .accolades_section .accolades_logos {
  padding-bottom: 41px;

  display: flex;
  gap: 32px 24px;
  flex-wrap: wrap;
  justify-content: space-between;

  margin: 0 12.1%;
  list-style: none;
  text-align: center;
}

.card .accolades_section .accolades_logos li:nth-child(4n+1) {
  width: 170px;
}

.card .accolades_section .accolades_logos li:nth-child(4n+2) {
  width: 147px;
}

.card .accolades_section .accolades_logos li:nth-child(4n+3) {
  width: 168px;
}

.card .accolades_section .accolades_logos li:nth-child(4n) {
  width: 142px;
}

.card .step_section {
  padding: 0 5.71%;
}

.card .step_section h2 {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  /* identical to box height */

  color: #1E2125;
}

.card .step_section h2 span {
  margin-left: 29px;
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
}

.card .step_section .step {
  display: flex;
  justify-content: space-between;
  margin: 24px auto 48px;
}

.card .step_section .step .stick-arrow {
  width: 20px;
  height: 10px;
  margin-top: 90px;
  border-bottom: 2px solid rgb(246, 96, 114);
  border-right: 3px solid rgb(246, 96, 114);
  transform: skew(45deg);
}

.card .step_section .step li {
  width: 284px;
}

.card .step_section .step h3 {
  margin: 14px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.37px;
}

.card .step_section .step .description {
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: -0.32px;
}

.card .introduction {
  position: relative;
  margin: 16px 64px 40px;
  width: auto;
}

.card .introduction:before {
  /* fix height by aspect ratio 16:9 */
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card .introduction iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card .plan_section {
  padding: 0 5.71% 64px;
}

.card .plan_section h2 {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  /* identical to box height */

  color: #1E2125;
}

.card .plan_section a {
  color: #1E2125;
}

.card .plan_section p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 32px;
  color: #1E2125;
}

.card .plan_section .plan_list {
  margin-top: 24px;

  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.card .plan_section .plan_list .free {
  background: #EEF4FB;
  border-radius: 13px;
}

.card .plan_section .plan_list .free ul {
  margin-top: 54px;
}

.card .plan_section .plan_list .pro {
  background: linear-gradient(137.24deg, rgba(242, 98, 120, 0.4) 0%, rgba(238, 244, 251, 0.4) 47.92%,rgba(74, 202, 234, 0.4)
  100%);
  border-radius: 13px;
}

.card .plan_section .plan_list .pro > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card .plan_section .plan_list .enterprise {
  background: #2C3134;
  border-radius: 13px;
}

.card .plan_section .plan_list .plan_description {
  padding: 40px 32px 40px;
  flex: 1 1 auto;
  width: 100%;
}

.card .plan_section .plan_list .plan_description h3 {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  text-align: start;

  color: #1E2125;
}

.card .plan_section .plan_list .plan_description .function li {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: start;

  color: #1E2125;
  list-style: none;
  margin: 0 0 19px;

  display: table;
}

.card .plan_section .plan_list .plan_description .function li::before {
  content: url(./assets/images/list_check.svg);
  margin-right: 8px;

  width: 24px;
  height: 24px;
}

.card .plan_section .plan_list .plan_description .function li > p {
  display: table-cell;
  vertical-align: middle;
}

.card .plan_section .plan_list .plan_description .price li {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  
  color: #1E2125;
  padding: 0;
  margin: 0 0 4px;
}

.card .plan_section .plan_list .enterprise h3 {
  color: #FFFFFF;
}

.card .plan_section .plan_list .enterprise .contact_center {
  margin: 117px auto 0;
  text-align: center;
}

.card .plan_section .plan_list .enterprise .contact_center p {
  margin-bottom: 16px;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

.card .plan_section .plan_list .enterprise .contact_button button {
  width: 162px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 36px;

  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.3px;

  color: #2C3134;
  cursor: pointer;
}

.card .bottom {
  display: flex;
  justify-content: space-between;
  padding: 40px 96px;
  background: #3b4146;
  border-radius: 0 0 10px 10px;
}

.card .bottom h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.42px;
}

.card .bottom .requirements {
  width: 70%;
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: -0.32px;
}

.card .bottom .requirements > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
}

.card .bottom .requirements .requirement-title {
  flex: 0 0 12em;
}

.card .bottom .requirements .requirement-param {
  flex: 1 1 calc(100% - 12em);
}

.card .bottom .requirements span {
  font-weight: 600;
}

.card .bottom * {
  color: #a1aab2;
}

.pre-footer {
  background: #3b4146;
  transform: translateY(-42px);
}

.pre-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.pre-footer h4 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.pre-footer-inner .products {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.pre-footer-inner .products img {
  border-radius: 11px;
}

footer {
  background: #000;
  transform: translateY(-42px);
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  height: 80px;
  margin: 0 auto;
}

footer .footer-inner .company {
  display: flex;
  align-items: center;
}

footer .footer-inner .company span {
  margin-left: 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #8996a1;
}
footer .footer-inner .terms {
  font-size: 12px;
  color: #8996a1;
}

footer .footer-inner .terms a {
  color: #8996a1;
  text-decoration: none;
}

.share-buttons {
  display: flex;
  height: 64px;
  width: 100%;
  margin-bottom: 43px;
}

.share-buttons .share-button-item {
  align-items: center;
  border-radius: 5px;
  display: flex;
  flex: 1 1;
  height: 100%;
  justify-content: center;
  cursor: pointer;
}
.share-buttons .share-button-item img {
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.share-buttons .share-button-item .share-button-item-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 16px;
}

.share-buttons .twitter {
  background-color: #1dadeb;
  color: #fff;
}

.share-buttons .facebook {
  background-color: #425eac;
  color: #fff;
  margin-left: 16px;
}

.above-row {
  display: flex;
}

.below-row {
  display: flex; 
  margin-top: 32px;
}

.basic-panel {
  width: 352px;
  height: 664px;
  background: #3F4448;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
  border-radius: 13px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  align-items: center;
}
.basic-panel .free-price {
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}
.panel-download-button {
  cursor: pointer !important;
  margin-top: 26px;
  background: linear-gradient(90deg, #E24A71 0%, #FB5E50 100%);
  border-radius: 36px;
  width: 162px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.3px;
  color: #FFFFFF;
}
.panel-content {
  padding-left: 72px;
  padding-right: 40px;
}
.panel-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  padding-top: 40px;
}
.function li::before {
  content: url(./assets/images/list_check-18.svg);
  width: 18px;
  height: 18px;
  margin-right: 8px;
  float: left;
}
.function li {
  margin-top: 22px;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-align: left;
}
.panel-footer {
  margin-top: 25px;
  text-align: left !important;
}

.panel-footer2 {
  margin-top: 12px;
  text-align: left !important;
}

.pro-panel {
  margin-left: 32px;
  max-width: 352px;
  height: 664px;
  background: #3F4448;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
  border-radius: 13px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  align-items: center;
  
}
.pro-panel-wrap {
  margin-left: 32px;
  background: linear-gradient(to bottom, #FA5D53, #00C2FF);
  padding: 3px;
  border-radius: 13px;
}
.pro-panel .recommend {
  position:relative;
  left: 125px;
  top: -15px;
  width: 99px;
  height: 30px;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  background: linear-gradient(95.47deg, #E44C6F 15.27%, #01C2FF 100%);
  border-radius: 40px;
  text-align: center;
  color: #FFFFFF;
  /* Inside auto layout */

}
.pro-panel .panel-title {
  padding-top: 40px;
  padding-bottom: 15px ;
}
.pro-panel .panel-download-button {
  margin-top: 12px;
}
.pro-panel .trial {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.pro-panel .price {
  margin-top: 10px;
}
.price {
  justify-content: center;
  display: flex;
  margin-top: 25px;
}
.price .price-value {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
}
.price .price-period {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.meeting-panel {
  max-width: 352px;
  height: 664px;
  background: #3F4448;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
  border-radius: 13px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  align-items: center;
}
.meeting-panel .panel-download-button {
  margin-top: 12px;
}
.commercial-panel {
  margin-top: 32px;
  margin-left: 32px;
  max-width: 352px;
  height: 353px;
  background: #3F4448;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
  border-radius: 13px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  align-items: center;
}
.commercial-panel .panel-title {
  padding-top: 40px;
  font-size: 18px;
  line-height: 22px;
}
.commercial-panel .panel-content {
  padding: 0 24px;
}
.commercial-panel .price {
  margin-top: 16px;
}
.commercial-panel .panel-download-button {
margin-top: 18px;
}
.contact-us-button {
  cursor: pointer !important;
  border: 1px solid #FFFFFF;
  border-radius: 36px;
  width: 162px;
  height: 48px;
  box-sizing: border-box;
  background: none;
  color: #FFFFFF;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-top: 24px;
}
.commercial-panel .subtitle {
  margin-top: 22px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #FFFFFF;
}
.page-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  color: #FFFFFF;
  margin: 48px 0;
}
.price-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 0 210px 0;
}
.price-background {
  background: #2C3134 !important;
}
.price-background .hero {
  background: none;
}
.price-background .hero .hero-content {
  padding: 24px 0 110px 0;
}
.panel-link {
  color:#FFFFFF ;
}
.pro-panel .trial-stamp {
  position:relative;
  left: 300px;
  top: -80px;
  z-index: 10;
  width: fit-content;
  margin-bottom: -95px;
}

.panel-purchase-button {
  cursor: pointer !important;
  margin-top: 10px;
  background: linear-gradient(90deg, #E24A71 0%, #FB5E50 100%);
  border-radius: 36px;
  width: 96px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  margin: 10px 5px;
}
.gray-border-right {
  border-right:  1px solid rgba(255, 255, 255, .2) ;
}

.sdk-panel {
  margin-top: 32px;
  max-width: 1120px;
  height: 167px;
  background: #3F4448;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
  border-radius: 13px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  align-items: center;
}
.sdk-panel .panel-title {
  padding-top: 24px;
  font-size: 18px;
  line-height: 22px;
}
.sdk-panel .panel-content {
  padding: 0 24px;
}
.sdk-panel .panel-download-button {
margin-top: 18px;
}
.sdk-panel .subtitle {
  margin-top: 14px;
  text-align: center;
  color: #FFFFFF;
}

.xchat-content {
  max-width: 1120px;
  margin: auto ;
  display: block;
  padding-top: 30px;
  justify-content: space-between;
  height: 100%;
}

.xchat-header {
  display: flex;
}
.xchat-header-title {
  width: 720px;
  margin-top: 68px;
  text-align: left;
  color: #FFF;
  font-size: 52px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; /* 67.2px */
}
.xchat-header-detail {
  text-align: left;
  width: 700px;
  margin-top: 24px;
  margin-bottom: 32px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.323px;
}
.xchat-phone {
  width: 392px;
  height: 544px;
  margin-bottom: 60px;
  
}
.xchat-download {
  width: fit-content;
  height: 160px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.20);
  padding: 24px;
}
.xchat-download-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%; 
}
.xchat-download-list {
  display: inline-block;
  line-height: 80px;
  align-content:center;
}
.xchat-download-item {
  margin-right: 16px;
}
.xchat-qrcode {
  margin-bottom: -9px;
}

main .xchat-card {
  margin: 0px auto;
  margin-top: 30px;
  background: #fff;
  width: 1088px;
  height: 610px;
  border-radius: 8px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.7);
}
.xchat-card iframe {
  margin: 16px ;
  width: 97%;
  height: 95%;
}
.xchat-another-product {
  color: #FFF;
  margin-top: 80px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  
}
.xchat-card-mini {
  display: flex;
  margin: 0px auto;
  text-align: left;
  margin-top: 24px;
  width: 968px;
  height: 320px;
  border-radius: 9px;
  background: #FFF;
  box-shadow: 0px 15px 18px 0px rgba(33, 41, 50, 0.10);
}
.xchat-card-mini .logo {
  margin: 99px 40px 0px 40px;
}
.xchat-card-mini .title {
  color: #08101F;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1.3px;
  margin-top: 41px;
}
.xchat-card-mini .title .camera {
  color: #08101F;
  font-size: 28px;
  font-weight: 300;
}
.xchat-card-mini .detail {
  margin-top: 16px;
  color: #212932;
  width: 415px;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
}
.xchat-card-mini .screen {
  margin-top: 28px;
  margin-left: 58px;
}
.xchat-card-mini button {
  width: 128px;
  height: 40px;
  border-radius: 40px;
  border: 2px solid #08101F;
  margin-top: 24px;
  color: #08101F;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
.xchat-card-mini svg {
  margin-left: 40px;
  margin-bottom: 3px;
}
.xchat-footer {
  transform: none;
  margin-top: 100px;
}
.xchat-body {
  background: linear-gradient(111deg, #FF3A3A 0%, #14D5FF 100%);
}
.xchat-phone-bg {
  background: url(./assets/images/xchat-phone-bg.png), lightgrey 100% / cover no-repeat;
  mix-blend-mode: lighten;
  overflow: hidden; 
  opacity: 0.5;
  position: absolute; 
  width: 1274px;
  height: 600px;
  z-index: 10;
}
.xchat-phone {
  z-index: 20;
  margin-left: -30px;
}

.left-header-mobile,
.xchat-download-list-mobile ,
.xchat-phone-mobile, 
.xchat-phone-mobile-bg,
.logo-mobile,
.xpapp-screen-mobile {
  display: none;
}