/*Main Css */
:root {
    --primary: #0587FF;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Urbanist" , sans-serif;
    --font-accent: "Lao Sans Pro" , sans-serif;
    --font-body: "Lao Sans Pro" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #0587FF;;
    color: #fff;te
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #000;
}

::-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: #000;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1441px;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #1D1D1D;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 700;
    color: #1D1D1D;
}

*: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: 8px;
    border-radius: 100px;
    padding: 0px;
    background: #b3b3b3;
    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: var(--primary);
    width: 8pxpx;
}

/*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;
    max-width: 150px;
}
.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: 0px 0 0px 35px; 
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--white);
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 6px 6px 6px 24px;
    font-weight: 400 !important;
    border-radius: 201.816px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    font-size: 14.127px !important;
    line-height: 24.218px; /* 171.429% */
}
.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;
    z-index: 99999;
}
.banner-content {
   padding: 60px 0 120px;
}
h1.banner-heading {
    font-family: var(--font-heading);
    font-size: 74px;
    font-weight: 700;
    line-height: 1.2;
}
span.sub-heading {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    padding-bottom: 20px;
}
p.banner-text {
    opacity: 0.8;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 15px 0;
}

.banner-content ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    padding: 8.53px 14px;
    margin-bottom: 10px;
    border-radius: 200px;
    border: 1px solid rgba(5, 135, 255, 0.30);
    background: rgba(5, 135, 255, 0.10);
}
.header-wrapper {
    border-bottom: 1px solid #ffffff38;
    padding: 14.54px 0;
}
img.top-shadow {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
}
img.bottom-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.banner-content ul {
    margin-bottom: 20px;
}
.banner-img {
    position: absolute;
    top: 8vw;
    right: 4vw;
    max-width: 50vw;
}
.sec-1 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0 0;
    margin-top: -156px;
    z-index: 99999;
    position: relative;
}
.trusted-wrapper {
    border-bottom: 1px solid #fff;
    padding: 90px 0 25px;
}
.sec-heading h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
}

.trusted-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    position: relative;
}
.trusted-slider.slick-initialized.slick-slider {
    display: flex !important;
    align-items: center !important;
}

ul#counter {
    margin-top: 28px;
    margin-bottom: -32px;
}
section.sec-2 {
    padding: 132px 0 100px;
}
.port-card {
    margin-top: 1.5rem;
}
.theme-btn.bordered2 {
    border: 1px solid #0587FF !important;
    background: #FFF !important;
    color: var(--primary) !important;
}
section.sec-3 {
    background: linear-gradient(48deg, #0587FF 25.59%, #0073DE 74.41%), #D9D9D9;
    padding: 100px 0 80px;
}
.process-card.bg1 {
    border-radius: 50px 0px 0px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.40);
    border-bottom: 1px solid rgba(255, 255, 255, 0.40);
    border-left: 1px solid rgba(255, 255, 255, 0.40);
    background: #1A9DFF;
}
.process-card.bg2 {
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    background: #3BABFF;
}
.process-card.bg3 {
    border-radius: 0px 50px 50px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.70);
    border-right: 1px solid rgba(255, 255, 255, 0.70);
    border-bottom: 1px solid rgba(255, 255, 255, 0.70);
    background: #47B1FF;
}
.process-card {
    padding: 30px 0 60px 20px;
    transition: 0.3s ease;
}
.number span {
    color: #FFF;
    font-family: Manrope;
    font-size: 123.857px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    opacity: 0.2;
}
.process-icon {
    border-radius: 15px 0px 0px 15px;
    background: #6cc1ff;
    padding: 12px 14px;
    width: 100%;
}
.number {
    display: flex;
    align-items: center;
    gap: 10px;
}
.process-card h3 {
    color: #FFF;
    font-size: 26px;
    line-height: normal;
    padding-bottom: 15px;
}
.process-card p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.process-card:hover {
    background: #3d9ffa;
}
.process-wrapper {
    margin-top: 40px;
}
section.sec-4 {
    background-repeat: no-repeat;
    background-size: contain;
}
.cta-image {
    position: absolute;
    top: -3vw;
}
.sec-4 .sec-heading .sub-heading {
    justify-content: start;
}
section.sec-4 {
    background-repeat: no-repeat;
    background-size: contain;
}
.cta-image {
    position: absolute;
    top: -3vw;
}
.sec-4 .sec-heading .sub-heading {
    justify-content: start;
}
.sec-5 .sec-heading .sub-heading {
    justify-content: start;
}
.chooseus-card {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #D9D9D9;
    padding: 26px 0;
}
.chooseus-card:nth-child(4) {
    border-bottom: 0;
}
.chooseus-detail h3 {
    font-size: 22px;
    line-height: 118.6%; 
    padding-bottom: 10px;
}
.chooseus-detail p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
}
.sec-5 .btn-wrap .theme-btn {
    justify-content: end;
    gap: 16rem;
}
.chooseus-icon {
    flex-shrink: 0;
}
section.sec-4 {
    background-repeat: no-repeat;
    background-size: contain;
}
.cta-image {
    position: absolute;
    top: -3vw;
}
.sec-4 .sec-heading .sub-heading {
    justify-content: start;
}
.sec-5 .sec-heading .sub-heading {
    justify-content: start;
}
.chooseus-card {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #D9D9D9;
    padding: 26px 0;
}
.chooseus-card:nth-child(4) {
    border-bottom: 0;
}
.chooseus-detail h3 {
    font-size: 22px;
    line-height: 118.6%; /* 26.092px */
    padding-bottom: 10px;
}
.chooseus-detail p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.sec-5 .btn-wrap .theme-btn {
    justify-content: end;
    gap: 16rem;
}
.chooseus-icon {
    flex-shrink: 0;
}
section.sec-6 {
    background: linear-gradient(48deg, #0587FF 25.59%, #0073DE 74.41%), #D9D9D9;
    padding: 110px 0 80px;
}
.feature-card {
    border-radius: 27.344px;
    border: 0.804px solid rgba(217, 217, 217, 0.20);
    background: #FFF;
    padding: 23px 15px 15px;
    height: 100%;
}
.feature-card h3 {
    font-size: 24px;
    line-height: 31.365px; /* 130.689% */
}
.feature-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 8px 0 16px;
}
.feature-card ul li {
    display: inline-block;
    vertical-align: middle;
    border-radius: 80.424px;
    border: 0.804px solid rgba(5, 135, 255, 0.30);
    background: rgba(5, 135, 255, 0.10);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.302px; /* 137.869% */
    opacity: 0.8;
    padding: 4px 10px;
    margin: 0 16px 8px 0;
}
.feature-card ul {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 15px;
}
.feature-card .btn-wrap .theme-btn {
    width: 100%;
    justify-content: end;
    gap: 6rem;
}
.feature-img {
    padding-top: 17px;
    width: 100%;
}
.feature-img img {
    width: 100%;
}
.userBelowCard {
  padding: 13px;
  background: #FFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
  border-radius: 21.804px;
  border: 1.09px solid #D9D9D9;
  margin: 26px 0;
}
.userBelowCard:hover {
  transform: scale(1.01);
  box-shadow: 0px 15px 15px 20px rgba(176, 176, 176, 0.14);
}
.userBelowCard .cardHead {
  display: flex;
  justify-content: space-between;
}
.userBelowCard .cardHead .userDetail {
  display: flex;
  align-items: center;
  gap: 7px;
}
.userBelowCard .cardHead .userDetail .userProfile img {
  width: 25px;
  height: 25px;
  border-radius: 25px;
}
.userBelowCard .cardHead .userDetail .userName {
  display: flex;
  flex-direction: column;
}
.userBelowCard .cardHead .userDetail .userName h6 {
  color: #3C3C3B;
  font-family: "Inter";
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.userBelowCard .cardHead .userDetail .userName p {
  color: #9E9D9D;
  font-family: "Inter";
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
}
.userBelowCard .card-Body {
  padding-top: 15px;
  padding-bottom: 20px;
}
.userBelowCard .card-Body .bodyText {
  padding-bottom: 18px;
  padding-right: 15px;
}
.userBelowCard .card-Body .bodyText p {
  color: #3C3C3B;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.userBelowCard .card-Body .bodyImg {
  padding-right: 20px;
}
.userBelowCard .card-Foot {
  padding-right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.sec-8 {
    background: linear-gradient(48deg, #0587FF 25.59%, #0073DE 74.41%), #D9D9D9;
}
.easy-process-card {
    border-radius: 23.92px;
    border: 1.196px solid rgba(217, 217, 217, 0.30);
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 16px;
    margin-bottom: 15px;
}
.pro-image {
    flex-shrink: 0;
}
.easy-process-img {
    text-align: center;
    width: 100%;
}
.easy-process-img img {
    width: 100%;
}
.easy-process-text h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 23.92px;
    letter-spacing: 0.22px;
    padding-bottom: 10px;
}
.easy-process-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.92px;
}
.testi-card {
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    display: flex;
    padding: 21px 14px 24px 20px;
    justify-content: start;
    align-items: start;
}
.testi-card .top img {
    max-width: 45px;
}
.testi-card .top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.testi-card .top span.name {
    color: #1A1A1A;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: capitalize;
    display: block;
}
.testi-card .top span.des {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
}
.testi-card .bottom p {
    font-size: 17px;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    opacity: 0.8;
}
ul.customer-satisfaction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}
section.sec-11 {
    padding: 100px 0 90px;
}
/* -------------------------counter CSS------------------------  */
ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}
ul#counter li .counter>div {
    margin-bottom: 0rem;
    flex-shrink: 0;
    color: #000;
    font-family: Urbanist;
    font-size: 21px;
    font-weight: 700;
    line-height: 24px; /* 114.286% */
    letter-spacing: 1.68px;
    /* opacity: 0.8; */
}
ul#counter li {
    width: 100%;
    padding: 26px;
    text-align: center;
    line-height: 28px;
    /* display: flex; */
    /* align-items: start; */
    /* justify-content: start; */
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
}
ul#counter li .counter span.text {
    opacity: 0.8;
    margin-top: 0;
    color: #000;
    font-family: Urbanist;
    font-size: 21px;
    font-weight: 700;
    line-height: 24px; /* 114.286% */
    letter-spacing: 1.68px;
}
ul#counter li.one-item {
    margin-top: 145px;
    transform: skew(378deg, 327deg);
}
ul#counter li.three-item {
    margin-top: 184px;
    transform: skew(382deg, 346deg);
    margin-left: 159px;
    margin-right: -60px;
}
.counter div {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}
/* -------------------------counter CSS------------------------  */

/* ---------------------------Accordian------------------------ */
section.sec-10 {
    background: linear-gradient(48deg, #0587FF 25.59%, #0073DE 74.41%), #D9D9D9;
    padding: 100px 0 80px;
}
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 18px 20px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 18px;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    opacity: 0.7;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
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: 12px;
    font-weight: 600;
    top: 0;
    height: 24px;
    width: 24px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    background: var(--primary);
    color: #fff;
}
.answer p {
    margin-top: 20px;
    opacity: 0.7;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.accordion-list>li.last {
    margin-bottom: 0;
}
.accordion-list>li.active .answer {
    display: block !important;
}
.answer {
    border-top: 1px solid #0000001a;
    margin-top: 20px;
}
ul.accordion-list li.active h3 {
    opacity: 1;
}
ul.accordion-list li.active .answer p {
    opacity: 1;
}
/* ---------------------------Accordian------------------- */

/* -------------------------packages--------------------- */
ul.overview-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}
ul.overview-nav a {
    padding: 22px 50px;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
}
ul.overview-nav li.active a {
    background: var(--primary);
    color: white;
    border-color: var(--primary) !important;
}
.pckg {
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    height: 100%;
    padding: 26px 23px;
    border-radius: 30px;
    border: 1.183px solid #D9D9D9;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(29.575130462646484px);
}
.pckg .btn-wrap a{
    color: #FFF;
    font-size: 16.562px;
    font-weight: 400;
    line-height: normal;
    padding: 16px 30px;
    width: 100% !important;
    justify-content: center;
    border: 0;
    border-radius: 80.444px;
    background: var(--Main, #0587FF);
}
.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: 7px;
    font-size: 28.373px;
    font-weight: 700;
    line-height: normal;
    color: #1D1D1D;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    margin-bottom: 1.5rem;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.392px; /* 157.734% */
    letter-spacing: -0.36px;
    opacity: 0.7;
    color: var(--Content, #1D1D1D);
}
.pckg .upper .price {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 1.5rem 0 0;
    flex-direction: column;
    justify-content: start;
    border-top: 1px solid #1e1e1e30;
    border-bottom: 1px solid #1e1e1e30;
    padding: 26px 0;
}
.pckg .upper .price .amount {
    color: var(--primary);
    font-size: 52.052px;
    font-weight: 700;
    line-height: normal;
}
.pckg .upper .price .uspto {
    font-size: 16px;
    font-weight: 400;
    line-height: 28.392px;
    letter-spacing: -0.441px;
    color: #fff;
    border-radius: 35.636px;
    background: #0587FF;
    width: fit-content;
    padding: 6.818px 6.527px 6.818px 12.473px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pckg .upper .price .uspto span.off-price {
    border-radius: 35.636px;
    background: #FFF;
    display: inline-flex;
    padding: 5.345px 9.727px 4.727px 10.691px;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
}

.pckg:hover .upper .price .uspto {
    background: #fff ;
    color: var(--primary) !important;
}

.pckg:hover .upper .price .uspto span.off-price {
    background: var(--primary);
    color: #fff;
}
.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;
   font-size: 18px;
   font-weight: 400;
   line-height: 28.392px; /* 157.734% */
   letter-spacing: -0.36px;
   opacity: 0.7;
   color: var(--Content, #1D1D1D);
}
.pckg .bottom ul {
    margin: 1rem 0 1rem;
    overflow-y: auto;
    /* max-height: 179px; */
    padding-right: 10px;
    height: 254px;
    overflow-y: scroll;
}
.bottom span {
   font-size: 23.66px;
   font-weight: 700;
   line-height: normal;
   color: #1E1E1E;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 10px;
}
.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f058";
    font-weight: 800;
    color: var(--primary);
    margin-right: 12px;
    margin-left: 2px;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
    width: 100%;
}
.pckg:hover {
    border: 1.183px solid #FFF;
    background: var(--primary);
    box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.10);
}
.pckg:hover .upper .title, 
.pckg:hover .upper p, 
.pckg:hover .upper .price .uspto, 
.pckg:hover .upper .price .amount, 
.pckg:hover .bottom span, 
.pckg:hover .bottom ul li, .pckg:hover .bottom ul li::before  {
    color: #fff;
}
.pckg:hover .btn-wrap a{
    background: #fff;
    color: var(--primary);
}
section#pricing {
    padding: 100px 0 110px;
}
/* packages */

/* Sec Headings */
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    
     /* 115% */
    font-size: 50px;
    line-height: normal;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    margin: 1rem 0;
    
    
    
     /* 120% */
    opacity: 0.8;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.sec-heading .sub-heading {
    
    
    
    
     /* 133.333% */
    justify-content: center;
    color: var(--Content, #1D1D1D);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
/* 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 {
    transition: .5s ease;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 4px 5px 24px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 201.816px;
    background: var(--Main, #0587FF);
}
.btn-wrap .theme-btn.bordered {
    color: var(--primary);
    border-radius: 201.816px;
    background: #FFF;
    border: 1px solid #ffffff;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    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 */

.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
    margin: 0 10px;
}
.design-card-list-2 {
    direction: rtl;
}
.design-card-list,
.design-card-list-2 {
    padding-bottom: 2rem;
}
.design-card-list li,
.design-card-list-2 li {
    position: relative;
    display: flex !important;
    justify-content: center;
}
ul.design-card-list.slick-initialized.slick-slider {
    margin-top: 50px;
}
.design-card-list-2 {
    direction: rtl !important;
}

.design-card-list-2 .slick-track {
    direction: ltr !important;
}

.design-card-list-2 .slick-slide {
    float: right !important;
}

/* popup */
.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);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    /* border-radius: 8px; */
    max-height: 90vh;
  }
  .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: 50px 40px;
    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: 60px;
  }
  .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: 500;
    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: 4px solid #f45a28;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
    background: #F45A28;
    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 {
  padding: 80px 0 50px;
  background: #000;
}
.copyright-sec {
  background: #000000;
}
.copyright {
  padding: 15px 0;
  border-top: 1px solid #d9d9d94d;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright p,
.copyright a {
  color: white;
  font-size: 14px;
  font-weight: 500;
  opacity: 70%;
}
.footer-social-icons {
  border-radius: 15px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  padding: 12px 15px;
}
.footer-social-icons a {
  color: #fcfcfc;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.footer-logo-container {
  text-align: center;
  margin-bottom: 20px;
}
.footer-social-icons h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}
.footer-social-icons a i {
    margin-right: 10px;
}
.copyright ul {
    display: flex;
    align-items: center;
}
.copyright ul li {
    margin-left: 14px;
}
.footer-social-icons div {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 52px;
    line-height: 68px;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
.thankyou-page {
    padding: 100px 0;
}
/* 404 */

/* terms */
.mainBanner.terms-page h1.banner-heading.text-white {
    padding: 50px 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;
}
ul.list-ul {
    list-style: disc;
    margin-left: 22px;
}
/* terms */


@media (max-width: 1440px) {
    .banner-content {
        padding: 100px 0 187px;
    }
    span.sub-heading {
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 44px;
        line-height: 52px;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap a {
        text-align: center;
    }
    .banner-img {
        position: absolute;
        top: 17vw;
        right: 2vw;
        max-width: 53vw;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-1 {
        margin-top: -182px;
    }
    ul#counter {
        gap: 8px;
    }
    ul#counter li .counter>div {
        font-size: 16px;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
    }
    ul#counter li {
        padding: 20px;
        border-radius: 12px;
    }
    ul#counter {
        margin-top: 28px;
        margin-bottom: -25px;
    }
    .number span {
        font-size: 92.857px;
    }
    .process-card p {
        padding: 0 20px 0 0;
    }
    .process-card {
        height: 100%;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22.392px;
    }
    .pckg .upper p {
        font-size: 15px;
        line-height: 22.392px;
    }
    section.sec-4 {
        background-size: cover;
    }
    .cta-image {
        top: -5vw;
    }
    .userBelowCard .card-Body .bodyText p{
        font-size: 14px;
    }
    .easy-process-text h3 {
        font-size: 20px;
        line-height: 20.92px;
    }
    .easy-process-text p {
        font-size: 15px;
        line-height: 20.92px;
    }
    .pro-image {
        max-width: 60px;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 22px;
    }
    .sec-heading h3 svg{
        display: none;
    }


}

@media (max-width: 1200px) {
    .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: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        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: #fff;
        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;
    }

    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 44px;
        line-height: 52px;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap a {
        text-align: center;
    }
    .banner-img {
        position: absolute;
        top: 13vw;
        right: 4vw;
        max-width: 53vw;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: 0;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .header-wrapper {
        padding: 1rem 0;
    }
    ul.menu.btns li a svg {
        display: none;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    .sec-1 {
        background-image: none !important;
        background: var(--primary);
        margin-top: 0;
        padding: 30px 0;
        z-index: 0;
    }
    .trusted-wrapper {
        padding: 0 0 10px;
    }
    .sec-heading h3 {
        font-size: 22px;
        padding-bottom: 0px;
    }
    ul#counter {
        gap: 8px;
    }
    ul#counter li .counter>div {
        font-size: 16px;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
    }
    ul#counter li {
        padding: 12px;
        border-radius: 8px;
    }
    ul#counter {
        margin-top: 28px;
        margin-bottom: 0;
    }
    section.sec-2 {
        padding: 50px 0 50px;
    }
    .port-card {
        margin-top: 0.5rem;
    }
    section.sec-3 {
        padding: 50px 0 50px;
    }
    .number span {
        font-size: 68.857px;
    }
    section#pricing {
        padding: 50px 0 50px;
    }
    ul.overview-nav {
        gap: 4px;
        margin: 20px 0;
    }
    ul.overview-nav a {
        padding: 20px 28px;
        font-size: 16px;
    }
    .pckg .upper p {
        margin-bottom: 0.5rem;
        font-size: 15px;
        line-height: 22.392px;
    }
    .pckg .upper .price {
        padding: 8px 0 18px;
    }
    .bottom span {
        font-size: 17.66px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 6px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22.392px;
    }
    .pckg .bottom ul {
        height: 214px;
    }
    .cta-image {
        top: -8vw;
        max-width: 33%;
    }
    section.sec-4 {
        background-size: cover;
    }
    .chooseus-detail h3 {
        font-size: 20px;
        padding-bottom: 4px;
    }
    .sec-5 .btn-wrap .theme-btn {
        gap: 9rem;
    }
    section.sec-6 {
        padding: 50px 0 50px;
    }
    .feature-card .btn-wrap .theme-btn {
        gap: 5rem;
    }
    .feature-card h3 {
        font-size: 22px;
    }
    .slick-dots {
        padding: 12px 0 0;
    }
    .testi-card .bottom p {
        font-size: 16px;
    }
    section.sec-10 {
        padding: 50px 0 50px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 20px;
        max-width: 90%;
    }
    .answer p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 24px;
    }
    section.sec-11 {
        padding: 50px 0;
    }
    ul.customer-satisfaction {
        margin-top: 0;
    }
    footer {
        padding: 50px 0 50px;
        text-align: center;
    }
    section {
        padding: 2rem 0;
    }
    .footer-social-icons div {
        align-items: center;
        justify-content: center;
    }
    .mmpopup .centercont h3 span {
        font-size: 36px;
        line-height: 1.2;
    }
    .mmpopup .formpop {
        margin-top: 30px;
    }
    .mmpopup .popup-content {
        padding: 24px 22px;
    }
    .chooseus-card {
        gap: 15px;
        padding: 12px 0;
    }
    .chooseus-detail p {
        font-size: 14px;
        line-height: 20px;
    }
    .feature-card ul li {
        font-size: 13px;
        line-height: 16.302px;
    }
    .feature-card p {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 0 16px;
    }
    .feature-card {
        height: auto;
    }
    .process-card p {
        font-size: 15px;
        padding: 0 15px 0 0;
    }
    .easy-process-text h3 {
        font-size: 18px;
        line-height: 16.92px;
        padding-bottom: 5px;
    }
    .easy-process-text p {
        font-size: 14px;
        line-height: 19.92px;
    }
    ul.design-card-list.slick-initialized.slick-slider {
        margin-top: 18px;
    }
    .testi-card .bottom p {
        font-size: 14px;
        line-height: 20px;
    }
    .process-card {
        height: 100%;
    }

}

@media (max-width : 1199px) {

    .banner-content {
        padding: 90px 0 90px;
    }
    span.sub-heading {
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 44px;
        line-height: 52px;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap a {
        text-align: center;
    }
    .banner-img {
       display: none;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: 0;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    .header-wrapper {
        padding: 1rem 0;
    }
    ul.menu.btns li a svg {
        display: none;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    .sec-1 {
        background-image: none !important;
        background: var(--primary);
        margin-top: 0;
        padding: 30px 0;
        z-index: 0;
    }
    .trusted-wrapper {
        padding: 0 0 10px;
    }
    .sec-heading h3 {
        font-size: 26px;
        padding-bottom: 0;
    }
    ul#counter {
        gap: 8px;
    }
    ul#counter li .counter>div {
        font-size: 16px;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
    }
    ul#counter li {
        padding: 12px;
        border-radius: 8px;
    }
    ul#counter {
        margin-top: 28px;
        margin-bottom: 0;
    }
    section.sec-2 {
        padding: 50px 0 50px;
    }
    .port-card {
        margin-top: 0.5rem;
    }
    section.sec-3 {
        padding: 50px 0 50px;
    }
    .number span {
        font-size: 68.857px;
    }
    section#pricing {
        padding: 50px 0 50px;
    }
    ul.overview-nav {
        gap: 4px;
        margin: 20px 0;
    }
    ul.overview-nav a {
        padding: 20px 28px;
        font-size: 16px;
    }
    .pckg .upper p {
        margin-bottom: 0.5rem;
        font-size: 15px;
        line-height: 22.392px;
    }
    .pckg .upper .price {
        padding: 8px 0 18px;
    }
    .bottom span {
        font-size: 17.66px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 6px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22.392px;
    }
    .pckg .bottom ul {
        height: 214px;
    }
    .cta-image {
        top: -11vw;
    }
    section.sec-4 {
        background-size: cover;
    }
    .chooseus-detail h3 {
        font-size: 20px;
        padding-bottom: 4px;
    }
    .sec-5 .btn-wrap .theme-btn {
        gap: 9rem;
    }
    section.sec-6 {
        padding: 50px 0 50px;
    }
    .feature-card .btn-wrap .theme-btn {
        gap: 5rem;
    }
    .feature-card h3 {
        font-size: 22px;
    }
    .slick-dots {
        padding: 12px 0 0;
    }
    .easy-process-card {
        flex-direction: column;
        align-items: start;
    }
    .testi-card .bottom p {
        font-size: 16px;
    }
    section.sec-10 {
        padding: 50px 0 50px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 20px;
        max-width: 90%;
    }
    .answer p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 24px;
    }
    section.sec-11 {
        padding: 50px 0;
    }
    ul.customer-satisfaction {
        margin-top: 0;
    }
    footer {
        padding: 50px 0 50px;
        text-align: center;
    }
    section {
        padding: 2rem 0;
    }
    .footer-social-icons div {
        align-items: center;
        justify-content: center;
    }
    .mmpopup .centercont h3 span {
        font-size: 36px;
        line-height: 1.2;
    }
    .mmpopup .formpop {
        margin-top: 30px;
    }
    .mmpopup .popup-content {
        padding: 24px 22px;
    }
    .chooseus-card {
        gap: 15px;
        padding: 12px 0;
    }
    .chooseus-detail p {
        font-size: 14px;
        line-height: 20px;
    }
    .feature-card ul li {
        font-size: 13px;
        line-height: 16.302px;
    }
    .feature-card p {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 0 16px;
    }
    .feature-card {
        height: auto;
    }
    .process-card p {
        font-size: 15px;
    }
    .pckg .upper .price .uspto {
        font-size: 14px;
    }
    .userBelowCard .card-Body .bodyText p {
        font-size: 14px;
    }
.banner-content ul li {
    width: fit-content;
}


    
}

@media (max-width : 1023px){
    .btn-wrap .theme-btn {
        font-size: 14px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

@media (max-width : 992px) {
    .banner-content {
        padding: 85px 0 100px;
    }
    span.sub-heading {
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 40px;
        line-height: 36px;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap a {
        text-align: center;
    }
    .banner-img {
        position: absolute;
        top: 20vw;
        right: 4vw;
        max-width: 52vw;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: 0;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    ul.menu.btns li a svg {
        display: none;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    .sec-1 {
        background-image: none !important;
        background: var(--primary);
        margin-top: 0;
        padding: 30px 0;
    }
    .trusted-wrapper {
        padding: 0 0 10px;
    }
    .sec-heading h3 {
        font-size: 22px;
        padding-bottom: 18px;
        text-align: center;
    }
    ul#counter {
        gap: 8px;
    }
    ul#counter li .counter>div {
        font-size: 16px;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
    }
    ul#counter li {
        padding: 12px;
        border-radius: 8px;
    }
    ul#counter {
        margin-top: 28px;
        margin-bottom: 0;
    }
    section.sec-2 {
        padding: 50px 0 50px;
    }
    .port-card {
        margin-top: 0.5rem;
    }
    section.sec-3 {
        padding: 50px 0 50px;
    }
    .number span {
        font-size: 68.857px;
    }
    .process-card.bg1 {
        border-radius: 0;
        border-top: 0;
        border-bottom: 0;
        border-left: 0;
    }
    .process-card.bg2 {
        border-top: 0;
        border-bottom: 0;
    }
    .process-card.bg3 {
        border-radius: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
    }
    section#pricing {
        padding: 50px 0 50px;
    }
    ul.overview-nav {
        gap: 4px;
        margin: 20px 0;
    }
    ul.overview-nav a {
        padding: 16px 18px;
        font-size: 14px;
    }
    .pckg .upper p {
        margin-bottom: 0.5rem;
        font-size: 15px;
        line-height: 22.392px;
    }
    .pckg .upper .price {
        padding: 8px 0 18px;
    }
    .bottom span {
        font-size: 17.66px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 6px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22.392px;
    }
    .pckg .bottom ul {
        height: 214px;
    }
    .cta-image {
        top: -4vw;
    }
    section.sec-4 {
        background-size: cover;
    }
    .chooseus-detail h3 {
        font-size: 20px;
        padding-bottom: 4px;
    }
    .sec-5 .btn-wrap .theme-btn {
        gap: 9rem;
    }
    section.sec-6 {
        padding: 50px 0 50px;
    }
    .feature-card .btn-wrap .theme-btn {
        gap: 5rem;
    }
    .feature-card h3 {
        font-size: 20px;
    }
    .slick-dots {
        padding: 12px 0 0;
    }
    .easy-process-card {
        flex-direction: column;
        align-items: start;
    }
    .testi-card .bottom p {
        font-size: 16px;
    }
    section.sec-10 {
        padding: 50px 0 50px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 20px;
        max-width: 90%;
    }
    .answer p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 24px;
    }
    section.sec-11 {
        padding: 50px 0;
    }
    ul.customer-satisfaction {
        margin-top: 0;
    }
    footer {
        padding: 50px 0 50px;
        text-align: center;
    }
    section {
        padding: 2rem 0;
    }
    .footer-social-icons div {
        align-items: center;
        justify-content: center;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
    }
    .mmpopup .formpop {
        margin-top: 32px;
    }
    .mmpopup .popup-content {
        padding: 24px 22px;
    }
    .chooseus-card {
        gap: 15px;
        padding: 12px 0;
    }
    .chooseus-detail p {
        font-size: 14px;
        line-height: 20px;
    }
    .feature-card ul li {
        font-size: 13px;
        line-height: 16.302px;
    }
    .feature-card p {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 0 16px;
    }
    .feature-card {
        height: 100%;
    }
    .sec-heading h3 svg{
        display: none;
    }
    .pckg .upper .price .amount {
        font-size: 36.052px;
    }











}

@media only screen and (min-width : 768px) and (max-width : 991px) {
    .banner-img {
        display: none;
    }
    ul#counter li .counter span.text {
        font-size: 12px;
    }
    ul#counter li .counter>div {
        font-size: 12px;
    }
    ul#counter li {
        padding: 6px;
        border-radius: 8px;
    }
    ul#counter {
        gap: 6px;
    }
    .process-card {
        padding: 20px 0 20px 20px;
    }
    .process-card p {
        font-size: 14px;
    }
    .cta-image {
        display: none;
    }
    .chooseus-image {
        display: none;
    }
    .sec-5 .btn-wrap .theme-btn {
        gap: 18rem;
    }
    .sec-4 .sec-heading .sub-heading {
        justify-content: center;
    }
    .sec-4 .sec-heading {
        text-align: center;
    }
    .sec-4 .btn-wrap{
        justify-content: center;
    }
    .sec-5 .sec-heading .sub-heading {
        justify-content: center;
    }
    .sec-5 .sec-heading {
        text-align: center;
    }
    .sec-5 .btn-wrap .theme-btn {
        gap: 2rem;
        width: auto !important;
    }
    .sec-5 .btn-wrap{
        margin-top: 2rem;
    }
    .easy-process-card {
        text-align: center;
        align-items: center;
    }




}


@media only screen and (min-width : 280px) and (max-width : 767px) {
    .feature-card {
        height: auto;
    }
    .banner-content {
        padding: 60px 0 20px;
    }
    span.sub-heading {
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap a {
        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: 0;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    ul.menu.btns li a svg {
        display: none;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    .sec-1 {
        background-image: none !important;
        background: var(--primary);
        margin-top: 0;
        padding: 30px 0;
    }
    .trusted-wrapper {
        padding: 0 0 10px;
    }
    .sec-heading h3 {
        font-size: 16px;
        padding-bottom: 18px;
    }
    ul#counter {
        flex-direction: column;
        gap: 8px;
    }
    ul#counter li .counter>div {
        font-size: 16px;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
    }
    ul#counter li {
        padding: 12px;
        border-radius: 8px;
    }
    ul#counter {
        margin-top: 28px;
        margin-bottom: 0;
    }
    section.sec-2 {
        padding: 50px 0 50px;
    }
    .port-card {
        margin-top: 0.5rem;
        text-align: center;
    }
    section.sec-3 {
        padding: 50px 0 50px;
    }
    .number span {
        font-size: 68.857px;
    }
    .process-card.bg1 {
        border-radius: 0;
        border-top: 0;
        border-bottom: 0;
        border-left: 0;
    }
    .process-card.bg2 {
        border-top: 0;
        border-bottom: 0;
    }
    .process-card.bg3 {
        border-radius: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
    }
    section#pricing {
        padding: 50px 0 50px;
    }
    ul.overview-nav {
        gap: 4px;
        margin: 20px 0;
    }
    ul.overview-nav a {
        padding: 16px 18px;
        font-size: 14px;
    }
    .pckg .upper p {
        margin-bottom: 0.5rem;
        font-size: 15px;
        line-height: 22.392px;
    }
    .pckg .upper .price {
        padding: 8px 0 18px;
    }
    .bottom span {
        font-size: 17.66px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 6px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 22.392px;
    }
    .pckg .bottom ul {
        height: 214px;
    }
    .cta-image {
        display: none;
    }
    section.sec-4 {
        background-size: cover;
    }
    .chooseus-detail h3 {
        font-size: 20px;
        padding-bottom: 4px;
    }
    .sec-5 .btn-wrap .theme-btn {
        gap: 5rem;
        width: auto !important;
    }
    section.sec-6 {
        padding: 50px 0 50px;
    }
    .feature-card .btn-wrap .theme-btn {
        gap: 4rem;
        width: auto;
    }
    .feature-card h3 {
        font-size: 22px;
    }
    .slick-dots {
        padding: 12px 0 0;
    }
    .easy-process-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .testi-card .bottom p {
        font-size: 16px;
    }
    section.sec-10 {
        padding: 50px 0 50px;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 20px;
        max-width: 90%;
    }
    .answer p {
        margin-top: 10px;
        font-size: 14px;
    }
    section.sec-11 {
        padding: 50px 0;
    }
    ul.customer-satisfaction {
        margin-top: 0;
    }
    footer {
        padding: 50px 0 50px;
        text-align: center;
    }
    section {
        padding: 2rem 0;
    }
    .footer-social-icons div {
        align-items: center;
        justify-content: center;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
    }
    .mmpopup .formpop {
        margin-top: 20px;
    }
    .mmpopup .popup-content {
        padding: 24px 22px;
    }
    .chooseus-image {
        display: none;
    }
    footer div img {
        margin-bottom: 14px;
    }
    .userBelowCard .card-Body .bodyText p {
        font-size: 14px;
    }
 
}