* {
    -webkit-tap-highlight-color: transparent;
  }
  /* Color Variable's */
  :root {
    --zws-green-color: #089a4d;
    --zws-black-color: #000;
    --zws-light-color: #e0fdeb;
    --zws-white-color: #fff;
  }
  picture,
  img {
    display: block;
  }
  .p-rlte {
    position: relative;
  }
  
  .p-abslt {
    position: absolute;
  }
  
  .zws-spcr {
    padding: 0 2.4em;
  }
  .txt-lft {
    text-align: left;
  }
  
  .txt-cntr {
    text-align: center;
  }
  
  .txt-rght {
    text-align: right;
  }
  section {
    overflow: hidden;
  }
  /* Display and Grid */
  .zcol-wrap,
  .dflx {
    display: flex;
    flex-wrap: wrap;
  }
  
  .flx-algn-cntr {
    align-items: center;
  }
  
  .flx-algn-start {
    align-items: flex-start;
  }
  
  .flx-algn-stretch {
    align-items: stretch;
  }
  
  .flx-algn-end {
    align-items: flex-end;
  }
  
  .flx-jstfy-cntr {
    justify-content: center;
  }
  
  .flx-jstfy-btween {
    justify-content: space-between;
  }
  
  .flx-jstfy-arnd {
    justify-content: space-around;
  }
  
  .flx-jstfy-start {
    justify-content: flex-start;
  }
  
  .flx-jstfy-end {
    justify-content: flex-end;
  }
  body {
    color: var(--zws-black-color);
  }
  /* Grid */
  .zcol-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .zcol-1 {
    max-width: calc(8.33% - 8px);
    flex-basis: calc(8.33% - 8px);
  }
  
  .zcol-2 {
    max-width: calc(16.67% - 8px);
    flex-basis: calc(16.67% - 8px);
  }
  
  .zcol-3 {
    max-width: calc(25% - 8px);
    flex-basis: calc(25% - 8px);
  }
  
  .zcol-4 {
    max-width: calc(33.33% - 8px);
    flex-basis: calc(33.33% - 8px);
  }
  
  .zcol-5 {
    max-width: calc(41.67% - 8px);
    flex-basis: calc(41.67% - 8px);
  }
  
  .zcol-6 {
    max-width: calc(50% - 8px);
    flex-basis: calc(50% - 8px);
  }
  
  .zcol-7 {
    max-width: calc(58.33% - 8px);
    flex-basis: calc(58.33% - 8px);
  }
  
  .zcol-8 {
    max-width: calc(66.67% - 8px);
    flex-basis: calc(66.67% - 8px);
  }
  
  .zcol-9 {
    max-width: calc(75% - 8px);
    flex-basis: calc(75% - 8px);
  }
  
  .zcol-10 {
    max-width: calc(83.33% - 8px);
    flex-basis: calc(83.33% - 8px);
  }
  
  .zcol-11 {
    max-width: calc(91.67% - 8px);
    flex-basis: calc(91.67% - 8px);
  }
  
  .zcol-12 {
    max-width: calc(100% - 8px);
    flex-basis: calc(100% - 8px);
  }
  .d-blck {
    display: block;
  }
  .in-view-desk {
    display: block;
  }
  .in-view-mob {
    display: none;
  }
  .zw-product-header{
    background: #e1fdeb;
  }
  /* Button set */
  .zws-btn-set {
    margin: 30px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .zws-btn-set a {
    border-radius: 8px;
    padding: 14px 20px;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: var(--zws-black-color);
  }
  .zws-btn-set .zws-app-str,
  .zws-btn-set .zws-g-play {
    background: var(--common-elements) no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    position: relative;
    background-size: 1070px auto;
  }
  .zws-btn-set .zws-app-str {
    width: 159px;
    background-position: 0 -47px;
  }
  .zws-btn-set .zws-g-play {
    width: 178px;
    background-position: -160px -47px;
  }
  .zws-line-btn {
    border: 1px solid #707070;
    border-radius: 5px;
  }
  
  .ratings {
    display: flex;
    flex-direction: row-reverse;
  }
  .btn-col{
    display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
  }
  .zwc-rate-val {
    /* background: #079a4d;
    border-radius: 60px; */
    font-size: 14px;
    font-family: var(--zf-secondary-semibold);
    color: #000;
    padding: 4px 9px 4px;
    max-width: max-content;
    margin: auto;
}
.zwc-rate-star {
    --percent: 0;
    display: inline-block;
    font-size: 22px;
    font-family: Times;
    line-height: 1;
    margin-top: 4px;
    transition: --percent .3s ease;
}
.zwe-ob.ratings .zwc-rate-star {
    animation: fillStars 2s forwards;
}
.zwe-ob.ratings.zwc-gplay-rate .zwc-rate-star{
    animation: fillStars2 2s forwards;
}
@keyframes fillStars{
    0% {
        --percent: 0;
    }
    20% {
        --percent: 20%;
    }
    40% {
        --percent: 40%;
    }
    60% {
        --percent: 60%;
    }
    80% {
        --percent: 80%;
    }
    100% {
        --percent: calc(4.2 / 5 * 100%);
    } 
}
@keyframes fillStars2{
    0% {
        --percent: 0;
    }
    20% {
        --percent: 20%;
    }
    40% {
        --percent: 40%;
    }
    60% {
        --percent: 60%;
    }
    80% {
        --percent: 80%;
    }
    100% {
        --percent: calc(4.2 / 5 * 100%);
    } 
}
.zwc-rate-star::before {
    content: "\2605\2605\2605\2605\2605";
    letter-spacing: 1px;
    background: linear-gradient(100deg, #ffb13d var(--percent), #d1d1d1 var(--percent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
  /* Title */
  .zws-title {
    margin: 0 0 36px;
  }
  .zws-title h1 {
    font-family: var(--primaryfont-bold);
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 20px;
  }
  .zws-title h2 {
    font-family: var(--primaryfont-bold);
    letter-spacing: -0.48px;
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.2;
  }
  .zws-title p {
    font-size: 18px;
    line-height: 1.6;
  }
  .zws-title p:last-child {
    margin-bottom: 0;
  }
  .zws-cntnt .zws-title h2 {
    font-size: 42px;
  }
  .pl-l {
    padding-left: 40px;
  }
  .pl-r {
    padding-right: 40px;
  }
  /* Banner section */
  
  .zws-bnr {
    background: var(--zws-light-color);
    padding: 60px 0 64px;
    position: relative;
  }
  .zws-bnr .zws-title p{
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
  }
  .zws-bnr::before,
  .zws-bnr::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .zws-bnr::before {
    background: #e0fdeb;
    height: 75%;
    top: 0;
  }
  .zws-bnr::after {
    bottom: 0;
    background: var(--zws-white-color);
    height: 25%;
  }
  .zws-bnr .content-wrap {
    z-index: 3;
  }
  .zws-bnr-img {
    margin: 65px 0 0;
  }
  .zws-main-bnr {
    margin: 0 auto 0 0;
    max-width: 1190px;
    width: 94%;
  }
  .zws-main-bnr2 {
    bottom: 0;
    right: 0;
    max-width: 243px;
    width: 23%;
  }
  
  .zws-hints-crd {
    padding: 70px 0;
    border-radius: 20px;
    height: 100%;
    max-width: calc(100% - 8px);
    width: 100%;
    background: url("//cdn.zoho.com.cn/sites/zweb/images/sheet/features/mltibx-sprte.png") center /
      112px auto repeat;
  }
  .zws-hints-crd > div {
    background: var(--zws-green-color);
    padding: 16px 70px;
  }
  .zws-hints-crd h2 {
    display: block;
    font-size: 40px;
    line-height: 1.1;
    font-weight: normal;
    font-family: var(--primaryfont-bold);
    color: var(--zws-white-color);
    margin: 0 0 26px;
  }
  .zws-hints-crd p {
    font-size: 22px;
    line-height: 1.4;
    color: var(--zws-white-color);
  }
  .zws-hints-crd p:last-child {
    margin-bottom: 0;
  }
  
  .zws-img-frme {
    padding: 0 36px;
    position: relative;
  }
  .zws-img-frme img {
    z-index: 1;
  }
  .zws-img-frme:before,
  .zws-img-frme:after {
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
  }
  .zws-img-frme:before {
    bottom: 40px;
    height: 100%;
    left: 0;
    border-radius: 50px;
    background: transparent linear-gradient(180deg, #ffffff00 0%, #c8e4d6 100%) 0%
      0% no-repeat padding-box;
    z-index: -2;
  }
  .zws-img-frme:after {
    content: "";
    height: 80px;
    bottom: 80px;
    background: url("//cdn.zoho.com.cn/sites/zweb/images/sheet/fea-pattern.svg");
    z-index: -1;
  }
  .zws-sec1 {
    padding: 64px 0 70px;
  }
  .zws-sec2,
  .zws-sec3,
  .zws-sec5 {
    padding: 100px 0 100px;
  }
  .zws-sec4 {
    padding: 100px 0 170px;
  }
  .zws-sec6 {
    padding: 180px 0 210px;
  }
  .zws-ovrly-img2 {
    top: 11%;
    right: 19%;
  }
  .zws-ovrly-img3 {
    top: 11%;
    right: 19%;
  }
  .zws-ovrly-img4 {
    top: 11%;
    right: 19%;
  }
  .zws-ovrly-img2,
  .zws-ovrly-img3,
  .zws-ovrly-img4 {
    max-width: 296px;
    width: 30%;
  }
  /* Features list */
  .zws-featrs {
    background: #e9f8f1;
    padding: 140px 0 120px;
  }
  
  .zws-hghlght-lst {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
  }
  .zws-hghlght-lst li {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    background: var(--zws-white-color);
    border: 1px solid #a4f2ce;
    border-radius: 10px;
    padding: 74px 70px;
  }
  .zws-hghlght-lst li.mx-wdth {
    flex: 0 0 calc(100% - 8px);
    max-width: calc(100% - 8px);
  }
  .zws-bdge {
    display: inline-block;
    background: var(--zws-green-color);
    color: var(--zws-white-color);
    line-height: 1.4;
    font-family: var(--zf-secondary-medium);
    font-size: 16px;
    padding: 5px 16px;
    border-radius: 25px;
    letter-spacing: -0.16px;
    margin: 0 0 16px;
  }
  .zws-hghlght-lst li h3 {
    font-family: var(--primaryfont-bold);
    letter-spacing: -0.32px;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px;
  }
  .zws-hghlght-lst li p {
    font-size: 18px;
    line-height: 1.6;
  }
  .zws-hghlght-lst li.mx-wdth {
    padding: 90px 70px;
  }
  .zws-hghlght-lst li.mx-wdth h3,
  .zws-hghlght-lst li.mx-wdth p {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Footer */
  .zws-footer {
    padding: 90px 0;
  }
  /* Footer ends*/
  .dots-shape {
    transform: translate3d(0, 28px, 0);
    background-image: radial-gradient(#12b946 2px, transparent 2.5px);
    position: absolute;
    background-size: 0.75rem 0.75rem !important;
    z-index: -1;
  }
  
  .dots-shape.dt-shape1 {
    top: 59%;
    left: -0.3%;
    height: 10rem !important;
    width: 7rem !important;
  }
  .dots-shape.dt-shape2 {
    background-image: radial-gradient(#ffc441 2px, transparent 2.5px);
      top: 60.7%;
    right: 6%;
    width: 2rem;
    height: 9rem;
  }
  .dots-shape.dt-shape1,
  .dots-shape.dt-shape2 {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .bottom-animated .dots-shape.dt-shape1 {
    opacity: 1;
    transition-delay: 800ms;
  }
  .bottom-animated .dots-shape.dt-shape2 {
    opacity: 1;
    transition-delay: 1400ms;
  }
  /* Animations */
  .zws-anim-lft,
  .zws-anim-rght,
  .zws-anim-top,
  .zws-anim-botm,
  .zws-anim-scale {
    transition: transform 0.4s ease-in, opacity 0.4s ease-in;
    opacity: 0;
  }
  .zws-anim-lft {
    transform: translateX(40px);
  }
  .zws-anim-rght {
    transform: translateX(-40px);
  }
  .zws-anim-scale {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  .zws-bnr .bottom-animated .zws-anim-scale,
  .zws-bnr .bottom-animated .zws-anim-lft,
  .zws-sec2 .middle-animated .zws-anim-lft,
  .zws-sec3 .middle-animated .zws-anim-rght,
  .zws-sec4 .middle-animated .zws-anim-scale,
  .zws-sec4 .middle-animated .zws-anim-lft,
  .zws-sec5 .middle-animated .zws-anim-rght,
  .zws-sec5 .middle-animated .zws-anim-scale,
  .zws-sec6 .middle-animated .zws-anim-scale,
  .zws-sec6 .middle-animated .zws-anim-lft {
    opacity: 1;
  }
  
  .zws-bnr .bottom-animated .zws-anim-scale,
  .zws-sec4 .middle-animated .zws-anim-scale,
  .zws-sec5 .middle-animated .zws-anim-scale,
  .zws-sec6 .middle-animated .zws-anim-scale {
    transform: scale3d(1, 1, 1);
  }
  .zws-bnr .bottom-animated .zws-anim-lft,
  .zws-sec2 .middle-animated .zws-anim-lft,
  .zws-sec3 .middle-animated .zws-anim-rght,
  .zws-sec4 .middle-animated .zws-anim-lft,
  .zws-sec5 .middle-animated .zws-anim-rght,
  .zws-sec6 .middle-animated .zws-anim-lft {
    transform: translateX(0);
  }
  
  .zws-bnr .bottom-animated .zws-anim-lft,
  .zws-sec4 .middle-animated .zws-anim-scale,
  .zws-sec5 .middle-animated .zws-anim-scale,
  .zws-sec6 .middle-animated .zws-anim-scale {
    transition-delay: 1200ms;
  }
  
  .zws-bnr .bottom-animated .zws-anim-scale,
  .zws-sec4 .middle-animated .zws-anim-lft,
  .zws-sec6 .middle-animated .zws-anim-lft {
    transition-delay: 500ms;
  }
.zb-inner{
    max-width: 840px;
}
.btn-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.qr-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #e1f2e8;
    padding: 16px 24px 8px;
    max-width: 440px;
    box-shadow: 0px 0px 3px 0 #cce5d2;
}

.qr-code img {
    width: 100px;
    height: 100px;
    display: block;
}


.qr-text p strong{
    display: block;
}
.qr-text p{
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}
  .i18n-ar .txt-lft { text-align: right; }
  .i18n-ar .txt-rght { text-align: left; }
  .i18n-ar .pl-l { padding-right: 40px; padding-left: unset; }
  .i18n-ar .pl-r { padding-left: 40px; padding-right: unset; }
  .i18n-ar .zws-bnr .zws-title p { margin-left: auto; margin-right: auto; }
  .i18n-ar .zws-bnr::before, .i18n-ar .zws-bnr::after { right: 0; left: unset; }
  .i18n-ar .zws-main-bnr { margin: 0 0 0 auto; }
  .i18n-ar .zws-main-bnr2 { left: 0; right: unset; }
  .i18n-ar .zws-img-frme:before, .i18n-ar .zws-img-frme:after { right: 0; left: unset; }
  .i18n-ar .zws-img-frme:before { right: 0; left: unset; }
  .i18n-ar .zws-ovrly-img2 { left: 19%; right: unset; }
  .i18n-ar .zws-ovrly-img3 { left: 19%; right: unset; }
  .i18n-ar .zws-ovrly-img4 { left: 19%; right: unset; }
  .i18n-ar .zws-hghlght-lst li.mx-wdth h3, .i18n-ar .zws-hghlght-lst li.mx-wdth p { margin-left: auto; margin-right: auto; }
  .i18n-ar .dots-shape { transform: translate3d(0,28px,0); }
  .i18n-ar .dots-shape.dt-shape1 { right: -0.3%; left: unset; }
  .i18n-ar .dots-shape.dt-shape2 { left: 6%; right: unset; }
  .i18n-ar .zws-anim-lft { transform: translateX(-40px); }
  .i18n-ar .zws-anim-rght { transform: translateX(40px); }
  .i18n-ar .zws-bnr .bottom-animated .zws-anim-lft, .i18n-ar .zws-sec2 .middle-animated .zws-anim-lft, .i18n-ar .zws-sec3 .middle-animated .zws-anim-rght, .i18n-ar .zws-sec4 .middle-animated .zws-anim-lft, .i18n-ar .zws-sec5 .middle-animated .zws-anim-rght, .i18n-ar .zws-sec6 .middle-animated .zws-anim-lft { transform: translateX(0); }
  .i18n-ar .txt-cntr { text-align: center; }
  .i18n-ar .txt-cntr * { text-align: center; }
.lang-rtl .qr-text p *{
    text-align: right;
}

  /* Media Query */
  @media (min-width: 1441px) {
    .zws-sec2 .content-wrap,
    .zws-sec3 .content-wrap,
    .zws-sec4 .content-wrap,
    .zws-sec5 .content-wrap,
    .zws-sec6 .content-wrap {
      max-width: 1440px;
      width: 96%;
    }
  }
  @media (max-width: 1440px) {
    .zw-template-inner .content-wrap {
      width: 1140px;
    }
    .zws-title h1 {
      font-size: 48px;
    }
    .zws-bnr .zws-title p {
      font-size: 20px;
    }
    .zws-title p {
      font-size: 18px;
    }
    .zws-hints-crd {
      padding: 64px 0;
    }
    .zws-hints-crd > div {
      padding: 16px 50px;
    }
    .zws-hints-crd h2 {
      font-size: 30px;
    }
    .zws-hints-crd p {
      font-size: 18px;
    }
    .zws-cntnt .zws-title h2 {
      font-size: 32px;
    }
    .zws-title h2 {
      font-size: 42px;
    }
    .zws-hghlght-lst li h3 {
      font-size: 28px;
    }
    .zws-sec2,
    .zws-sec3,
    .zws-sec5 {
      padding: 80px 0 80px;
    }
    .zws-img-frme:before {
      border-radius: 30px;
    }
    .zws-featrs {
      padding: 110px 0 100px;
    }
    .zws-bnr .zcol-6{
        max-width: calc(100% - 8px);
        flex-basis: calc(100% - 8px);
    }
  .i18n-ar .zws-hints-crd { padding: 64px 0; }
  .i18n-ar .zws-hints-crd>div { padding: 16px 50px; }
  .i18n-ar .zws-sec2, .i18n-ar .zws-sec3, .i18n-ar .zws-sec5 { padding: 80px 0 80px; }
  .i18n-ar .zws-featrs { padding: 110px 0 100px; }
  }
  @media (max-width: 1199px) {
    .zw-template-inner .content-wrap {
      width: 960px;
    }
.d-md-blck{
display:block;}
    .zws-title h1 {
      font-size: 42px;
    }
    .zws-bnr .zws-title p {
      font-size: 18px;
    }
    .dots-shape.dt-shape1{
      width: 4rem !important;
      left: 2%;
    top: 57%;
    }
    .dots-shape.dt-shape2{
              right: 5%;
        top: 58%;
    }
    .zws-hints-crd {
      padding: 54px 0;
    }
    .zws-cntnt .zws-title h2,
    .zws-hints-crd h2 {
      font-size: 26px;
    }
    .zws-title h2 {
      font-size: 36px;
    }
    .zws-title p,
    .zws-hghlght-lst li p {
      font-size: 16px;
    }
    .zws-hghlght-lst li h3 {
      font-size: 26px;
    }
    .zws-img-frme:before {
      border-radius: 20px;
    }
    .other-lang .zws-cntnt .zws-title h2 .d-blck{
    display: inline;
  }
  .i18n-ar .dots-shape.dt-shape1 { right: 2%; left: unset; }
  .i18n-ar .dots-shape.dt-shape2 { left: 5%; right: unset; }
  .i18n-ar .zws-hints-crd { padding: 54px 0; }
  .other-lang .zws-hghlght-lst li{
        padding: 74px 64px;
  }
  }
  @media (max-width: 991px) {
    .zw-template-inner .content-wrap {
      width: 720px;
    }
  
    .zcol-md-5 {
      max-width: calc(41.67% - 8px);
      flex-basis: calc(41.67% - 8px);
    }
    .zcol-md-6 {
      max-width: calc(50% - 8px);
      flex-basis: calc(50% - 8px);
    }
    .zcol-md-7 {
      max-width: calc(58.33% - 8px);
      flex-basis: calc(58.33% - 8px);
    }
    .zcol-md-8 {
      max-width: calc(66.67% - 8px);
      flex-basis: calc(66.67% - 8px);
    }
    .zcol-md-12 {
      max-width: calc(100% - 8px);
      flex-basis: calc(100% - 8px);
    }
    .d-blck {
      display: inline;
    }
    .zws-btn-set .zws-g-play {
      transform: scale(0.9);
    }
    .zws-title h1 {
      font-size: 34px;
    }
    .zws-hints-crd {
      padding: 36px 0;
    }
    .zws-hints-crd > div {
      padding: 0 36px;
    }
    .zws-hints-crd p {
      font-size: 16px;
    }
    .zws-featrs {
      padding: 70px 0 70px;
    }
  
    .zws-hghlght-lst li {
      padding: 35px;
    }
    .zws-hghlght-lst li.mx-wdth {
      padding: 60px;
    }
  .i18n-ar .zws-hints-crd { padding: 36px 0; }
  .i18n-ar .zws-hints-crd>div { padding: 0 36px; }
  .i18n-ar .zws-featrs { padding: 70px 0 70px; }
  .i18n-ar .zws-hghlght-lst li { padding: 35px; }
  .i18n-ar .zws-hghlght-lst li.mx-wdth { padding: 60px; }
  .other-lang .zws-cntnt.pl-r{
    padding-right: 10px;
  }
  .other-lang .zws-cntnt .zws-title h2 .d-blck{
    display: inline;
  }
.apps-download-links-wrap {
    max-width: 600px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
    flex-direction: unset;
    margin: auto;
}
  }
  @media (max-width: 767px) {
    .zw-template-inner .content-wrap {
      width: 450px;
    }
    .zcol-1,
    .zcol-2,
    .zcol-3,
    .zcol-4,
    .zcol-5,
    .zcol-6,
    .zcol-7,
    .zcol-8,
    .zcol-9,
    .zcol-10,
    .zcol-11,
    .zcol-12 {
      position: relative;
      flex-basis: calc(100% - 0px);
      max-width: calc(100% - 0px);
      width: 100%;
    }
    .in-view-desk {
      display: none;
    }
    .in-view-mob {
      display: block;
    }
    .pl-l {
      padding: 0;
    }
    .pl-r {
      padding: 0;
    }
    .flx-row-rvrse {
      flex-direction: column-reverse;
    }
    .zws-bnr {
      padding: 50px 0 54px;
    }
    .zws-sec1 {
      padding: 54px 0 40px;
    }
    .zws-sec2,
    .zws-sec3,
    .zws-sec5 {
      padding: 60px 0 60px;
    }
    .zws-img-frme {
      margin-top: 30px;
      padding: 0 10px;
    }
  
    .zws-sec4 {
      padding: 50px 0 60px;
    }
    .zws-sec6 {
      padding: 50px 0 80px;
    }
    .zws-title h1 {
      font-size: 32px;
    }
    .zws-title h2 {
      font-size: 30px;
    }
    .zws-bnr .zws-title p {
      font-size: 16px;
    }
    .zws-cntnt .zws-title h2 {
      max-width: 320px;
    }
    .zws-btn-set .zws-g-play {
      transform: scale(0.8);
    }
    .zws-bnr-img {
      margin: 45px 0 0;
    }
    .zws-hints-crd {
      height: auto;
      max-width: 100%;
      margin-bottom: 12px;
    }
    .zws-hghlght-lst li {
      flex: 0 0 calc(100% - 8px);
      max-width: calc(100% - 8px);
    }
    .zws-bdge {
      font-size: 14px;
    }
    .zws-hghlght-lst li h3 {
      font-size: 24px;
    }
    .zws-footer {
      padding: 70px 0;
    }
    .dots-shape{
        display: none;
    }
  .i18n-ar .pl-l { padding: 0; }
  .i18n-ar .pl-r { padding: 0; }
  .i18n-ar .zws-bnr { padding: 50px 0 54px; }
  .i18n-ar .zws-sec1 { padding: 54px 0 40px; }
  .i18n-ar .zws-sec2, .i18n-ar .zws-sec3, .i18n-ar .zws-sec5 { padding: 60px 0 60px; }
  .i18n-ar .zws-img-frme { padding: 0 10px; }
  .i18n-ar .zws-sec4 { padding: 50px 0 60px; }
  .i18n-ar .zws-sec6 { padding: 50px 0 80px; }
  .i18n-ar .zws-bnr-img { margin: 45px 0 0; }
  .i18n-ar .zws-footer { padding: 70px 0; }
  .other-lang .zws-btn-set a{
    font-size: 15px;
  }
  .other-lang .zws-hghlght-lst li.mx-wdth{
    padding: 60px 30px;
  }
    .qr-banner {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.qr-text p{
    text-align: center;
}
.lang-rtl .qr-text p *{
    text-align: center;
}

  }
  @media (max-width: 480px) {
    .zw-template-inner .content-wrap {
      width: 90%;
    }
    
  }
  