/*Main Css */
:root {
    --primary: #49BD44;
    --secondary: #1E1E1E;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Kanit", sans-serif;
    --font-accent: "Manrope" , sans-serif;
    --font-body: "Manrope", sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }

::selection {
    background: #0dcaf0ba;
    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: #49BD44;
}

/* Tabbing CSS */

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

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

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: var(--black);
}

body.inner-header {
    /* padding-top: 100px; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: var(--font-heading);
}

*: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;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}

.pad-l-zero {
    padding-left: 0px;
}

.pad-r-zero {
    padding-right: 0px;
}

.ovr-hiddn {
    overflow: hidden;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}

.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/
header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: fixed;
    background: transparent;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}

header.sticky{
    background: white;
    /* box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%); */
    /* top: 0; */
    color: black;
}

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    display: block;
}

.logo img {
    /* display: block; */
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 35px;
}

.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--white);
    /* text-transform: uppercase; */
    font-weight: 800;
}

.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 400 !important;
}

.header-btn:hover{
    transform: scale(1.03);
}

.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }

100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }

}
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }

99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }

100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }

}

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}

.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@keyframes slide{
    0% {
      height: 0;
    }

100% {
      height: auto;
    }

}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}

.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.chev.rotate {
    transform: rotate(180deg);
}

.chev {
    transition: .5s ease;
}

/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }

100% {
        top: 115px;
        opacity: 0;
    }

}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }

100% {
        top: 40px;
        opacity: 1;
    }

}

/* Main Banner CSS */
.mainBanner {position: relative;z-index: 0;}

.banner-content {
    padding: 90px 0 100px;
}

h1.banner-heading {
    font-size: 55px;
    margin-bottom: 2rem;
    font-weight: 200;
    color: var(--white);
}

span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}

p.banner-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 2rem;
    color: #5F5F5F;
}

/* Accordian-ds */
.accordion-list-ds {
    position: relative;
}

.accordion-list-ds li {
    padding: 20px 35px 30px 0px;
    background: transparent;
    margin: 10px 0px 0px 0rem;
    border-bottom: 2px solid white;
    width: 90%;
    margin-left: 0;
}

ul.accordion-list-ds li span {
    display: flex;
    position: relative;
}

ul.accordion-list-ds li h3:after {
    content: "\2b";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}

.accordion-list-ds li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}

ul.accordion-list-ds li.active h3:after {
    content: "\f068";
}

.answer p {
    margin-top: 10px;
    font-size: 16px;
    color: #666666;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 25.483px;
}

/* Accordian-ds */

/* Accordian */
.accordion-list {
    position: relative;
}

.accordion-list li {
    padding: 30px 30px 30px 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #D1D5DB;
    background: white;
    border-radius: 0px;
    margin: 10px 0px;
}

ul.accordion-list li span {
    display: flex;
    position: relative;
}

.accordion-list li h3 {
    color: #666666;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    width: 97%;
}

ul.accordion-list li h3:after {
    content: "\2b";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}

.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}

ul.accordion-list li.active h3:after {
    content: "\f068";
}

/* Accordian */

/* popup */

.mmpopup {
    text-align: center;
    padding: 45px 25px 25px;
}

.mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
}

.mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #D1D5DB;
    overflow: hidden;
}

.mmpopup .centercont h4 {
}

.mmpopup .centercont h4 span {
    color: #86cb92;
}

.mmpopup .centercont h4 span span {
    display: none;
}

.mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
}

.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: var(--white);
    border-radius: 10px;
    margin-right: 20px;
}

.mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: var(--black);
    padding-bottom: 12px;
}

.form-group.field {
    text-align: start;
}

.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 {
}

.mmpopup .centercont h3 span {
    display: block;
    margin: 0 30px;
}

.mmpopup .centercont h4 span {
    font-weight: 700;
    color: var(--black);
    font-size: 60px;
}

.fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: var(--white);
    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-radius: 5px;
   background-color: var(--primary);
    width: 100%;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    cursor: poRoboto;
    transition: 0.5s;
    font-family: 'Inter';
    height: 59px;
    cursor: pointer;
    border: 0;
}

.fld-btn button i {
    padding-left: 12px;
}

.fld-btn button:hover {
   transform:scale(1.03);
}

/* popup */

/* 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: transparent;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    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 {
    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: var(--primary);
    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: start;
    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: 45px;
    color: #141515;
    margin-bottom: 10px;
    font-weight: 500;
  }

.mmpopup .centercont h4 {
  }

.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: #4ebd4b;
    text-align: center;
  }

.mmpopup .centercont h3 {
  }

.mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 36px;
    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 var(--primary);
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
    background: var(--primary);
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}

.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mmpopup .fld-input {
    height: 50px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #D1D5DB;
    overflow: hidden;
}

.mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    text-align: start;
    margin: 0;
  }

/* popup */

/* packages */
.pckg-sec{
    background: #f5f5f5;
}

.pkg-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
    margin-top: 2rem;
}

.pkg-list .g-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pkg-list .d2 .pckg {
    border: 1px solid #E5E7EB;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.pkg-list .d2 .pckg .upper {
    text-align: center;
}

.pkg-list .d2 .pckg .upper .price {
    justify-content: center;
}

.pkg-list .d2 .pckg .upper .title {
    font-size: 24px;
    line-height: 24px;
}

.pkg-list .d2 .pckg .upper .price .amount {
    font-weight: 800;
    font-size: 70px;
    line-height: 85px;
}

.pkg-list .d2 .pckg .bottom p {
    font-size: 18px;
    line-height: 26px;
    color: #6B7280;
}

.pckg.d2{
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.pckg.d2 .upper .title {
    font-size: 24px;
    line-height: 24px;
}

.pckg.d2 .upper {
    text-align: center;
}

.pckg.d2 .upper .price {
    justify-content: center;
}

.pckg.d2 .upper .price .amount {
    font-size: 70px;
    line-height: 85px;
}

.pckg.d2 .bottom .hdng {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #525AEC;
    margin-bottom: 1rem;
}

.pckg.d2 .bottom p {
    color: #6B7280;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 1rem;
}

.pckg {
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    background: var(--white);
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    border-radius: 22px;
    border: 1px solid transparent;
    height: 100%;
}

.pckg .btn-wrap a{
    font-weight: 600;
    font-size: 18px;
}

.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}

.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}

.pckg .upper .title {
    font-size: 23px;
    line-height: 34px;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    border-radius: 14px 14px 0px 0px;
    background: linear-gradient(0deg, #171E22 0%, #171E22 100%), #000;
    width: 100%;
    border-bottom: 2px solid white;
}

.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}

.pckg .upper p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 1.5rem;
    padding: 0px 30px;
}

.pckg .upper .price {
}

.pckg .upper .price .amount {
    font-weight: 900;
    font-size: 55px;
    line-height: 40px;
}

.pckg .upper .price .uspto {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #5b5b5b;
}

.pckg .bottom .includes {
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}

.bottom span {
   font-size: 16px;
   line-height: 24px;
   font-weight: 600;
   margin-bottom: 10px !important;
}

.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}

span.tag {
    background: #FBBF24;
    color: #0B0B0B;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 32px;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52%;
}

.pckg:hover {
    border: 1px solid #000000;
    background-color: #171E22;
    color: var(--white);
}

/*------add-css------*/
.pckg.popular {
    background: #283068;
    transform: scale(1.03);
}

.pckg.popular .title {
    color: var(--white);
}

.pckg.popular p {
    color: var(--white);
}

.pckg.popular .uspto {
    color: var(--white) !important;
}

.pckg.popular .bottom span {
    color: var(--white);
}

.pckg.popular .bottom ul li {
    color: var(--white);
}

.pckg.popular .btn-wrap .theme-btn {
    background: #fbbf24 !important;
    color: #000 !important;
    padding: 16px 24px;
}

.pckg.popular .amount {
    color: #fbbf24 !important;
}

.pckg.popular .bottom ul li::before {
    color: #fbbf24;
}

/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}

.sec-heading h2 {
    color: #1C1C1C;
    font-size: 58px;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 200;
     /* 100% */
}

.sec-heading.white h2{
    color: var(--white);
}

.sec-heading p {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    width: 68%;
    /* padding-bottom: 30px; */
    line-height: normal;
}

.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: 15px 20px !important;
    background: var(--white);
    color: var(--black);
    border-radius: 8px;
    border: 2px solid #000000;
    transition: .5s ease;
    width: 250px !important;
}

.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}

.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 */

/* footer */

.copyright p,.copyright a {
    color: var(--white);
}

ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}

/* footer */

/* Portfolio  */
.mt-200 {
    margin-top: 200px;
}

.port-slide .det {
    padding: 10px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.port-slide .det span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-heading);
}

.port-slide .det a {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #31A8FE;
    /* text-decoration: underline; */
    border-bottom: 1px solid;
}

.portfolio-slider {
    position: relative;
    /* display: flex; */
    /* align-items: center; */
}

.portfolio-slider .port-slide img{
    width: 100%;
}

a.arrow-btn {
    position: absolute;
    top: calc(50% - 54px);
    width: 60px;
    height: 60px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    font-size: 24px;
    color: #333;
    box-shadow: 0px 1.32566px 14px rgba(0, 0, 0, 0.08);
}

.portfolio-slider a.arrow-btn.right.slick-arrow {
    right: 8%;
}

.portfolio-slider a.arrow-btn.left.slick-arrow {
    left: 8%;
}

/* Portfolio  */

/* Testimonials */
.testimonials {
    background: #002C4F;
    position: relative;
    /* color: white; */
    padding-bottom:100px;
    overflow: hidden;
}

.testimonials::before{
    content: "";
    background: url('../images/testi.webp') no-repeat;
    width: 300px;
    height: 100%;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.rating span {
    color: #34A585;
    font-weight: 500;
    font-size: 50px;
    line-height: 30px;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.rating p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--white);
}

.rating {
    margin-bottom: 50px;
}

.testi-card {
    background: var(--white);
    padding: 30px;
    box-shadow: 4px 4px 64px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.testi-card::before{
    content: '';
    background: url('../images/qoute.webp') no-repeat;
    
    width: 65px;
    height: 40px;
    position: absolute;
    background-size: contain;
    z-index: -1;
}

.testi-card p {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #555555;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.testi-card .client {
    gap: 10px;
    display: flex;
    align-items: center;
}

.testi-card .client .det .name {
    color: #34A585;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--font-heading);
}

.testi-card .client .det .des {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #C9C9C9;
}

.testi-card .client .det {
    display: flex;
    flex-direction: column;
}

.overlap-slider {
    position: absolute;
    width: 180%;
}

.arrows {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.testimonials .slick-slide {
    margin: 20px 15px;
}

/* Testimonials */

/* Testimonials 2 */
.testi-slider-2 .testi-slide {
    background: #F1EDFF;
    box-shadow: -3px 3px 0px #0B0B0B;
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.testi-slider-2 .testi-slide p {
    color: #302357;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.testi-slider-2 .testi-slide .bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.testi-slider-2 .testi-slide .client {
    margin-top: 1rem;
}

.testi-slider-2 .testi-slide .client .det .name {
    font-weight: 500;
    font-size: 26px;
    line-height: 39px;
    color: #0B0B0B;
}

.testi-slider-2 .testi-slide .client .det .des {
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}

.testi-slider-2 .testi-slide .bottom .stars {
    background: #407BFF;
    border-radius: 42px;
    padding: 10px 20px;
    color: #00F000;
    display: flex;
    font-size: 12px;
    gap: 8px;
}

/* Testimonials 2 */


.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;
}

.design-card-list li .indusrtry-name,
.design-card-list-2 li .indusrtry-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 50px;
    position: absolute;
    width: auto;
    height: 66px;
    bottom: 20px;
    z-index: 1;
    background: rgb(0 0 0 / 50%);
    border-radius: 25px;
    opacity: 0;
    transition: .5s ease;
}

.design-card-list li:hover .indusrtry-name,
.design-card-list-2 li:hover .indusrtry-name {
    opacity: 1;
}

.indusrtry-name p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.rated {
    margin-bottom: 1rem;
}

.color-dark {
    color: #212121 !important
}

.color-2 {
    color: #2D2D2D !important
}

.mt-responsive {
    margin-top: 20px;
}

.rated p {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: var(--black);
    padding: 1rem 0;
}

/* Portfolio */
ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

ul.overview-nav.d2 a {
    padding: 16px 25px;
    border-radius: 0;
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    border-bottom: 2px solid;
}

ul.overview-nav.d2 li.active a {
    color: var(--black);
    border-bottom: 2px solid #6beb67 !important;
    /* background: #69ed65; */
}

.port-card {
    margin-bottom: 1.5rem;
}

.port-card img {
    width: 100%;
}

/* Portfolio */

/* -------------------------counter CSS------------------------  */
ul#counter {
    display: flex;
    align-items: center;
}

.counter-wrapper .counter {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.counter-wrapper .counter span.count {
    font-weight: 600;
    font-size: 72px !important;
    color: #171E22;
    font-family: 'Kanit';
}

ul#counter li .counter>div {
    font-weight: 700;
    font-size: 60px;
    color: #171E22;
}

ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 0rem;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul#counter li .counter span.text {
    font-size: 16.3px;
    line-height: 1px;
    text-align: center;
}

/* -------------------------counter CSS------------------------  */

/* -------------------------contact us-------------------------- */
.input-field1 label {
    padding-left: 10px;
    color: #292929;
    font-weight: 500;
    padding-bottom: 8px;
}

.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    height: 100%;
    padding: 20px 10px;
    font-size: 16px;
    margin-bottom: 20px !important;
    color: var(--white);
    font-weight: 400;
    background: transparent;
    width: 100%;
    border: none;
    border-bottom: 1px solid white;
}

.input-field1 textarea {
    height: 58px;
}

.send {
    text-align: left;
    padding-top: 35px;
    display: flex;
    align-items: baseline;
}

.send input[type="submit"] {
    height: 70px;
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    border: 0;
    padding: 12px 50px;
    border-radius: 50px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    background-color: #0b5d51;
}

.details h5 {
    font-size: 18px;
    padding-bottom: 20px;
    color: #202529;
}

.details a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.details {
    margin-bottom: 40px;
}

.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
    height: 40px;
    width: 40px;
    background: #008576;
    border-radius: 50px;
    text-align: center;
}

.social-icons li a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}

.details a i, .details p i {
    color: #008576;
    padding-right: 12px;
}

/* -------------------------contact us-------------------------- */

/* ---------------------------footer------------------------------- */
footer {
    background: var(--black);
    padding: 62px 0 0px 0px;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 50px;
    margin-top: 50px;
    border: 1px solid white;
    border-radius: 90px;
    width: 80%;
    margin: auto;
}

.copyright p,.copyright a {
    color: var(--white);
}

ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-sec p {
    color: var(--white);
    line-height: 1.5;
    font-size: 16px;
    padding-top: 33px;
}

.footer-hdng h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.f-menu li a {
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}

.footer-hdng p {
    color: var(--White);
    line-height: normal;
    padding-bottom: 16px;
}

.hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hours p {
    color: var(--White);
    font-size: 16px;
}

.f-menu li a i {
    color: var(--primary);
    margin-right: 10px;
}

.f-menu li {
    line-height: 2;
}

.f-link li {
    width: 40.8px;
    height: 40.8px;
    background: var(--primary);
    border-radius: 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}

/* 404 */

/* terms */
.terms .roman {
    list-style: upper-roman;
}

.terms ul {
    /* padding-left: 40px; */
    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: 1rem 0;
}

.terms p {
    margin-bottom: 2rem;
}

/* terms */

@media (max-width: 1440px) {
        ul li .counter {
        width: 300px !important;
        height: 155px !important;
    }

.banner-slider-main {
    left: 120px !important;
    width: 85% !important;
}

.extr-ecommerce span h3 {
    font-size: 26px !important;
}

}

@media (max-width: 1400px) {
.banner-slider-main {
    width: 93% !important;
}

h1.banner-heading {
    font-size: 50px !important;
}

ul li .counter {
    width: 252px !important;
    height: 155px !important;
}

.counter-wrapper .counter span.count {
    font-size: 55px !important;
}

ul#counter li .counter span.text {
    font-size: 15px !important;
}

ul#counter li .counter>div {
    font-size: 54px !important;
}

.sec-work-text h2 {
    font-size: 48px !important;
}

.sec-work-text p {
    font-size: 20px !important;
    line-height: 28px !important;
}

.sec-work-opt-text p {
    font-size: 16px !important;
}

.store-card p {
    font-size: 20px !important;
}

.extr-ecommerce span h3 {
    font-size: 24px !important;
}

.sec-heading h2 {
    font-size: 50px !important;
}

.contact p {
    font-size: 14px !important;
}

.send label {
    font-size: 12px !important;
}

a.theme-btn {
    font-size: 15px !important;
}

.f-menu li a {
    font-size: 14px !important;
}

.footer-review-container p {
    font-size: 18px !important;
}

.banner-slider-main {
    left: 120px !important;
    width: 82% !important;
}

ul.banner-slider-opt p {
    font-size: 15px !important;
    line-height: 20px !important;
}

ul li .counter:hover .btn-arrow {
    left: 200px !important;
}

.btn-secondary {
    /* padding: 13px 30px 11px 30px !important; */
}

.ds-development-services-text h2 {
    font-size: 50px !important;
}

ul li .counter:hover .btn-arrow2 {
    left: 470px !important;
}

ul li .counter:hover .btn-arrow3 {
    right: 302px !important;
}

.sec-1-about ul li {
    font-size: 20px !important;
}

.sec-1-about p {
    font-size: 19px !important;
    line-height: 30px !important;
    margin: 20px 0px !important;
}

.sec-1-about h2 {
    margin: 30px 0px !important;
}

.sec-review-text h2 {
    font-size: 50px !important;
}

.accordion-list-ds li span h3 {
    font-size: 25px !important;
}

ul.accordion-list-ds li p {
    font-size: 16px !important;
    line-height: 30px !important;

}

.banner-content.faqs-ext h1 {
    font-size: 45px !important;
    line-height: 55px !important;
}

li.btn-feature a {
    padding: 15px 10px !important;
}

.sec-1-web-text h2 {
    font-size: 45px !important;
}

.sec-1-web-text p {
    font-size: 20px !important;
    line-height: 35px !important;
}

.sec-features-text h3 {
    font-size: 45px !important;
}

.sec-features-text p {
    font-size: 20px !important;
    line-height: 30px !important; 
}

.btn-span {
    font-size: 12px !important;
}

.sec-2-web-text h2 {
    font-size: 45px !important;
}

.sec-2-web-text p {
    font-size: 16px;
    font-weight: 400;
}

span.round {
    height: 40px !important;
    width: 40px !important;
    font-size: 16px !important;
}

.opt-sec-2-web h3 {
    font-size: 20px !important;
}

.opt-sec-2-web p {
    font-size: 14px !important;
    line-height: 21px !important;
    margin: 6px 0px !important;
}

.sec3-web-text h3 {
    font-size: 35px !important;
}

.sec-5-web-text ul li {
    font-size: 18px !important;
    margin: 20px 20px !important;
}

section.sec-ex-online {
    background-position: 60% 0% !important;
}

}


@media (max-width: 1200px) {
    header{
        padding: 1rem 0;
    }

.btns{
        margin: 1.5rem 0;
    }

.dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }

.dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }

.form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }

.form-head{
        padding: 1rem;
    }
    
.checkbox-div{
    display:inline;
    align-items: center;
    gap:5px;
}
    

.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;
        z-index: 109;
    }

.menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: var(--white);
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        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: var(--white);
        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;
    }

.ds-development-services-text h2 {
        padding-top: 120px !important;
        font-size: 40px !important;
    }

.banner-slider-main {
        left: 0px !important;
        width: 100% !important;
        bottom: -110px !important;
    }

}

@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    
        .banner-content.online-extra h1
 {
        color: white !important;
        font-weight: 600;
        padding: 50px 0px 0px 0px;
        text-shadow: 0px 5px 10px black;
    }
    
    section.review {
    padding: 0rem 0px 1rem 0px;
}

    .number-contant-text a {
    font-size: 16px !important;
}

.number-contant-text h3 {
    font-size: 18px !important;
}

button.theme-btn1 {
    font-size: 14px;
    padding: 13px 10px;
}




ul.accordion-list-ds.extr-ecommerce .btn-wrap{
 display:block !important;
 width: 80% !important;
}

ul.accordion-list-ds.extr-ecommerce .btn-wrap .theme-btn{
 width: 100% !important;
}

.overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }

.banner-slider-main {
    left: 0px !important;
    width: 100% !important;
    bottom: -180px !important;
}

.banner-content p {
    font-size: 14px !important;
    line-height: 22px !important;
}

h1.banner-heading {
    font-size: 40px !important;
}

.sec-1-about h2 {
    font-size: 35px !important;
}

.sec-1-about ul li {
    font-size: 16px !important;
    line-height: 30px !important;
    margin-bottom: 10px !important;
}

.sec-1-about p {
    font-size: 17px !important;
    line-height: 22px !important;
    margin-bottom: 10px !important;
}

.sec-work-text h2 {
    font-size: 35px !important;
    line-height: 40px !important;
}

.sec-work-text p {
    font-size: 17px !important;
    line-height: 22px !important;
}

.sec-work-opt-text h2 {
    font-size: 20px !important;
}

.sec-review-text p {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.sec-heading h2 {
    font-size: 40px !important;
}

.sec-heading p {
    font-size: 17px !important;
}

.accordion-list li h3 {
    font-size: 16px !important;
}

.answer p {
    font-size: 15px !important;
}

.banner-form h4 {
    font-size: 33px !important;
    line-height: 35px !important;
}

a.theme-btn.popstatic {
    /* padding: 10px 10px !important; */
    /* font-size: 12px !important; */
}

input#subscribe {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.send label {
    font-size: 11px !important;
}

ul.icons li i {
    padding: 0px 10px !important;
}

.sub-div-last p {
    font-size: 12px !important;
}

.stars-desc-container {
    text-align: center !important;
}

.copyright p, .copyright a {
    line-height: 24px !important;
}

.f-menu li a {
    font-size: 13px !important;
}

.copyright {
    padding: 20px 20px !important;
}

.ds-development-services-text h2 {
    padding-top: 120px !important;
    font-size: 40px !important;
}

ul.accordion-list-ds li p {
    font-size: 12px !important;
    line-height: 20px !important;
}

.accordion-list-ds li span h3 {
    font-size: 22px !important;
}

.accordion-list-ds li {
    margin: 0 !important;
}

.ds-development-services-text p {
    font-size: 14px !important;
    line-height: 20px !important;
    margin-bottom: 30px !important;
}

.accordion-list-ds li span h3 {font-size: 18px !important;}

.store-card-image p {
    font-size: 16px !important;
    line-height: 25px !important;
}

.contact p {
    font-size: 12px !important;
    padding: 0px 10px 10px 45px !important;
}

.contact-para p {
    padding: 10px 2px !important;
}

.copyright p, .copyright a {
    line-height: 20px !important;
}

.banner-content.faqs-ext h1 {
    font-size: 34px !important;
    line-height: 37px !important;
}

ul.overview-nav.d2 a {
    font-size: 15px !important;
}

.sec-review-text h2 {
    font-size: 45px !important;
    margin-bottom: 10px !important;
}

li.btn-feature a {
    padding: 10px 6px !important;
    font-size: 10px !important;
}

.pckg .upper .title {
    font-size: 18px !important;
}

.pckg .upper p {
    font-size: 15px !important;
    line-height: 20px !important;
}

.pckg .upper .price .amount {
    font-size: 45px !important;
}

.pckg .upper .price {
    margin: 10px 0px !important;
}

.pckg .bottom ul li:not(.last) {
    margin: 15px 0px !important;
}

.btn-wrap span img {
    height: 18px !important;
}

.pckg .btn-wrap a {
    font-size: 16px !important;
}

.btn-web {
    /* font-size: 12px !important; */
    color: var(--black) !important;
    padding: 10px 25px !important;
}

.dev-btn {
    margin-bottom: 15px !important;
}

.banner-content p {
    font-size: 12px !important;
}

.sec-1-web-text p {
    font-size: 16px !important;
    line-height: 29px !important;
}

.sec-2-web-text h2 {
    font-size: 34px !important;
}

.sec-2-web-text p {
    font-size: 14px !important;
    line-height: 20px !important;
}

.opt-sec-2-web h3 {
    font-size: 18px !important;
    line-height: 20px;
}

.opt-sec-2-web p {
    font-size: 12px !important;
}

.sec-1-web-text h2 {
    font-size: 30px !important;
}

.sec-5-web-text h3 {
    font-size: 30px !important;
    line-height: 40px !important;
}

.sec-features-text p {
    font-size: 16px !important;
    line-height: 25px !important;
}

.sec-features-text h3 {
    font-size: 32px !important;
}

.btn-feature-a {
    font-size: 14px !important;
}

.counter-wrapper {
    top: -150px !important;
}

ul li .counter:hover .btn-arrow {
    height: 40px !important;
    width: 40px !important;
    left: 170px !important;
}

ul li .counter:hover .btn-arrow2 {
    height: 40px !important;
    width: 40px !important;
    left: 400px !important;
}

ul li .counter:hover .btn-arrow3 {
    height: 40px !important;
    width: 40px !important;
    right: 264px !important;
    top: 40px !important
}

ul li .counter:hover .btn-arrow4 {
    height: 40px !important;
    width: 40px !important;
    right: 40px !important;
}

}

@media only screen
and (min-width : 768px)
and (max-width : 991px) {

    .banner-slider-main {
        left: 0px !important;
        width: 100% !important;
        bottom: -110px !important;
    }

.dev-btn a {
    margin-bottom: 10px;
    width: 100%;
}

.banner-form p {
    padding: 0px 10px 0px 0px !important;
}

.contact {
    padding: 20px 20px;
}


ul.banner-slider-opt p {
    font-size: 12px !important;
}

.features-ul {
    justify-content: center !important;
}

.sec-features-img img {
    height: 100%;
}
    
section.second-mainBanner.faqs-sec {
    height: 500px !important;
}

    section.sec-1-web {
    padding-top: 100px;
}

section.second-mainBanner.online-ext-banner {
    height: 100% !important;
    /* padding: 0px 0px 0px !important; */
}

.banner-content.online-extra h1 {
    color: white !important;
    font-weight: 600;
    padding: 50px 0px 0px 0px;
    text-shadow: 0px 5px 10px black;
}


.banner-slider-opt {
    gap: 5px !important;
}

.counter-wrapper {
    width: 750px !important;
    left: 0px !important;
}

ul li .counter {
    width: 100% !important;
}

ul#counter li .counter>div {
    font-size: 32px !important;
}

.counter-wrapper .counter span.count {
    font-size: 40px !important;
}

ul#counter li .counter span.text {
    font-size: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
}

ul li .counter:hover p {
    font-size: 10px !important;
}

.counter-wrapper .counter {
    gap: 5px !important;
}

ul li .counter:hover {
    padding: 15px 15px !important;
}

a.theme-btn.popstatic.btn-secondary {
    padding: 5px 10px 4px 10px !important;
    font-size: 14px !important;
}

a.chatBtn {
    padding: 12px 10px !important;
    font-size: 15px !important;
    width: 100% !important;
    margin: 10px 0px;
}

a.chatBtn span i {
    font-size: 12px !important;
}

.extr-ecommerce li.active {
    padding: 11px 10px 0px 10px !important;
}

a.theme-btn.popstatic {
    /* font-size: 10px !important; */
}

.accordion-list-ds li span h3 {
    font-size: 16px !important;
}

.logo img {
    height: 60px;
    width: 160px;
}

.logo-white-header img {
    height: 60px;
    width: 160px;
}

ul.accordion-list-ds {
    align-items: center;
    width: 100%;
}

.accordion-list-ds li {
    width: 100% !important;
}

.sec-work-opt-text {
    margin: 10px 0px 20px 0px !important;
}

section#portfolio {
    padding: 0 !important;
}

section.pt-0 {
    padding: 0 !important;
}

}

@media only screen
and (min-width : 414px)
and (max-width : 768px) {

.ds-development-services-text{
    padding: 120px 0px 0px 0px;
}

.copyright {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0px !important;
    margin: 10px 20px 0px 20px;
}

.stars-desc-container {
    padding: 20px 0px;
}

.sec-work-opt-text{
    margin-bottom: 4px !important;
}

.send {
    margin-bottom:20px;
}

section#portfolio {
    padding-top: 0px;
}

.banner-form p {
    padding: 0px 0px !important;
}


.ecommerce-slider-2 {
    padding: 90px 0px 0px 0px;
}

.sec-work-opt-text
 {
    height: 250px !important;
}

    .accordion-list-ds li {
        margin-top: 10px !important;
    }

    ul.accordion-list-ds.extr-ecommerce .btn-wrap .theme-btn {
        margin-bottom: 10px !important;
    }

.sec-review-img {
    text-align: center;
}

.banner-slider-main {
    display: none;
}

.counter-wrapper .counter{
    margin-bottom: 20px;
}

section.sec-1 {
    padding: 70px 0px;
}

}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
/* Styles */
}

/* iPhone 6-8 Plus */
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : portrait) {
/* Styles */
}

@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : landscape) {
/* Styles */
}

/* iPhone 6-8  */
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : portrait) {
/* Styles */
}

@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : landscape) {
/* Styles */
}

/* Android (Pixel 2) */
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : portrait) {
/* Styles */
}

@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : landscape) {
/* Styles */
}

/* Iphone X */
@media only screen
and (min-width : 375px)
and (max-width : 734px)
and (orientation : portrait) {

}

@media only screen and (min-width: 375px) and (max-width: 736px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .sec-2-web-text h2 {
    font-size: 26px !important;
}

    .sec-work-opt-text.features-addi {
    height: 100% !important;
    margin-bottom: 0px !important;
}

    .banner-content.features-extra {padding: 0px 0px !important;}

section.second-mainBanner.features-banner {
    height: 440px !important;
}

.banner-content.features-extra h1 {
    text-align: center !important;
    padding-top: 100px !important;
}

ul.overview-nav.d2 {
    display: none !important;
}

.banner-slider-main.features-slider {
    bottom: -150px !important;
}

.sec-features-text {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}


.banner-content.faqs-ext.web-extra.theme-extra h1 {
    text-align: center !important;
    font-size: 40px !important;
}

.banner-content.faqs-ext.web-extra.theme-extra p {
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: 15px !important;
}

.sec-1-web-text h2 {
    font-size: 27px !important;
}

.banner-slider-main.faqs-slider {
    bottom: -220px !important;
}

section.sec-ex-online {
    background-position: 30% 0% !important;
}

section.sec-1-web {
    padding-top: 120px !important;
}

.banner-slider-main.faqs-slider.fqext-slide {bottom: -140px !important;}

    section.chooseus-sec.pt-8 {
    padding: 0 !important;
}


.banner-slider-main.online-slider {
    bottom: -250px !important;
}
    .sec-work-text h2 {
    font-size: 26px !important;
}

.sec-work-text p {
    font-size: 15px !important;
}

.sec-review-text p {
    margin: 0 !important;
    width: 100% !important;
}

section.second-mainBanner.faqs-sec {
    height: 400px !important;
}

.sec-1-about {
    padding: 0px 5px 0px 20px !important;
}

section.second-mainBanner {
    height: 620px !important;
}

.sec-1-about h2 {
    font-size: 26px !important;
    margin: 40px 0px 20px 0px !important;
}

.sec-1-about p {
    font-size: 15px !important;
    margin: 0px 0px 30px 0px !important;
}

.menuWrap {
    justify-content: space-between !important;
}

.menu-Bar a.logo-white-header {
    display: block !important;
}
    
ul.banner-slider-opt p {
    font-size: 12px !important;
}

.banner-slider-opt {
    gap: 5px !important;
}

.counter-wrapper {
    width: 100% !important;
    left: 0px !important;
}

ul li .counter {
    width: 100% !important;
}

ul#counter li .counter>div {
    font-size: 32px !important;
}

.counter-wrapper .counter span.count {
    font-size: 40px !important;
}

ul#counter li .counter span.text {
    font-size: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
}

ul li .counter:hover p {
    font-size: 10px !important;
}

a.theme-btn.popstatic.btn-secondary {
    padding: 5px 10px 4px 10px !important;
    font-size: 14px !important;
}

a.chatBtn {
    padding: 5px 5px !important;
    font-size: 12px !important;
    width: 100% !important;
}

a.chatBtn span i {
    font-size: 12px !important;
}

.extr-ecommerce li.active {
    padding: 11px 10px 0px 10px !important;
}

a.theme-btn.popstatic {
    font-size: 10px !important;
}

.accordion-list-ds li span h3 {
    font-size: 16px !important;
}

.logo img {
    height: 60px;
    width: 160px;
}

.logo-white-header img {
    height: 60px;
    width: 160px;
}

ul.accordion-list-ds {
    align-items: center;
    width: 100% !important;
}

.accordion-list-ds li {
    width: 100% !important;
}

.sec-work-opt-text {
    margin: 10px 0px 20px 0px !important;
}

section#portfolio {
    padding: 0 !important;
}

section.pt-0 {
    padding: 0 !important;
}

header{
        padding: 1rem 0;
    }

.banner-content {
        padding: 80px 0 20px !important;
    }

span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }

.sec3-web-text h3 {
    /* text-shadow: 0px 2px 10px black !important; */
    font-size: 26px !important;
    line-height: 1.7 !important;
}

.banner-content.faqs-ext.web-extra.theme-extra h1 {
    /* text-align: left !important; */
}

.banner-content.faqs-ext.web-extra.theme-extra p {
    /* text-align: left !important; */
    /* width: 70% !important; */
}

h1.banner-heading {
        font-size: 26px !important;
        line-height: 30px !important;
        margin-bottom: 1rem !important;
    }

p.banner-text {
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 25px !important;
    }

.btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }

.btn-wrap a {
        text-align: center !important;
    }

.banner-img {
        display: none;
    }

.sec-heading.sec-1-p {
    margin-top: 60px !important;
}

.banner-content.faqs-ext h1 {
    text-align: center !important;
}

.sec-heading h2 {
        font-size: 26px !important;
        line-height: 30px !important;
    }

.sec-heading p {
        font-size: 14px !important;
        line-height: 22px !important;
    }

.sec-heading .sub-heading {
        margin-bottom: .5rem !important;
    }

.copyright {
        flex-direction: column !important;
        gap: 20px !important;
        border: none !important;
    }

ul li .counter:hover .btn-arrow3 {
    top: 215px !important;
}

.end-div {
    align-items: center !important;
}

.start-div {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
}

ul li .counter:hover .btn-arrow4 {
    top: 200px !important;
}

.banner-video {
    margin-top: -60px !important;
}

.banner-slider-opt {
    grid-template-columns: repeat(5, 1fr) !important;
}

ul.banner-slider-opt p {
    display: block !important;
}

.counter-wrapper.animated {
    padding: 14px !important;
    top: -220px !important;
}

.counter-wrapper .counter {
    margin-bottom: 18px !important;
}

.counter-wrapper .counter span.count {
    font-size: 40px !important;
}

ul#counter li .counter>div {
    font-size: 38px !important;
}

ul#counter li .counter span.text {
    font-size: 12px !important;
}

ul li .counter:hover {
    padding: 10px 10px !important;
}

ul li .counter:hover p {
    font-size: 12px !important;
}

.counter-wrapper .counter {width: 100% !important;}

ul li .counter:hover .btn-arrow {
    left: 140px !important;
}

ul li .counter:hover .btn-arrow {
    top: 30px !important;
    left: 145px !important;
}

ul li .counter:hover .btn-arrow2 {
    top: 200px;
    left: 330px!important;
}

.ds-development-services-text h2 {
    padding-top: 170px !important;
}

.sec-heading h2 {
    text-align: center !important;
}

.sec-heading p {
    text-align: center !important;
    margin: 0 !important;
    width: 100% !important;
}

.store-card p {
    font-size: 16px !important;
    line-height: 25px !important;
}

.btn-get-start {
    font-size: 16px !important;
}

a.chatBtn {
    padding: 8px 86px !important;
    font-size: 13px !important;
}

a.theme-btn.popstatic {
    display: block;
    margin-bottom: 10px !important;
    width: 100% !important;
}

.sec-2-web-text p {
    width: 100% !important;
}

.features-ul {
    justify-content: center !important;
}

.sec-5-web-text ul li:before {
    left: 10px !important;
}

.banner-content.online-extra h1 {
    color: var(--white) !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    text-shadow: 2px 0px 10px black !important;
}

.btn-web {
    background-color: var(--white) !important;
}

.sec-features-text {
    text-align: center !important;
}

.sec-features-img {
    display: none !important;
}

.sec-features-text p {
    margin-bottom: 20px;
}

.send label {
    margin-bottom: 30px !important;
}

.contact h2 {
    font-size: 17px !important;
    margin-bottom: 20px !important;
}

.sec-1-web-text {
    text-align: center !important;
    /* margin-top: 80px !important; */
}

.web-extra.banner-content.faqs-ext h1{
    text-align: center !important;
}

.btn-web {
    width: 100% !important;
    text-align: center !important;
}

.contact {
    padding: 30px 30px !important;
}

.contact-para p {
    line-height: 20px !important;
}

.copyright p, .copyright a {
    font-size: 13px !important;
}

.footer-review-container p {
    font-size: 16px !important;
}

.footer-review-container {
    flex-direction: column !important;
    padding-top: 0px !important;
}

.sub-div-last p {
    font-size: 10px !important;
}

.main-last-div {
    flex-direction: column !important;
    gap: 20px !important;
}

ul li .counter:hover .btn-arrow3 {
    left: 140px !important;
}

.sec-2-web-img {
    display: none !important;
}

.sec-1-web-img {
    display: none !important;
}

.sec-5-web-img {
    display: none !important;
}

.sec-5-web-text {
    text-align: center !important;
}

.sec3-web-text {
    text-align: center !important;
}

.opt-sec-2-web p {
    margin-bottom: 30px !important;
    text-align: center !important;
}

ul.banner-slider-opt p {
    position: absolute;
    z-index: 0;
    top: 10px;
    left: 0;
    text-align: center !important;
    padding-bottom: 20px !important;
}

section.second-mainBanner {
    background-position: 13% 0% !important;
}

.banner-content.portfolio-main-banner h1 {
    text-align: center !important;
}

.sec-review-text h2 {
    font-size: 26px !important;
    line-height: 40px !important;
}

.banner-content p {
    text-align: center !important;
    width: 100% !important;
}

.sec-1-img {
    display: none !important;
}

.ds-development-services-text h2 {
    text-align: center !important;
}

.sec-work-img {
    display: none !important;
}

.sec-work-text p {
    margin-bottom: 30px !important;
}

ul.accordion-list-ds.extr-ecommerce {
    margin-bottom: 40px !important;
}

.banner-slider-main {
    padding: 35px 20px 20px 20px !important;
    width: 90% !important;
    left: 20px !important;
    bottom: -150px !important;
}

.banner-slider-opt {
    grid-template-columns: repeat(4, 1fr) !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
}

.ds-development-services-text p {
    font-size: 13px !important;
    line-height: 20px !important;
    text-align: center;
    margin-bottom: 0px !important;
    width: 100% !important;
}

}

.heading-color {
    color: var(--primary);
    font-weight: 500;
}

.banner-content {
    text-align: center;
}

.mainBanner:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    right: 950px;
    background-image: url(../images/banner/banner-frame.webp);
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: rotate 10s linear infinite;
}

.mainBanner:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: 950px;
    top: 0;
    background-image: url(../images/banner/banner-frame.webp);
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: rotate 12s linear infinite;
}

.logo img {
    height: 65px;
    width: 170px;
    position: relative;
    z-index: 99;
    margin: 13px 0px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

to {
    transform: rotate(360deg);
  }

}
a.theme-btn {
    border-radius: 4px;
    border: 1px solid #5EF456;
    background: linear-gradient(179deg, #5EF456 0.99%, #7ECA7A 99.01%);
    padding: 15px 30px;
    color: black;
    font-size: 18px;
    font-weight: 800 !important;
    text-align: center;
    cursor: pointer;
}

.theme-btn1 {
    border-radius: 4px;
    border: 1px solid #5EF456;
    background: linear-gradient(179deg, #5EF456 0.99%, #7ECA7A 99.01%);
    padding: 15px 30px;
    color: black;
    font-size: 18px;
    font-weight: 800 !important;
    text-align: center;
    cursor: pointer;
}

.btn-secondary {
    border-radius: 4px;
    border: 1px solid #5EF456 !important;
    background: transparent !important;
    color: white !important;
    padding: 15px 30px 10px 30px !important;
}

a.theme-btn.popstatic.btn-secondary svg {
    height: 24px;
    margin-right: 10px;
}

.dev-btn {
    margin-bottom: 30px;
}

p.banner-p {
    color: var(--white);
    font-size: 14px;
    font-family: 'Manrope' !important;
    font-weight: 400;
}

p.banner-p span {
    color: #F4C856;
}

.banner-video {
    height: 100%;
    width: 100%;
    position: relative;
    margin-top: -210px;
    z-index: -2;
}

.banner-slider-main {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    bottom: -40px;
    /* left: 0; */
    background-color: white;
    width: 65%;
    border-radius: 5px;
    padding: 30px 20px;
    box-shadow: 0px 3px 11px 3px #d7d7d7;
    /* right: 0; */
}

.banner-slider-text p {
    color: #1C1C1C;
    font-family: Manrope !important;
    font-size: 14.243px;
    font-style: normal;
    font-weight: 700;
    text-align: start;
    line-height: 18px;
}

header.sticky ul.menu li a {
    color: black;
    font-weight: 800;
}

.sec-1 {
    padding: 8rem 0px;
}

.ds-development-services-text h2 {
    color: var(--white);
    font-size: 58px;
    font-weight: 275;
    padding-top: 70px;
}

.ds-development-services-text p {
    color: #CCC;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    width: 65%;
    margin: 10px 0px 0px 0px;
}

.ds-development-services {
    background-image: url(../images/ds/ds-banner.webp);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-position: center;
    background-color: #171e22;
}

.accordion-list-ds li span h3 {
    color: var(--white);
    font-size: 26px;
    font-weight: 275;
    line-height: normal;
}

.sec-1-slider {
    margin: 50px 0px;
}

.d-flex.main-ds-fle {
    align-items: center;
}

.banner-slider-text {
    object-fit: cover;
}

.upper {
    text-align: center;
    padding: 0px 0px;
}

.bottom {
    padding: 0px 30px;
    overflow: auto;
    height: 300px;
    margin: 30px 0px;
}

.line {
    border: 1px solid;
}

.btn-wrap span img {
    height: 25px;
}

.btn-pkgs {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0px;
}

.btn-pkgs a {
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
}

.sec-review-text {
    text-align: center;
}

.sec-review-text p {
    color: #333;
    text-align: center;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    width: 70%;
    line-height: normal;
    margin: auto;
}

.sec-review-text {
    text-align: center;
    margin-bottom: 50px;
}

.sec-review-text h2 {
    color: #1C1C1C;
    font-size: 58px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 58px; /* 100% */
}

.sec-work-text h2 {
    color: var(--white);
    font-size: 60px;
    font-weight: 600;
    line-height: 54.5px; /* 124.167% */
    letter-spacing: -1.2px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sec-work-text p {
    color: #a3a3a3;
    font-size: 24px;
    font-weight: 500;
    line-height: 37.25px; /* 155.208% */
}

.pckg:hover .bottom ul li::before {
    color: #6fe46a;
}

.pckg:hover .amount {
    color: #5EF456;
}

span.li-main {
    margin-bottom: 20px !important;
}

.pckg:hover .btn-pkgs a {
    color: var(--white);
}

.pckg:hover span.li-main {
    color: #5EF456;
}

.sec-work-opt-text {
    display: flex;
    width: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 15px;
    height: 300px;
    background: #1F292F;
    color: var(--white);
    margin: 10px 0px 30px 0px;
    transition: all ease .5s;
}

.sec-work-img {
    margin-bottom: 40px;
}

span.round {
    border-radius: 29.8px;
    background: var(--white);
    color: var(--black);
    display: flex;
    width: 59.6px;
    height: 59.6px;
    padding: 10px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
}

.sec-work-opt-text h2 {
    color: #74D86F;
    font-size: 24.833px;
    font-weight: 500;
    font-style: normal;
    line-height: 37.25px; /* 150% */
}

.sec-work-opt-text p {
    color: var(--Gray-400, #8896AB);
    font-size: 18px;
    font-weight: 500;
    line-height: 25px; /* 166.667% */
}

.store-card p {
    color: #000 !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px; /* 180% */
    margin-bottom: 20px;
}

.store-card span {
    color: #171E22;
    font-size: 20px;
    font-weight: 900;
    line-height: 35px; /* 176.907% */
    text-decoration-line: underline;
}

.store-card p a {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 39.701px;
    text-decoration-line: underline;
    text-decoration-skip-ink: none;
}

ul.accordion-list1 {
    margin-top: 30px;
}

ul.accordion-list1 span h3 {
    color: #474747;
    font-size: 20px;
    font-weight: 600;
    line-height: 26.467px; /* 120% */
}

ul.accordion-list1 span {
    text-decoration-line: none;
}

ul.accordion-list1 li .first .active {
    display: flex;
    height: 268px;
    padding: 41.355px;
    align-items: flex-start;
    gap: 22.975px;
    background-color: white;
    box-shadow: 10px 10px 10px 10px black;
}

a.chatBtn {
    display: flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--black);
    border-radius: 7px;
    border: 2px solid #000;
    background: var(
    --white);
    font-weight: 600;
}

.store-card-image p {
    color: var(--black);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.store-card-image p strong {
    font-weight: 700;
}

.extr-ecommerce span {
    color: var(--black);
    font-size: 20px;
    font-weight: 900;
    line-height: 35px;
    text-decoration-line: none;
}

.extr-ecommerce span h3 {
    color: #474747 !important;
    font-size: 24px !important;
    font-weight: 400 !important;
}

.extr-ecommerce li h3:after {
    content: '' !important;
}

.extr-ecommerce ul li {
    border-bottom: 1px solid black;
}

.extr-ecommerce li {
    border-bottom: 1px solid #d5d5d5;
}

.ecommerce-slider.slick-initialized.slick-slider {
    margin-top: 70px;
}

section.contact {
    background-image: url(../images/contact/contact-bg.webp);
    background-repeat: no-repeat;
    padding-bottom: 90px;
    background-size: cover;
}

.input-field1 select {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: transparent;
    width: 100%;
    border: none;
    border-bottom: 1px solid white;
    margin-bottom: 30px;
    padding: 20px 10px;
}

.contact {
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(42px);
    width: 100%;
    height: 100%;
    padding: 40px 60px;
}

.contact h2 {
    color: var(--white);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 25px;
}

.contact p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding: 0px 0px 0px 50px;
    padding-bottom: 36px;
}

.banner-form p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    padding: 0;
    margin-bottom: 10px;
}

.banner-form h4 {
    font-size: 44px;
    font-weight: 400;
    line-height: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-para p {
    padding: 15px 30px;
    margin: 10px 10px;
    text-align: center;
    color: var(--black);
}

.number-contant-text {
    background: transparent;
}

.contant-main {
    background-color: transparent;
}

.numbers-contact span {
    border-radius: 21.8px;
    background: var(--white);
    margin-bottom: -30px;
    color: var(--black);
    display: flex;
    width: 35.6px;
    height: 35.6px;
    padding: 10px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    z-index: 0;
}

.numbers-contacts span {
    border-radius: 21.8px;
    background: var(--white);
    margin-bottom: -30px;
    color: var(--black);
    display: flex;
    width: 35.6px;
    height: 35.6px;
    padding: 10px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    z-index: 0;
}

.numbers-contacts span:before {
    background: var(--white);
    height: 300px;
    width: 1px;
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
}

input#subscribe {
    margin-left: 20px;
    margin-right: 10px;
}

.send label {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.stars-desc h2 {
    color: var(--white);
    font-size: 28px;
    border-right: 1px solid white;
    padding-right: 10px;
}

.footer-sec h2 {
    color: var(--white);
    font-size: 50px;
    font-weight: 700;
}

.stars-desc {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.main-last-div {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0px;
    background: #2A282C;
}

ul.icons li i {
    color: var(--white);
    padding: 0px 20px;
    font-size: 20px;
}

.sub-div-last p {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.sub-div-last p a {
    color: #999;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.counter-wrapper {
    padding: 20px;
    position: absolute;
    z-index: 0;
    border-radius: 20px;
    background: #171e22;
    border-radius: 20px;
    top: -90px;
}

ul li .counter {
    margin: 0px 0px;
    border-radius: 20px;
    background-color: var(--white);
    padding: 45px 20px;
    width: 300px;
    height: 150px;
    transition: all ease 0.5s;
}

ul li .counter:hover {
    background: #74D86F;
    padding: 20px 20px;
    text-align: start;
}

ul li .counter:hover .count {
    color: var(--white);
}

.counter p {
    display: none;
}

ul li .counter:hover  p {
    display: block;
    font-size: 14px;
    line-height: 17px;
}

.design-card-list-second-2{
    direction: rtl;
}

ul.design-card-list-second {
    margin-bottom: 40px;
}

ul.design-card-list-second-2 {
    margin-bottom: 40px;
}

.banner-slider-opt {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    text-align: center;
    justify-content: center;
}

button.btn-arrow {
    display: none;
}

ul li .counter:hover .btn-arrow {
    display: none;
    width: 60px;
    height: 60px;
    fill: var(--white);
    border-radius: 50px;
    border: none;
    position: absolute;
    z-index: 0;
    left: 240px;
    top: 40px;
}

button.btn-arrow2 {
    display: none;
}

ul li .counter:hover .btn-arrow2 {
    display: none;
    width: 60px;
    height: 60px;
    fill: var(--white);
    border-radius: 50px;
    border: none;
    position: absolute;
    z-index: 0;
    left: 550px;
    top: 40px;
}

button.btn-arrow3 {
    display: none;
}

ul li .counter:hover .btn-arrow3 {
    display: none;
    width: 60px;
    height: 60px;
    fill: var(--white);
    border-radius: 50px;
    border: none;
    position: absolute;
    z-index: 0;
    right: 360px;
    top: 40px;
}

button.btn-arrow4 {
    display: none;
}

ul li .counter:hover .btn-arrow4 {
    display: none;
    width: 60px;
    height: 60px;
    fill: var(--white);
    border-radius: 50px;
    border: none;
    position: absolute;
    z-index: 0;
    right: 50px;
    top: 40px;
}

option {
    color: var(--black);
}

ul.accordion-list-ds li p {
    color: var(--white);
}

span.round-img {
    position: absolute;
    z-index: -1;
    top: -40px;
    left: 0;
    right: 0;
}

header {
    background-color: var(--black);
}

.banner-content p {
    color: var(--white);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    width: 60%;
    margin: auto;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

ul.banner-slider-opt p {
    text-align: start;
    font-weight: 600;
    color: var(--black);
    font-size: 18px;
    line-height: 25px;
    width: 100%;
    margin: 0;
    letter-spacing: 0px;
    margin-bottom: 0px;
}

.section-about {
    padding: 7rem 0;
}

.sec-1-about h2 {
    font-size: 42px;
    /* color: var(--primary); */
    font-weight: 600;
    margin: 50px 0px 30px 0px;
}

.sec-1-about p {
    color: var(--Gray-400, #8896AB);
    font-size: 24px;
    font-weight: 400;
    line-height: 37.25px;
    margin-bottom: 30px;
}

.sec-1-about ul li {
    color: var(--Gray-400, #8896AB);
    font-size: 24px;
    font-weight: 400;
    line-height: 37.25px;
    position: relative;
    z-index: 0;
    margin-bottom: 20px;
}

.sec-1-about ul {
    margin-left: 20px;
}

.sec-1-about ul li::before {
    position: absolute;
    z-index: 0;
    content: '';
    background-image: url(../images/about/tick-vector.webp);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    top: 11px;
    left: -30px;
}

.work.extr-about .sec-work-text {
    text-align: center;
    margin-bottom: 50px;
}

.work.extr-about .sec-work-text h2 span {
    color: #4ebd4b;
}

span.btn-span {
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
    line-height: 22.35px;
    border-radius: 44.7px;
    background: #74D86F;
    box-shadow: 0px 1.242px 2.483px 0px rgba(105, 81, 255, 0.05);
    padding: 10px 20px;
}

.brand-wrapper {
    display: flex;
    justify-content: center;
}

.banner-content.portfolio-main-banner {
    text-align: start;
    color: var(--black) !important;
}

.banner-content.portfolio-main-banner h1 {
    text-align: start;
    color: var(--black) !important;
}

.banner-content.portfolio-main-banner p {
    text-align: start;
    color: var(--black) !important;
    margin: 0;
    width: 100%;
}

section.second-mainBanner {
    background-position: center;
    background-repeat: no-repeat;
}

section.section-portfolio {
    text-align: center;
}

.sec-portfolio-img {
    margin-bottom: 30px;
}

.banner-content.faqs-ext {
    text-align: start;
}

.banner-content.faqs-ext h1 {
    text-transform: capitalize;
    font-size: 52px;
    line-height: 65px;
}

.banner-slider-main.faqs-slider {
    bottom: -50px;
}

.heading-color-main {
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

.pckg-sec.sec-heading {
    text-align: start !important;
    align-items: start !important;
}

.sec-heading.sec-1-p {
    text-align: center;
}

.sec-heading.sec-1-p p {
    margin: auto;
}

.btn-get-start {
    display: flex;
    width: 208.693px;
    height: 19.529px;
    flex-direction: column;
    justify-content: center;
    color: #171E22;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35.381px; /* 176.907% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.accordion-list li.active span h3{
    color: var(--primary);
}

.web-extra.banner-content.faqs-ext h1 {
    color: var(--black);
}

.btn-web{
    padding: 15px 30px 10px 30px;
    border-radius: 4px;
    border: 1px solid #000;
    background: transparent;
    color: var(--black);
    font-weight: 700;
}

.btn-web svg path{
    fill: var(--black);
}

.sec-1-web-text h2 {
    color: #171E22;
    font-size: 60px;
    font-weight: 400;
    margin: 40px 0px 20px 0px;
}

.sec-2-web-text h2 {
    color: var(--white);
    font-size: 60px;
    font-weight: 400;
    margin: 40px 0px 20px 0px;
}

.sec-3-web-text h2 {
    color: #171E22;
    font-size: 60px;
    font-weight: 400;
    margin: 40px 0px 20px 0px;
}

.sec3-web-text h3{
   color: var(--black);
   font-size: 40px;
   font-weight: 300;
   line-height: 56px;
   letter-spacing: -0.8px;
   text-transform: capitalize;
   margin: 30px 0px;
}

.sec-1-web-text p {
    color: var(--Gray-400, #8896AB);
    font-size: 23px;
    font-weight: 400;
    line-height: 37.25px;
    margin: 30px 0px;
}

.sec3-web-text {
    margin-top: 70px;
}

.sec-2-web-text p {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    width: 61%;
    margin: auto;
    padding-bottom: 50px;
    line-height: 25px;
}

.opt-sec-2-web p {
    color: var(--Gray-400, #8896AB);
    font-size: 20px;
    font-weight: 500;
    line-height: 29.8px;
    margin: 12px 0px;
}

.opt-sec-2-web h3 {
    font-size: 24.833px;
    font-weight: 700;
    line-height: 37.25px;
    margin-top: 10px;
}

.sec-2-web-img {
    text-align: center;
}

.sec-5-web-text h3{
    color: var(--black);
    font-size: 40px;
    font-weight: 300;
    line-height: 56px;
    letter-spacing: -0.8px;
    text-transform: capitalize;
    margin: 30px 0px;
}

.sec-5-web-text ul {
    margin-left: 20px;
}

.sec-5-web-text ul li {
    color: #171E22;
    font-size: 20px;
    font-weight: 300;
    line-height: 12px; 
    letter-spacing: -0.4px;
    margin: 25px 10px;
    position: relative;
    z-index: 0;
}

.sec-5-web-img {
    margin-bottom: 50px;
}

.sec-5-web-text ul li:before {
    position: absolute;
    z-index: 0;
    background-image: url(../images/online/tick-vector.webp);
    height: 100%;
    width: 100%;
    top: -5px;
    left: -35px;
    content: '';
    padding: 20px 0px;
    background-repeat: no-repeat;
}

section.second-mainBanner {
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-size: cover;
    /* height: 700px; */
    background-position: 0% -50%;
    background-attachment: fixed;
}

.features-ul {
    margin-bottom: 0 !important;
    display: flex;
    padding: 0 0 !important;
    justify-content: start !important;
    align-items: start !important;
    gap: 5px !important;
}

li.btn-feature a {
    font-size: 16px !important;
    padding: 20px 20px;
    border-radius: 44.7px !important;
    opacity: 0.9;
    background: #E2E2E2;
    box-shadow: 0px 1.242px 2.483px 0px rgba(105, 81, 255, 0.05);
}

.btn-feature {border: 2px solid; border-radius: 60px;}

.btn-feature .active {border: 2px solid var(--primary);border-radius: 60px;background-color: var(--primary) !important;}

.btn-feature-a{
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 136.702%;
    background: var(--black);
    padding: 10px 20px;
    border-radius: 7px;
}

.sec-features-img {
    margin-bottom: 50px;
}

.sec-features-text h3 {
    color: #171E22;
    font-size: 60px;
    font-weight: 300;
    margin: 20px 0px 20px 0px;
}

.sec-features-text p {
    color: var(--Gray-400, #8896AB);
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
}

.footer-review-container{
    color: var(--white);
}

.footer-review-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0px;
    gap: 10px;
}

.footer-review-container p {
    color: #686868;
    font-size: 21.468px;
    font-weight: 400;
}

.sec-1-img {
    padding-bottom: 40px;
}

.end-div {
    text-align: end;
    align-items: end;
    display: flex;
    flex-direction: column;
}

.sec-work-opt-text:hover {
    box-shadow: -10px 10px 10px 0px #95fb92;
    transition: all ease .5s;
    transform: translate(0px, -10px);
}

ul li .counter:hover .ex-count {
    color: white;
}

.pckg {
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    background: var(--white);
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    border-radius: 22px;
    border: 1px solid transparent;
    height: 100%;
}

.pckg .upper .price {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin: 1rem 0px 20px 0;
    justify-content: center;
}

.pckg .bottom ul li {
   margin: 20px 0px;
   line-height: 20px;
   display: flex;
}

.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}

.pckg .bottom ul li::before {
    content: "";
    font-family: var(--icon);
    content: "\f00c";
    font-weight: 800;
    color: #000000;
    margin-right: 10px;
}

}
a.theme-btn {
    border-radius: 4px;
    border: 1px solid #5EF456;
    background: linear-gradient(179deg, #5EF456 0.99%, #7ECA7A 99.01%);
    padding: 15px 30px;
    color: black;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}

.number-contant-text h3 {
    font-size: 25px;
    margin: 20px 0px;
}

.number-contant-text a {
    color: #FFF;
    line-height: 25px;
    font-size: 20px;
}

.number-contant-text p {
    color: #FFF;
    font-weight: 400;
    font-size: 20px;
}

section.second-mainBanner.faqs-sec {
    background-position: 50% 50px;
    background-size: cover;
}

.footer-sec .logo {
    margin-bottom: 30px;
}

.company-email-sub p {
    color: white;
    font-size: 17px;
    font-weight: 600;
}

.company-email-sub {
    display: flex;
    align-items: baseline;
    gap: 15px;
    height: 35px;
}

.footer-sec h4 {
    margin: 0;
}

.company-email-sub a {
    color: white;
    font-weight: 200;
}

.company-emails-main {
    margin-bottom: 50px;
}

header .logo-white-header {
    display: none;
}

header.sticky .logo img {
    display: none;
}

header.sticky .logo-white-header {
    display: block;
}

.logo-white-header img {
    height: 65px;
    width: 170px;
    position: relative;
    z-index: 99;
    margin: 13px 0px;
}

ul.menu.btns li a {
    color: black;
}

a.phone-number img {
    margin: -6px 0px;
}

a.theme-btn.w-100.text-center.popdynamic span img {
    margin: -8px 0px;
    height: 30px;
}

.selling-online {
    background: linear-gradient(179deg, #5EF456 0.99%, #7ECA7A 99.01%) !important;
    padding: 15px 30px;
    border: none !important;
}

ul.menu.btns li a {
    color: black;
}

.btn-secondary {
    color: #4ebd4b !important;
}

.sec-1-about ul li strong {
    font-weight: 800;
}

.features-ul li.active a {
    background: #7dd47a;
}

.themes-ex-banner {
    background-position: 50% 0% !important;
}

.contact-extra {
    background-position: -380px 10px !important;
    height: 800px !important;
}

.portfolio-ext-banner {
    height: 800px !important;
    background-position: 50% 0% !important;
}

.online-ext-banner {
    height: 700px !important;
    background-position: 0% 0% !important;
    background-attachment: unset !important;
}

ul.main-terms-ul {
    padding: 0;
}

ul.main-terms-ul li img {
    margin: -3px 10px;
}

.terms ul li strong {
    font-weight: 900;
}

.extr-ecommerce li.active {
    background: #FFF;
    box-shadow: 0px 22px 60px 0px rgba(0, 0, 0, 0.25);
    padding: 30px 20px 40px 20px;
    margin: 30px 0px 20px 0px;
}

ul.accordion-list-ds.extr-ecommerce p {
    padding-left: 45px;
}

ul.accordion-list-ds.extr-ecommerce .btn-wrap {
    padding-left: 40px;
}

.sec-1-web-img {
    text-align: center;
}

section.second-pricing {
    background-repeat: no-repeat;
}

section.sec-1-web.feature-pading {
    padding-top: 110px;
}

section.sec-feature-main {
    padding: 60px 0px 0px 0px !important;
}

.sec-work-opt-text.features-addi {
    height: 270px;
}
.terms ul li a {
    color: black;
}

section.thanks-sec {
    padding-top: 150px;
}

.pckg:hover .upper .price .uspto {
    color: #fff;
}

.contact-para p a {
    color: #000;
    font-weight: 700;
}

.btn-secondary svg
 {
    margin-right: 10px;
}

a.live-chat img {
    margin: -5px 5px;
}

.btn-web svg {
    margin-right: 8px;
}

.sec-review-img {
    margin-bottom: 30px;
}







button.theme-btn1 {
    font-size: 16px;
    padding: 8px 8px;
}