.dsp-flx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  
  }
  
  .justify-space {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
  }
  
  .sign-form-wrap h1 {
    font-size: 60px;
  }
  
  .sign-form-wrap h2 {
    font-size: 50px;
  }
  
  .sign-form-wrap h3 {
    font-size: 34px;
  }
  
  .sign-form-wrap h4 {
    font-size: 18px;
    color: #2148AA;
    text-transform: uppercase;
  }
  
  .sign-form-wrap h2,
  .sign-form-wrap h3,
  .sign-form-wrap h4 {
    font-family: var(--primaryfont-bold);
  }
  
  .act-btn {
    font-size: 17px;
    padding: 10px 32px;
  }
  
  /*sign-form-header*/
  .sign-form-banner {
    padding: 120px 0px;
    position: relative;
  }
  
  .sign-banner-wrap,
  .sign-collect-wrap,
  .quick-feature-wrap {
    max-width: 1030px;
    margin: 0 auto;
  }
  
  .sign-banner-cont {
    width: 50%;
  }
  
  .sign-banner-image {
    width: 54%;
    position: relative;
    text-align: right;
  }
  
  .sign-form-banner p {
    max-width: 400px;
    font-size: 20px;
    line-height: 1.5;
  }
  
  /*sign-collect*/
  .sign-collect {
    background: #2148AA;
    color: #fff;
    padding: 100px 0px 140px;
  }
  
  .sign-collect-wrap p {
    font-size: 42px;
    font-family: var(--primaryfont-semibold);
    max-width: 760px;
    line-height: 1.3;
    margin-bottom: 0px;
  }
  
  /*quick-features*/
  .quick-features {
    padding: 100px 0px 40px;
    overflow: hidden;
  }
  
  .feature {
    padding: 80px 0px;
  }
  
  .feature-cont {
    width: 40%;
  }
  
  .feature-image {
    width: 60%;
  
  }
  
  .feature-image img {
    box-shadow: 0 3px 26px #00000019;
  }
  
  .feature-2 .feature-image img {
    box-shadow: none;
  }
  
  .feature-3 .feature-cont {
    width: 40%;
  }
  
  .quick-features .feature:nth-child(2n+2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  /* faq section */
.faq-section { 
    padding: 0;
}
.faq-wrapper {
    background: #F4F7FF;
    padding: 80px 20px;
    max-width: 1030px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    text-align: center;
    font-size: 38px;
}

.z-accordian {
    margin: 30px auto 0;
    padding: 0;
    max-width: 870px;
}

.z-accordianBox:not(:last-child) {
    margin: 0 0 5px;
    border-bottom: 1px solid #dce5fa;
}

.z-accordianBox h3 {
    margin: 0;
    padding: 20px 50px 20px 0;
    position: relative;
    cursor: pointer;
    font-size: 20px
}

.z-accordianBox h3.active {
    color: #2e66e6
}

.z-accordianBox h3.active .arrow:before {
    transform: rotate(135deg);
    right: 5px;
    top: -4px;
    border-color: #2e66e6
}

.z-accordianBox h3.active .arrow:after {
    border-color: #2e66e6
}

.arrow {
    position: absolute;
    right: 0;
    top: 34px;
    width: 5px;
    height: 5px;
    background: transparent;
    cursor: pointer;
    font-size: 16px
}

.arrow:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-top: 1px solid #292929;
    border-right: 1px solid #292929;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    right: 6px;
    top: -3px
}

.arrow:after {
    content: '';
    width: 15px;
    height: 15px;
    border: 1px solid;
    position: absolute;
    top: -8px;
    right: 0;
    border: 1px solid #292929;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px
}

.z-accordianBox>div {
    padding: 0 0;
    display: none
}

/* bottom footer section */
  .digital-footer {
    padding: 100px 0;
    text-align: center;
  }
  
  .digital-footer h2 {
    max-width: 620px;
    margin: 0 auto 20px;
  }
  
  /*animation*/
  span.color-ylw {
    position: relative;
    display: inline;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-linear-gradient(left, #F7B21B, #F7B21B 50%, #fff 50%);
    background-image: linear-gradient(to right, #F7B21B, #F7B21B 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-transition: background-position 2.8s linear;
    transition: background-position 2.8s linear;
  }
  
  .animated span.color-ylw {
    background-position: 0 0;
  }
  
  .trans-left {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  
  .trans-right {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  
  .zwe-op .trans-left,
  .zwe-op .trans-right {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  
  /*media-query*/
  @media only screen and (max-width:1199px) {
  
  .sign-banner-image img
  {
    max-width: 100%;
  }
  
    .sign-form-wrap h1 {
        font-size: 48px;
    }
  
    .sign-form-wrap h2 {
        font-size: 36px;
    }
  
    .sign-form-wrap h3 {
        font-size: 30px;
    }

    .sign-banner-wrap
    {
        align-items: center;
    }
  
    .sign-form-banner,
    .sign-collect {
        padding: 70px 0px;
    }
  
    .sign-collect-wrap p {
        font-size: 38px;
        max-width: 700px;
    }
  
    .quick-features {
        padding: 80px 0px 120px;
    }
  
    .feature {
        padding: 70px 0px;
    }
  
    .feature-image {
        width: 55%;
    }
    .z-accordianBox h3
    {
        font-size: 20px;
    }
    .digital-footer h2
    {
        max-width:440px;
    }
  }
  
  @media only screen and (max-width:991px) {
    .sign-form-wrap h1 {
        font-size: 45px;
    }
  
    .sign-form-wrap h2 {
        font-size: 36px;
    }
  
    .sign-form-wrap h3 {
        font-size: 25px;
    }
  
    .sign-banner-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
        gap: 0;
    }
  
    .sign-form-banner p {
        max-width: 570px;
        margin: 0px auto 20px;
    }
  
    .sign-banner-image {
        top: 0;
        margin-top: 40px;
        width: 50%;
    }
  
    .sign-form-banner .sign-collect {
        padding: 50px 0px;
    }
  
    .sign-form-banner:after {
        display: none;
    }
  
    .sign-banner-cont {
        width: 100%;
        text-align: center;
    }
  
    .sign-collect-wrap p {
        font-size: 27px;
        line-height: 40px;
        max-width: 100%;
    }
  
    .feature {
        padding: 45px 0px;
    }
  
    .sign-form-wrap h4 {
        font-size: 16px;
    }
  
    .quick-features {
        padding: 50px 0px;
    }
  
    span.color-ylw {
        background-position: 0 100%;
    }
  
    .sign-banner-image:before {
        display: none;
    }
    .z-accordianBox h3
    {
        font-size: 20px;
    }
    .digital-footer {
        padding: 80px 0;
    }

    .digital-footer h2
    {
        max-width: 440px;
    }
  }
  
  @media only screen and (max-width:767px) {
    .sign-form-banner,
    .sign-collect {
        padding: 50px 0px;
    }
  
    .sign-form-wrap h1 {
        font-size: 35px;
    }
  
    .sign-form-wrap h2 {
        font-size: 28px;
    }
  
    .sign-form-wrap h3 {
        font-size: 22px;
    }
  
    .sign-form-wrap h4 {
        font-size: 15px;
    }
  
    .sign-form-banner p {
        font-size: 16px;
    }
  
    .sign-collect-wrap p {
        font-size: 25px;
        line-height: 37px;
    }
  
    .act-btn {
        font-size: 15px;
        padding: 8px 30px;
    }
  
    .feature {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding: 30px 0px;
        gap: 10px;
    }
  
    .quick-features .feature:nth-child(2n+2) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
  
    .feature-image,
    .feature-cont,
    .feature-3 .feature-image,
    .feature-3 .feature-cont {
        width: 100%;
    }
  
    .quick-features {
        padding: 30px 0px 50px;
    }
  
    .sign-banner-image {
        width: 80%;
    }
    .faq-section {
        background: #f4f7ff;
    }
    .faq-wrapper {
        padding: 50px 0;
    }
    .z-accordianBox h3
    {
        font-size: 20px;
    }

    .digital-footer {
        padding: 60px 0;
    }
    .digital-footer h2 {
        max-width: 360px;
    }
  }