:root {
  --primary: #64943e;
  --theme-gradient: linear-gradient(87deg, #64943e 8.55%, #b0d990 97.3%);
  --font-heading: "HeadingPro", sans-serif;
  --font-body: "Inter", 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;
}
html{
    overflow-x: hidden;
}
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;
}
.banner-img {
  height: 100%;
  object-fit: contain;
}
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;
  display: none;
}

.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: #fff;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
    0px 2px 4px -1px rgb(0 0 0 / 6%);
}
header.sticky {
  top: 0;
}
.menuWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
  max-width: 175px;
}

.logo h2 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}


/* 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-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s ease-in-out;
}
.menu > li:hover > a,
.menu > li.active > a {
  color: var(--primary);
}

.header-btn {
  position: relative;
  padding: 12px 24px;
  border: none;
  color: #fff !important;
  font-size: 16px !important;
  font-family: var(--font-body) !important;
  cursor: pointer;
  border-radius: 35px;
  background: var(--theme-gradient);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.header-btn:active {
  transform: scale(0.96);
}

.header-btn:before,
.header-btn:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.header-btn:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(
      circle,
      transparent 20%,
      var(--primary) 20%,
      transparent 30%
    ),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(
      circle,
      transparent 10%,
      var(--primary) 15%,
      transparent 20%
    ),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(circle, var(--primary) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.header-btn:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(
      circle,
      transparent 10%,
      var(--primary) 15%,
      transparent 20%
    ),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(circle, var(--primary) 20%, transparent 20%),
    radial-gradient(circle, var(--primary) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 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: 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: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 43.6%,
    rgba(0, 0, 0, 0.57) 54.72%,
    rgba(0, 0, 0, 0.24) 69.48%
  );
  position: relative;
  overflow: hidden;
}
.mainBanner .hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner2 {
  background: linear-gradient(
    84deg,
    rgba(0, 20, 53, 0.7) 34.79%,
    rgba(253, 254, 255, 0.7) 100.98%
  );
}
.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: #fff;
  font-family: var(--font-heading);
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.banner-text {
  margin-bottom: 35px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px; /* 181.25% */
  text-transform: uppercase;
}
.hero-bottom-banner {
  background: #273959;
  padding: 2rem;
}
.hero-bottom-banner .content-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-bottom-banner .content-wrapper h2 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

/* rounded card */
.rounded-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.rounded-card div {
  width: 100%;
  height: 100%;
  max-width: 245px;
  max-height: 245px;
  border-radius: 100%;
}
.rounded-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rounded-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rounded-card h2 {
  color: #0b0b0b;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.18px;
  text-transform: uppercase;
}

/* process card */
.process-sec {
  background: #f7faff;
}
.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 7.5rem;
  margin-top: 6rem;
}
.process-card h2 {
  color: #0b0b0b;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.process-card p {
  margin-bottom: 1.5rem;
  color: #777;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.process-card img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -20%;
}

/* service card */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card h2 {
  color: #0b0b0b;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  margin: 1.5rem 0 1rem;
}
.service-card p {
  color: #777;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* Portfolio carousel */
.portfolio-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 4rem;
}
.portfolio-carousel-container {
  display: flex;
  gap: 1rem;
}
.portfolio-carousel-slide {
  min-width: 20%;
}
.portfolio-carousel-rtl {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
}
.portfolio-carousel-rtl-container {
  display: flex;
  gap: 1rem;
}
.portfolio-carousel-rtl-slide {
  min-width: 20%;
}

/* steps container */
.steps-container {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.steps-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps-btn {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 2px solid var(--primary);
  color: #777;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.steps-btn.active {
  border: none;
  height: 42px;
  width: 42px;
  color: #fff;
  background: var(--theme-gradient);
}
.divider {
  width: 3px;
  height: 20px;
  background: #777;
}
.step-heading {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: disc;
  padding-left: 20px;
}
.step-list li {
  color: #777;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* package section */
.package-sec {
  background: #f7faff;
}
.package-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 3rem;
}
.package-tabs li {
  background: transparent;
  border-radius: 50px;
  padding: 10px 20px;
  border: 1px solid var(--primary);
  cursor: pointer;

  color: #000;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.package-tabs li.active {
  background: var(--theme-gradient);
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
}
.package {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-seal {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 110px;
}

.package-head {
  width: 100%;
  padding: 1rem;
  background: var(--theme-gradient);
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1px;
}
.package-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.package-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.package-title {
  color: #06111b;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.popular-tag {
  padding: 8px 10px;
  border-radius: 43px;
  background: var(--theme-gradient);
  color: #fff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: normal;
}
.package-desc {
  color: #06111b;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  max-width: 83%;
}
.package-desc strong {
    font-weight: bold;
}

.package-price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.package-price {
  color: #06111b;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.package-list-price {
  color: #06111b;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.discount-tag {
  padding: 8px 10px;
  border-radius: 43px;
  background: var(--theme-gradient);
  color: #fff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: normal;
}
.package-para {
  color: #06111b;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin: 20px 0 13px;
}
.package-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 230px;
  overflow-y: auto;
}
.package-list.guarantee-list {
  height: 95px;
}
.package-list p {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.package-list li {
  color: #06111b;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 0 0.25rem 0 1.25rem;
  position: relative;
}
.package-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: #111827;
  position: absolute;
  font-weight: 700;
  left: 0;
}
.package-btn-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}
.package-btn {
  padding: 15px 20px;
  border-radius: 35px;
  background: var(--theme-gradient);
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: 2px solid #fff;
}
.package-btn:hover {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.package-btn:active {
  transform: scale(0.8);
}
.package-btn-bordered {
  padding: 15px 20px;
  border-radius: 35px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
}
.package-btn-bordered:hover {
  background: var(--theme-gradient);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.package-btn-bordered:active {
  transform: scale(0.8);
}

/* awards wrapper */
.awards-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* testimonial sec */
.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 4rem;
  padding: 0 30px;
}
.testimonial-carousel-viewport {
  position: relative;
}
.testimonial-carousel-container {
  display: flex;
  gap: 30px;
}
.testimonial-carousel-slide {
  min-width: 100%;
  border-radius: 8px;
  background: #f7faff;
  padding: 40px;
  /* margin: 0 30px; */
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0b0b0b;
  border-radius: 100%;
  border: 2px solid #fff;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
  z-index: 1;
}
.testimonial-prev-arrow {
  left: -30px;
}
.testimonial-next-arrow {
  right: -30px;
}
.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-carousel-slide .stars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  margin-bottom: 1rem;
}
.testimonial-carousel-slide .stars i {
  color: #ffc107;
  font-size: 16px;
}
.testimonial-carousel-slide h1 {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.22px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.testimonial-carousel-slide p {
  color: #777;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 1rem;
}
.testimonial-carousel-slide .author-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}
.testimonial-carousel-slide .author-wrapper img {
  width: 50px;
  height: 50px;
}
.testimonial-carousel-slide .author-wrapper div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.testimonial-carousel-slide .author-wrapper div h2 {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.14px;
  text-transform: uppercase;
}
.testimonial-carousel-slide .author-wrapper div p {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 33px 34px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px 0px rgba(0, 0, 0, 0.06);
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  margin-bottom: 1rem;
}
.testimonial-card .stars i {
  color: #ffc107;
  font-size: 16px;
}
.testimonial-card h2 {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.18px;
  text-transform: uppercase;
}
.testimonial-card p {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 178.571% */
  margin: 1rem 0;
}
.testimonial-card .author-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.testimonial-card .author-wrapper img {
  width: 65px;
  height: 65px;
}
.testimonial-card .author-wrapper h2 {
  color: #0b0b0b;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.14px;
  text-transform: uppercase;
}
.testimonial-card .author-wrapper p {
  color: #777;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Approach card */
.approach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  background: #f7faff;
  padding: 50px 20px 30px;
  position: relative;
}
.approach-card .number {
  position: absolute;
  left: 50%;
  top: -35px;
  transform: translate(-50%, 0);
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: var(--theme-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.approach-card h2 {
  color: #0b0b0b;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
  text-transform: uppercase;
}
.approach-card p {
  color: #777;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

/* Contact Form */
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form .form-group h2 {
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  border-radius: 2px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  width: 100%;
  padding: 15px;
}
.contact-form p {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.contact-form label {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #777;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.contact-form label input {
  height: 15px;
  width: 15px;
  padding: 0;
}

/* Accordian */
.accordion-list {
  position: relative;
}
.accordion-list li {
  padding: 20px 30px 20px 20px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  border-radius: 3.851px;
  background: #fff;
  box-shadow: 0px 0px 28.882px 0px rgba(0, 0, 0, 0.11);
  margin-bottom: 1.5rem;
}
ul.accordion-list li span {
  display: flex;
  position: relative;
}
.accordion-list li h3 {
  color: #0b0b0b;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
ul.accordion-list li h3:after {
  content: "\2b";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: -10px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  top: 0;
  height: 24px;
  width: 24px;
  background: var(--theme-gradient);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-list li.active h4::after {
  color: #fff;
  content: "\f068";
}
ul.accordion-list li.active h3:after {
  content: "\f068";
}
.answer p {
  margin-top: 0.75rem;
  color: #22232b;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
/* Accordian */


/* Sec and Container */
.container-bg-2 {
  border-radius: 12px;
  background: #f7faff;
  padding: 3rem !important;
}
.sec-heading {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-para {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.sec-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 275px);
  gap: 20px;
}
.sec-list li {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  padding-left: 20px;
  position: relative;
}
.sec-list li {
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  padding-left: 25px;
}
.sec-list li::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  left: 0;
  color: var(--primary);
  top: 0.08rem;
}

/* Home Banner */
.home-banner-black {
  background: #0b0b0b;
}

/* 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: var(--theme-gradient);
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  border-radius: 50px;
  border: 1px solid var(--primary);
}
.theme-btn span {
  transition: all 0.5s ease-in-out;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-body);
  color: #fff;
  text-transform: uppercase;
}

.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 {
  border: 1px solid var(--primary);
  background-color: #000;
}
.theme-btn:hover span {
  background: var(--theme-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}

.theme-btn:active {
  transform: scale(0.9);
}

.theme-btn-bordered {
  padding: 15px 20px;
  background: #0b0b0b;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  border-radius: 50px;
  border: 1px solid var(--primary);
}
.theme-btn-bordered.v2 {
  padding: 15px 20px;
  background: transparent;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  border-radius: 50px;
  border: 1px solid #fff;
}
.theme-btn-bordered span {
  transition: all 0.5s ease-in-out;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-body);
  color: #fff;
  text-transform: uppercase;
}
.theme-btn-bordered.v2 span {
  transition: all 0.5s ease-in-out;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-body);
  color: #fff;
  text-transform: uppercase;
}

.theme-btn-bordered::after,
.theme-btn-bordered::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: var(--primary);
}

.theme-btn-bordered::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.theme-btn-bordered:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.theme-btn-bordered:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.theme-btn-bordered:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.theme-btn-bordered:hover span {
  color: #fff;
  font-weight: 700;
}

.theme-btn-bordered:active {
  transform: scale(0.9);
}

/* 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;
}

/* Dropshipping Card */
.dropshipping-card-wrapper {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.dropshipping-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-radius: 2px;
  background: #fff;
  padding: 30px;
  width: clamp(300px, 100%, 30%);
}
.dropshipping-card h2 {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.22px;
  text-transform: uppercase;
}
.dropshipping-card p {
  color: #777;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* 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: center;
  align-items: center;
  border-top: 1px solid #ffffff33;
  padding: 20px 0;
}
.copyright p,
.copyright a {
  color: #90928e;
  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;
}
/* ----------------------------------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 .list-ul {
  list-style: disc;
}
.terms ul {
  padding-left: 25px;
  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;
  font-weight: 700;
  margin: 1rem 0;
}
.terms p {
  margin-bottom: 1rem;
}
/* terms */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    /* border: 1px solid #ddd; */
    height: 45px;
    border-radius: 5px;
    background: #fff;
}

.newcountrycode select {
    width: 46px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.newcountrycode .countrycode {
    width: 54px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 0px;
}

.newcountrycode .phone-field {
    width: 100%;
}

.newcountrycode input {
    border: 0;
}

.newcountrycode.contact-dd input {
    padding: unset;
    border: unset;
}

/* Country Code */


/* popup */
.form-fields {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 12px;
}
.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: 925px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 8px;
    max-width: 97%;
    max-height: 95vh;
    overflow-y: auto;
}

.mmpopup {
    text-align: center;
    background: transparent;
    padding: 95px 106px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}

.mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
}
.mmpopup .formpop form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mmpopup .fld-input {
    height: 45px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 0;
    overflow: hidden;
    /* background: white !important; */
    border-radius: 4px;
    /* border: 1px solid #F7F7F7; */
}

.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: #fff;
    /* max-width: 390px; */
    margin: auto;
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 27px;
}

.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: #ffffff;
}

.mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
}

.mmpopup .centercont h3 span {
    display: block;
    margin: 0 88px;
    color: #000;
    font-weight: 600;
    font-size: 47px;
    line-height: 63px;
    color: #fff;
}

.mmpopup .centercont h4 span {
    font-weight: 700;
    color: #fff;
    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: 12px;
    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: 72%;
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    cursor: poRoboto;
    transition: 0.5s;
    font-family: 'Inter';
    height: 50px;
    cursor: pointer;
    border: 0;
}

.fld-btn button i {
    padding-left: 12px;
}

.fld-btn button:hover {
    transform: scale(1.03);
}

.cust-row {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    height: 762px;
}

.cust-row .img-sec {
    background: url('../images/popup.webp') no-repeat;
    background-size: cover;
    padding: 20px;
    display: flex;
    height: 100%;
    align-items: end;
    justify-content: start;
}

.form-sec {
    padding: 50px 30px 0;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cust-row .img-sec .testi {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(7px);
    border-radius: 20px;
    font-weight: 700;
    font-size: 44px;
    line-height: 61px;
    color: #FFFFFF;
    text-align: left;
    padding: 30px;
}

.cust-row .img-sec .testi .stars {
    font-size: 30px;
    display: flex;
    margin-top: 20px;
    gap: 5px;
    color: #FFB700;
}


.checkbox {
    display: flex;
    color: #161616;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 1.5rem;
    gap: 5px;
    flex-wrap: wrap;
}

.form-card .checkbox {
    color: #333;
    margin-bottom: 0;
}

.checkbox a {
    color: red;
}

.accent-color {
    color: var(--primary);
}

hr.horizontal {
    width: 80px;
    margin: 1rem auto 0;
    /* border-color: #03361B; */
    opacity: 1;
    color: #03361B;
    height: 1.5px;
    border-radius: 100px;
}

/* popup */

@media screen and (max-width: 1200px) {
    ul.menu.btns li {
        border-bottom: 0;
    }
  header {
    padding: 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;
    font-size: 14px;
  }
  .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: 100dvh;
    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: 48px;
    line-height: 116%;
  }
  .banner-text {
    font-size: 20px;
  }
  .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;
  }
  .theme-btn span {
    font-size: 16px;
}
.package-seal {
    max-width: 80px;
}
.package-desc {
  max-width: 100%;
}
.package-btn-wrap {
    flex-direction: column;
}
.package-btn {
    width: 100%;
}
.package-btn-bordered {
    width: 100%;
    justify-content: center;
}
.package-body {
    padding: 2rem 1rem;
}
.theme-btn {
    padding: 15px 15px;
}
.theme-btn-bordered span {
    font-size: 16px;
}
.dropshipping-card {
    padding: 18px;
}
.step-list li {
    font-size: 16px;
}
.testimonial-card h2 {
    font-size: 20px;
    line-height: 26px;
}
  
  
  
  
  
  
}

@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;
  }
  img.banner-img {
    display: none;
  }
  .banner-text {
        font-size: 16px;
    }
.mmpopup {
    padding: 50px 35px;
}
.mmpopup .centercont h3 span {
    font-size: 38px;
    line-height: 44px;
}
.sec-list {
    grid-template-columns: repeat(auto-fit, 298px);
    gap: 10px;
}
ul.sec-list {
    margin: 1rem 0 0;
}
.steps-btn-wrapper {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}
.portfolio-carousel{
    margin-top: 2rem;
}
img.dnone {
    display: none;
} 
.package-btn-wrap {
    flex-direction: column;
}
.package-btn {
    width: 100%;
}
.package-btn-bordered {
    width: 100%;
    justify-content: center;
}
.package-body {
    padding: 2rem 1rem;
}
.awards-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.hero-bottom-banner .content-wrapper h2 {
    font-size: 17px;
}
.dropshipping-card {
    padding: 24px;
}
section {
    padding: 2rem 0;
}
.theme-btn span {
    font-size: 14px;
}
.approach-card h2 {
    font-size: 20px;
    line-height: 34px;
}
.approach-card {
    padding: 50px 16px 30px;
    margin-bottom: 2rem;
}
.theme-btn-bordered.v2 span {
    font-size: 14px;
}
.testimonial-card h2 {
    font-size: 20px;
    line-height: 26px;
}
.testimonial-card {
    padding: 24px 22px;
}
.testimonial-carousel-slide h1 {
    font-size: 28px;
}
.contact-form label {
    text-align: left;
}

  
  
}

@media screen and (max-width: 767px) {
  .pkg-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header {
    padding: 0;
  }
  .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: 32px;
    line-height: 116%;
    text-align: center;
  }
  .banner-text {
    font-size: 16px;
    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;
    line-height: 40px;
  }
  .service-cta-title h1 br {
    display: none;
  }
  .sec-heading {
    font-size: 26px;
    margin-bottom: 0.5rem;
    line-height: 34px;
  }
  .sec-sub-heading {
    font-size: 26px;
    margin-bottom: 0;
  }
  .sec-para {
    font-size: 16px;
    line-height: 22px;
  }
  .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: 48px;
    line-height: 54px;
    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: 48px;
    line-height: 54px;
    margin-bottom: 0.5rem;
  }
  .business-slider-para {
    font-size: 24px;
  }
  .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: 17px;
    line-height: 22px;
    padding-right: 1.25rem;
  }
  .accordion-list li {
    padding: 20px 20px 20px 16px;
    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;p
  }
  .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: 14px;
  }
  .terms ul {
    padding-left: 0;
  }
  
  .mmpopup .centercont h3 span {
        margin: 0 16px;
        font-size: 30px;
        line-height: 36px;
    }
    .mmpopup {
        padding: 28px 24px;
    }
    .form-fields {
        flex-direction: column;
    }
    .mmpopup .centercont p {
        font-size: 14px;
        line-height: 20px;
    }
    .fld-btn button {
        width: 100%;
        font-size: 14px;
    }
    
   .steps-btn-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    } 
    .step-heading {
        font-size: 24px;
    }
    .step-list li {
        font-size: 16px;
        line-height: 20px;
    }
    .package-btn-wrap {
        flex-direction: column;
        margin: 1.5rem 0 0;
    }
    .awards-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonial-carousel {
        margin-top: 2rem;
        padding: 0 0px;
    }
    .testimonial-carousel-slide {
        padding: 20px;
    }
    .testimonial-carousel-slide h1 {
        font-size: 20px;
    }
    .testimonial-carousel-slide p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0rem;
    }
    .testimonial-arrow {
        display: none;
    }
    .process-card img {
        top: -22%;
    }
    .container-bg-2 {
        padding: 1rem !important;
    }
    .dropshipping-card {
        padding: 20px;
        gap: 1rem;
    }
    .mmpopup .centercont h4 {
        font-size: 20px;
    }
    .mmpopup .centercont h4 span {
        font-size: 36px;
    }
    .package-btn {
        width: 100%;
    }
    .testimonial-card h2 {
        font-size: 20px;
    }
    
     
    
    
}
