:root {
  --primary: #f6c143;
  --font-heading: "Manrope", sans-serif;
  --font-body: "Poppins", 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 rgb(0 0 0 / 0.3);
  background-color: #fff;
}
::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: var(--primary);
}
[class^="box-"] {
  display: none;
}
[class^="box-"].showfirst {
  display: block;
}
body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  color: #000;
  background: #fff;
}
body.inner-header {
  padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: 400;
}
*:hover,
*:focus,
* {
  outline: none !important;
}
img {
  max-width: 100%;
  height: auto;
}
a,
input[type="submit"] {
  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;
}
.pad-zero {
  padding: 0;
}
.pad-l-zero {
  padding-left: 0;
}
.pad-r-zero {
  padding-right: 0;
}
.ovr-hiddn {
  overflow: hidden;
}
.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0 0 0 / 0.6);
  z-index: 1;
}
.overlay {
  display: none;
}
.overlay.active {
  display: block;
}
.hding-1 h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 75px;
}
.highlighted {
  color: #ff5e14;
}
.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 0;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0;
  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: 0;
  background: #ddd;
  border: none;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  -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;
}

/* Cursor */


.marquee-text {
  overflow: clip;
  background: #000;
  padding: 10px 0;
}
.marquee-text-track {
  display: flex;
  padding-left: 4.8rem;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-move-text 40s linear infinite forwards;
}
.marquee-text p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}

/* Header */
header {
  transition: all 0.4s ease-In-out;
  position: fixed;
  background: transparent;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  padding: 28px 0px 15px;
}
header.sticky {
  padding: 0 !important;
  background: #fff;
  box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
    0px 2px 4px -1px rgb(0 0 0 / 6%);
  top: 0;
}
.menuWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
  filter: grayscale(100%);
  max-width: 175px;
}

/* 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 18px;
}
.menu > li > a {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.4s ease-in-out;
}
.menu > li :hover > a,
.menu > li .active > a {
  color: var(--primary);
}
.header-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.header-call-btn p {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header-call-btn * {
  transition: all 0.4s ease-in-out;
}
.header-call-btn:hover p {
  color: var(--primary);
}
.header-call-btn:hover svg path {
  fill: var(--primary);
}

.header-btn {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  background-color: var(--primary);
  font-weight: 600;
  color: #0b0b0b;
  box-shadow: 0 0 0 2px #ffffff20;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.header-btn span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #0b0b0b;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.header-btn span:first-child {
  position: relative;
  z-index: 1;
}

.header-btn:hover {
  box-shadow: 0 0 0 5px #d3d3d3;
  color: #ffffff;
}

.header-btn:active {
  scale: 0.95;
}

.header-btn:hover span:last-child {
  width: 250px;
  height: 250px;
  opacity: 1;
}

/* 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: 0.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-color: #f0ebff;
  position: relative;
}
.banner-content {
  padding: 150px 0 0;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-70 {
  padding-bottom: 70px;
}
.banner-padding-small {
  padding: 100px 20px 150px;
}
.banner-heading {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
  margin-bottom: 15px;
}
.sub-heading {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 118.6%; /* 35.58px */
  text-transform: capitalize;
  margin-bottom: 5px;
}
.banner-text {
  margin-bottom: 35px;
  color: #0b0b0b;
  font-family: var(--font-body);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.6%;
}
/* .banner-content picture img {
  margin-bottom: -4px;
} */

/* Web Banner */
.web-banner {
  background: #1d1b2c;
  padding: 2rem 0;
}

/* Package Sec */
.package-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 3rem;
}
.package-tabs li {
  border: 1px solid #1d1d1d;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 20px 40px;
  cursor: pointer;
}
.package-tabs li a {
  color: #1d1d1d;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}
.package-tabs li.active {
  background: #000;
}
.package-tabs li.active a {
  color: #fff;
}

.package {
  border: 1px solid #1d1d1d;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 0px 0px 10px 10px;
  height: 100%;
  position: relative;
}
.package.mostpopular::before {
    content: "MOST POPULAR CHOICE";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    background: #ffc107;
    color: #000;
    font-weight: 800;
    padding: 6px 16px;
    clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
    box-shadow: 0px 0px 4px 6px #999999;
}
.package.bestvalue::before {
    content: "BEST VALUE FOR GROWING STORES";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    background: #ffc107;
    color: #000;
    font-weight: 800;
    padding: 2px 16px;
    clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
    box-shadow: 0px 0px 4px 6px #999999;
    width: fit-content;
    text-align: center;
    line-height: 1.6;
}
.package-header {
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #1d1d1d33;
}
.package-title {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -1.48px;
}
.package-desc {
  color: #000;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.package-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-price {
  color: #1450f1;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -2.92px;
}
.package-discount {
  border-radius: 10px;
  background: #1450f11a;
  padding: 8px;
  height: fit-content;
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.package-body {
  padding: 35px 35px 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.package-body h4 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
}
.package-body ul p {
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.package-list {
  display: flex;
  flex-direction: column;
  height: 200px;
  overflow-y: auto;
  gap: 10px;
}

.package-list li {
  color: #464646;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  padding: 0 10px 0 30px;
}
.package-list li::before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  left: 0;
  color: #1450f1;
  top: 0;
}

.package-footer {
  border-radius: 0px 0px 7px 7px;
  background: #1d1d1d;
  display: flex;
  justify-content: space-between;
  padding: 35px 35px 40px;
  margin-top: auto;
}

.package-footer a {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package-footer a:hover {
  opacity: 0.7;
}
.package-footer a:last-child {
  align-items: flex-end;
}

.package-footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: none;
}

.package-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-footer i {
  color: var(--primary);
}

.package-footer p {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.package.active {
  background: #252525;
}
.package.active .package-title,
.package.active .package-discount,
.package.active .package-price,
.package.active .package-body h4,
.package.active .package-body p,
.package.active .package-list li,
.package.active .package-desc {
  color: #fff;
}
.package.active .package-discount {
    background: #346afb;
}
.package.active .package-header {
    border-bottom: 1px solid #ffffff61;
}
.package.active .package-list li::before {
    color: #346afb;
}

/* Accordian */
.accordion-list {
  position: relative;
}
.accordion-list li {
  padding: 30px 35px 30px 30px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #aaa;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
ul.accordion-list li span {
  display: flex;
  position: relative;
}
.accordion-list li h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%;
  padding-right: 1.25rem;
}
ul.accordion-list li h3:after {
  content: "\2b";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  font-weight: 600;
  top: 0;
}
.accordion-list li.active h4::after {
  color: #f6c143;
  content: "\f068";
}
ul.accordion-list li.active h3:after {
  color: #f6c143;
  content: "\f068";
}
.answer p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160.1%; /* 35.222px */
  margin-top: 1.5rem;
}
/* Accordian */

/* Brand service banner */
.brand-service-banner {
  padding: 3rem 0 4rem;
}
.brand-service-banner h1 {
  color: #1d1d1d;
  font-family: var(--font-heading);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%;
  margin-bottom: 0.7rem;
}
.brand-service-banner h2 {
  color: #1d1d1d;
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%;
  margin-bottom: 0.8rem;
}
.brand-service-banner p {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0.8rem;
}
.brand-service-banner ul {
  display: flex;
  flex-direction: column;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  gap: 0.75rem;
}
.brand-service-banner ul li {
  color: #1d1d1d;
  font-family: var(--font-heading);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
}
.brand-service-banner ul li::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  left: -1.5rem;
  color: #1d1d1d;
  top: 0.08rem;
}

/* Service Info Card */
.service-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #e9e9e9;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  height: 100%;
}
.service-info-card:hover {
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.service-info-card h2 {
  color: #000;
  text-align: center;
  font-family: var(--font-body);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 145.455% */
  margin: 10px 0 20px;
}
.service-info-card p {
  color: #777;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 187.5% */
}

/* 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%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 530px;
  background: #fff;
  box-shadow: 0 0 30px -9px #0000006e;
  z-index: 9999999;
  overflow: hidden;
  display: none;
  border-radius: 8px;
  max-width: 97%;
  max-height: 90vh;
  /*overflow-y: auto;*/
}
.popupmain {
  width: 1000px;
  /*overflow-y: unset;*/
}
.popupmain img {
  height: 100%;
}
.mmpopup {
  text-align: center;
  background: #f8f8f8;
  padding: 45px 25px 25px;
  height: 100%;
}
.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 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 h4 span span {
  display: none;
}
.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;
  font-family: var(--font-body);
}
.mmpopup .centercont h3 {
  font-size: 50px;
  font-weight: 400;
  color: #0085ff;
}
.mmpopup .centercont h3 span {
  display: block;
  margin: 0 30px;
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  /* line-height: 33px; */
  font-size: 30px;
  line-height: 120%;
  color: #3a3d40;
}
.mmpopup .centercont h4 span {
  font-weight: 700;
  color: var(--primary);
  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;
  font-family: var(--font-body);
}
.fld-btn button {
  border-radius: 5px;
  background-color: var(--primary);
  width: 100%;
  color: 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 */

/* Trusted Business Banner */
.trusted-business-text {
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-right: 1px solid #000;
  padding-right: 10px;
}
.trusted-business-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 0;
}
.trusted-business-wrapper img {
  object-fit: contain;
}

/* Service CTA */
.service-cta {
  border-radius: 17px;
  border: 1px solid #1d1d1d;
  margin-bottom: 2rem;
}
.service-cta-title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
}
.service-cta-title h1 {
  color: #1d1d1d;
  font-family: var(--font-heading);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 118.6%; /* 67.602px */
}
.service-cta-grid {
  display: grid;
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.service-cta-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-left: 1px solid #000;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.service-cta-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.service-cta-card:hover {
  background-color: var(--primary);
}
.service-cta-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-cta-card div h2 {
  color: #1d1d1d;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 118.6%; /* 26.092px */
}
.service-cta-card div p {
  color: #1d1d1d;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 118.6%; /* 17.79px */
}

/* Sec Headings and Para */
.sec-heading {
  color: #1d1d1d;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 118.6%; /* 65.23px */
  margin-bottom: 1.8rem;
}
.sec-sub-heading {
  color: #0b0b0b;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
.sec-para {
  color: #777;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* sections */
section {
  padding: 4rem 0;
  position: relative;
}
.padding-top-sm {
  padding-top: 1.5rem;
}
/* sections */

/* Theme Buttons */
.btn-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}

.theme-btn {
  padding: 15px 20px;
  background-color: var(--primary);
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-heading);
  border: 1px solid var(--primary);
  color: #000;
}

.theme-btn::after,
.theme-btn::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  transition: 0.5s ease-out;
  background-color: #000;
}

.theme-btn::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.theme-btn:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.theme-btn:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.theme-btn:hover {
  color: #fff;
  border: 1px solid #fff;
  background-color: #000;
}

.theme-btn:active {
  filter: brightness(0.7);
  transform: scale(0.98);
}

.theme-btn-bordered {
  display: inline-block;
  padding: 15px 20px;
  border: 1px solid #000;
  transition: all 0.4s ease-in;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;

  color: #1d1d1d;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.theme-btn-bordered:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.theme-btn-bordered:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: var(--primary);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.theme-btn-bordered:hover {
  color: #000;
  border: 1px solid var(--primary);
}

.theme-btn-bordered:hover:before {
  top: -35%;
  background-color: var(--primary);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.theme-btn-bordered:hover:after {
  top: -45%;
  background-color: var(--primary);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* Theme Buttons */

/* Feature Card */
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-card h2 {
  color: #1d1d1d;
  font-family: var(--font-heading);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 118.6%; /* 42.696px */
}
.feature-card p {
  color: #777;
  font-family: var(--font-body);
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Portfolio Projects */
.portfolio-sec {
  background: #0d0e0e;
}
.portfolio-image {
  border-radius: 4px;
  height: fit-content;
  max-height: 550px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.4s ease-in-out;
}
.portfolio-sec.bg-white .portfolio-image {
  border: 1px #e8e8e8;
}

.portfolio-image:hover {
  box-shadow: 0 0 20px 5px #ffffff87;
  transform: scale(1.05);
}

.portfolio-sec.bg-white .portfolio-image:hover {
  box-shadow: 0 0 20px 5px #00000087;
}

.portfolio-image img {
  position: relative;
  transform: translateY(0);
}
.portfolio-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 3rem;
}
.portfolio-tabs li {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 20px 40px;
  cursor: pointer;
}
.portfolio-sec.bg-white .portfolio-tabs li {
  border: 1px solid #d3d3d3;
}
.portfolio-tabs li a {
  color: #1d1d1d;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}
.portfolio-tabs li.active {
  background: var(--primary);
}
.portfolio-short-img {
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.portfolio-short-img:hover {
  box-shadow: 0 0 20px 5px #ffffff87;
  transform: scale(1.05);
}
.portfolio-short-img:hover {
  box-shadow: 0 0 20px 5px #ffffff87;
  transform: scale(1.05);
}

/* Template Section */

.template-type-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.template-type {
  display: flex;
  flex-direction: column;
  gap: 15px;
  cursor: pointer;
}
.template-type h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 118.6%; /* 42.696px */
  color: #a7a7a7;
}
.template-type.active h2 {
  color: #0b0b0b;
}
.template-type p {
  color: #777;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  display: none;
}
.template-type.active p {
  display: block;
}
.template-type .template-loader-container {
  height: 5px;
  width: 100%;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.template-type .template-loader {
  height: 5px;
  background-color: #000;
  border-radius: 10px;
  transition: width 0.3s linear;
}

/* Engage Sec */
.engage-sec {
  background-color: #000;
  padding-bottom: 0;
}
.engage-sec-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 110px;
  font-style: normal;
  font-weight: 700;
  line-height: 123px; /* 102.5% */
  margin-bottom: 2rem;
}
.engage-sec-para {
  color: #fff;
  font-family: var(--font-body);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.engage-sec img {
  margin-bottom: -3px;
}

/* Benefits Sec */
.benefits-sec-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}
.benefits-sec-card h2 {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.benefits-sec-card p {
  color: #777;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: auto;
}

/* Why Choose Sec */
.why-choose-sec {
  background-color: #000;
}
.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.why-choose-list-item {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-choose-list-item:not(:last-child) {
  border-bottom: 1px solid #343434;
}
.why-choose-list-item h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 42.696px */
}
.why-choose-list-item p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Business Slider */
.business-slider-heading {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 68px;
  font-style: normal;
  font-weight: 700;
  line-height: 74px; /* 112.5% */
}
.business-slider-para {
  color: #777;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.business-slider {
  width: 100%;
  height: 550px;
}
.business-slider * {
  transition: all 0.4s ease-in-out;
}

.business-swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-swiper-slide img:hover {
  transform: scale(1.1);
}
.business-swiper-slide {
  position: relative;
}

.business-swiper-slide h2 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 1.85rem;
  color: #fff;
  font-family: var(--font-heading);
  text-shadow: 0px 0px #7a7a7a;
}

.swiper-progress-wrapper
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-progress-wrapper {
  position: relative;
  margin-top: 3rem;
}

/* How we create sec */
.how-we-create {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.how-we-create ul {
  list-style: disc;
  padding-left: 28px;
  padding-bottom: 25px;
  border-bottom: 1.5px solid #e8e8e8;

  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.how-we-create p {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
}

/* FAQ Sec */
.faq-sec {
  background-color: #000;
}

/* Bottom CTA Sec */
.bottom-cta {
  background-color: #000;
}
.bottom-cta-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.bottom-cta-content h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 123%; /* 76.26px */
}
.bottom-cta-content .theme-btn-bordered {
  color: #fff;
  border: 1px solid #fff;
}
.bottom-cta-content .phone-num {
  display: flex;
  gap: 15px;
  align-items: center;
}
.bottom-cta-content .phone-num p {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.bottom-cta-features {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.bottom-cta-feature-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bottom-cta-feature-wrapper div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bottom-cta-feature-wrapper div h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.bottom-cta-feature-wrapper div p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 149.4%;
}

/* Design Service Card */
.design-service-card {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  height: 100%;
}
.design-card-body {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 4px 4px;
  background: #f8f8f8;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.design-card-body h2 {
  color: #1d1d1d;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 118.6%; /* 37.952px */
}
.design-card-body div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.design-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.design-card-body li {
  color: #777;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  padding-left: 28px;
}
.design-card-body li::before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  left: 0;
  color: var(--primary);
  top: 4px;
}

/* Contact Form */
.contact-form {
  margin-top: 2rem;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #ebebeb;
  background: #fcfcfc;
  width: 100%;
  padding: 15px 20px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #0b0b0b;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.checkbox-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.checkbox-wrapper input {
  width: 16px;
  height: 16px;
  border: 1px solid #d1d5db4d;
  outline: none;
  cursor: pointer;
}
.checkbox-wrapper label {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.checkbox-wrapper label a {
  color: #777;
  font-weight: 700;
}
.contact-form .theme-btn {
  padding: 20px 40px;
}
.contact-details-card {
  border-radius: 0px 0px 12px 12px;
  background: #1d1d1d;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.contact-details-card a {
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* footer */
ul.f-link li:first-child {
  border-right: 1px solid #fff;
  padding-right: 20px;
}
footer {
  background: #000;
}
footer .container {
  padding: 62px 0;
  border-top: 1px solid #ffffff33;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff33;
  padding: 20px 0;
}
.copyright p,
.copyright a {
  color: white;
  line-height: 20px;
  font-size: 14px;
}
.copyright a:hover {
  opacity: 0.7;
}
ul.f-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-sec p {
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  padding-top: 33px;
}
.footer-hdng h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.f-menu li a {
  color: #919191;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}
.f-menu li a:hover {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}
.footer-hdng p {
  color: #fff;
  line-height: normal;
  padding-bottom: 16px;
}
.hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hours p {
  color: #fff;
  font-size: 16px;
}
.f-menu li a i {
  color: #919191;
  margin-right: 10px;
}
.f-menu li {
  line-height: 2;
}
.copyright-sec {
  background: #000;
}
.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;
}
.newsletter-sec {
  background-color: #000;
}
.newsletter-sec .container {
  padding: 2rem 0;
  border-top: 1px solid #ffffff33;
}
.newsletter-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.newsletter-info-wrapper h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 149.4%; /* 17.928px */
  text-transform: uppercase;
}
.newsletter-info-wrapper .contact-info {
  display: flex;
  gap: 30px;
  align-items: center;
}
.newsletter-info-wrapper .contact-info div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.newsletter-info-wrapper .contact-info a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 149.4%; /* 17.928px */
}
.newsletter-input-wrapper {
  display: flex;
  align-items: center;
}
.newsletter-input-wrapper input {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 15px 20px;
  width: 100%;
}
.newsletter-input-wrapper button {
  background-color: #000;
  border: 1px solid #fff;
  padding: 17px 34px;

  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 149.4%; /* 20.916px */
}
.newsletter-input-wrapper button:active {
  opacity: 0.7;
}
/* ----------------------------------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 */
.terms .roman {
  list-style: upper-roman;
}
.terms ul {
  padding-left: 25px;
  line-height: 25px;
  font-size: 16px;
  color: #333;
}
.terms .list-ul {
  list-style: disc;
}
.terms ul li {
  margin-bottom: 1rem;
}
.terms ul li::marker {
  font-size: 22px;
  font-weight: 500;
}
.terms h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 1rem 0;
}
.terms p {
  margin-bottom: 2rem;
}
/* terms */

@media screen and (max-width: 1200px) {
  header {
    padding: 3rem 0 1rem;
  }
  .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;
  }
  .menuWrap .menu:first-child {
    padding-left: 0;
    width: 100%;
  }
  .menu-Bar {
    display: block;
    top: 0px;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
  }
  .menuWrap {
    position: fixed;
    left: -210%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
    height: 100vh;
    display: flex;
    align-items: 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;
  }
  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;
  }
  header.sticky {
    padding: 1rem !important;
  }
  .banner-content {
    padding-top: 140px;
  }
  .banner-heading {
    font-size: 60px;
    line-height: 116%;
  }
  .banner-text {
    font-size: 26px;
  }
  .theme-btn,
  .theme-btn-bordered {
    font-size: 18px;
    text-align: center;
  }
  .trusted-business-wrapper {
    gap: 15px;
  }
  .service-cta-title {
    padding: 30px;
  }
  .service-cta-title h1 {
    font-size: 38px;
  }
  .service-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-cta-card div {
    gap: 4px;
  }
  .service-cta-card div h2 {
    font-size: 18px;
  }
  .service-cta-card div p {
    font-size: 14px;
  }
  .sec-heading {
    font-size: 40px;
    margin-bottom: 1.5rem;
  }
  .feature-card {
    gap: 18px;
  }
  .feature-card h2 {
    font-size: 25px;
  }
  .feature-card p {
    font-size: 18px;
  }
  .portfolio-image {
    max-height: 450px;
  }
  .template-type-wrapper {
    gap: 24px;
  }
  .template-type {
    gap: 12px;
  }
  .template-type h2 {
    font-size: 24px;
  }
  .template-type .template-loader-container,
  .template-type .template-loader {
    height: 4px;
  }
  .engage-sec-heading {
    font-size: 75px;
    line-height: 100px;
    margin-bottom: 1.5rem;
  }
  .engage-sec-para {
    font-size: 28px;
  }
  .benefits-sec-card h2 {
    font-size: 25px;
  }
  .why-choose-list {
    gap: 20px;
  }
  .why-choose-list-item {
    gap: 10px;
  }
  .why-choose-list-item h2 {
    font-size: 28px;
  }
  .why-choose-list-item p {
    font-size: 16px;
  }
  .business-slider-heading {
    font-size: 60px;
    line-height: 65px;
    margin-bottom: 0.5rem;
  }
  .business-slider-para {
    font-size: 25px;
  }
  .business-slider {
    height: 450px;
  }
  .swiper-progress-wrapper {
    margin-top: 2rem;
  }
  .how-we-create ul {
    padding-bottom: 20px;
  }
  .how-we-create p {
    line-height: 28px;
  }
  .bottom-cta-content {
    gap: 20px;
  }
  .bottom-cta-content h2 {
    font-size: 40px;
  }
  .bottom-cta-content .phone-num p {
    font-size: 35px;
  }
}

@media screen and (max-width: 992px) {
  .trusted-business-text {
    font-size: 22px;
    text-align: center;
    border-right: none;
    padding: 0 0 1rem;
  }
  .trusted-business-wrapper {
    justify-content: center;
    padding: 0 1.5rem;
  }
  .padding-zero-md {
    padding: 0 !important;
  }
  .service-cta-grid {
    border-top-right-radius: 0;
    border-bottom-left-radius: 17px;
  }
  .service-cta-card {
    border-top: 1px solid #000;
    border-left: none;
  }
  .service-cta-card::before {
    left: -1px;
    top: 0;
    height: 100%;
    width: 1px;
  }
  .package-footer {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }
  .package-footer a:last-child {
    align-items: center;
  }
  .package-footer div {
    justify-content: center;
  }
  .package-footer h3 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .pkg-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header {
    padding: 3rem 0 1rem;
  }
  .logo img {
    max-width: 150px;
  }
  .banner-content {
    padding: 100px 0 20px;
  }
  .banner-padding-small {
    padding: 50px 20px 20px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .sub-heading {
    font-size: 26px;
    width: 100%;
    text-align: center;
  }
  .banner-heading {
    font-size: 40px;
    line-height: 116%;
    text-align: center;
  }
  .banner-text {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
  }
  .btn-wrap {
    flex-direction: column;
  }
  .theme-btn,
  .theme-btn-bordered {
    width: 100%;
  }
  section {
    padding: 2rem 0;
  }
  .container.mt-5 {
    margin-top: 1.5rem !important;
  }
  .service-cta {
    border-radius: none;
    border: none;
  }
  .service-cta .row {
    border-radius: 17px;
    border: 1px solid #1d1d1d;
    margin: 0 1.5rem;
  }
  .service-cta-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-cta-title h1 {
    font-size: 30px;
    text-align: center;
  }
  .service-cta-title h1 br {
    display: none;
  }
  .sec-heading {
    font-size: 30px;
    margin-bottom: 0.5rem;
  }
  .sec-sub-heading {
    font-size: 26px;
    margin-bottom: 0;
  }
  .sec-para {
    font-size: 16px;
  }
  .sec-sub-heading.text-start,
  .sec-heading.text-start,
  .sec-para.text-start {
    text-align: center !important;
  }
  .feature-card {
    gap: 12px;
  }
  .feature-card h2 {
    font-size: 22px;
  }
  .feature-card p {
    font-size: 16px;
  }
  .template-type h2 {
    font-size: 22px;
  }
  .template-type-wrapper {
    gap: 18px;
  }
  .engage-sec-heading {
            font-size: 32px;
        line-height: 38px;
    margin-bottom: 0.5rem;
  }
  .engage-sec-para {
    font-size: 24px;
  }
  .benefits-sec-card {
    gap: 10px;
  }
  .benefits-sec-card h2 {
    font-size: 24px;
    text-align: center;
  }
  .benefits-sec-card p {
    font-size: 16px;
    text-align: center;
  }
  .why-choose-list-item h2 {
    font-size: 24px;
    text-align: center;
  }
  .why-choose-list-item p {
    font-size: 14px;
    text-align: center;
  }
  .why-choose-sec img {
    display: none;
  }
  .business-slider-heading {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 0.5rem;
  }
  .business-slider-para {
    font-size: 16px;
  }
  .how-we-create ul {
    padding-left: 0;
    list-style: none;
    font-size: 26px;
    text-align: center;
  }
  .how-we-create p {
    line-height: 24px;
    text-align: center;
  }
  .accordion-list li h3 {
    font-size: 18px;
    line-height: 26px;
    padding-right: 1.25rem;
  }
  .accordion-list li {
    padding: 25px 0 25px 0;
    margin-bottom: 0.5rem;
  }
  .answer p {
    font-size: 16px;
    line-height: 24px;
  }
  .bottom-cta-content h2 {
    font-size: 30px;
    text-align: center;
    margin-top: 1rem;
  }
  .bottom-cta-content .phone-num {
    justify-content: center;
  }
  .bottom-cta-content .phone-num p {
    font-size: 30px;
  }
  .bottom-cta-features {
    flex-direction: column;
    gap: 20px;
  }
  footer,
  .newsletter-sec,
  .copyright-sec {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .newsletter-input-wrapper input::placeholder {
    font-size: 14px;
  }
  .copyright {
    flex-direction: column;
    gap: 1rem;
  }
  .copyright p,
  .copyright a {
    text-align: center;
  }
  .brand-service-banner {
    padding: 1rem 0 0;
  }
  .brand-service-banner img {
    display: none;
  }
  .brand-service-banner h1 {
    font-size: 30px;
  }
  .brand-service-banner h2 {
    font-size: 22px;
  }
  .brand-service-banner p {
    line-height: 26px;
  }
  .package-tabs li,
  .portfolio-tabs li {
    padding: 10px 15px;
  }
  .package-tabs {
    margin-bottom: 2rem;
  }
  .design-card-body h2 {
    font-size: 28px;
  }
  .design-card-body div {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .design-card-body ul {
    gap: 10px;
  }
  .design-card-body li {
    font-size: 18px;
  }
  .checkbox-wrapper label {
    font-size: 12px;
  }
  .terms ul {
    padding-left: 0;
  }
  
  
.newsletter-info-wrapper .contact-info {
    gap: 10px;
    align-items: start;
    flex-direction: column;
}
.package-price {
    font-size: 50px;
}
.package-list li {
    font-size: 16px;
}
.package-header {
    padding: 24px;
}
.package-desc {
    font-size: 16px;
}
.package-body {
    padding: 35px 28px 20px;
}








}
