/*Main Css */
:root {
    --primary: #306957;
    --bg-light: #EFFDA5;
    --bg-secondary: #E4FE5E;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Poppins" , sans-serif;
    --font-accent: "Poppins" , sans-serif;
    --font-body: "Poppins" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #306957;
    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: #306957;
}

/* Tabbing CSS */

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

[class^="box-"].showfirst {
    display: block;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1438px;
}
body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #141414;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: 500;
    color: #10110B;
    font-family: var(--font-heading);
}
p{
    opacity: 0.7;
}
*: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: 0px 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: 10px;
    width: 10px;
    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: var(--primary);
    width: 10px;
}

/*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;
    width: 200px;
}

/* 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 0 0 24px;
}
.menu > li > a {
    display: block;
    font-size: 15px;
    color: #797979;
    /* text-transform: uppercase; */
    font-weight: 400;
    font-family: 'Poppins';
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 16px 26px;
    /* border-radius: 8px; */
    font-weight: 400 !important;
    border-radius: 10px;
    /* background: #306957; */
    display: flex !important;
    align-items: center;
    gap: 10px;
}
.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: 25px;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
    border-radius: 14px;
    border: 1px solid rgba(48, 105, 87, 0.10);
    /* background: rgba(48, 105, 87, 0.09); */
    /* z-index: 1; */
}

@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;
    font-size: 15px;
    color: #797979;
    /* text-transform: uppercase; */
    font-weight: 400;
    font-family: 'Poppins';
}
.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: 82px 0 77px;
    position: relative;
}
h1.banner-heading {
    font-size: 75px;
    line-height: 83px;
    margin-bottom: 1rem;
    z-index: 0;
    position: relative;
    padding: 0 0 18px;
}
span.sub-heading {
    font-size: 16px;
    line-height: normal;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 34px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    padding: 10px 12px;
    width: fit-content;
    margin-bottom: 23px;
}
p.banner-text {
    margin-bottom: 1rem;
    color: #141414;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
}
.form {
    padding: 30px 20px 20px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    background: #FFF;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.10);
}
.input-field1 label {
    font-weight: 400;
    padding-bottom: 8px;
    opacity: 0.7;
    font-size: 14px;
    color: #1A1A1A;
}
.input-field1 input, .input-field1 textarea, .input-field1 select {
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    color: #222222;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 16px;
    background: #FDFDFD;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
.input-field1 textarea {
    height: 162px;
    align-self: stretch;
}
.send {
    text-align: left;
    padding-top: 10px;
}
.send input[type="submit"] {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    padding: 16px 34px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 10px;
    background: #306957;
}
.header-wrapper {
    border-bottom: 1px solid #00000024;
    padding: 26px 0;
}
.form .sec-heading h6 {
    color: #00063D;
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
}
.form .sec-heading p {
    color: #585757;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
h1.banner-heading span {
    color: #306957;
    font-weight: 500;
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 0 10px;
}
.banner-content ul li {
    border-radius: 10px;
    background: rgba(74, 222, 128, 0.20);
    display: flex;
    padding: 10px 15px 10px 10px;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 8px;
}
.banner-content ul li:nth-child(2) {
    background: rgba(96, 165, 250, 0.20);
}
.banner-content ul li:nth-child(3) {
    background: rgba(192, 132, 252, 0.20);
}
img.v2 {
    position: absolute;
    top: 7vw;
    left: 6vw;
    right: 0;
    margin: 0 auto;
    z-index: 0;
}
section.webdesignSec {
    padding: 100px 0 0;
}
.sec-heading h2 span {
    color: var(--primary);
    font-weight: 700;
}
section.sec-1 {
    padding: 104px 0 50px;
}
section.sec-2 {
    background: rgba(228, 254, 94, 0.10);
    padding: 116px 0 114px;
}
.services-wrapper{
    display:flex;
    gap:20px;
    align-items: center;
    justify-content: center;
}
.service-card{
    padding: 17px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    cursor:pointer;
    border-radius: 145.553px;
    border: 1px solid rgba(217, 217, 217, 0.50);
    background: #FBFBFB;
    width: 115px;
    height: 643px;
    text-align: center;
    margin: 0 auto;
}
/* active open card */
.service-card.active{
    width: 726px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background: #EFFDA5;
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.11);
}
/* hover open */
.service-card:hover{
    width: 726px;
}
/* default vertical title */
.service-title{
    writing-mode: sideways-lr;
    transition:0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    color: #10110B;
    font-weight: 500;
    font-size: 26px;
    font-family: 'Poppins';
}
/* active card title horizontal */
.service-card.active .service-title{
    writing-mode: horizontal-tb;
    transform: rotate(0);
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 13px;
    height: auto;
}
/* hide content by default */
.service-content{
    opacity:0;
    transition:0.3s;
    text-align: left;
}
/* show content on active or hover */
.service-card.active .service-content,
.service-card:hover .service-content{
    opacity:1;
}
.service-content img{
    width:100%;
    border-radius:12px;
    margin:15px 0;
}
.learn-btn{
    display:inline-block;
    margin-top:10px;
    border-radius: 10px;
    background: #306957;
    padding: 18px 30px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.service-card:hover .service-title{
    writing-mode: horizontal-tb;
    transform: rotate(0);
}
.service-content p {
    color: #141414;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
section.sec-3 {
    padding: 120px 0;
}
.sample-card {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 30px 0 0 30px;
    background: #EFFDA5;
    position: relative;
    padding: 50px 76px 50px 258px;
    margin-bottom: 45px;
    height: 85%;
}
.sample-card.sam-card2 {
    border-radius: 0 30px 30px 0;
    background: #306957;
}
.sample-card img {
    position: absolute;
    top: -2vw;
    left: 2vw;
}
.sample-details h3 {
    font-size: 20px;
    line-height: normal;
    text-transform: capitalize;
}
.sample-details h3 span {
    color: #5A5A5A;
    font-weight: 400;
}
.sample-details p {
    color: #141414;
    font-size: 16px;
    line-height: 23.671px; 
    padding: 6px 0;
}
.sample-details a {
    color: #306957;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 23.671px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.sample-card.reverse {
    text-align: right;
    padding: 50px 265px 50px 76px;
    border-radius: 30px 0 0 30px;
}
.sample-card.reverse img {
    left: 24.5vw;
}
.sample-card.reverse.r2 {
    border-radius: 0 30px 30px 0;
}
.benefit-card {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FBFBFB;
    padding: 30px 25px;
    transition: 0.3s ease;
}
.benefit-card h3 {
    color: #10110B;
    font-size: 20px;
    line-height: normal;
    padding: 6px 0;
}
.benefit-card p {
    color: #141414;
    font-size: 16px;
    line-height: 24px;
}
.benefit-card:hover {
    border-radius: 20px;
    border: 1px solid var(--primary);
    background: #EFFDA5;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.11);
}

/* -------------------------counter CSS------------------------  */
ul#counter {
    /* display: flex; */
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 30px;
    border: 1px solid #306957;
    background: #EFFDA5;
    width: 654px;
}
.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 {
    font-weight: 500;
    font-size: 65px;
    color: var(--primary);
}
ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 50px 70px;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul#counter li .counter span.text {
    font-size: 16px;
    font-weight: normal;
    color: #141414;
    opacity: 0.7;
}
ul#counter:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 1vw;
    right: 0;
    margin: 0 auto;
    background-image: url(../images/border-img.webp);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}
.goto {
    position: relative;
    display: flex;
    justify-content: end;
}
/* -------------------------counter CSS------------------------  */

/* packages */
section#pricing {
    /* padding: 114px 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%;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    overflow: hidden;
}
.pckg .btn-wrap a{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff !important;
    border: 0;
    border-radius: 9px;
    background: #306957;
    justify-content: space-between;
    margin-top: 1rem;
}
.price {
    display: flex;
    align-items: baseline;
    border-top: 1px solid #D9D9D9;
    margin-top: 12px;
}
.bottom {
    padding: 21px 24px !important;
}
.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: #1A1A1A;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 33px;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    margin-top: 23px;
    border-top: 1px solid #D9D9D9;
    padding-top: 15px;
    color: #585858;
    font-size: 16px;
    line-height: 28px;
}
.pckg .upper .price .amount {
    font-weight: 400;
    line-height: normal;
    color: #1A1A1A;
    font-size: 55px;
    margin: 10px 0 0;
    font-family: 'Poppins';
}
.pckg .upper .price .uspto {
    color: #141414;
    font-size: 18px;
    opacity: 0.7;
}
.inner-wrap {
    padding: 20px;
    border-bottom: 1px solid #D9D9D9;
    background: #EFFDA5;
}
.pckg h4 {
    color: #626262;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
.pckg .upper b {
    color: #141414;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    opacity: 0.7;
}
.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: #212121ba;
   font-size: 16px;
   line-height: 22px;
   align-items: flex-start;
}
.pckg .bottom ul {
    padding-right: 10px;
    height: 210px;
    overflow-y: scroll;
    margin: 1rem 0 0.3rem;
}
.bottom span {
   color: #1A1A1A;
   font-size: 22px;
   font-weight: 500;
   line-height: 33px;
   font-family: 'Poppins';
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}
.pckg:hover {
    border: 1px solid var(--primary);
}
.pckg:hover .upper .title, .pckg:hover .upper .price .amount {
    color: #191919;
}
.pckg:hover .btn-wrap a {
    background: #E4FE5E;
    color: #000000 !important;
}

/* packages */
.success-stories-slider {
    border-radius: 50px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 29px;
}
.slide-detail {
    border-radius: 19.222px;
    border: 0.961px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 3.844px 32.678px 0 rgba(0, 0, 0, 0.10);
    padding: 30px 33px;
    margin-left: -5vw;
}
.slide-image1 {
    box-shadow: 0 3.844px 32.678px 0 rgba(0, 0, 0, 0.10);
    border-radius: 40px;
    background: var(--primary);
    padding: 4px;
}
.slide-detail h3 {
    color: #10110B;
    font-size: 28.833px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slide-detail h3 span {
    color: var(--primary);
    font-size: 28.833px;
    font-weight: 500;
    line-height: normal;
    opacity: 1;
}
.slide-detail span {
    color: #141414;
    font-size: 17.3px;
    line-height: 28.833px; /* 166.667% */
    opacity: 0.7;
    border-bottom: 1px solid #306957;
    margin-bottom: 14px;
}
.slide-detail p {
    color: #141414;
    font-size: 17.3px;
    line-height: 28.833px; /* 166.667% */
}
.testi-card {
    margin: 10px 0;
    position: relative;
    z-index: 1;
    padding: 32px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background: #FBFBFB;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.11);
}
.bottom span.des {
    color: var(--C, #626262);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.28px;
}
.testi-card .top {
    padding: 20px 0 0;
}
.testi-card .top div {
    display: flex;
    align-items: center;
    gap: 16px;
}
.bottom {
    flex-direction: column;
    align-items: start !important;
    gap: 0 !important;
}
.testi-card .top div .bottom {
    padding: 0 !important;
}
.testi-card p {
    margin-bottom: 0;
    color: #141414;
    font-size: 17.3px;
    font-weight: 400;
    line-height: 28.833px; /* 166.667% */
    opacity: 0.7;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary);
}
section.sec-4 {
    padding: 0;
}
.testi-card h4 {
    color: #10110B;
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
}
.testi-card h4 span {
    color: var(--primary);
    font-weight: 700;
}

/* Accordian */
section.faq-sec {
    background: #F9FBEB;
    padding: 114px 0;
}
.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: 14px;
    padding: 16px;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #212121;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    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: 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: 17px;
    font-size: 18px;
    line-height: 30px;
    color: #141414;
    opacity: 0.7;
}
.accordion-list>li.last {
    margin-bottom: 0;
}
.accordion-list>li.active .answer {
    display: block !important;
}
.accordion-list>li.active span {
    border-radius: 10px;
    background: #306957;
}
.accordion-list>li.active span h3 {
    padding: 15px 19px;
    color: #fff;
}
/* Accordian */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 50px;
    line-height: 60px;
    position: relative;
    margin-bottom: 20px;
    padding: 0 0 10px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    color: #141414;
    font-size: 18px;
    line-height: 30px;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
/* 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 {
    padding: 18px 30px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 400;
    border: 1px solid var(--primary);
    transition: .5s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-wrap .theme-btn.bordered {
    /* background: var(--bg-secondary); */
    color: var(
    --primary);
    border-radius: 10px;
    border: 1px solid rgba(48, 105, 87, 0.40);
    background: #E4FE5E;
}
.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 */

section.cta-sec {
    background-position: top;
    padding: 114px 0 22px;
    background-repeat: no-repeat;
}
section.cta-sec .sec-heading {
    padding-top: 105px;
    margin-bottom: 1rem;
}
section.cta-sec2 {
    background-position: top;
    padding: 114px 0 42px;
    background-repeat: no-repeat;
}
/* footer */
footer {
    background: #030E1A;
    padding: 1.5rem 0;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-link li:first-child {
    border-right: 1px solid #6c757d;
    padding-right: 20px;
}
/* footer */

.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: 30px 0;
    border: 1px solid #D9D9D9;
}
.design-card-list li,
.design-card-list-2 li {
    position: relative;
    display: flex !important;
    justify-content: center;
}

/* Portfolio */
ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 40px;
    border: 1px solid #D9D9D9;
    background: #EFFDA5;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 10px;
    position: relative;
}
ul.overview-nav.d2 a {
    padding: 12px 20px;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid transparent;
    color: #6E6E6E;
    border-radius: 45px;
    background: transparent;
}
ul.overview-nav.d2 li.active a {
    color: #FBFBFB;
    background: #306957;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10);
}
ul.overview-nav.d2 a span {
    border-radius: 71px;
    background: linear-gradient(90deg, #306957 0%, #0BA776 100%);
    padding: 9px 10px;
    color: #FBFBFB;
    position: absolute;
    right: -4vw;
    top: 12px;
}
.port-card {
    margin-bottom: 1.5rem;
}
.port-card img {
    width: 100%;
}
/* Portfolio */

/* 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/ser1.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: 51px 0 0;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #306957;
    padding: 25px 0;
    margin-top: 50px;
}
.copyright p,.copyright a {
    color: #141414;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.7;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    padding-top: 24px;
    color: #141414;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-hdng h4 {
    margin-bottom: 20px;
    color: #10110B;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
.f-menu li a {
    color: #141414b8;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.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 {
    background: #222222;
}
.footer-top h3 {
    color: #10110B;
    font-size: 50px;
    font-weight: 500;
    line-height: 44px;
}
.footer-top h3 span {
    color: var(--primary);
    font-weight: 700;
}
.borderbottom {
    border-bottom: 1px solid #306957;
    padding: 0 0 25px;
    margin-bottom: 50px;
}
/* ----------------------------------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;
}
/* 404 */

/* terms */
ul.term-list {
    list-style: disc;
    margin-left: 26px;
}
.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #000;
}
.terms ul li {
    margin-bottom: 1rem;
    color: #333;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 2rem 0 1rem;
}
.terms p {
    margin-bottom: 1rem;
    opacity: 1;
    color: #333;
}
/* terms */

/* -----------------------inner pages------------------------- */
.theme-btn.popstatic.bg-white.text-black {
    color: var(--primary);
}
.bglight{
    background: rgba(228, 254, 94, 0.10);
}
.benefit-card.ben-card2 .bencard2-name {
    padding-bottom: 15px;
}
.bencard2-name {
    display: flex;
    align-items: center;
    gap: 18px;
}
.no-bglight{
    background: none !important;
}
.ben-card2 {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FBFBFB;
    padding: 21px;
}

.ben-card2 .bencard2-name p {
    line-height: 24px;
}
.choose-card {
    display: flex;
    align-items: center;
    gap: 14px;
}
.choose-card h3 {
    color: #10110B;
    font-size: 18px;
    line-height: normal;
    padding: 0 0 5px;
}
.choose-card p {
    color: #141414;
    font-size: 16px;
    line-height: 24px;
}
.choose-card img {
    flex-shrink: 0;
}
.ch-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-top: 1px solid rgba(48, 105, 87, 0.29);
    border-bottom: 1px solid rgba(48, 105, 87, 0.29);
    padding: 30px 0;
}
.commitment-points {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #EFFDA5;
    padding: 20px;
    margin-bottom: 20px;
}
.commitment-points h3 {
    color: #10110B;
    font-size: 26px;
    font-weight: 500;
    line-height: 40px; /* 153.846% */
    text-transform: capitalize;
    padding-bottom: 20px;
}
.commitment-points ul li {
    color: #141414ad;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.details {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    display: flex;
    padding: 17px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    margin-bottom: 12px;
}
.details a {
    display: flex;
    color: #141414;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px; /* 187.5% */
}
.details h5 {
    color: #1E1E1E;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px; /* 127.778% */
    letter-spacing: 0.36px;
}
a.theme-btn2 {
    border-radius: 200px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: #306957;
    color: #fff;
    padding: 8px 25px;
    width: 100%;
    justify-content: center;
}
.btn-wrap2 {
    width: 100%;
}
section.nopadding {
    padding: 0 0 100px;
}
.case-studies-card {
    border-radius: 19.222px;
    border: 0.961px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 3.844px 32.678px 0 rgba(0, 0, 0, 0.10);
    padding: 30px 25px;
}
.casestudies {
    display: flex;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid #30695747;
    width: fit-content;
    padding: 0 0 15px;
}
.casestudies h3 {
    color: #10110B;
    font-size: 28.833px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.casestudies h3 span {
    color: var(--primary);
    font-weight: 700;
}
.casestudy-list {
    padding: 15px 0 10px;
}
.casestudy-list p {
    color: #141414bd;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.833px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
}
.casestudy-list div {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 15px;
}
.casestudy-list p b {
    color: #10110B;
    font-size: 18px;
    font-weight: 500;
    opacity: 1;
}
.key-metrics h3 {
    color: #10110B;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    border-bottom: 1px solid #30695747;
    width: fit-content;
    padding: 0 0 10px;
}
.Keymetrics-wrap {
    padding: 12px 0 22px;
    display: flex;
    gap: 3rem;
    border-bottom: 1px solid #30695747;
}
.Keymetrics-wrap h4 {
    color: #306957;
    font-size: 35px;
    font-weight: 500;
    line-height: normal;
}
.case-review p {
    color: #141414;
    font-size: 17.3px;
    font-weight: 400;
    line-height: 28.833px;
}
.case-review {
    border-bottom: 1px solid #30695747;
    padding: 20px 0;
}
.case-review span {
    color: #5B5B5B;
    font-size: 17.3px;
    font-weight: 400;
    line-height: 28.833px;
    padding-top: 12px;
}
.case-review span b {
    color: var(--primary);
    font-weight: 600;
}
.timeline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
}
.timeline h5 {
    color: #10110B;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: capitalize;
}
.custom-consulting {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #EFFDA5;
    padding: 20px 14px;
}
.custom-consulting h3 {
    color: #10110B;
    font-size: 26px;
    font-weight: 500;
    line-height: 40px; /* 153.846% */
    text-transform: capitalize;
}
.custom-consulting ul {
    padding: 20px 0 0;
}
.custom-consulting ul li {
    background: transparent;
}
.custom-consulting ul li:nth-child(2) {
    background: transparent;
}
.custom-consulting ul li:nth-child(3) {
    background: transparent;
}
.process-card {
    border-radius: 21.302px;
    border: 1.065px solid #D9D9D9;
    background: #FFF;
    padding: 19.497px 14.911px;
}
.process-card span {
    color: #306957;
    font-size: 69.859px;
    font-weight: 700;
    line-height: 80px; 
    border-bottom: 1px solid var(--primary);
}
.process-card h3 {
    color: #1E1E1E;
    font-size: 20px;
    font-weight: 600;
    line-height: 23px; 
    letter-spacing: 0.4px;
    padding: 18px 0 10px;
}
.process-card p {
    color: #141414;
    font-size: 16px;
    line-height: 25px;
}
.inner-text h4 {
    color: #306957;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 10px;
}
.inner-text p {
    color: #141414;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; 
}
.inner-text {
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    padding: 18px 0;
}
.custom-scratch-wrap {
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 22px 25px 19px 24px;
    height: 100%;
}
.casestudies2 h3 {
    color: #10110B;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    padding: 10px 0;
}
.casestudies2 p {
    font-size: 18px !important;
}
.casestudies2 {
    border-bottom: 1px solid var(--primary);
    padding: 0 0 14px;
}
.custom-scratch-wrap p {
    color: #141414;
    font-size: 14px;
    line-height: 24px; /* 171.429% */
}
.casestudy-list ul li {
    color: #1414148a;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.custom-scratch-wrap p b {
    color: #141414;
    font-size: 18px;
    line-height: 24px; /* 133.333% */
    opacity: 1;
}
.custom-scratch-wrap p span {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px !important;
}
section.cta2 {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #EFFDA5;
}
.industries-list li {
    font-size: 16px;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    color: #141414b3;
}
ul.industries-list {
    padding: 14px 0 0;
}
.pckg-plan {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
.sba-business-card {
    border-radius: 0;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 22px 25px 19px 24px;
}
.sba-business-card h3 {
    color: #10110B;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    padding: 15px 0;
}
.sba-business-card ul li {
    color: #141414bd;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.sba-business-card ul li strong {
    color: #141414;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px; 
    display: contents;
}
ul.supporting-list {
    display: inline-block;
    vertical-align: middle;
    margin: 10px 0 0;
}
ul.supporting-list li {
    vertical-align: middle;
    width: 33%;
    display: inline-flex;
    align-items: center;
}
.sba-business-card.radius-class1 {
    border-radius: 15px 0 0 15px;
}
.sba-business-card.radius-class2 {
    border-radius: 0 15px 15px 0;
}
.sba-business-card.radius-class {
    border-radius: 15px;
}
.process-card h5 {
    color: #10110B;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 15px;
    border-top: 1px solid var(--primary);
    margin-top: 15px;
}
img.vec1 {
    position: absolute;
    top: 66px;
    right: 0;
    left: 17vw;
    margin: 0 auto;
    z-index: -1;
}
.approval-rate {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid rgba(48, 105, 87, 0.10);
    background: rgba(48, 105, 87, 0.09);
    padding: 15px 20px;
    width: fit-content;
}
.approval-rate h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding: 0 0 4px;
}
.app-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.investment-stage-card {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FBFBFB;
    padding: 18px;
}
.investment-details {
    display: flex;
    align-items: center;
    gap: 14px;
}
.investment-details h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}
.investment-details span {
    color: #306957;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px; /* 120% */
}
.investment-stage-card p {
    color: #141414;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    padding-top: 12px;
}
.investment-pckg-wrap {
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
.investment-pckg-card h3 {
    border-radius: 10px;
    background: #306957;
    padding: 8px 12px;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.investment-pckg-card ul li {
    color: #141414ab;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.investment-pckg-card ul {
    padding-top: 15px;
}
.investment-pckg-card {
    padding: 20px;
    position: relative;
}
.investment-pckg-card:before {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    left: -12px;
    width: 1px;
    height: 199px;
    background: #3069574f;
    margin: 0 auto;
}
.investment-pckg-card.dnone:before {
    display: none;
}
h1.banner-heading:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 269px;
    height: 1px;
    background: var(--primary);
}
.sec-heading h2:before {
    width: 73px;
    height: 1px;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #30695799;
}
p.text-yellow {
    color: #EFFDA5;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 18px;
}
.marginleft {
    margin-left: 4vw;
}
.sec-heading.lineleft h2:before {
    margin: 0;
}














@media (max-width: 1440px) {
    .banner-content {
        padding: 55px 0 50px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 45px;
        line-height: 65px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    .sec-heading h2 {
        font-size: 35px;
        line-height: 60px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 28px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    img.v2 {
        display: none;
    }
    .banner-content ul li {
        font-size: 16px;
    }
    .form .sec-heading h6 {
        font-size: 26px;
    }
    .form .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .form {
        padding: 16px;
    }
    section.webdesignSec {
        padding: 50px 0 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    ul#counter {
        margin: 0 auto;
    }
    ul#counter li {
        padding: 30px;
    }
    ul#counter li .counter>div {
        font-size: 48px;
    }
    ul#counter:before{
        display: none;
    }
    section.sec-2 {
        padding: 50px 0;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    section#pricing {
        padding: 50px 0;
    }
    .benefit-card p {
        font-size: 16px;
        line-height: 26px;
    }
    .pckg .upper b {
        font-size: 16px;
        line-height: 26px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22px;
    }
    .success-stories-slider {
        padding: 10px;
        border-radius: 20px;
    }
    .testi-card {
        padding: 20px;
    }
    .testi-card h4 {
        font-size: 20px;
    }
    .testi-card h4 span {
        display: contents;
    }
    .testi-card p {
        font-size: 16.3px;
        line-height: 28.833px;
    }
    .bottom span {
        font-size: 18px;
        line-height: 16px;
    }
    section.faq-sec {
        padding: 50px 0;
    }
    .answer p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 26px;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 22px;
        max-width: 90%;
    }
    .accordion-list>li.active span h3 {
        padding: 15px 10px;
    }
    section.cta-sec .sec-heading {
        padding-top: 0;
    }
    section.cta-sec {
        padding: 124px 0;
        background-position: center;
    }
    .footer-top h3 {
        font-size: 22px;
        line-height: 22px;
        text-align: center;
    }
    .footer-top a {
        padding-top: 16px;
    }
    .footer-top {
        text-align: center;
    }
    .footer-sec p {
        padding-top: 10px;
        font-size: 14px;
    }
    footer {
        background-repeat: no-repeat;
        background-size: cover;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    .footer-hdng h4 {
        margin-bottom: 0;
    }
    .ben-card2 {
        padding: 15px;
    }
    .choose-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .commitment-points h3 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 10px;
    }
    .commitment-points ul li {
        font-size: 14px;
        line-height: 20px;
    }
    .commitment-points {
        margin-top: 2rem;
    }
    ul.overview-nav.d2 a span {
        position: relative;
        right: 0;
        top: 0;
    }
    .casestudy-list p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 22.833px;
        font-size: 14px;
    }
    .casestudies h3 {
        font-size: 20.833px;
        line-height: 24px;
    }
    .Keymetrics-wrap {
        margin-bottom: 2rem;
    }
    .Keymetrics-wrap h4 {
        font-size: 20px;
    }
    .case-review p {
        font-size: 14.3px;
        line-height: 22.833px;
    }
    .timeline p {
        font-size: 14px;
        line-height: 18px;
    }
    .commitment-points p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 22px;
    }
    section.nopadding {
        padding: 0 0 50px;
    }
    .inner-text p {
        font-size: 14px;
        line-height: 20px;
    }
    .casestudies2 p {
        font-size: 14px !important;
    }
    .custom-scratch-wrap {
        margin-bottom: 20px;
    }
    .casestudy-list ul li {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 8px;
    }
    .custom-scratch-wrap p b {
        font-size: 14px;
    }
    .industries-list li {
        font-size: 14px;
    }
    .approval-rate p {
        font-size: 14px;
        line-height: 20px;
    }
    .approval-rate {
        margin-top: 1rem;
    }
    .sba-business-card ul li strong {
        font-size: 15px;
        font-weight: 500;
    }
    .sba-business-card ul li {
        font-size: 14px;
    }
    ul.supporting-list li {
        width: 100%;
    }
    .sba-business-card h3 {
        font-size: 18px;
    }
    .process-card span {
        font-size: 43.859px;
        line-height: 46px;
    }
    .investment-pckg-card ul li {
        font-size: 14px;
    }
    .ben-card2 .bencard2-name {
        padding-bottom: 0;
    }
    .pckg-plan {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 30px;
    }
    .mmpopup .popup-content {
        padding: 25px 20px;
    }
    .ben-card2 .bencard2-name p {
        line-height: 18px;
        font-size: 14px;
    }
    .bencard2-name {
        gap: 10px;
    }
    .case-review {
        padding: 0 0 20px;
    }
    .process-card {
        height: 100%;
    }
    .process-image {
        width: 100%;
        text-align: center;
        height: 100%;
    }
    .process-image img {
        height: 100%;
        width: 100%;
    }
    .service-title {
        font-size: 20px;
    }
    .service-card {
        width: 100px;
    }
    .services-wrapper {
        gap: 12px;
    }
    .process-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .process-card h3 {
        font-size: 17px;
        line-height: 16px;
    }
    .approval-rate h3 {
        font-size: 17px;
    }
    .investment-details {
        flex-direction: column;
        align-items: flex-start;
    }
    .investment-stage-card {
        height: 100%;
    }
    .sample-card.reverse img {
        left: 30vw;
    }
    .sample-details h3 {
        font-size: 18px;
    }
    .sample-card {
        padding: 26px 46px 26px 235px;
    }
    .sample-card.reverse {
        padding: 26px 245px 26px 12px;
    }
    .benefit-card h3 {
        font-size: 19px;
    }
    .sample-card.reverse img {
        left: 29vw;
    }
    br {
        display: none;
    }
    .service-card {
        padding: 9px;
    }
    .slide-image1 {
        padding: 6px;
    }


}

@media (max-width: 1200px) {
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: var(--primary);
        border-radius: 0;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 400;
        color: #fff;
    }
    .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: #EFFDA5;
        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;
    }
}

@media (max-width : 1199px) {

    .banner-content {
        padding: 55px 0 50px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 45px;
        line-height: 65px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    .sec-heading h2 {
        font-size: 35px;
        line-height: 60px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 28px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    img.v2 {
        display: none;
    }
    .banner-content ul li {
        font-size: 16px;
    }
    .form .sec-heading h6 {
        font-size: 26px;
    }
    .form .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .form {
        padding: 16px;
    }
    section.webdesignSec {
        padding: 50px 0 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    ul#counter {
        margin: 0 auto;
    }
    ul#counter li {
        padding: 30px;
    }
    ul#counter li .counter>div {
        font-size: 48px;
    }
    ul#counter:before{
        display: none;
    }
    section.sec-2 {
        padding: 50px 0;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    section#pricing {
        padding: 50px 0;
    }
    .benefit-card p {
        font-size: 16px;
        line-height: 26px;
    }
    .pckg .upper b {
        font-size: 16px;
        line-height: 26px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22px;
    }
    .slide-detail {
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 20px 10px;
        margin-left: 0;
    }
    .success-stories-slider {
        padding: 10px;
        border-radius: 20px;
    }
    .slide-detail h3 {
        font-size: 20.833px;
        line-height: 24px;
        gap: 1rem;
    }
    .slide-detail p {
        font-size: 14.3px;
        line-height: 20.833px;
    }
    .testi-card {
        padding: 20px;
    }
    .testi-card h4 {
        font-size: 20px;
    }
    .testi-card h4 span {
        display: contents;
    }
    .testi-card p {
        font-size: 16.3px;
        line-height: 28.833px;
    }
    .bottom span {
        font-size: 18px;
        line-height: 16px;
    }
    section.faq-sec {
        padding: 50px 0;
    }
    .answer p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 26px;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 22px;
        max-width: 90%;
    }
    .accordion-list>li.active span h3 {
        padding: 15px 10px;
    }
    section.cta-sec .sec-heading {
        padding-top: 0;
    }
    section.cta-sec {
        padding: 124px 0;
        background-position: center;
    }
    .footer-top h3 {
        font-size: 22px;
        line-height: 22px;
        text-align: center;
    }
    .footer-top a {
        padding-top: 16px;
    }
    .footer-top {
        text-align: center;
    }
    .footer-sec p {
        padding-top: 10px;
        font-size: 14px;
    }
    footer {
        background-repeat: no-repeat;
        background-size: cover;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    .footer-hdng h4 {
        margin-bottom: 0;
    }
    .ben-card2 {
        padding: 15px;
    }
    .choose-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .commitment-points h3 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 10px;
    }
    .commitment-points ul li {
        font-size: 14px;
        line-height: 20px;
    }
    .commitment-points {
        margin-top: 2rem;
    }
    ul.overview-nav.d2 a span {
        position: relative;
        right: 0;
        top: 0;
    }
    .casestudy-list p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 22.833px;
        font-size: 14px;
    }
    .casestudies h3 {
        font-size: 20.833px;
        line-height: 24px;
    }
    .Keymetrics-wrap {
        margin-bottom: 2rem;
    }
    .Keymetrics-wrap h4 {
        font-size: 20px;
    }
    .case-review p {
        font-size: 14.3px;
        line-height: 22.833px;
    }
    .timeline p {
        font-size: 14px;
        line-height: 18px;
    }
    .commitment-points p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 22px;
    }
    section.nopadding {
        padding: 0 0 50px;
    }
    .inner-text p {
        font-size: 14px;
        line-height: 20px;
    }
    .casestudies2 p {
        font-size: 14px !important;
    }
    .custom-scratch-wrap {
        margin-bottom: 20px;
    }
    .casestudy-list ul li {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 8px;
    }
    .custom-scratch-wrap p b {
        font-size: 14px;
    }
    .industries-list li {
        font-size: 14px;
    }
    .approval-rate p {
        font-size: 14px;
        line-height: 20px;
    }
    .approval-rate {
        margin-top: 1rem;
    }
    .sba-business-card ul li strong {
        font-size: 15px;
        font-weight: 500;
    }
    .sba-business-card ul li {
        font-size: 14px;
    }
    ul.supporting-list li {
        width: 100%;
    }
    .sba-business-card h3 {
        font-size: 18px;
    }
    .process-card span {
        font-size: 43.859px;
        line-height: 46px;
    }
    .investment-pckg-card ul li {
        font-size: 14px;
    }
    .ben-card2 .bencard2-name {
        padding-bottom: 0;
    }
    .pckg-plan {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 30px;
    }
    .mmpopup .popup-content {
        padding: 25px 20px;
    }
    .ben-card2 .bencard2-name p {
        line-height: 18px;
        font-size: 14px;
    }
    .bencard2-name {
        gap: 10px;
    }
    .case-review {
        padding: 0 0 20px;
    }
    .process-card {
        height: 100%;
    }
    .process-image {
        width: 100%;
        text-align: center;
        height: 100%;
    }
    .process-image img {
        height: 100%;
        width: 100%;
    }
    .service-title {
        font-size: 20px;
    }
    .service-card {
        width: 100px;
    }
    .services-wrapper {
        gap: 12px;
    }
    .process-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .process-card h3 {
        font-size: 17px;
        line-height: 16px;
    }
    .approval-rate h3 {
        font-size: 17px;
    }
    .investment-details {
        flex-direction: column;
        align-items: flex-start;
    }
    .investment-stage-card {
        height: 100%;
    }
    .sample-card.reverse img {
        left: 30vw;
    }
    .sample-details h3 {
        font-size: 18px;
    }
    .sample-card {
        padding: 26px 46px 26px 235px;
    }
    .sample-card.reverse {
        padding: 26px 245px 26px 12px;
    }
    .benefit-card h3 {
        font-size: 19px;
    }
    .sample-card.reverse img {
        left: 29vw;
    }


    
}

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

@media (max-width : 992px) {
    .banner-content {
        padding: 55px 0 50px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 45px;
        line-height: 65px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    .sec-heading h2 {
        font-size: 35px;
        line-height: 60px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 28px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    img.v2 {
        display: none;
    }
    .banner-content ul li {
        font-size: 16px;
    }
    .form .sec-heading h6 {
        font-size: 26px;
    }
    .form .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .form {
        padding: 16px;
    }
    section.webdesignSec {
        padding: 50px 0 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    ul#counter {
        margin: 0 auto;
    }
    ul#counter li {
        padding: 30px;
    }
    ul#counter li .counter>div {
        font-size: 48px;
    }
    ul#counter:before{
        display: none;
    }
    section.sec-2 {
        padding: 50px 0;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .sample-card img {
        position: relative;
        top: 0;
        left: 0;
    }
    .sample-card {
        padding: 20px;
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 22px;
    }
    .sample-details h3 span {
        font-size: 16px;
    }
    .sample-details p {
        font-size: 16px;
    }
    .sample-card.reverse {
        padding: 20px;
        text-align: left;
        border-radius: 30px;
    }
    .sample-card.sam-card2 {
        border-radius: 30px;
    }
    .sample-card.reverse img {
        left: 0;
    }
    section#pricing {
        padding: 50px 0;
    }
    .benefit-card p {
        font-size: 16px;
        line-height: 26px;
    }
    .pckg .upper b {
        font-size: 16px;
        line-height: 26px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22px;
    }
    .slide-detail {
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 20px 10px;
        margin-left: 0;
    }
    .success-stories-slider {
        padding: 10px;
        border-radius: 20px;
    }
    .slide-detail h3 {
        font-size: 20.833px;
        line-height: 24px;
        gap: 1rem;
    }
    .slide-detail p {
        font-size: 14.3px;
        line-height: 20.833px;
    }
    .testi-card {
        padding: 20px;
    }
    .testi-card h4 {
        font-size: 20px;
    }
    .testi-card h4 span {
        display: contents;
    }
    .testi-card p {
        font-size: 16.3px;
        line-height: 28.833px;
    }
    .bottom span {
        font-size: 18px;
        line-height: 16px;
    }
    section.faq-sec {
        padding: 50px 0;
    }
    .answer p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 26px;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 22px;
        max-width: 90%;
    }
    .accordion-list>li.active span h3 {
        padding: 15px 10px;
    }
    section.cta-sec .sec-heading {
        padding-top: 0;
    }
    section.cta-sec {
        padding: 50px 0;
        background-image: none !important;
        background: var(--primary);
    }
    .footer-top h3 {
        font-size: 22px;
        line-height: 22px;
        text-align: center;
    }
    .footer-top a {
        padding-top: 16px;
    }
    .footer-top {
        text-align: center;
    }
    .footer-sec p {
        padding-top: 10px;
        font-size: 14px;
    }
    footer {
        background-repeat: no-repeat;
        background-size: cover;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    .footer-hdng h4 {
        margin-bottom: 0;
    }
    .ben-card2 {
        padding: 15px;
    }
    .choose-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .commitment-points h3 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 10px;
    }
    .commitment-points ul li {
        font-size: 14px;
        line-height: 20px;
    }
    .commitment-points {
        margin-top: 2rem;
    }
    ul.overview-nav.d2 a span {
        position: relative;
        right: 0;
        top: 0;
    }
    .casestudy-list p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 22.833px;
        font-size: 14px;
    }
    .casestudies h3 {
        font-size: 20.833px;
        line-height: 24px;
    }
    .Keymetrics-wrap {
        margin-bottom: 2rem;
    }
    .Keymetrics-wrap h4 {
        font-size: 20px;
    }
    .case-review p {
        font-size: 14.3px;
        line-height: 22.833px;
    }
    .timeline p {
        font-size: 14px;
        line-height: 18px;
    }
    .commitment-points p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 22px;
    }
    section.nopadding {
        padding: 0 0 50px;
    }
    .inner-text p {
        font-size: 14px;
        line-height: 20px;
    }
    .casestudies2 p {
        font-size: 14px !important;
    }
    .custom-scratch-wrap {
        margin-bottom: 20px;
    }
    .casestudy-list ul li {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 8px;
    }
    .custom-scratch-wrap p b {
        font-size: 14px;
    }
    .industries-list li {
        font-size: 14px;
    }
    .approval-rate p {
        font-size: 14px;
        line-height: 20px;
    }
    .approval-rate {
        margin-top: 1rem;
    }
    .sba-business-card ul li strong {
        font-size: 15px;
        font-weight: 500;
    }
    .sba-business-card ul li {
        font-size: 14px;
    }
    ul.supporting-list li {
        width: 100%;
    }
    .sba-business-card h3 {
        font-size: 18px;
    }
    .process-card span {
        font-size: 43.859px;
        line-height: 46px;
    }
    .investment-pckg-card ul li {
        font-size: 14px;
    }
    .ben-card2 .bencard2-name {
        padding-bottom: 0;
    }
    .pckg-plan {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 30px;
    }
    .mmpopup .popup-content {
        padding: 25px 20px;
    }
    .ben-card2 .bencard2-name p {
        line-height: 18px;
        font-size: 14px;
    }
    .bencard2-name {
        gap: 10px;
    }
    .case-review {
        padding: 0 0 20px;
    }
    .process-card {
        height: 100%;
    }
    .process-image {
        width: 100%;
        text-align: center;
        height: 100%;
    }
    .process-image img {
        height: 100%;
        width: 100%;
    }
    .sample-card.reverse.r2 {
        border-radius: 30px;
    }
    .service-title {
        font-size: 20px;
    }
    .service-card {
        width: 100px;
    }
    .services-wrapper {
        gap: 12px;
    }
    .process-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .process-card h3 {
        font-size: 17px;
        line-height: 16px;
    }
    .approval-rate h3 {
        font-size: 17px;
    }
    .investment-details {
        flex-direction: column;
        align-items: flex-start;
    }
    .investment-stage-card {
        height: 100%;
    }


}

@media only screen and (min-width : 768px) and (max-width : 991px) {
    .banner-content {
        padding: 55px 0 50px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 45px;
        line-height: 65px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 18px;
        line-height: 30px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 35px;
        line-height: 60px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 28px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    img.v2 {
        display: none;
    }
    .banner-content ul li {
        font-size: 16px;
    }
    .form .sec-heading h6 {
        font-size: 26px;
    }
    .form .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .form {
        padding: 16px;
    }
    br {
        display: none;
    }
    section.webdesignSec {
        padding: 50px 0 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    ul#counter {
        margin: 0 auto;
    }
    ul#counter li {
        padding: 50px;
    }
    ul#counter li .counter>div {
        font-size: 48px;
    }
    ul#counter:before{
        display: none;
    }
    section.sec-2 {
        padding: 50px 0;
    }
    .services-wrapper {
        flex-direction: column;
    }
    .service-card {
        width: auto;
        height: auto;
        border-radius: 0;
    }
    span.service-title {
        flex-direction: row;
        writing-mode: inherit;
        gap: 1rem;
        font-size: 22px;
        line-height: 23px;
        text-align: left;
    }
    .service-content {
        opacity: 1;
    }
    .service-content p {
        font-size: 16px;
        line-height: 28px;
    }
    .service-card.active {
        width: auto;
        background: transparent;
    }
    .service-card.active .service-title {
        align-items: center;
        flex-direction: row;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .sample-card img {
        position: relative;
        top: 0;
        left: 0;
    }
    .sample-card {
        padding: 20px;
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 22px;
    }
    .sample-details h3 span {
        font-size: 16px;
    }
    .sample-details p {
        font-size: 16px;
    }
    .sample-card.reverse {
        padding: 20px;
        text-align: left;
        border-radius: 30px;
    }
    .sample-card.sam-card2 {
        border-radius: 30px;
    }
    .sample-card.reverse img {
        left: 0;
    }
    section#pricing {
        padding: 50px 0;
    }
    .benefit-card p {
        font-size: 16px;
        line-height: 26px;
    }
    .pckg .upper b {
        font-size: 14px;
        line-height: 20px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22px;
    }
    .slide-detail {
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 20px 10px;
        margin-left: 0;
    }
    .success-stories-slider {
        padding: 10px;
        border-radius: 20px;
    }
    .slide-detail h3 {
        font-size: 20.833px;
        line-height: 24px;
        gap: 1rem;
    }
    .slide-detail p {
        font-size: 14.3px;
        line-height: 20.833px;
    }
    .testi-card {
        padding: 20px;
    }
    .testi-card h4 {
        font-size: 20px;
    }
    .testi-card h4 span {
        display: contents;
    }
    .testi-card p {
        font-size: 16.3px;
        line-height: 28.833px;
    }
    .bottom span {
        font-size: 18px;
        line-height: 16px;
    }
    ul.design-card-list2.slick-vertical.slick-initialized.slick-slider {
        margin-top: 3rem;
    }
    section.faq-sec {
        padding: 50px 0;
    }
    .answer p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 26px;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 22px;
        max-width: 90%;
    }
    .accordion-list>li.active span h3 {
        padding: 15px 10px;
    }
    section.cta-sec .sec-heading {
        padding-top: 0;
    }
    section.cta-sec {
        padding: 50px 0;
        background-image: none !important;
        background: var(--primary);
    }
    .faq-image {
        display: none;
    }
    .footer-top h3 {
        font-size: 22px;
        line-height: 22px;
        text-align: center;
    }
    .footer-top a {
        padding-top: 16px;
    }
    .footer-top {
        text-align: center;
    }
    .footer-sec p {
        padding-top: 10px;
        font-size: 14px;
    }
    footer {
        background-repeat: no-repeat;
        background-size: cover;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    .footer-hdng h4 {
        margin-bottom: 0;
    }
    .ban-img {
        display: none;
    }
    .ben-card2 {
        padding: 15px;
    }
    
    .choose-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .commitment-points h3 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 10px;
    }
    .commitment-points ul li {
        font-size: 14px;
        line-height: 20px;
    }
    .commitment-points {
        margin-top: 2rem;
    }
    img.vec1 {
        display: none;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    ul.overview-nav.d2 a span {
        position: relative;
        right: 0;
        top: 0;
    }
    .casestudy-list p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 22.833px;
        font-size: 14px;
    }
    .casestudy-list div {
        flex-direction: column;
        align-items: flex-start;
    }
    .casestudies h3 {
        font-size: 20.833px;
        line-height: 24px;
    }
    .Keymetrics-wrap {
        margin-bottom: 2rem;
    }
    .Keymetrics-wrap h4 {
        font-size: 20px;
    }
    .case-review p {
        font-size: 14.3px;
        line-height: 22.833px;
    }
    .timeline p {
        font-size: 14px;
        line-height: 18px;
    }
    .commitment-points p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 22px;
    }
    section.nopadding {
        padding: 0 0 50px;
    }
    .inner-text p {
        font-size: 14px;
        line-height: 20px;
    }
    .casestudies2 p {
        font-size: 14px !important;
    }
    .custom-scratch-wrap {
        margin-bottom: 20px;
    }
    .casestudy-list ul li {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 8px;
    }
    .custom-scratch-wrap p b {
        font-size: 14px;
    }
    .industries-list li {
        font-size: 14px;
    }
    .approval-rate p {
        font-size: 14px;
        line-height: 20px;
    }
    .approval-rate {
        margin-top: 1rem;
    }
    .sba-business-card ul li strong {
        font-size: 15px;
        font-weight: 500;
    }
    .sba-business-card ul li {
        font-size: 14px;
    }
    ul.supporting-list li {
        width: 100%;
    }
    .sba-business-card h3 {
        font-size: 18px;
    }
    .process-card span {
        font-size: 43.859px;
        line-height: 46px;
    }
    .investment-pckg-card ul li {
        font-size: 14px;
    }
    .slide-image1 {
        display: none;
    }
    .ben-card2 .bencard2-name {
        padding-bottom: 0;
    }
    .g-0, .gx-0 {
        --bs-gutter-x: 2rem;
    }
    .pckg-plan {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 30px;
    }
    .mmpopup .popup-content {
        padding: 25px 20px;
    }
    .ben-card2 .bencard2-name p {
        line-height: 18px;
        font-size: 14px;
    }
    .bencard2-name {
        gap: 10px;
    }
    .case-review {
        padding: 0 0 20px;
    }
    .input-field1 textarea {
        height: 70px;
    }
    .process-card {
        height: 100%;
    }
    .process-image {
        width: 100%;
        text-align: center;
    }
    img.dnone {
        display: none;
    }
    .sample-card.reverse.r2 {
        border-radius: 30px;
    }
}

@media only screen and (min-width : 280px) and (max-width : 767px) {
    .banner-content {
        padding: 55px 0 50px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 12px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 22px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 0rem;
    }
    .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: 14px;
        line-height: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

    img.v2 {
        display: none;
    }
    .banner-content ul li {
        font-size: 14px;
    }
    .form .sec-heading h6 {
        font-size: 18px;
    }
    .form .sec-heading p {
        font-size: 14px;
        line-height: 20px;
    }
    .form {
        padding: 16px;
        margin-top: 2rem;
    }
    .input-field1 textarea {
        height: 110px;
    }
    br {
        display: none;
    }
    section.webdesignSec {
        padding: 50px 0 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    ul#counter {
        width: auto;
        margin: 0 auto;
    }
    ul#counter li {
        padding: 20px;
    }
    ul#counter li .counter>div {
        font-size: 34px;
    }
    ul#counter:before{
        display: none;
    }
    section.sec-2 {
        padding: 50px 0;
    }
    .services-wrapper {
        flex-direction: column;
    }
    .service-card {
        width: auto;
        height: auto;
        border-radius: 0;
    }
    span.service-title {
        flex-direction: row;
        writing-mode: inherit;
        gap: 1rem;
        font-size: 18px;
        line-height: 23px;
        text-align: left;
    }
    .service-content {
        opacity: 1;
    }
    .service-content p {
        font-size: 14px;
        line-height: 24px;
    }
    .service-card.active {
        width: auto;
        background: transparent;
    }
    .service-card.active .service-title {
        align-items: center;
        flex-direction: row;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .sample-card img {
        position: relative;
        top: 0;
        left: 0;
    }
    .sample-card {
        padding: 20px;
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 22px;
    }
    .sample-details h3 span {
        font-size: 16px;
    }
    .sample-details p {
        font-size: 14px;
    }
    .sample-card.reverse {
        padding: 20px;
        text-align: left;
        border-radius: 30px;
    }
    .sample-card.sam-card2 {
        border-radius: 30px;
    }
    .sample-card.reverse img {
        left: 0;
    }
    section#pricing {
        padding: 50px 0 0;
    }
    .benefit-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .benefit-card h3 {
        font-size: 18px;
    }
    .pckg .upper b {
        font-size: 14px;
        line-height: 20px;
    }
    .pckg .bottom ul li {
        font-size: 14px;
        line-height: 18px;
    }
    .slide-detail {
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 20px 10px;
        margin-left: 0;
    }
    .success-stories-slider {
        padding: 10px;
        border-radius: 20px;
    }
    .slide-detail h3 {
        font-size: 20.833px;
        line-height: 24px;
        gap: 1rem;
    }
    .slide-detail p {
        font-size: 14.3px;
        line-height: 20.833px;
    }
    .testi-card {
        padding: 20px;
    }
    .testi-card h4 {
        font-size: 16px;
    }
    .testi-card h4 span {
        display: contents;
    }
    .testi-card p {
        font-size: 14.3px;
        line-height: 20.833px;
    }
    .bottom span {
        font-size: 16px;
        line-height: 16px;
    }
    ul.design-card-list2.slick-vertical.slick-initialized.slick-slider {
        margin-top: 3rem;
    }
    section.faq-sec {
        padding: 50px 0;
    }
    .answer p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 22px;
    }
    .accordion-list li h3 {
        font-size: 16px;
        line-height: 22px;
        max-width: 90%;
    }
    .accordion-list>li.active span h3 {
        padding: 15px 10px;
    }
    section.cta-sec .sec-heading {
        padding-top: 0;
    }
    section.cta-sec {
        padding: 50px 0;
        background-image: none !important;
        background: var(--primary);
    }
    .faq-image {
        display: none;
    }
    .footer-top h3 {
        font-size: 22px;
        line-height: 22px;
        text-align: center;
    }
    .footer-top a {
        padding-top: 16px;
    }
    .footer-top {
        text-align: center;
    }
    .footer-sec p {
        padding-top: 10px;
        font-size: 14px;
    }
    footer {
        background-repeat: no-repeat;
        background-size: cover;
    }
    .footer-hdng {
        padding-top: 20px;
    }
    .footer-hdng h4 {
        margin-bottom: 0;
    }
    .ban-img {
        display: none;
    }
    .ben-card2 {
        padding: 15px;
    }
    .choose-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .choose-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .commitment-points h3 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 10px;
    }
    .commitment-points ul li {
        font-size: 14px;
        line-height: 20px;
    }
    .commitment-points {
        margin-top: 2rem;
    }
    img.vec1 {
        display: none;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    ul.overview-nav.d2 a span {
        position: relative;
        right: 0;
        top: 0;
    }
    .casestudy-list p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 22.833px;
        font-size: 14px;
    }
    .casestudy-list div {
        flex-direction: column;
        align-items: flex-start;
    }
    .casestudies h3 {
        font-size: 20.833px;
        line-height: 24px;
    }
    .Keymetrics-wrap {
        flex-direction: column;
        gap: 1rem;
    }
    .Keymetrics-wrap h4 {
        font-size: 20px;
    }
    .case-review p {
        font-size: 14.3px;
        line-height: 22.833px;
    }
    .timeline p {
        font-size: 14px;
        line-height: 18px;
    }
    .commitment-points p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 22px;
    }
    section.nopadding {
        padding: 0 0 50px;
    }
    .process-card p {
        font-size: 14px;
        line-height: 20px;
    }
    .process-image {
        display: none;
    }
    .g-4, .gy-4 {
        --bs-gutter-y: 0.5rem;
    }
    .inner-text p {
        font-size: 14px;
        line-height: 20px;
    }
    .casestudies2 p {
        font-size: 14px !important;
    }
    .custom-scratch-wrap {
        margin-bottom: 20px;
    }
    .casestudy-list ul li {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 8px;
    }
    .custom-scratch-wrap p b {
        font-size: 14px;
    }
    .industries-list li {
        font-size: 14px;
    }
    .approval-rate p {
        font-size: 14px;
        line-height: 20px;
    }
    .approval-rate {
        margin-top: 1rem;
    }
    .sba-business-card ul li strong {
        font-size: 15px;
        font-weight: 500;
    }
    .sba-business-card ul li {
        font-size: 14px;
    }
    ul.supporting-list li {
        width: 100%;
    }
    .sba-business-card h3 {
        font-size: 18px;
    }
    .app-wrapper {
        flex-direction: column;
        gap: 0;
    }
    .process-card span {
        font-size: 43.859px;
        line-height: 46px;
    }
    .investment-pckg-card ul li {
        font-size: 14px;
    }
    .mmpopup .centercont h3 span {
        font-size: 26px;
        line-height: 30px;
    }
    .mmpopup .popup-content {
        padding: 25px 20px;
    }
    .slide-image1 {
        border-radius: 22px;
        overflow: hidden;
    }

    ul.overview-nav.d2 {
        gap: 5px;
        padding: 2px;
    }
    ul.overview-nav.d2 a {
        padding: 12px 10px;
        font-size: 14px;
    }


}