/*Main Css */
:root {
    --primary: #0F8ED3;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Plus Jakarta Sans" , sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #0F8ED3;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #0F8ED3;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #585858;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 600;
    color: #191919;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}
.pad-l-zero {
    padding-left: 0px;
}
.pad-r-zero {
    padding-right: 0px;
}
.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}
.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}
.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}
.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}
.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/
header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: relative;
    background: transparent;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
    top: 0;
}
.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}
.menu-Bar span:nth-child(3) {
    top: 16px;
}
.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--black);
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 400 !important;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 100px 0 100px;
}
h1.banner-heading {
    margin-bottom: 1rem;
    color: #191919;
    font-size: 70px;
    font-weight: 700;
    line-height: 90px;
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}
p.banner-text {
    margin-bottom: 1rem;
    color: #585858;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}



.threestep-card {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.process-wrapper {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #E4E4E4;
    background: #1B4962;
    width: 360px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    transition: width 0.5s ease;
}
.process-card {
    width: 280px;
    flex-shrink: 0;
}
.step-image {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
    flex-shrink: 0;
    width: 100%;
}
.step-image img {
    width: 300px;
    border-radius: 12px;
}
.process-wrapper:first-child {
    width: 738px;
}
.process-wrapper:first-child .step-image {
    opacity: 1;
    transform: translateX(0);
}
.threestep-card:hover .process-wrapper:first-child {
    width: 360px;
}
.threestep-card:hover .process-wrapper:first-child .step-image {
    opacity: 0;
    transform: translateX(40px);
}
.process-wrapper:hover {
    width: 738px;
}
.process-wrapper:hover .step-image {
    opacity: 1;
    transform: translateX(0);
}
.process-detail h3 { 
    font-size: 20px; 
    font-weight: 600; 
    border-bottom: 1px solid #E4E4E4; 
    width: fit-content; 
    padding-bottom: 13px; 
    margin: 9px 0; 
} 
.process-detail p { 
    color: #585858; 
    font-size: 15px; 
    font-weight: 400; 
    line-height: 24px; 
}
















.menuWrap2 {
    text-align: end;
}
.banner-content ul li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}
.main-header {
    padding-top: 40px;
}
section.sec-1 {
    background: #F6F8FA;
    padding: 100px 0;
}
.process-detail2 {
    padding: 14px 17px;
    border-radius: 20px;
    margin-top: -32px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    margin-right: -8px;
}
.process-detail2 h3 {
    color: #191919;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    border-bottom: 1px solid #E4E4E4;
    width: fit-content;
    padding-bottom: 13px;
    margin-bottom: 13px;
}
.process-detail2 p {
    color: #585858;
    font-size: 16px;
    line-height: 24px;
}
.three-card span {
    margin-right: 1vw;
    text-align: end;
    display: flex;
    justify-content: end;
}
.process-card2 {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}
.process-card2 .process-detail {
    margin-left: -3vw;
    border-radius: 20px;
    border: 1px solid #DDD;
    background: #FFF;
    padding: 12px 12px 12px 80.306px;
    z-index: 0;
}
.process-card2 span {
    z-index: 1;
    flex-shrink: 0;
}
.testi-card {
    box-shadow: 4px 4px 64px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    padding: 14px 15px 20px 15px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    margin-bottom: 23px;
}

.testi-card p {
    border-radius: 14px;
    border: 1px solid rgba(217, 217, 217, 0.18);
    background: #1B4962;
    padding: 15.115px 11.016px 26.885px 15.124px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    /* opacity: 0.8; */
    margin-bottom: 20px;
}
.testi-card-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testi-card-bottom span.name {
    color: #1A1A1A;
    font-family: 'Plus Jakarta Sans';
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: capitalize;
    display: block;
}
.testi-card-bottom span.des {
    color: #626262;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
    display: block;
}
.sec3-image2 {
    position: absolute;
    bottom: 38px;
    right: 63px;
}
.three-card:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: url(../images/img1.webp);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    width: 423px;
    height: 401px;
    border-radius: 22px;
}
.three-card.card2:before{
    background-image: url(../images/img2.webp);
}
.three-card.card3:before{
    background-image: url(../images/img3.webp);
}
.three-card {
    position: relative;
    z-index: 1;
}
.three-card {
    position: relative;
    z-index: 1;
    padding: 15vw 11px 0;
}































/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 18px 12px;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    font-size: 24px;
    color: #191919;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF;
    transition: all 0.3s ease-in-out;
    font-size: 11px;
    font-weight: 600;
    top: 0;
    background: rgb(235 232 232);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    top: 11px;
    background: #fff;
    color: var(--primary);
    right: 8px;
}
.answer p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    opacity: 0.8;
}
.accordion-list>li.last {
    margin-bottom: 0;
}
.accordion-list>li.active .answer {
    display: block !important;
}
.accordion-list>li.active span {
    border-radius: 10px;
    background: #1B4962;
}
.accordion-list>li.active span h3 {
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 10.25px;
    color: #fff;
}
section.faqs-sec {
    background: #F6F8FA;
    padding: 100px 0;
}
/* Accordian */

/* packages */
section#pricing {
    background: #F6F8FA;
    padding: 100px 0;
}
.pckg {
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    height: 100%;
    padding: 18px;
    border-radius: 23.453px;
    border: 3px solid #E4E4E4;
    background: #FFF;
}
.pckg .btn-wrap a{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1B4962 !important;
    color: #fff !important;
    padding: 16px 10px;
    font-size: 16px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper .title {
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    color: #626262;
    font-size: 16px;
    line-height: 28px;
    opacity: 0.8;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1rem 0;
}
.pckg .upper .price .amount {
    font-weight: 700;
    line-height: normal;
    color: #1B4962;
    font-size: 51.596px;
    padding-top: 0;
}
.pckg .upper .price .uspto {
    color: #626262;
    /* font-family: 'Inter'; */
    font-size: 14px;
    line-height: 18px;
    opacity: 0.8;
    padding-top: 0;
}
.pckg h4 {
    color: #626262;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
.pckg .upper b {
    color: #fff;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    opacity: 0.8;
}
.pckg .bottom ul li svg {
    flex-shrink: 0;
}
.pckg .bottom .includes {
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}
.pckg .bottom ul li {
   position: relative;
   display: flex;
   gap: 11.73px;
   color: #191919;
   font-family: 'Inter';
   font-size: 16px;
   line-height: 28px;
   opacity: 0.8;
}
.pckg .bottom ul {
    padding-right: 10px;
    height: 172px;
    overflow-y: scroll;
    margin-top: 26px;
    margin-bottom: 30px;
}
.bottom span {
   color: #1A1A1A;
   font-size: 20px;
   font-weight: 400;
   line-height: 28px;
   padding-top: 22px;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}
.pckg:hover {
    background: #1B4962;
    border: 3px solid #1B4962;
}
.pckg:hover .btn-wrap .theme-btn.bordered {
    color: #fff;
    background: var(--primary);
}
.pckg:hover h4 {
    color: #fff;
}
.pckg:hover .upper .title, .pckg:hover .upper .price .amount {
    color: #fff;
}
.pckg:hover .btn-wrap a {
    background: var(--primary);
    border: 2px solid;
}
.pckg:hover .bottom ul li svg {
    filter: invert(1);
}
.pckg-name {
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.77);
    padding: 18px;
}
.upper.pckg-details {
    border-radius: 20px;
    background: #1b49621c;
    padding: 22px;
}
.pckg:hover .upper.pckg-details {
    background: #c1baba4d;
}
.pckg:hover .upper.pckg-details p {
    color: #fff;
}
.pckg:hover .upper.pckg-details .price .uspto {
    color: #fff;
}
.pckg:hover .upper.pckg-details .amount {
    color: #fff;
}
.pckg:hover .bottom span {
    color: #fff;
}
.pckg:hover .bottom ul li {
    color: #fff;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    color: #1A1A1A;
    font-size: 45px;
    line-height: normal;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    margin: 1rem 0;
    color: #585858;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.sec-heading .sub-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px;
    border-radius: 41px;
    background: #1B4962;
    padding: 3px 12px 3px 10px;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}
.btn-wrap .theme-btn {
    background: var(--primary);
    border-radius: 15px;
    border: 2px solid var(--primary);
    transition: .5s ease;
    display: flex;
    padding: 18px 30px;
    justify-content: center;
    align-items: center;
    gap: 14.05px;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 24.218px;
}
.btn-wrap .theme-btn.bordered {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: #fff;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    height: 45px;
    border-radius: 5px;
}
.newcountrycode select {
    width: 56px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}
.newcountrycode .countrycode {
    width: 70px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}
.newcountrycode .phone-field {
    width: 100%;
}
.newcountrycode input {
    border: 0;
}
/* Country Code */

/* footer */
footer {
    background: #030E1A;
    padding: 1.5rem 0;
}
ul.f-menu {
    border-right: 1px solid #ffffff36;
    height: 100%;
}
.copyright p,.copyright a {
    color: white;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* footer */

/* popup */
.poptable,.popupmain{position:fixed;top:50%;transform:translateY(-50%);left:0;right:0;margin:auto;box-shadow:0 0 30px -9px #0000006e;z-index:9999999;border-radius:8px;max-width:97%;max-height:90vh;display:none;background:#fff}
.popupmain{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 530px;
    background: #fff;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 8px;
    max-width: 97%;
    max-height: 90vh;
    overflow-y: auto;
}
.poptable{width:1000px;overflow:hidden;overflow-y:auto}
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .mmpopup {
    /* background: url("../images/popup-bg.webp"); */
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid #fff;
    padding: 12px;
  }
  .mmpopup .popup-content {
    padding: 45px 32px;
    width: 100%;
    max-width: 500px;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 40px;
  }
  .mmpopup .form-text {
    color: #000;
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px;
  }
  .mmpopup .form-text a {
    color: #659640;
    font-weight: 700;
  }
  .mmpopup .form-text a:hover {
    color: var(--secondary);
  }
  .mmpopup .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    overflow: hidden;
  }
  .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
  }
  .mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
  }
  .mmpopup .centercont h4 span {
    color: #86cb92;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
  }
  .closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: #659640;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
  }
  .fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: #fff;
    width: 354px;
    height: 66px;
    margin-bottom: 20px;
  }
  .fld-input input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #eeeeee;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: "Inter";
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
    border: 0;
  }
  .form-group field input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.form-group input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    border: 2px solid var(--primary);
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    padding: 16px 42px;
    border-radius: 50px;
    background: var(--primary);
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    background: #161616;
}
.copyright p,.copyright a {
    color: #fff;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.copyright a{
    color: #0085ff;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    padding-top: 0;
    color: #fff;
    font-size: 16px;
    line-height: 29px;
    padding: 0 0 20px;
}
.footer-hdng h4 {
    margin-bottom: 12px;
    color: #FFF;
    font-size: 22px;
    line-height: normal;
    letter-spacing: 1.32px;
    border-bottom: 1px solid #d9d9d985;
    width: fit-content;
    padding: 0 0 10px;
}
.f-menu li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.f-menu li a i {
    color: var(--primary);
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
}
.copyright-sec {
    border-top: 1px solid #d9d9d957;
    padding: 20px 0 0;
    margin-top: 53px;
}
.logo-sec {
    border-radius: 48px;
    border-top: 1px solid rgba(217, 217, 217, 0.30);
    background: #2563EB;
    text-align: center;
    padding: 25.62px 0 32.94px;
    margin-bottom: 75.97px;
}
.copyright ul {
    display: inline-block;
    vertical-align: middle;
}
.copyright ul li {
    display: inline-block;
    vertical-align: middle;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: #000;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    color: #000;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
/* 404 */

/* terms */
.mainBanner.term-page {
    background: #000;
}
.mainBanner.term-page h1.banner-heading {
    font-size: 50px;
    line-height: normal;
    padding: 100px 0;
}
.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 2rem 0 1rem;
}
.terms p {
    margin-bottom: 1rem;
}
.thankyou-page {
    padding: 118px 0;
}
/* terms */



@media (max-width: 1440px) {
    h1.banner-heading {
        font-size: 50px;
        line-height: 60px;
    }
    p.banner-text {
        font-size: 18px;
        line-height: 26px;
    }
    .btn-wrap .theme-btn {
        padding: 16px 24px;
    }
    .process-detail p {
        font-size: 16px;
        line-height: 22px;
    }
    .process-card {
        padding: 16px 0;
    }
    .process-card2 .process-detail {
        padding: 22px 0 22px 60.306px;
    }

    .process-wrapper:first-child {
        width: 700px;
    }
    .process-wrapper {
        gap: 8px;
    }
    .step-image {
        width: 50%;
    }
    .process-card {
        width: 242px;
    }
    .three-card:before {
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 1200px) {
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: none;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    .container {
        position: relative;
    }
    header .main-header ul.menu>li > a {
        color: #333;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 20px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .sec-heading h2 {
        font-size: 32px;
        line-height: 42px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    .process-detail p {
        font-size: 14px;
        line-height: 18px;
    }
    .process-detail2 p {
        font-size: 16px;
        line-height: 22px;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .process-card2 {
        border: 1px solid #DDD;
        padding: 14px;
        border-radius: 30px;
    }
    .process-card2 .process-detail {
        margin-left: 0;
        padding: 10px 22px;
        border: 0;
    }
    .pckg .upper .title {
        font-size: 22px;
    }
    .pckg .upper b {
        font-size: 14px;
        line-height: 22px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22;
        line-height: 22px;
    }
    .pckg .bottom ul {
        height: 146px;
    }
    section.testimonials-sec {
        padding: 50px 0;
    }
    .testi-card p {
        font-size: 15px;
        line-height: 22px;
    }
    .footer-sec p {
        font-size: 14px;
        line-height: 18px;
    }
    .copyright p, .copyright a {
        font-size: 14px;
        line-height: 20px;
    }
    .answer p {
        font-size: 14px;
        line-height: 20px;
    }
    .accordion-list li h3 {
        max-width: 90%;
    }
    .process-detail2 {
        /* border: 0; */
        /* padding: 0; */
        margin-top: 18px;
    }
    .three-card {
        border: 1px solid #D9D9D9;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
    }
    .mmpopup .popup-content {
        padding: 32px 20px;
    }
    .process-card span {
        max-width: 20%;
    }
    .process-card {
        padding: 16px 0;
    }
    .process-card2 span {
        max-width: 18%;
    }
    .pckg .upper .price .amount {
        font-size: 40.596px;
    }
    .pckg .upper .price .uspto {
        font-size: 12px;
    }
    .accordion-list li {
        margin-bottom: 10px;
    }
    .pckg .btn-wrap a {
        font-size: 14px;
    }
    .btn-wrap .theme-btn {
        padding: 14px 14px;
        font-size: 14px;
    }
.process-wrapper:first-child {
    width: 700px;
}
.process-wrapper {
    gap: 8px;
}
.step-image {
    width: 50%;
}
.process-card {
    width: 242px;
}
.three-card:before {
    width: 100%;
    height: 100%;
}





}

@media (max-width : 1199px) {
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 20px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .sec-heading h2 {
        font-size: 32px;
        line-height: 42px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    .process-detail p {
        font-size: 14px;
        line-height: 18px;
    }
    .process-detail2 p {
        font-size: 16px;
        line-height: 22px;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .process-card2 {
        border: 1px solid #DDD;
        padding: 14px;
        border-radius: 30px;
    }
    .process-card2 .process-detail {
        margin-left: 0;
        padding: 10px 22px;
        border: 0;
    }
    .pckg .upper .title {
        font-size: 22px;
    }
    .pckg .upper b {
        font-size: 14px;
        line-height: 22px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22;
        line-height: 22px;
    }
    .pckg .bottom ul {
        height: 146px;
    }
    section.testimonials-sec {
        padding: 50px 0;
    }
    .testi-card p {
        font-size: 15px;
        line-height: 22px;
    }
    .footer-sec p {
        font-size: 14px;
        line-height: 18px;
    }
    .copyright p, .copyright a {
        font-size: 14px;
        line-height: 20px;
    }
    .answer p {
        font-size: 14px;
        line-height: 20px;
    }
    .accordion-list li h3 {
        max-width: 90%;
    }
    .process-detail2 {
        /* border: 0; */
        /* padding: 0; */
        margin-top: 18px;
    }
    .three-card {
        border: 1px solid #D9D9D9;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
    }
    .mmpopup .popup-content {
        padding: 32px 20px;
    }
    .process-card span {
        max-width: 20%;
    }
    .process-card {
        padding: 16px 0;
    }
    .process-card2 span {
        max-width: 18%;
    }
    .pckg .upper .price .amount {
        font-size: 40.596px;
    }
    .pckg .upper .price .uspto {
        font-size: 12px;
    }
    .accordion-list li {
        margin-bottom: 10px;
    }
    .pckg .btn-wrap a {
        font-size: 14px;
    }
    .btn-wrap .theme-btn {
        padding: 14px 14px;
        font-size: 14px;
    }
    .three-card:before {
        width: 100%;
        height: 100%;
    }
    .process-wrapper {
        width: auto;
        height: auto;
    }
    .process-wrapper:first-child {
        width: auto;
    }
    .process-card {
        width: auto;
        flex-shrink: unset;
    }
    .process-wrapper {
        flex-direction: column;
        padding: 20px;
    }
    .step-image {
        display: none;
    }
    .process-wrapper:hover {
        width: auto;
    }
    .threestep-card:hover .process-wrapper:first-child {
        width: auto;
    }
 
    .upper.pckg-details {
        padding: 12px;
    }
    
}

@media (max-width : 1023px){
    .btn-wrap .theme-btn {
        font-size: 14px;
        padding: 14px 12px;
    }
}

@media (max-width : 992px) {
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 20px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .main-header {
        padding-top: 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    .process-detail p {
        font-size: 14px;
        line-height: 18px;
    }
    .process-detail2 p {
        font-size: 16px;
        line-height: 22px;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .process-card2 {
        border: 1px solid #DDD;
        padding: 14px;
        border-radius: 30px;
    }
    .process-card2 .process-detail {
        margin-left: 0;
        padding: 10px 22px;
        border: 0;
    }
    .pckg .upper .title {
        font-size: 22px;
    }
    .pckg .upper b {
        font-size: 14px;
        line-height: 22px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22;
        line-height: 22px;
    }
    .pckg .bottom ul {
        height: 146px;
    }
    section.testimonials-sec {
        padding: 50px 0;
    }
    .testi-card p {
        font-size: 15px;
        line-height: 22px;
    }
    .footer-sec p {
        font-size: 14px;
        line-height: 18px;
    }
    .copyright p, .copyright a {
        font-size: 14px;
        line-height: 20px;
    }
    .answer p {
        font-size: 14px;
        line-height: 20px;
    }
    .accordion-list li h3 {
        max-width: 90%;
    }
    .process-detail2 {
        border: 0;
        /* padding: 0; */
        margin-top: 18px;
    }
    .three-card {
        border: 1px solid #D9D9D9;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
    }
    .mmpopup .popup-content {
        padding: 32px 20px;
    }
    .process-card span {
        max-width: 20%;
    }
    .process-card {
        padding: 16px 0;
    }
    .process-card2 span {
        max-width: 18%;
    }
    .pckg .upper .price .amount {
        font-size: 40.596px;
    }
    .pckg .upper .price .uspto {
        font-size: 12px;
    }
    .accordion-list li {
        margin-bottom: 10px;
    }
    .pckg .btn-wrap a {
        font-size: 14px;
    }
.three-card:before {
    width: 100%;
    height: 100%;
}
.process-wrapper {
    width: auto;
    height: auto;
}
.process-wrapper:first-child {
    width: auto;
}
.process-card {
    width: auto;
    flex-shrink: unset;
}
.process-wrapper {
    flex-direction: column;
    padding: 20px;
}
.step-image {
    display: none;
}
.process-wrapper:hover {
    width: auto;
}
.threestep-card:hover .process-wrapper:first-child {
    width: auto;
}
.three-card:before {
    display: none;
}
.upper.pckg-details {
    padding: 12px;
}










}

@media only screen and (min-width : 768px) and (max-width : 991px) {
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 20px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

    .main-header {
        padding-top: 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    .sec1-image {
        display: none;
    }
    .process-detail p {
        font-size: 16px;
        line-height: 22px;
    }
    .process-detail2 p {
        font-size: 16px;
        line-height: 22px;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .process-card2 {
        flex-direction: column;
        align-items: start;
        border: 1px solid #DDD;
        padding: 20px;
        border-radius: 30px;
    }
    .process-card2 .process-detail {
        margin-left: 0;
        padding: 22px;
        border: 0;
    }
    .pckg .upper .title {
        font-size: 22px;
    }
    .pckg .upper b {
        font-size: 14px;
        line-height: 22px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22;
        line-height: 22px;
    }
    .pckg .bottom ul {
        height: 146px;
    }
    section.testimonials-sec {
        padding: 50px 0;
    }
    .testi-card p {
        font-size: 15px;
        line-height: 22px;
    }
    .faq-image {
        display: none;
    }
    .footer-sec p {
        font-size: 14px;
        line-height: 18px;
    }
    .copyright p, .copyright a {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 14px;
    }
    .answer p {
        font-size: 14px;
        line-height: 20px;
    }
    .accordion-list li h3 {
        max-width: 90%;
    }
    .process-detail2 {
        border: 0;
        padding: 0;
        margin-top: 18px;
    }
    .three-card {
        border: 1px solid #D9D9D9;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
    }
    .mmpopup .popup-content {
        padding: 32px 20px;
    }
.mainBanner.term-page h1.banner-heading {
    font-size: 30px;
    padding: 50px 0;
}
.terms p {
    font-size: 14px;
    line-height: 20px;
}
.error-text {
    font-size: 50px;
    line-height: 46px;
}
.error-heading {
    font-size: 26px;
    line-height: 29px;
}
.thankyou-text {
    font-size: 15px;
    line-height: 20px;
}
.mainBanner {
    background-position: left;
}
.process-wrapper {
    width: auto;
    height: auto;
}
.process-wrapper:first-child {
    width: auto;
}
.process-card {
    width: auto;
    flex-shrink: unset;
}
.process-wrapper {
    flex-direction: column;
    padding: 20px;
}
.step-image {
    display: none;
}
.process-wrapper:hover {
    width: auto;
}
.threestep-card:hover .process-wrapper:first-child {
    width: auto;
}
.three-card:before {
    display: none;
}
.upper.pckg-details {
    padding: 12px;
}





}

@media only screen and (min-width : 280px) and (max-width : 767px) {
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 20px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .btn-wrap a {
        width: 100%;
        text-align: center;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

    .main-header {
        padding-top: 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    .sec1-image {
        display: none;
    }
    .process-card {
        flex-direction: column;
        align-items: start;
    }
    .process-detail p {
        font-size: 16px;
        line-height: 22px;
    }
    .process-detail2 p {
        font-size: 16px;
        line-height: 22px;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .process-card2 {
        flex-direction: column;
        align-items: start;
        border: 1px solid #DDD;
        padding: 20px;
        border-radius: 30px;
    }
    .process-card2 .process-detail {
        margin-left: 0;
        padding: 0;
        border: 0;
    }
    .pckg .upper .title {
        font-size: 22px;
    }
    .pckg .upper b {
        font-size: 14px;
        line-height: 22px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22;
        line-height: 22px;
    }
    .pckg .bottom ul {
        height: 146px;
    }
    section.testimonials-sec {
        padding: 50px 0;
    }
    .testi-card p {
        font-size: 15px;
        line-height: 22px;
    }
    .faq-image {
        display: none;
    }
    .footer-sec p {
        font-size: 14px;
        text-align: center;
        line-height: 18px;
    }
    .copyright p, .copyright a {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        padding-bottom: 14px;
    }
    .copyright {
        text-align: center;
    }
    .answer p {
        font-size: 14px;
        line-height: 20px;
    }
    .accordion-list li h3 {
        max-width: 90%;
    }
    .process-detail2 {
        /* border: 0; */
        /* padding: 0; */
        margin-top: 18px;
    }
    .three-card {
        border: 1px solid #D9D9D9;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
    }
    .mmpopup .popup-content {
        padding: 32px 20px;
    }
    .menuWrap2 {
        text-align: center;
    }
.mainBanner.term-page h1.banner-heading {
    font-size: 30px;
    padding: 50px 0;
}
.terms p {
    font-size: 14px;
    line-height: 20px;
}
.error-text {
    font-size: 50px;
    line-height: 46px;
}
.error-heading {
    font-size: 26px;
    line-height: 29px;
}
.thankyou-text {
    font-size: 15px;
    line-height: 20px;
}
.mainBanner {
    background-position: left;
}
.threestep-card {
    flex-direction: column;
}
.process-wrapper {
    width: auto;
    height: auto;
}
.process-wrapper:first-child {
    width: auto;
}
.process-card {
    width: auto;
    flex-shrink: unset;
}
.process-wrapper {
    flex-direction: column;
    padding: 20px;
}
.step-image {
    display: none;
}
.process-wrapper:hover {
    width: auto;
}
.threestep-card:hover .process-wrapper:first-child {
    width: auto;
}
.three-card:before {
    display: none;
}
.upper.pckg-details {
    padding: 12px;
}



}