/*common-css*/
* {
    box-sizing: border-box;
}

.dsp-flx {
    display: flex;
}

.justify-space {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.zswpage-wrap h1 {
    font-size: 52px;
    line-height: 1.1;
    position: relative;
}

.zswpage-wrap h2 {
    font-size: 46px;
    line-height: 1.1;
}

.zswpage-wrap h3 {
    font-size: 34px;
    line-height: 45px;
}


.zswpage-wrap h6 {
    font-size: 28px;
}

.zswpage-wrap h1,
.zswpage-wrap h2 {
    font-family: var(--primaryfont-bold);
}

.zw-template-inner .content-wrap {
    max-width: 1170px;
}

.zw-product-header {
    background: #2148AA;
}

.zswpage-wrap .moveup,
.zswpage-wrap .move-left,
.zswpage-wrap .move-right {
    -o-transition: opacity .3s linear .35s, transform .4s linear .35s;
    transition: opacity .3s linear .35s, transform .4s linear .35s;
    -webkit-transition: opacity .3s linear .35s, transform .4s linear .35s;
    opacity: 0;
}

.zswpage-wrap .moveup {
    transform: translateY(50px);
}

.zswpage-wrap .move-left {
    transform: translateX(-30px);
}

.zswpage-wrap .move-right {
    transform: translateX(30px);
}

.zswpage-wrap a.act-btn {
    padding: 10px 30px;
    font-size: 17px;
}


/* banner section */
.zbanner-section {
    background: #2148AA;
    padding: 160px 0;
}

.zbanner-box-cont {
    width: 65%;
    color: #fff;
}

.zbanner-box-cont h1 {
    max-width: 720px;
}

.zbanner-box-cont p {
    font-size: 19px;
    margin: 30px 0 0;
    max-width: 600px;
}

.cont-btn {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
}

.non-umain .zbanner-box-cont a {
    display: none;
}

.body-umain .cont-btn {
    margin: 0 0 0 20px;
}

.body-umain .zbanner-box-wrap {
    flex-direction: column;
}

.body-umain .zbanner-box-wrap .zbanner-box-cont {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.body-umain .zbanner-icons>ul {
    margin: 0 auto 40px;
}

.body-umain .zbanner-box-cont h1 {
    max-width: 100%;
}

.body-umain .zbanner-box-cont p {
    margin: 30px auto;
    max-width: 100%;
}

.zbanner-icons>ul {
    margin: 0 0 40px;
    display: flex;
    max-width: 180px;
    position: relative;
}

.zbanner-icons>ul>li {
    width: 100px;
    height: 70px;
    background: #fff;
    display: flex;
    justify-content: center;
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.zbanner-icons>ul>li:first-child {
    transform: translateX(-50px);
    border-radius: 8px 0 0 8px;
}

.zbanner-icons>ul>li:last-child {
    transform: translateX(50px);
    transition-delay: .5s;
    border-radius: 0 8px 8px 0;
    background: #e9f2ea;
}

.middle-animated .zbanner-icons>ul>li:first-child,
.middle-animated .zbanner-icons>ul>li:last-child {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)";
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    transform: translateX(0)
}

.zbanner-icons>ul:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #2148aa;
    border-radius: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 1
}

.zbanner-icons>ul:after {
    content: '+';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 1
}

.zbanner-icons>ul:before,
.zbanner-icons>ul:after {
    opacity: 0;
    -ms-filter: "alpha(opacity=100)";
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    transform: scale(1.5)
}

.middle-animated .zbanner-icons>ul:before,
.middle-animated .zbanner-icons>ul:after {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)";
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    transform: scale(1)
}

.zbanner-box-form {
    width: 35%;
    position: relative;
}

.form-head {
    font-size: 19px;
    font-family: var(--primaryfont-semibold);
    margin-bottom: 10px;
    color: #000;
}

.signup-box {
    max-width: 400px;
    min-height: 430px;
    background: #fff;
    padding: 30px 35px;
    border-radius: 10px;
    position: relative;
}

span.ztc-txt {
    font-size: 11px;
    font-family: var(--zf-secondary-medium);
    display: block;
    margin: 10px 0 0;
}

/* wallet form style */
.creditelm {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px 35px;
    border-radius: 10px;
    position: relative;
    margin: 0 0 0 auto;
}

.creditelm #email,
.creditelm #couponmail {
    background: #ececec
}

.creditelm input {
    color: #000;
    padding: 14px 12px;
    border: 1px solid #d5d5d5;
    display: block;
    width: 100%;
    margin: 15px 0 0;
    font-size: 13px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 1;
    transition: .5s ease;
    border-radius: 0
}

.creditelm .note {
    font-size: 11px;
    margin: 10px 0 10px;
    text-align: left;
    width: 100%;
    display: inline-block;
    color: #000;
    padding: 0;
    background-color: transparent
}

.coupon-error.note {
    color: red
}

.creditelm .coupon-error:empty {
    display: none
}

.creditelm .existingUser {
    font-size: 15px;
    height: 50px;
    padding: 0 20px;
    background: #f0483e;
    text-align: center;
    text-transform: uppercase;
    border: 0;
    color: #fff;
    width: calc(100% - 60px);
    cursor: pointer;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
}

/* wallet form style */

.learn-more-cta {
    display: inline-block;
    border-bottom: 2px solid;
    font-family: var(--zf-secondary-semibold);
    position: relative;
    color: #fff;
    font-size: 22px;
}

.learn-more-cta:before {
    content: "";
    width: 15px;
    height: 2px;
    background: var(--primary-btn-clr);
    position: absolute;
    right: -22px;
    top: 18px;
    transform: rotate(-45deg);
}

.learn-more-cta:after {
    content: "";
    border-right: 2px solid var(--primary-btn-clr);
    border-top: 2px solid var(--primary-btn-clr);
    position: absolute;
    right: -21.5px;
    top: 12px;
    width: 8px;
    height: 8px;
}

/* context section */
.zcontext-section {
    padding: 120px 0;
}

.zcontext-section h2 {
    text-align: center;
}

.zcontext-box {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.zcontext-box>div {
    border-radius: 12px;
    box-shadow: 3px 4px 10px #0000000A;
    overflow: hidden;
}

.zcontext-section img {
    display: block;
    border-radius: 12px 0;
}

.zcontxt-box1>h3,
.zcontxt-box2>h3 {
    max-width: 350px;
}

.zcontxt-box1>p {
    max-width: 400px;
    margin: 0 0 95px;
}

.zbox1-slider {
    margin: 50px 0 0;
}

.zcontxt-box1,
.zcontxt-box2 {
    width: calc(50% - 25px);
    background: #F7B21A;
    padding: 70px 0 0 70px;
}

.zcontxt-box2 {
    background: #F5F5F7;
}

.zcontxt-box2>p {
    max-width: 400px;
    margin: 0 0 50px;
}

.zswpage-wrap .zcontxt-box2 img.move-right {
    transition-delay: 1s;
}

.zcontxt-box3 {
    background: #2148AA;
    color: #fff;
    padding: 70px 0 0 70px;
    width: 100%;
}

.zcontxt-box3>p {
    max-width: 640px;
}

.zbox1-slider {
    display: flex;
    flex-direction: row-reverse;
}

.zbox1-slider .slick-dots>li {
    display: block;
    margin: 10px;
    outline: 1px solid #92a4d6;
    border: none;
    background: #2148aa;
}

.zbox1-slider .slick-dots {
    width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slick-dotted.slick-slider {
    margin: 50px 0 0;
}

.slick-dots li.slick-active {
    background: #F7B21A;
    outline: 1px solid #F7B21A;
    border: 3px solid #2148aa;
}

.zcontext-box .zwe-ob.move-right,
.zcontext-box .zwe-ob.move-left {
    transform: translate(0);
    opacity: 1
}

/* optimize section */
.zoptimize-section {
    padding: 0;
}

.zoptimize-section h2 {
    max-width: 750px;
}

.zopt-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 0;
}

.zopt-cont {
    width: 35%;
}

.zopt-img {
    width: 70%;
}

.zforms-pic {
    max-width: 670px;
    background: #F5F5F7;
    box-shadow: 3px 4px 10px #0000000A;
    border-radius: 12px;
    padding: 80px 0 0;
    overflow: hidden;
}

.zforms-pic img {
    display: block;
    margin: 0 0 0 auto;
}

.zopt-cont ul li:nth-child(2) {
    margin: 50px 0;
}

.zopt-cont ul li span {
    color: #7A8DA0;
    display: block;
    font-family: var(--secondaryfont-semibold);
    font-size: 24px;
}

.zopt-cont ul li h4 {
    font-size: 24px;
    font-family: var(--secondaryfont-bold);
    margin: 10px 0;
}

.zopt-img .zwe-ob.move-right {
    transform: translate(0);
    opacity: 1
}

/* workflow section */
.zworkflow-section {
    padding: 120px 0;
}

.zworkflow-section .content-wrap {
    max-width: 1280px;
}

.zworkflow-section ul {
    display: flex;
    gap: 20px;
}

.zworkflow-section ul li {
    background: #CDE7FF;
    box-shadow: 3px 4px 10px #0000000A;
    border-radius: 12px;
    width: 50%;
    position: relative;
}

.zworkflow-section ul li:nth-child(2) {
    background: #2148AA;
    color: #fff;
}

.zworkflow-section h3 {
    font-family: var(--secondaryfont-bold);
    max-width: 370px;
    text-align: center;
    margin: 70px auto;
}

.zworkflow-section ul li video {
    max-width: 560px;
    margin: 0 0 0 auto;
    display: block;
    border-radius: 12px 0;
}

/* Video play and pause */

.zwc-anim-toggle-btn {
    margin: 0 10px 15px 0;
    display: flex;
    justify-content: end;
}

.zwc-anim-toggle-btn>button {
    background-color: transparent;
    border: 0;
    color: #000000;
    display: grid;
    align-items: center;
    grid-template-columns: auto max-content;
    cursor: pointer;
    justify-content: start;
    gap: 7px;
}

.zwc-anim-toggle-btn>button:before {
    display: block;
    content: "";
    clip-path: polygon(0 0, 0% 100%, 40% 100%, 40% 0, 76.66% 0, 100% 0, 100% 100%, 60% 100%, 60% 0);
    background: #000000;
    width: 8px;
    height: 10px;
    position: relative;
    top: 0px;
}

.zwc-anim-toggle-btn>button.video-play:before {
    clip-path: polygon(20% 0, 20% 100%, 90% 50%, 90% 50%, 90% 50%, 90% 50%, 90% 50%, 90% 50%, 90% 50%);
    width: 12px;
    height: 12px;
}

.zworkflow-section ul li:nth-child(2) button.video-toggle {
    color: #fff;
}

.zworkflow-section ul li:nth-child(2) .zwc-anim-toggle-btn>button:before {
    background: #fff;
}


/* whychoose section */
.zwhyinteg-section {
    padding: 0 0 120px;
}

.zwhyinteg-section h2 {
    max-width: 600px;
}

.zwhyinteg-section ul {
    margin: 70px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.zwhyinteg-section ul>li {
    width: calc(33.3% - 53px);
    -o-transition: transform .4s linear .35s;
    transition: transform .4s linear .35s;
    -webkit-transition: transform .4s linear .35s;
    transform: translateY(50px);
}

.zwhyinteg-section ul>li:nth-child(2),
.zwhyinteg-section ul>li:nth-child(4) {
    transition-delay: .8s;
}

.zwhyinteg-section ul>li:nth-child(3),
.zwhyinteg-section ul>li:nth-child(5) {
    transition-delay: 1.2s;
}

.zwhyinteg-section ul>li.zwe-ob {
    transform: translate(0);
}

.zwhyinteg-section ul>li h3 {
    font-size: 24px;
    line-height: 34px;
    font-family: var(--zf-secondary-bold);
    padding: 80px 0 0;
    position: relative;
}

.zwhyinteg-section ul>li p {
    margin: 0;
}

.zwhyinteg-section ul>li h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: url(/sites/zweb/images/sign/forms-sprite-icons.svg) no-repeat left top;
    background-size: 320px auto;
}

.zwhyinteg-section ul>li:nth-child(2) h3:before {
    background-position: -70px 0;
    width: 52px;
}

.zwhyinteg-section ul>li:nth-child(3) h3:before {
    background-position: -122px 0;
}

.zwhyinteg-section ul>li:nth-child(4) h3:before {
    background-position: -192px 0;
    width: 69px;
}

.zwhyinteg-section ul>li:nth-child(5) h3:before {
    background-position: -262px 0;
    width: 60px;
}

/* bottom section */
.zbottom-section {
    padding: 0 0 120px;
    text-align: center;
}

.zbtm-cont {
    background: #2148AA;
    color: #fff;
    padding: 60px 0;
    border-radius: 12px;
}

.zbottom-section h2 {
    max-width: 700px;
    margin: 0 auto 30px;
}

.zbottom-section h2+p {
    font-size: 30px;
    margin: 0 0 30px;
}

.zbtm-terms {
    background: #F5F5F7;
    padding: 60px;
    text-align: left;
    border-radius: 0px 0px 12px 12px;
}

.zbtm-terms strong {
    font-family: var(--zf-secondary-semibold);
}

.zbtm-terms p,
.zbtm-terms ul li {
    font-size: 16px;
    line-height: 26px;
}

.zbtm-terms ul li {
    margin: 10px;
    position: relative;
    padding: 0 0 0 20px;
}

.zbtm-terms ul li:before {
    content: '';
    background: #F7B21A;
    border-radius: 100%;
    position: absolute;
    width: 8px;
    height: 8px;
    left: 0px;
    top: 7px;
}

/*media-queries*/
@media only screen and (min-width : 1400px) and (max-width: 1599px) {
    .zbanner-section {
        padding: 120px 0;
    }

}

@media only screen and (min-width : 1200px) and (max-width: 1399px) {
    .zswpage-wrap h1 {
        font-size: 48px;
    }

    .zswpage-wrap h2 {
        font-size: 38px;
        line-height: 48px;
    }

    .zbanner-section {
        padding: 100px 0;
    }

    .zbanner-box-cont h1 {
        max-width: 660px;
    }

    .zbanner-box-cont p {
        margin: 30px 0 0;
        max-width: 580px;
        font-size: 18px;
    }

    .zworkflow-section ul li video {
        width: 95%;
    }

    .zwhyinteg-section h2 {
        max-width: 540px;
    }

    .major-player {
        padding: 50px 30px;
    }

    .zbottom-section {
        padding: 0 0 80px;
    }

    .zbottom-section h2 {
        max-width: 580px;
    }
}

@media only screen and (min-width : 992px) and (max-width: 1199px) {
    .zswpage-wrap h1 {
        font-size: 42px;
    }

    .zswpage-wrap h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .zswpage-wrap h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .zbanner-section {
        padding: 100px 0;
    }

    .zbanner-box-cont h1 {
        max-width: 650px;
    }

    .zbanner-box-cont p {
        font-size: 17px;
        margin: 20px 0 0;
        max-width: 540px;
    }

    .zbanner-box-form:after {
        transform: scale(3);
        left: 40px;
    }

    .body-umain .zbanner-box-cont h1 {
        max-width: 900px;
        margin: 0 auto;
    }

    .body-umain .zbanner-box-cont p {
        max-width: 750px;
    }

    .zcontext-section {
        padding: 100px 0;
    }

    .zcontxt-box1,
    .zcontxt-box2,
    .zcontxt-box3 {
        padding: 40px 0 0 40px;
    }

    .zcontxt-box1>p {
        margin: 0 0 88px;
    }

    .zoptimize-section h2 {
        max-width: 600px;
    }

    .zopt-box {
        margin: 60px 0 0;
        gap: 50px;
        align-items: start;
    }

    .zopt-cont ul li h4 {
        font-size: 22px;
    }

    .zworkflow-section h3 {
        margin: 40px auto;
    }

    .zworkflow-section ul li video {
        width: 95%;
    }

    .zwhyinteg-section ul {
        margin: 50px 0 0;
        gap: 50px;
    }

    .zwhyinteg-section ul>li {
        width: calc(33.3% - 35px);
    }

    .zwhyinteg-section h2 {
        max-width: 500px;
    }

    .zbottom-section {
        padding: 0 0 80px;
    }

    .zbottom-section h2 {
        max-width: 540px;
    }
}

@media only screen and (min-width : 768px) and (max-width: 991px) {
    .zswpage-wrap h1 {
        font-size: 42px;
    }

    .zswpage-wrap h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .zswpage-wrap h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .zbanner-section {
        padding: 60px 0;
    }

    .zbanner-box-wrap {
        display: block;
    }

    .zbanner-box-cont {
        width: 100%;
        text-align: center;
    }

    .zbanner-icons>ul {
        margin: 0 auto 30px;
    }

    .zbanner-box-cont h1 {
        max-width: 700px;
        margin: 0 auto;
    }

    .zbanner-box-cont p {
        font-size: 17px;
        margin: 20px auto;
        max-width: 620px;
    }

    .zbanner-box-form {
        width: 100%;
    }

    .non-umain .zbanner-box-cont a {
        display: inline-block;
    }

    .learn-more-cta {
        font-size: 18px;
    }

    .zcontext-section {
        padding: 80px 0;
    }

    .zcontext-box {
        margin: 0;
        gap: 20px
    }

    .zcontxt-box1,
    .zcontxt-box2,
    .zcontxt-box3 {
        padding: 40px 0 0 40px;
    }

    .zcontxt-box1,
    .zcontxt-box2 {
        width: calc(50% - 10px);
    }

    .zcontxt-box1>h3 {
        max-width: 380px;
    }

    .zcontxt-box1 h3,
    .zcontxt-box2 h3 {
        max-width: 240px;
    }

    .zcontxt-box1>p {
        margin: 0 0 80px;
        max-width: 290px;
    }

    .zcontxt-box2>p {
        max-width: 300px;
    }

    .zoptimize-section h2 {
        max-width: 600px;
    }

    .zopt-box {
        margin: 60px 0 0;
        gap: 30px;
        align-items: start;
    }

    .zopt-cont ul li span {
        font-size: 18px;
    }

    .zopt-cont ul li:nth-child(2) {
        margin: 30px 0;
    }

    .zopt-cont ul li h4 {
        font-size: 19px;
    }

    .zforms-pic {
        padding: 40px 0 0 40px;
    }

    .zworkflow-section {
        padding: 80px 0;
    }

    .zworkflow-section h3 {
        max-width: 250px;
        margin: 30px auto;
    }

    .zworkflow-section ul li video {
        width: 95%;
    }

    .zwhyinteg-section {
        padding: 0 0 80px;
    }

    .zwhyinteg-section h2 {
        max-width: 500px;
    }

    .zwhyinteg-section ul {
        margin: 50px 0 0;
        gap: 40px 20px;
    }

    .zwhyinteg-section ul>li {
        width: calc(50% - 10px);
    }

    .zwhyinteg-section ul>li h3 {
        font-size: 23px;
    }

    .zbottom-section {
        padding: 0 0 80px;
    }

    .zbottom-section h2 {
        max-width: 540px;
    }

    .zbtm-terms {
        padding: 60px 20px;
    }
}

@media only screen and (max-width : 767px) {
    .zswpage-wrap h1 {
        font-size: 36px;
    }

    .zswpage-wrap h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .zswpage-wrap h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .zbanner-section {
        padding: 60px 0;
    }

    .zbanner-box-wrap {
        display: block;
    }

    .zbanner-box-cont {
        width: 100%;
        text-align: center;
    }

    .zbanner-icons>ul {
        margin: 0 auto 30px;
    }

    .zbanner-box-cont h1 {
        max-width: 520px;
        margin: 0 auto;
    }

    .zbanner-box-cont p {
        font-size: 17px;
        margin: 20px auto;
        max-width: 620px;
    }

    .zbanner-box-form {
        width: 100%;
    }

    .non-umain .zbanner-box-cont a {
        display: inline-block;
    }

    .learn-more-cta {
        font-size: 18px;
    }

    .zswpage-wrap a.act-btn {
        padding: 8px 30px;
        font-size: 15px;
    }

    .zcontext-section {
        padding: 60px 0;
    }

    .zcontext-box {
        margin: 40px 0 0;
        gap: 20px
    }

    .zcontext-section img {
        border-radius: 12px;
    }

    .zcontxt-box1,
    .zcontxt-box2,
    .zcontxt-box3 {
        padding: 40px 20px;
    }

    .zbox1-slider {
        display: block;
    }

    .zbox1-slider .slick-dots {
        width: 100%;
        display: block;
    }

    .zbox1-slider .slick-dots>li {
        display: inline-block;
        margin: 10px 5px 0px;
    }

    .slick-dotted.slick-slider {
        margin: 30px 0 0;
    }

    .zcontext-box>div {
        border-radius: 12px;
    }

    .zcontxt-box1,
    .zcontxt-box2 {
        width: 100%;
    }

    .zcontxt-box3>h3 {
        max-width: 380px;
    }

    .zcontxt-box1 h3,
    .zcontxt-box2 h3 {
        max-width: 340px;
    }

    .zbox1-slider {
        margin: 30px 0 0;
    }

    .zcontxt-box1>p,
    .zcontxt-box2>p {
        max-width: 100%;
        margin: 0 0 30px;
    }

    .zcontxt-box3>p {
        max-width: 500px;
        margin: 0 0 20px;
    }

    .zoptimize-section h2 {
        max-width: 600px;
    }

    .zopt-box {
        margin: 40px 0 0;
        gap: 20px;
        align-items: start;
        flex-direction: column;
    }

    .zopt-cont,
    .zopt-img {
        width: 100%;
    }

    .zopt-cont ul li span {
        font-size: 18px;
    }

    .zopt-cont ul li:nth-child(2) {
        margin: 30px 0;
    }

    .zopt-cont ul li h4 {
        font-size: 19px;
    }

    .zworkflow-section {
        padding: 80px 0;
    }

    .zworkflow-section h3 {
        max-width: 270px;
        margin: 30px auto;
    }

    .zworkflow-section ul {
        gap: 20px;
        flex-direction: column;
        max-width: 650px;
        margin: 0 auto;
    }

    .zworkflow-section ul li {
        width: 100%;
    }

    .zworkflow-section ul li video {
        width: 90%;
    }

    .zforms-pic {
        padding: 60px 0 0 40px;
    }

    .zwhyinteg-section {
        padding: 0 0 60px;
    }

    .zwhyinteg-section h2 {
        max-width: 330px;
    }

    .zwhyinteg-section ul {
        margin: 50px 0 0;
        gap: 20px;
    }

    .zwhyinteg-section ul>li {
        width: 100%;
    }

    .zwhyinteg-section ul>li h3 {
        font-size: 19px;
    }

    .zswpage-wrap .moveup,
    .zswpage-wrap .move-left,
    .zswpage-wrap .move-right {
        opacity: 1;
        transform: none;
    }

    .middle-animated .bsi-icons li {
        transform: scale(0.8);
    }

    .zbottom-section {
        padding: 0 0 80px;
    }

    .zbottom-section h2 {
        max-width: 390px;
        margin: 0 auto 15px;
    }

    .zbtm-cont {
        padding: 40px 0;
    }

    .zbtm-terms {
        padding: 40px 20px;
    }

    .zbtm-terms p,
    .zbtm-terms ul li {
        font-size: 14px;
        line-height: 24px;
    }
}

@media only screen and (max-width:480px) {
    .zswpage-wrap h1 {
        font-size: 26px;
    }

    .zswpage-wrap h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .zbanner-icons>ul {
        margin: 0 auto 10px;
        transform: scale(.7);
        transform-origin: top;
    }

    .body-umain .zbanner-icons>ul {
        margin: 0 auto 10px;
    }

    .zbanner-box-cont h1 {
        max-width: 300px;
    }

    .zbanner-box-cont p {
        font-size: 16px;
        line-height: 26px;
        max-width: 310px;
    }

    .body-umain .zbanner-box-cont p {
        margin: 20px auto;
    }

    .learn-more-cta {
        font-size: 16px;
    }

    .zcontxt-box3>h3 {
        max-width: 300px;
    }

    .zcontext-box {
        margin: 0;
        gap: 20px;
    }

    .zforms-pic {
        padding: 40px 0 0 20px;
    }

    .zworkflow-section ul li video {
        width: 95%;
    }

    .zwhyinteg-section ul {
        margin: 30px 0 0;
    }

    .zbottom-section h2 {
        max-width: 290px;
        font-size: 23px;
    }

    .zbtm-terms p,
    .zbtm-terms ul li {
        font-size: 13px;
        line-height: 23px;
    }
}