/*Main Css */
:root {
  --primary: #f65608;
  --secondary: #ebd22f;
  --bg-light: #ffdecc;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;

  --font-heading: "Anton", sans-serif;
  --font-accent: "Open Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --icon: "Font Awesome 5 Pro", sans-serif;
}
::selection {
  background: var(--primary);
  color: #fff;
  text-shadow: none;
}

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

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: var(--primary);
}

/* Tabbing CSS */

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

[class^="box-"].showfirst {
  display: block;
}
html, body {
  overflow-x:hidden;
  position: relative;
} 
body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: normal;
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type="submit"] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

span {
  display: inline-block;
}

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

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

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

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

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

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

/* Padding Classes */
.pad-zero {
  padding: 0px;
}
.pad-l-zero {
  padding-left: 0px;
}
.pad-r-zero {
  padding-right: 0px;
}
.ovr-hiddn {
  overflow: hidden;
}
.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.overlay {
  display: none;
}
.overlay.active {
  display: block;
}

/* Custom Slick Css */
.slick-list {
  margin: 0 -15px;
}
.slick-slide {
  margin: 0 15px;
}
.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}
.slick-dots li {
  margin: 0 10px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}
.slick-dots li button {
  height: 8px;
  width: 30px;
  border-radius: 100px;
  padding: 0px;
  background: #dddddd;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}
.slick-dots li.slick-active button {
  background: #b6b9fc;
  width: 55px;
}

/*header css*/
header {
  transition: all 0.4s ease-In-out;
  z-index: 1;
  padding: 0.5rem 0;
  background: #fff;
}
.header-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.header-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #000;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: all 0.5s ease;
}
.header-link-btn:hover {
  color: var(--primary);
  transform: scale(1.03);
}
.header-btn {
  padding: 10px 20px;

  border-radius: 90px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0px 7px 0px 0px #000;
  color: #1e1e1e;
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease-in-out;
  overflow: hidden;
}
.header-btn::before {
  content: "";
  background: var(--primary);
  width: 0%;
  height: 100%;
  border-radius: 35px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.4s ease-in-out;
}
.header-btn:hover {
  color: #fff;
  background: var(--primary);
}
.header-btn:hover::before {
  width: 100%;
}
/* .hamburger-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
} */
.hamburger-switch {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  display: none;
}
.hamburger-switch .wrapper {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s;
}
.hamburger-switch .hamburger-row {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.hamburger-switch .hamburger-row-bottom {
  align-items: flex-end;
}
.hamburger-switch .dot {
  width: 8px;
  height: 8px;
  border: 2px solid black;
  border-radius: 50%;
  transition: all 0.2s;
}
.hamburger-switch .hamburger-row-horizontal {
  position: absolute;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}
.hamburger-switch .hamburger-row-vertical {
  position: absolute;
  width: fit-content;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}

.hamburger-switch:hover .wrapper .hamburger-row-horizontal {
  width: 100px;
}
.hamburger-switch:hover .wrapper .hamburger-row-vertical {
  height: 100px;
}

.hamburger-switch:hover .wrapper .hamburger-row-vertical .middle-dot {
  border-radius: 5px;
  height: 35px;
}
.hamburger-switch:hover
  .wrapper
  .hamburger-row-horizontal
  .middle-dot-horizontal {
  border-radius: 5px;
  width: 35px;
}
.hamburger-switch.active .wrapper {
  transform: rotate(45deg) scale(1.2);
}
.hamburger-switch.active .wrapper .hamburger-row-vertical {
  height: 100px;
}
.hamburger-switch.active .wrapper .hamburger-row-horizontal {
  width: 100px;
}

.hamburger-switch.active .wrapper .hamburger-row-vertical .middle-dot {
  border-radius: 5px;
  height: 35px;
}
.hamburger-switch.active .wrapper
  .hamburger-row-horizontal
  .middle-dot-horizontal {
  border-radius: 5px;
  width: 35px;
}
nav {
  background: #67a979;
  padding: 1.8rem 2rem;
}
nav.open {
  /* display: block; */
  left: 0px;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.menu .navlink {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}
.menu .navlink:hover {
  color: #fff;
}
.menu .navlink:hover svg path {
  fill: #fff !important;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
}
.has-child {
  position: relative;
  z-index: 99;
}
.dropdown {
  position: absolute;
  top: 120%;
  display: none;
  width: 660px;
  background: #000;
  padding: 1.25rem;
  border-radius: 20px;
  z-index: 99;
}
.dropdown ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  /* columns: 150px; */
}
.dropdown ul li {
  padding: 0.5rem 1rem;
  width: 100%;
  border-radius: 50px;
  display: flex;
  align-items: center;
  /* margin-bottom: 10px; */
}
.dropdown ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}
.dropdown ul li:hover {
  background: var(--primary);
}

/* Main Banner CSS */
.mainBanner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner-content {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mainBanner.innerPage .banner-content {
  align-items: flex-start;
}
.banner-image {
  margin-bottom: -2px;
}
.banner-image.fill {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.banner-image-fluid-contain {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50dvw;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.banner-image-fluid-cover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50dvw;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.banner-widget1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10dvw;
}
.banner-video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50dvw;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner-subheading {
  color: #000;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-bottom: 1.5rem;
}
.banner-heading {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2.4px;
  display: flex;
  align-items: flex-start;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.banner-heading strong {
  color: var(--primary);
}
.mainBanner.innerPage .banner-heading {
  text-align: left;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -2.4px;
  display: unset;
  z-index: 1;
  margin-bottom: 0;
}
.mainBanner.innerPage .banner-heading.sm {
  font-size: 100px;
}
.banner-heading span {
  background: linear-gradient(93deg, #4d17f5 0%, #f517bd 77.3%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-heading.highlight {
  width: 100%;
  justify-content: flex-end;
  margin-top: -16%;
}
.home-elm2 {
  position: relative;
  z-index: -1;
}
.home-elm2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 190%;
  height: 200%;
  background-image: url(../images/hero-imgs/home-elm2-bg.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.home-elm1,
.home-elm3 {
  position: relative;
}
.home-elm1::before {
  content: "";
  position: absolute;
  top: -90%;
  left: -15%;
  width: 200px;
  height: 200px;
  background: url(../images/hero-imgs/home-elm1.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.home-elm3::before {
  content: "";
  position: absolute;
  bottom: -8%;
  left: -14%;
  width: 210px;
  height: 170px;
  background: url(../images/hero-imgs/home-elm3.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-text {
  color: #000;
  text-align: center;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin: 2rem 0;
  width: 80%;
}
.mainBanner.innerPage .banner-text {
  text-align: left;
  margin: 2rem 0;
  width: 100%;
  font-size: 28px;
}

.hero-flip-card {
  /* width: 152px;
  height: 210px; */
  width: 140px;
  height: 185px;
  perspective: 1000px;
  position: absolute;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
  animation: flipAnimation 8s infinite linear;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}
@keyframes flipAnimation {
  0%,
  20% {
    transform: rotateY(0deg);
  }
  50%,
  70% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.hero-flip-card.top-left {
  top: 10%;
  left: -1.5dvw;
  transform: rotate(30deg);
}
.hero-flip-card.bottom-left {
  bottom: 20%;
  left: -1.5dvw;
  transform: rotate(-30deg);
}
.hero-flip-card.top-right {
  top: 10%;
  right: -1.5dvw;
  transform: rotate(-30deg);
}
.hero-flip-card.bottom-right {
  bottom: 20%;
  right: -1.5dvw;
  transform: rotate(30deg);
}
.hero-flip-card.bottom-left .flip-card-inner {
  animation-delay: 0.5s;
}
.hero-flip-card.top-right .flip-card-inner {
  animation-delay: 1s;
}
.hero-flip-card.bottom-right .flip-card-inner {
  animation-delay: 1.5s;
}
.banner-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 1rem;
}
.banner-list li {
  color: #000;
  font-family: var(--font-body);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.6px;
  position: relative;
  padding-left: 40px;
}
.banner-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/package-check.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
}

/* hero-marquee-strip */
.marquee-text {
  overflow: clip;
  background: #000;
  padding: 30px 0;
}

.marquee-text-track {
  display: flex;
  padding-left: 4.8rem;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-move-text 10s linear infinite forwards;
}

.marquee-text p {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}

/* Theme Buttons */
.btn-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}
.btn-wrap .wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.theme-btn {
  padding: 20px 30px;
  border-radius: 90px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0px 7px 0px 0px #000;
  color: #000;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease-in-out;
  overflow: hidden;
}
.mainBanner.innerPage .theme-btn {
  padding: 15px 20px;
  gap: 10px;
  font-size: 28px;
}
.theme-btn div {
  padding: 5px 10px;
  border-radius: 90px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  transition: all 0.6s ease-in-out;
}
.theme-btn img {
  transition: all 0.6s ease-in-out;
}
.theme-btn:hover img {
  filter: brightness(0) invert(1);
}
.theme-btn::before {
  content: "";
  background: var(--primary);
  width: 0%;
  height: 100%;
  border-radius: 35px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.4s ease-in-out;
}
.theme-btn:hover {
  color: #fff;
  background: var(--primary);
}
.theme-btn:hover div {
  color: #000;
  background: #fff;
}
.theme-btn:hover::before {
  width: 100%;
}
.btn-review {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
.mainBanner.innerPage .btn-review {
  gap: 8px;
}
.btn-review div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.btn-review div p {
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.mainBanner.innerPage .btn-review div p {
  font-size: 18px;
}
.btn-review div p b {
  font-weight: 700;
}
/* Theme Buttons */

/* sections */
section {
  padding: 4rem 0;
  position: relative;
}
.sec-heading {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1.8px;
  margin-bottom: 1.5rem;
}
.sec-para {
  color: #000;
  text-align: center;
  font-family: var(--font-body);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.6px;
}
.sec-para b, .sec-para a {
  color: #333;
  font-weight: 700;
}
.pt-200 {
  padding-top: 200px;
}
/* sections */

/* process-sec */
.process-sec {
  background-image: url("../images/process-sec-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 8rem 0.75rem;
}
.process-col {
  display: flex;
  justify-content: center;
}
.process-card {
  border-radius: 40px;
  border: 2px solid var(--secondary);
  background: #ededed;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: fit-content;
  position: relative;
}
.process-card .tag {
  background: var(--primary);
  border: 2px solid var(--secondary);
  padding: 2rem 3.25rem;
  width: fit-content;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  position: absolute;
  top: -40px;
  right: -40px;
  transform: rotate(20deg);
}
.process-card .tag span {
  color: var(--secondary);
}
.process-card h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1.8px;
}
.process-card ul {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.process-card ul li {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.process-card ul li:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 60px;
  position: absolute;
  bottom: -65px;
  left: 30px;
  background: #000;
}
.process-card ul li .check {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--secondary);
  display: grid;
  place-items: center;
}
.process-card ul li .process-info {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 2px solid #000;
  cursor: pointer;
  transition: 0.2s ease-in;
}
.process-card ul li .process-info h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.6px;
  transition: 0.2s ease-in;
}
.process-card ul li:nth-child(1) .process-info {
  /* background: #aed7b9; */
  background: #b4aed7;
}
.process-card ul li:nth-child(2) .process-info {
  background: #c1ddca;
}
.process-card ul li:nth-child(3) .process-info {
  background: #e7d5cd;
}
.process-card ul li:nth-child(4) .process-info {
  background: #e9e4c7;
}
.process-card ul li:nth-child(5) .process-info {
  background: #c9dff6;
}
.process-card ul li .process-info:hover,
.process-card ul li.active .process-info {
  background: #000;
}
.process-card ul li.active .process-info h2,
.process-card ul li .process-info:hover h2 {
  color: #fff;
}
.process-img {
  display: none;
}
.process-img:nth-child(1) {
  display: block;
}
.process-img img {
  margin: 0 auto;
}
.process-img p {
  color: #000;
  text-align: center;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.6px;
  margin: 40px auto 0;
  max-width: 600px;
}

/* services-sec */
.services-sec {
  background-image: url("../images/service-sec-bg.webp");
  background-size: cover;
  background-position: center;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services-list li {
  border-radius: 105px;
  background: #fff;
  padding: 20px 170px 20px 90px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.services-list li .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.services-list li .heading img {
  opacity: 0;
  transition: 0.3s ease;
}
.services-list li .heading h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.84px;
  transition: 0.3s ease;
}
.services-list li p {
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.32px;
}
.services-list li .service-stats {
  width: 140px;
  height: 140px;
  padding: 10px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #000;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.services-list li .service-stats h2 {
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 33px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.336px;
}
.services-list li .service-stats p {
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.214px;
}
.services-list li:hover .heading h2 {
  color: #1f8d42;
}
.services-list li:hover .heading img {
  opacity: 1;
}
.services-list li:hover .service-stats {
  opacity: 1;
}

/* pricing-sec */
.pricing-sec {
  background-image: url("../images/pricing-sec-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.package {
  border-radius: 36px;
  border: 4px solid #000;
  background: #fff1ac;
  padding: 0px 24px 32px;
  display: flex;
  flex-direction: column;
  transition: 0.4s ease-in;
}
.package * {
  transition: 0.4s ease-in;
}
.package.p1 {
  background: #ffdede;
}
.package.p2 {
  background: #fff1ac;
}
.package.p3 {
  background: #c9ffda;
}
.package-title {
  align-self: center;
  border-radius: 0px 0px 35px 35px;
  background: #000;
  padding: 12px 36px 18px;
  color: #ffe878;
  text-align: center;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.6px;
}
.pricing-container {
  border-radius: 38px;
  border: 3px solid #000;
  margin: 30px 0;
  box-shadow: 3.5px 5.3px 0px 0px #000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
}
.pricing-container.inner-package {
  border-radius: 0;
  border: none;
  margin: 30px 0;
  box-shadow: none;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  overflow: visible;
}
.pricing-container > div {
  margin: 30px 0 25px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.package.p1 .pricing-container {
  background: #dbc7c7;
}
.package.p2 .pricing-container {
  background: #e4e7ca;
}
.package.p3 .pricing-container {
  background: #b5c9e7;
}
.pricing-container .price {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.372px;
}
.pricing-container.inner-package .price {
  color: var(--primary);
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2.338px;
}
.pricing-container .list-price {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.503px;
  text-decoration-color: var(--primary);
}
.pricing-container.inner-package .list-price {
  border-radius: 90px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0px 7px 0px 0px #000;
  padding: 5px 25px;
}
.package-list-heading {
  color: #0b0b0b;
  font-family: var(--font-heading);
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.84px;
  margin-bottom: 40px;
}
.package-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 230px;
  overflow-y: auto;
}
.package-list li {
  color: #0b0b0b;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.4px;
  padding-left: 30px;
  padding-right: 10px;
  position: relative;
}
.package-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/package-check.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
}
.package .theme-btn {
  margin: 30px 0;
  font-size: 40px;
  text-transform: unset;
}
.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.package-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.package:hover {
  border: 4px solid var(--primary);
  background: #ececec;
}
.package:hover .package-title {
  background: var(--primary);
  color: #fff;
}
.package:hover .pricing-container.inner-package .price {
  color: #fff;
}
.package:hover .pricing-container .price {
  color: var(--primary);
}
.pricing-sec .hand-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.pricing-sec .hand-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* portfolio-sec */
.style-portfolio {
  background: #f4f4f4;
}
.portfolio-slider {
  margin-top: 1.5rem;
}
.portfolio-card {
  position: relative;
  width: fit-content;
}
.client-info {
  border-radius: 90px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0px 7px 0px 0px #000;
  padding: 20px 30px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.client-info h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.client-info svg {
  margin-left: auto;
}
.portfolio-slider.splide-rtl .client-info {
  flex-direction: row-reverse;
}
.portfolio-slider.splide-ltr {
  margin-top: 5rem;
}
.portfolio-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.portfolio-nav a {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.6px;
  padding-bottom: 5px;
  transition-duration: 0s;
}
.portfolio-nav a:hover {
  color: var(--primary);
}
.portfolio-nav li.active a {
  border-bottom: 4px solid #1eb24d;
}

/* stats-sec */
.stats-card {
  border-radius: 43px;
  border: 5px solid #000;
  background: #fff;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}
.stats-card .counter {
  color: #fff;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #f65608;
  font-family: var(--font-heading);
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.8px;
}
.stats-card p {
  color: #000;
  text-align: right;
  font-family: var(--font-body);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.stats-card.stats-left {
  align-items: flex-end;
}
.stats-card.stats-left p {
  text-align: right;
}
.stats-card.stats-center {
  align-items: center;
}
.stats-card.stats-center p {
  text-align: center;
}
.stats-card.stats-right {
  align-items: flex-start;
}
.stats-card.stats-right p {
  text-align: left;
}

/* cta-sec */
.cta-sec {
  background: #e5debe;
  position: relative;
  overflow-x: hidden;
}
.cta-heading {
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1.8px;
}
.cta-heading span {
  color: #fff;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: #409900;
  font-size: 180px;
  line-height: 0.9;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.cta-para {
  color: #d1916e;
  text-align: center;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin: 20px 0 50px;
}
.cta-sec .hand-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 38dvw;
  max-height: 100vh;
}
.cta-sec .hand-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 33dvw;
  max-height: 100vh;
}

#armPath {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.animate #armPath {
  animation: drawArm 2.5s ease-in-out forwards;
}

#hand {
  opacity: 0;
  transform-origin: 430px 500px;
}

.animate #hand {
  animation: bounceInHand 0.5s ease-in-out forwards;
  animation-delay: 2.3s;
}

@keyframes drawArm {
  to {
    stroke-dashoffset: 4000;
  }
}

@keyframes bounceInHand {
  from {
    opacity: 0;
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    opacity: 1;
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    opacity: 1;
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    opacity: 1;
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    opacity: 1;
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
  }
}

/* testimonial-sec */
.testimonial-slider {
  margin-top: 4rem;
}
.testimonial-card {
  width: 100%;
  height: 100%;
  max-width: 1180px;
  border-radius: 43px;
  border: 5px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../images/testimonial-card-bg.webp");
  background-position: left;
  background-size: cover;
}
.testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 50px 40px 50px;
}
.testimonial-content .client {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.testimonial-content .client h2 {
  color: #020201;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.testimonial-content .client .tag {
  border-radius: 93px;
  background: #ff710a;
  padding: 4px 12px;
  color: #eaeaea;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.testimonial-content p {
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.testimonial-content p:last-child {
  margin-top: auto;
}
.testimonial-sec .btn-wrap {
  margin-top: 80px;
}



/* blog-sec */
.mainBanner.blogPage {
  background-color: #191a1a;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      #7272724d 25%,
      #7272724d 26%,
      transparent 27%,
      transparent 74%,
      #7272724d 75%,
      #7272724d 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      #7272724d 25%,
      #7272724d 26%,
      transparent 27%,
      transparent 74%,
      #7272724d 75%,
      #7272724d 76%,
      transparent 77%,
      transparent
    );
  background-size: 75px 75px;
  background-repeat: repeat;
}
.mainBanner.blogPage .banner-content {
  padding: 100px 0;
}
.blog-sec {
  background-color: #f2f2f2;
  background-size: 75px 75px;
}
.mainBanner.blogPage .banner-heading {
    font-size: 64px;
    letter-spacing: -1px;
    line-height: 1.2;
}
.blogcard {
  --gap-action: 10px;
  --sz-action: 58px;
  --round-card: calc(var(--sz-action) / 2 + calc(var(--gap-action) / 2));

  min-height: 200px;
  height: 100%;
  border-radius: var(--round-card);
  position: relative;
  background-color: #fecd52;
  padding: 1.25rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-shadow: -10px -10px 0 0 #000;
}

.blogcard .corner {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: auto;
  right: 0;
  bottom: 0;
  background-color: #f2f2f2;
  z-index: 10;
  border-top-left-radius: var(--round-card);
  padding-top: var(--gap-action);
  padding-left: var(--gap-action);
  gap: var(--gap-action);
}
.blogcard .corner i[data-corner] {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 10;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blogcard .corner i[data-corner]::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: var(--round-card);
  background-color: #fecd52;
  z-index: -1;
}
.blogcard .corner i[data-corner="tr"] {
  top: -50%;
  left: 50%;
}
.blogcard .corner i[data-corner="br"] {
  right: 100%;
  top: 50%;
}
.blogcard .corner .action {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  height: var(--sz-action);
  min-height: var(--sz-action);
  max-height: var(--sz-action);
  width: var(--sz-action);
  min-width: var(--sz-action);
  max-width: var(--sz-action);
  border: none;
  outline: none;
  transition: all 0.5s ease;
  background-color: #f2f2f2;
  border: 3px solid #000;
}
.blogcard .corner .action:hover {
  background: #fecd52;
  transform: rotate(45deg);
}
.blogcard .corner .action svg {
  width: 32px;
  height: 32px;
}
.box-body {
  gap: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9;
}
.box-body .box-content {
  gap: 16px;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: row;
  position: relative;
}
.box-body .caption {
  gap: 10px;
  display: flex;
  align-items: start;
  flex-direction: column;
  padding-right: 3rem;
}
.box-body .caption h1 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.84px;
}
.box-body .caption p {
  color: #333;
  line-height: 1.4;
}
.blog-para {
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.2px;
  margin-bottom: 1.25rem;
}
.blog-subheading {
  color: #000;
  font-family: var(--font-heading);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: disc;
  padding-left: 24px;
}
.blog-list li {
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.2px;
  margin-bottom: 1.25rem;
}
.blog-list li b {
  font-weight: 700;
}
h3.blog-innerheading {
  color: #000;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}









/* FAQs-sec */

.accordion-list {
  position: relative;
}
.accordion-list li {
  padding: 40px 160px 40px 70px;
  cursor: pointer;
  width: 100%;
  border-radius: 30px;
  border: 4px solid #000;
  background: #fff;
  box-shadow: 0px 14px 0px 0px #000;
  margin-bottom: 2rem;
  position: relative;
  transition: 0.4s ease-in;
}
.accordion-list li.active {
  background: #e5debe;
}
.accordion-list li span {
  display: flex;
}
.accordion-list li h3 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.8px;
}
ul.accordion-list li h3:after {
  content: "";
  background-image: url("../images/icons/faq-icon.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 25px;
  right: 60px;
  transition: all 0.3s ease-in-out;
}
.answer p {
  margin-top: 1.25rem;
  color: #333;
  font-family: var(--font-body);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.6px;
}
.companies-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 100px;
  row-gap: 10px;
  margin-top: 3rem;
}

/* contact-sec */
.contact-sec {
  background-image: url("../images/contact-sec-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
}
.contact-info-card {
  padding: 50px 45px 350px;
  border-radius: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}
.contact-info-card h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
}
.contact-info-card p {
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  max-width: 400px;
}
.contact-info-card a {
  max-width: 400px;
  color: #333;
  font-family: var(--font-heading);
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-card .bottom-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.contact-form-card {
  border-radius: 30px;
  background: #506244;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.contact-form-card h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.contact-input-container {
  position: relative;
  margin-top: 50px;
  width: 100%;
}

.contact-input-container input[type="text"] {
  font-size: 16px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #409900;
  padding: 5px 0;
  background-color: transparent;
  outline: none;
  color: #fff;
}

.contact-input-container .label {
  position: absolute;
  top: -10px;
  left: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.contact-input-container input[type="text"]:focus ~ .label,
.contact-input-container input[type="text"]:valid ~ .label {
  top: -30px;
}

.contact-input-container .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.contact-input-container input[type="text"]:focus ~ .underline,
.contact-input-container input[type="text"]:valid ~ .underline {
  transform: scaleX(1);
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
}

/* info-sec-logo */
.info-sec-logo {
  position: relative;
  padding: 6rem 0 0;
  z-index: 3;
}
.info-sec-logo::before {
  content: "";
  height: 100%;
  width: 50dvw;
  background: #1eb24d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.info-sec-logo-img {
  height: 60%;
  width: 55dvw;
  object-fit: cover;
  object-position: bottom right;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.logo-info-heading {
  color: #030405;
  font-family: var(--font-heading);
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-bottom: 26px;
}
.logo-info-desc {
  color: #fff;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
}
.logo-info-subheading {
  color: #000;
  font-family: var(--font-heading);
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
}
.logo-info-para {
  color: #000;
  font-family: var(--font-body);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.44px;
  margin: 40px 0;
}
.logo-info-samples {
  width: calc(50dvw - 5px);
  background: #fff472;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  row-gap: 35px;
  column-gap: 50px;
  padding: 35px 45px;
  margin-left: auto;
  margin-top: 9rem;
}

.info-sec-3d,
.info-sec-2d,
.info-sec-book-cover,
.info-sec-book,
.info-sec-custom {
  position: relative;
  padding: 6rem 0 4rem;
  z-index: 3;
}
.info-sec-3d::before,
.info-sec-2d::before,
.info-sec-book-cover::before,
.info-sec-book::before,
.info-sec-custom::before {
  content: "";
  height: 100%;
  width: 50dvw;
  background: url("../images/info-sec-2d-bgleft.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.info-sec-3d::after,
.info-sec-2d::after,
.info-sec-book-cover::after,
.info-sec-book::after,
.info-sec-custom::after {
  content: "";
  height: 100%;
  width: 50dvw;
  background: url("../images/info-sec-3d-bgright.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.info-sec-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.8px;
}
.info-sec-desc {
  color: #000;
  font-family: var(--font-body);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
}
.info-sec-card {
  background: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin: 60px 0 40px;
}
.info-sec-card h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
}
.info-sec-card p {
  color: #000;
  font-family: var(--font-body);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.44px;
}
.info-sec-2d-img {
  height: 100%;
  width: 55dvw;
  object-fit: contain;
  object-position: bottom;
  position: absolute;
  bottom: -130px;
  left: 0;
  z-index: 2;
}
.info-sec-3d-img {
  height: 100%;
  width: 50dvw;
  object-fit: contain;
  object-position: bottom;
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: 2;
}
.info-sec-book-cover-img {
  height: 100%;
  width: 53dvw;
  object-fit: contain;
  object-position: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.info-sec-book-img {
  height: 100%;
  width: 52dvw;
  object-fit: contain;
  object-position: bottom;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 2;
}
.info-sec-custom-img {
  height: 100%;
  width: 46dvw;
  object-fit: contain;
  object-position: bottom;
  position: absolute;
  bottom: -55px;
  left: 40px;
  z-index: 2;
}

/* style-page-info */
.style-page-info {
  background: #67a979;
  position: relative;
  padding: 8rem 0;
}
.style-page-info .sec-heading {
  font-size: 84px;
}
.style-page-info .sec-para {
  margin-bottom: 2rem;
}
.style-page-info .theme-btn {
  padding: 15px 20px;
  gap: 10px;
  font-size: 28px;
}
.style-info-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 48dvw;
  height: 100%;
  background: var(--secondary);
  padding: 30px;
}
.style-info-img img,
.style-info-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

/* why-us-sec */
.why-us-sec {
  position: relative;
}
.why-us-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 48dvw;
  height: 100%;
  object-fit: cover;
}

/* footer */
footer {
  background: #dbd8b7;
  padding: 2rem 0 5rem;
}
footer .brand-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .brand-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .brand-info li a,
footer .brand-info li p {
  color: #000;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
}
.footer-links-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-links-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-wrapper ul h3 {
  color: #000;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.44px;
  margin-bottom: 10px;
}
.footer-links-wrapper ul a {
  color: #333;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.54px;
}
.footer-links-wrapper ul a:hover {
  color: var(--primary);
}
/* .footer-desc {
  color: #333;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.54px;
} */
.copyright-sec {
  background: #010000;
  padding: 10px 0;
}
.copyright-sec .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright-sec p,
.copyright-sec a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.54px;
}
.copyright-sec a:hover {
  color: var(--primary);
}

/* 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: 100%;
  box-shadow: 0 0 30px -9px #0000006e;
  z-index: 9999999;
  overflow: hidden;
  display: none;
  border-radius: 30px;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  background: url("../images/popup-bg.webp");
  background-size: cover;
  background-position: center;
}
.popupmain::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-90%);
  width: 150px;
  height: 120px;
  background: url("../images/popup-obj.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.mmpopup {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}
.mmpopup .content-sec {
  border-radius: 22px;
  background: #fff;
  padding: 30px;
  max-width: 576px;
}
.mmpopup .formpop {
  width: 100%;
  margin: 24px auto;
}
.mmpopup .fld-input {
  /* height: 50px; */
  width: 100%;
  /* margin-bottom: 9px; */
  border-radius: 10px;
  margin-bottom: 1.5rem;
  /* border: 1px solid #d1d5db; */
  overflow: hidden;
  background-color: #efefef;
}
.mmpopup .centercont h3 {
  font-size: 38px;
  color: #141515;
  margin-bottom: 20px;
}
.mmpopup .centercont p {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 10px;
}
.closeico {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 9999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 100px;
  color: #fff !important;
}
.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: 28px;
  margin: -12px 0 16px;
  font-weight: 700;
}
.mmpopup .centercont h3 span {
  color: #333;
  font-family: var(--font-heading);
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
}
.mmpopup .centercont h4 span {
  font-weight: 900;
  font-size: 60px;
  color: var(--primary);
}
.fld-input input {
  width: 100%;
  /* height: 100%; */
  padding: 22px;
  font-size: 16px;
  letter-spacing: 0.2px;
  background: #efefef;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none;
  border-radius: 10px;
}
.fld-input input::placeholder {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
.fld-btn {
  display: flex;
  justify-content: flex-start;
}
.fld-btn button {
  background: var(--secondary);
}
.mmpopup .form-review {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.mmpopup .form-review b {
  font-weight: 600;
}
.mmpopup .review-sites {
  gap: 1rem;
  margin-top: 1rem;
}
.mmpopup .review-sites p {
  text-align: left;
  color: #000;
}
.mmpopup .review-sites .forbes p {
  color: #000;
}
/* popup */

/* Country Code */
.newcountrycode {
  position: relative;
  display: flex;
  align-items: center;
  /* padding-left: 40px; */
  border: 1px solid #ddd;
  height: 45px;
  border-radius: 5px;
}
.newcountrycode select {
  width: 56px;
  border: 0;
  padding: 0px 19px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  background: transparent;
}
.newcountrycode .countrycode {
  width: 70px;
  border: 0;
  background: #f9f9f9;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  margin: 0 10px;
}
.newcountrycode .phone-field {
  width: 100%;
}
.newcountrycode input {
  border: 0;
}
/* Country Code */

/* 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;
  padding-left: 24px;
}
.terms ul {
  line-height: 25px;
  font-size: 16px;
  color: #333;
}
.terms ul li {
  margin-bottom: 1rem;
}
.terms ul li::marker {
  font-size: 22px;
  font-weight: 500;
}
.terms h4 {
  font-size: 24px;
  margin: 1rem 0;
  font-family: "Anton";
}
.terms p {
  margin-bottom: 1rem;
}
/* terms */

@media (max-width: 1400px) {
  .header-btn-wrapper {
    gap: 15px;
  }
  .menu {
    justify-content: space-evenly;
    gap: 1rem;
  }
  .banner-heading {
    font-size: 100px;
    margin-bottom: 1rem;
  }
  .home-elm1::before {
    width: 180px;
    height: 180px;
  }
  .home-elm2::before {
    width: 180%;
    height: 190%;
  }
  .banner-heading.highlight {
    margin-top: -20%;
  }
  .home-elm3::before {
    bottom: 6%;
    left: -14%;
    width: 200px;
    height: 150px;
  }
  .banner-text {
    font-size: 26px;
    margin: 4rem 0 1rem;
  }
  .hero-flip-card {
    width: 130px;
    height: 170px;
  }
  .process-card {
    padding: 60px;
  }
  .process-card h1 {
    font-size: 82px;
  }
  .process-card ul {
    gap: 60px;
  }
  .sec-heading {
    font-size: 82px;
    margin-bottom: 1rem;
  }
  .sec-para {
    font-size: 26px;
  }
  .services-list li {
    border-radius: 100px;
    padding: 15px 170px 15px 80px;
    gap: 0.75rem;
  }
  .services-list li .heading {
    gap: 0.5rem;
  }
  .services-list li .heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .services-list li .service-stats {
    width: 130px;
    height: 130px;
  }
  .services-list li .service-stats h2 {
    font-size: 30px;
  }
  .package {
    padding: 0px 20px 32px;
  }
  .package-title {
    font-size: 28px;
    border-radius: 0px 0px 20px 20px;
  }
  .pricing-container > div {
    margin: 25px 0 25px 20px;
  }
  .pricing-container {
    margin: 20px 0;
    border-radius: 28px;
  }
  .pricing-container .price {
    font-size: 50px;
  }
  .pricing-container img {
    margin-left: -6px;
  }
  .package-list-heading {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .package .theme-btn {
    margin: 26px 0;
    font-size: 35px;
  }
  .package-footer a {
    font-size: 20px;
  }
  .stats-card {
    gap: 30px;
  }
  .stats-card .counter {
    font-size: 80px;
  }
  .stats-card p {
    font-size: 24px;
  }
  .cta-heading {
    font-size: 82px;
    line-height: 1.2;
  }
  .cta-heading span {
    font-size: 160px;
  }
  .cta-sec .hand-right {
    top: -105px;
    right: -75px;
    width: 30dvw;
    max-height: 100%;
  }
  .cta-sec .hand-left {
    top: 0;
    left: -50px;
    width: 30dvw;
    max-height: 100%;
  }
  .cta-para {
    font-size: 26px;
    margin: 20px 0 40px;
  }
  .accordion-list li {
    padding: 30px 140px 30px 50px;
  }
  ul.accordion-list li h3:after {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 40px;
  }
  .accordion-list li h3 {
    font-size: 36px;
  }
  .answer p {
    font-size: 24px;
  }
  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 40px;
  }
  .contact-info-card {
    gap: 20px;
    padding: 40px 35px 350px;
  }
  .contact-info-card a {
    font-size: 32px;
  }
  .contact-form-card {
    gap: 20px;
  }
  .mainBanner.innerPage .banner-heading {
    font-size: 100px;
  }
  .mainBanner.innerPage .banner-text {
    margin: 1rem 0;
    font-size: 26px;
  }
  .mainBanner.innerPage .theme-btn div {
    font-size: 18px;
  }
  .mainBanner.innerPage .theme-btn {
    padding: 10px 15px;
    gap: 10px;
    font-size: 24px;
  }
  .mainBanner.innerPage .btn-review div p {
    font-size: 18px;
  }
  .info-sec-logo {
    padding: 4rem 0 0;
  }
  .logo-info-heading {
    font-size: 74px;
    margin-bottom: 20px;
  }
  .logo-info-desc {
    font-size: 26px;
  }
  .logo-info-para {
    margin: 30px 0;
  }
  .logo-info-samples {
    row-gap: 25px;
    column-gap: 30px;
    padding: 25px 35px;
    margin-top: 2rem;
  }
  .info-sec-logo-img {
    height: 70%;
    width: 55dvw;
    object-fit: cover;
    object-position: bottom right;
  }
  .testimonial-content p {
    line-height: 1.6;
  }
  .info-sec-heading {
    font-size: 80px;
  }
  .info-sec-desc {
    font-size: 26px;
  }
  .info-sec-card {
    padding: 40px;
    gap: 30px;
    margin: 40px 0 30px;
  }
  .info-sec-card h2 {
    font-size: 42px;
  }
  .info-sec-card p {
    font-size: 20px;
  }
  .info-sec-3d-img {
    height: 80%;
    width: 55dvw;
    object-fit: cover;
    object-position: bottom right;
    bottom: -5dvw;
  }
  .mainBanner.innerPage .banner-heading.sm {
    font-size: 80px;
  }
  .info-sec-custom-img {
    height: 70%;
    width: 50dvw;
    object-fit: cover;
    object-position: bottom right;
    bottom: -3dvw;
    left: 0;
  }
  .info-sec-2d-img {
    height: 70%;
    width: 55dvw;
    object-fit: cover;
    object-position: bottom right;
    bottom: -7dvw;
    left: 0;
  }
  .info-sec-book-cover-img {
    height: 70%;
    width: 53dvw;
    object-fit: cover;
    object-position: bottom right;
  }
  .info-sec-book-img {
    height: 70%;
    width: 52dvw;
    object-fit: cover;
    object-position: bottom right;
    bottom: -3dvw;
  }
  .banner-subheading {
    margin-bottom: 1rem;
  }
  .banner-list li {
    font-size: 22px;
    padding-left: 30px;
  }
  .style-page-info .sec-heading {
    font-size: 72px;
  }
  .style-page-info .sec-para {
    font-size: 24px;
  }
  .style-page-info .btn-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1200px) {
  .header-link-btn {
    gap: 10px;
    font-size: 22px;
  }
  .header-btn {
    font-size: 22px;
  }
  .menu .navlink {
    font-size: 22px;
  }
  nav {
    padding: 1.4rem 0.75rem;
  }
  .hero-flip-card {
    width: 100px;
    height: 145px;
  }
  .hero-flip-card.top-left {
    top: 5%;
    left: 0dvw;
  }
  .hero-flip-card.top-right {
    top: 5%;
    right: 0dvw;
  }
  .hero-flip-card.bottom-left {
    left: 0dvw;
  }
  .hero-flip-card.bottom-right {
    right: 0dvw;
  }
  .banner-heading {
    font-size: 85px;
    margin-bottom: 0.75rem;
  }
  .banner-heading.highlight {
    margin-top: -10dvw;
  }
  .home-elm2::before {
    width: 170%;
    height: 180%;
  }
  .home-elm3::before {
    bottom: -4%;
    width: 160px;
    height: 120px;
    left: -11%;
  }
  .home-elm2 {
    width: 11dvw;
  }
  .home-elm1::before {
    width: 170px;
    height: 170px;
    top: -110%;
    left: -17%;
  }
  .banner-text {
    font-size: 24px;
    margin: 2rem 0 1rem;
  }
  .theme-btn {
    padding: 10px 15px;
    font-size: 24px;
  }
  .theme-btn div {
    font-size: 16px;
  }
  .btn-review {
    gap: 5px;
  }
  .btn-review div p {
    font-size: 18px;
  }
  .btn-review div svg {
    width: 18px;
    height: 18px;
  }
  .btn-review div:first-child svg {
    width: 120px;
    height: 20px;
  }
  .banner-content {
    padding: 100px 0;
  }
  .process-card h1 {
    font-size: 80px;
  }
  .process-card ul {
    gap: 40px;
  }
  .process-card ul li {
    gap: 20px;
  }
  .process-card ul li .check {
    width: 50px;
    height: 50px;
  }
  .process-card ul li .check img {
    width: 60%;
    height: 60%;
    object-fit: contain;
  }
  .process-card ul li:not(:last-child)::after {
    height: 40px;
    bottom: -40px;
    left: 22px;
  }
  .process-card ul li .process-info h2 {
    font-size: 24px;
  }
  .process-img p {
    font-size: 28px;
    margin: 30px auto 0;
    max-width: 100%;
  }
  .process-card .tag {
    padding: 1.75rem 2.75rem;
    font-size: 26px;
    top: -30px;
    right: -30px;
  }
  .sec-heading {
    font-size: 68px;
    margin-bottom: 0.5rem;
  }
  .sec-para {
    font-size: 24px;
  }
  .services-list li {
    padding: 20px 150px 20px 60px;
    gap: 0.5rem;
    border-radius: 75px;
  }
  .services-list li .heading img {
    max-width: 24px;
  }
  .services-list li .service-stats {
    right: 15px;
  }
  .services-list li .heading h2 {
    font-size: 24px;
  }
  .pricing-sec .hand-top,
  .pricing-sec .hand-bottom {
    display: none;
  }
  .portfolio-card {
    max-width: 500px;
  }
  .client-info {
    padding: 10px 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    gap: 14px;
  }
  .client-info h2 {
    font-size: 24px;
  }
  .client-info svg {
    width: 120px;
    height: 20px;
  }
  .stats-card {
    gap: 25px;
    padding: 30px;
  }
  .stats-card .counter {
    font-size: 70px;
    -webkit-text-stroke-width: 3px;
  }
  .cta-heading span {
    font-size: 110px;
    -webkit-text-stroke-width: 4px;
  }
  .cta-heading {
    font-size: 80px;
  }
  .cta-para {
    font-size: 24px;
    margin: 15px 0 25px;
  }
  .testimonial-card {
    max-width: 90dvw;
    border-radius: 40px;
  }
  .testimonial-content .client h2 {
    font-size: 20px;
  }
  .testimonial-content {
    gap: 20px;
    padding: 30px 20px;
  }
  .testimonial-content p {
    line-height: 1.4;
    font-size: 18px;
  }
  .testimonial-content p svg {
    width: 120px;
    height: 20px;
  }
  .accordion-list li {
    padding: 20px 100px 20px 30px;
    box-shadow: 0px 10px 0px 0px #000;
    margin-bottom: 1.5rem;
  }
  ul.accordion-list li h3:after {
    width: 60px;
    height: 60px;
    top: 17px;
    right: 30px;
  }
  .accordion-list li h3 {
    font-size: 28px;
  }
  .answer p {
    font-size: 20px;
    margin-top: 0.75rem;
  }
  .companies-wrapper {
    column-gap: 50px;
    row-gap: 10px;
    margin-top: 2rem;
  }
  .companies-wrapper img {
    max-width: 150px;
  }
  .contact-info-card {
    gap: 15px;
    padding: 30px 25px 350px;
  }
  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 36px;
  }
  .contact-info-card p {
    font-size: 18px;
    line-height: 1.4;
    max-width: 100%;
  }
  .contact-info-card a {
    font-size: 30px;
  }
  .mainBanner.innerPage .banner-heading {
    font-size: 85px;
  }
  .mainBanner.innerPage .banner-text {
    font-size: 24px;
  }
  .mainBanner.innerPage .btn-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .mainBanner.innerPage .theme-btn {
    padding: 10px 15px;
    font-size: 24px;
  }
  .mainBanner.innerPage .btn-review {
    gap: 5px;
  }
  .mainBanner.innerPage .btn-review div p {
    font-size: 16px;
  }
  .mainBanner.innerPage .btn-review div svg {
    width: 18px;
    height: 18px;
  }
  .mainBanner.innerPage .btn-review div:first-child svg {
    width: 120px;
    height: 20px;
  }
  .logo-info-samples {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    width: 100dvw;
  }
  .info-sec-logo-img {
    display: none;
  }
  .p-container {
    padding-inline: 0.75rem;
  }
  .info-sec-3d-img {
    width: 60dvw;
  }
  .info-sec-custom-img {
    width: 55dvw;
  }
  .banner-widget1 {
    display: none;
  }
  .style-page-info {
    padding: 6rem 0;
  }
  .style-page-info .sec-heading {
    font-size: 62px;
  }
  .style-page-info .sec-para {
    font-size: 22px;
  }
  .pt-200 {
    padding-top: 100px;
  }
  .banner-video {
    width: 48dvw;
  }
  .dropdown ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .dropdown {
    width: 550px;
    padding: 0.75rem;
  }
  .dropdown ul li {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
  }
  .banner-subheading {
    margin-bottom: 0.25rem;
  }
  .popupmain::after {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  header {
    border-bottom: 2px solid #000;
  }
  .hamburger-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hamburger-switch {
    display: block;
  }
  nav {
    /* display: none; */
    position: fixed;
    left: -210%;
    /* left: 0; */
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100dvh;
    z-index: 9999;
    width: 70dvw;
    min-width: 400px;
    background: #000;
    transition: all 0.5s ease-in-out;
    overflow-y: auto;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
      0px 2px 4px -1px rgb(0 0 0 / 6%);
  }
  nav .menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .menu .navlink {
    color: #fff;
  }
  .menu .navlink svg path {
    fill: #fff;
  }
  .menu li {
    width: 100%;
  }
  .menu .navlink {
    width: 100%;
    justify-content: space-between;
  }
  .menu .navlink {
    width: 100%;
    justify-content: space-between;
  }
  .menu li:not(:last-child) .navlink {
    padding-bottom: 1.5rem;
  }
  .menu li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .dropdown {
    position: unset;
    box-shadow: none;
    width: 100%;
    background: #63636380;
    margin-bottom: 1.5rem;
  }
  .dropdown ul li {
    border: none !important;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
  }
  .dropdown ul li a {
    padding: 0;
    line-height: 1;
    font-weight: 500;
  }
  .hero-flip-card {
    display: none;
  }
  .home-elm3::before {
    bottom: -16%;
    width: 115px;
    height: 115px;
    left: -4%;
  }
  .home-elm1::before {
    width: 150px;
    height: 150px;
    top: -100%;
    left: -15%;
  }
  .banner-heading.highlight {
    margin-top: -85px;
  }
  .home-elm2 {
    width: 100px;
  }
  .banner-text {
    font-size: 20px;
    margin: 1rem 0 0.5rem;
    width: 100%;
  }
  .marquee-text {
    padding: 20px 0;
  }
  .marquee-text p {
    font-size: 24px;
  }
  .process-sec {
    background-position: right;
    padding: 5rem 0.75rem;
  }
  .process-card {
    padding: 40px 30px;
    width: 100%;
    gap: 30px;
  }
  .process-card .tag {
    padding: 1.25rem 2rem;
    font-size: 20px;
    top: -25px;
    right: -15px;
  }
  .process-card h1 {
    font-size: 60px;
    text-align: center;
  }
  .process-card ul li .process-info {
    width: 100%;
  }
  .process-card ul {
    gap: 30px;
  }
  .process-card ul li {
    gap: 15px;
  }
  .process-card ul li .check {
    width: 50px;
    height: 45px;
  }
  .process-card ul li:not(:last-child)::after {
    height: 40px;
    bottom: -35px;
    left: 20px;
  }
  .services-list li .service-stats {
    width: 100px;
    height: 100px;
    padding: 15px;
    right: 12px;
  }
  .services-list li .service-stats h2 {
    font-size: 24px;
    -webkit-text-stroke-width: 1px;
  }
  .cta-heading span {
    font-size: 100px;
    -webkit-text-stroke-width: 4px;
  }
  .cta-heading {
    font-size: 76px;
  }
  .cta-para {
    font-size: 22px;
    margin: 15px 0 20px;
  }
  .testimonial-sec .btn-wrap {
    margin-top: 40px;
  }
  .sec-heading.text-start,
  .sec-para.text-start {
    text-align: center !important;
  }
  .accordion-list li {
    padding: 15px 90px 15px 20px;
    box-shadow: 0px 8px 0px 0px #000;
    margin-bottom: 1rem;
  }
  ul.accordion-list li h3:after {
    width: 50px;
    height: 50px;
    top: 12px;
    right: 20px;
  }
  .accordion-list li h3 {
    font-size: 26px;
  }
  .answer p {
    font-size: 18px;
    margin-top: 0.5rem;
  }
  .sec-heading {
    font-size: 64px;
    margin-bottom: 0.5rem;
  }
  .contact-info-card .bottom-img {
    max-width: 500px;
  }
  .footer-links-wrapper {
    justify-content: flex-start;
  }
  footer {
    padding: 2rem 0 3rem;
  }
  .copyright-sec .copyright {
    flex-direction: column;
    gap: 6px;
  }
  .copyright-sec p,
  .copyright-sec a {
    font-size: 14px;
    text-align: center;
  }
  .testimonial-sec {
    padding: 4rem 0 0;
  }
  .mainBanner.innerPage .banner-heading {
    text-align: center;
    width: 100%;
  }
  .mainBanner.innerPage .banner-text {
    text-align: center;
  }
  .mainBanner.innerPage .btn-wrap {
    width: 100%;
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
  .info-sec-logo::before {
    width: 100dvw;
  }
  .logo-info-heading {
    font-size: 70px;
    margin-bottom: 10px;
    text-align: center;
  }
  .logo-info-desc {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
  .logo-info-subheading {
    text-align: center;
  }
  .logo-info-para {
    margin: 10px 0 20px;
    text-align: center;
    color: #fff;
    font-size: 20px;
  }
  .info-sec-logo .btn-wrap {
    flex-direction: row !important;
    justify-content: center;
    flex-wrap: wrap;
  }
  .info-sec-3d .btn-review div:first-child svg path,
  .info-sec-2d .btn-review div:first-child svg path,
  .info-sec-book-cover .btn-review div:first-child svg path,
  .info-sec-book .btn-review div:first-child svg path,
  .info-sec-custom .btn-review div:first-child svg path,
  .info-sec-logo .btn-review div:first-child svg path {
    fill: #fff !important;
  }
  .logo-info-samples {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .info-sec-3d::after,
  .info-sec-2d::after,
  .info-sec-book-cover::after,
  .info-sec-book::after,
  .info-sec-custom::after {
    display: none;
  }
  .info-sec-3d::before,
  .info-sec-2d::before,
  .info-sec-book-cover::before,
  .info-sec-book::before,
  .info-sec-custom::before {
    width: 100dvw;
  }
  .info-sec-2d-img,
  .info-sec-3d-img,
  .info-sec-book-cover-img,
  .info-sec-book-img,
  .info-sec-custom-img {
    display: none;
  }
  .info-sec-heading {
    font-size: 70px;
    text-align: center;
  }
  .info-sec-desc {
    font-size: 24px;
    text-align: center;
    margin-top: 0.5rem;
  }
  .info-sec-card {
    padding: 30px 30px 40px;
    gap: 20px;
  }
  .info-sec-card h2 {
    font-size: 40px;
    text-align: center;
  }
  .info-sec-card p {
    font-size: 18px;
    text-align: center;
  }
  .info-sec-3d .btn-review,
  .info-sec-2d .btn-review,
  .info-sec-book-cover .btn-review,
  .info-sec-book .btn-review,
  .info-sec-custom .btn-review {
    flex-direction: row;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .banner-subheading {
    text-align: center;
    width: 100%;
  }
  .banner-list {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .banner-list li {
    font-size: 20px;
    text-align: center;
  }
  .style-page-info .btn-wrap,
  .why-us-sec .btn-wrap {
    flex-direction: row !important;
    justify-content: center;
    flex-wrap: wrap;
  }
   .mainBanner.blogPage .banner-heading {
    font-size: 34px;
    line-height: 1.3;
} 
.blog-para {
    font-size: 16px;
}
.blog-list li {
    font-size: 16px;
    margin-bottom: 1rem;
}
  
}

@media only screen and (max-width: 768px) {
  .banner-heading {
    font-size: 10dvw;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }
  .home-elm1::before {
    width: 25vw;
    height: 25vw;
    top: -14vw;
    left: -14vw;
  }
  .home-elm2 {
    width: 18vw;
  }
  .banner-heading.highlight {
    margin-top: -20vw;
  }
  .home-elm3::before {
    bottom: 5vw;
    width: 15vw;
    height: 15vw;
    left: -5vw;
  }
  .banner-text {
    font-size: 18px;
    margin: 8vw 0 0.5rem;
  }
  .btn-wrap,
  .mainBanner.innerPage .btn-wrap {
    flex-direction: column;
    width: 100%;
  }
  .btn-wrap .theme-btn {
    width: 100%;
  }
  .btn-review,
  .mainBanner.innerPage .btn-review {
    gap: 5px;
    flex-direction: row;
    justify-content: center;
  }
  .btn-review div p,
  .mainBanner.innerPage .btn-review div p {
    font-size: 16px;
  }
  .banner-content {
    padding: 90px 0 60px;
  }
  .marquee-text p {
    font-size: 20px;
  }
  .process-sec {
    padding: 5rem 0.75rem;
  }
  .process-card .tag {
    transform: rotate(0deg) translateX(-50%);
    top: -8%;
    left: 50%;
  }
  .process-card {
    padding: 40px 20px;
    gap: 20px;
  }
  .process-card h1 {
    font-size: 46px;
  }
  .process-card ul li .check {
    display: none;
  }
  .process-card ul li:not(:last-child)::after {
    height: 30px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .process-card ul li .process-info h2 {
    font-size: 20px;
  }
  .process-img p {
    font-size: 24px;
    margin: 20px auto 0;
  }
  .sec-heading {
    font-size: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }
  .services-list li .service-stats {
    display: none;
  }
  .services-list li {
    padding: 20px 40px 20px 40px;
    gap: 0.5rem;
    border-radius: 45px;
  }
  .sec-para {
    font-size: 18px;
    letter-spacing: normal;
  }
  .package-title {
    font-size: 24px;
    border-radius: 0px 0px 10px 10px;
    padding: 10px 30px 14px;
  }
  .package-list-heading {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .package-list li {
    font-size: 18px;
  }
  .package .theme-btn {
    margin: 15px 0 25px;
    font-size: 28px;
  }
  .package-footer {
    gap: 10px;
    flex-direction: column;
  }
  .portfolio-card {
    max-width: 300px;
  }
  .client-info {
    padding: 10px 15px;
    left: 10px;
    right: 10px;
    gap: 14px;
  }
  .client-info svg {
    display: none;
  }
  .client-info h2 {
    font-size: 20px;
  }
  .stats-card.stats-left,
  .stats-card.stats-right {
    align-items: center;
  }
  .stats-card.stats-left p,
  .stats-card.stats-right p {
    text-align: center;
    font-size: 20px;
  }
  .cta-heading span {
    font-size: clamp(48px, 15dvw, 68px);
    -webkit-text-stroke-width: 2px;
    letter-spacing: 4px;
  }
  .cta-heading {
    font-size: clamp(44px, 14dvw, 64px);
  }
  .cta-para {
    font-size: 18px;
  }
  .cta-sec .hand-left {
    top: -13vw;
    left: -5vw;
  }
  .cta-sec .hand-right {
    top: -22vw;
    right: -7vw;
  }
  .testimonial-slider {
    display: none;
  }
  .testimonial-content p {
    font-size: 16px;
  }
  .btn-wrap .wrapper {
    flex-direction: column;
    width: 100%;
    padding: 0 12px;
  }
  .accordion-list li {
    padding: 15px 20px 15px 20px;
    box-shadow: 0px 6px 0px 0px #000;
  }
  .accordion-list li h3 {
    font-size: 20px;
    letter-spacing: -0.2px;
    line-height: 1.25;
    padding-right: 70px;
  }
  ul.accordion-list li h3:after {
    width: 40px;
    height: 40px;
    top: 20px;
  }
  .answer p {
    font-size: 16px;
    margin-top: 0.75rem;
  }
  .companies-wrapper {
    column-gap: 20px;
    row-gap: 5px;
  }
  .contact-sec {
    padding: 3rem 0;
  }
  .contact-info-card .bottom-img {
    display: none;
  }
  .contact-info-card {
    padding: 30px 25px;
  }
  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 28px;
    letter-spacing: -0.25px;
  }
  .contact-info-card p {
    font-size: 16px;
  }
  .contact-info-card a {
    font-size: 28px;
  }
  .contact-form-card {
    gap: 0;
    padding: 35px 25px;
  }
  .contact-input-container .label {
    font-size: 16px;
  }
  .footer-links-wrapper {
    flex-direction: column;
  }
  .copyright-sec p,
  .copyright-sec a {
    font-size: 12px;
  }
  .footer-links-wrapper ul a {
    font-size: 16px;
  }
  nav {
    min-width: 80dvw;
  }
  .mainBanner.innerPage .banner-heading {
    font-size: 56px;
  }
  .mainBanner.innerPage .banner-heading.sm {
    font-size: 46px;
  }
  .mainBanner.innerPage .banner-text {
    font-size: 18px;
  }
  .logo-info-heading,
  .info-sec-heading {
    font-size: 46px;
    letter-spacing: -0.5px;
  }
  .logo-info-desc,
  .info-sec-desc {
    font-size: 18px;
  }
  .logo-info-subheading,
  .info-sec-card h2 {
    font-size: 36px;
  }
  .logo-info-para,
  .info-sec-card p {
    font-size: 16px;
  }
  .logo-info-samples {
    padding: 20px 30px;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    row-gap: 10px;
    column-gap: 10px;
  }
  .pricing-container.inner-package .price {
    -webkit-text-stroke-width: 2px;
    font-size: 70px;
  }
  .dropdown ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .portfolio-nav {
    gap: 10px 20px;
  }
  .portfolio-nav li.active a {
    border-bottom: 3px solid #1eb24d;
  }
  .portfolio-nav a {
    font-size: 20px;
  }
  .banner-subheading {
    font-size: 24px;
  }
  .banner-list li {
    font-size: 16px;
  }
  .style-page-info .sec-heading {
    font-size: 40px;
  }
  .style-page-info .sec-para {
    font-size: 18px;
  }
  .style-page-info {
    padding: 3rem 0;
  }
  .pt-200 {
    padding-top: 3rem;
  }
  footer .brand-info {
    gap: 16px;
  }
  footer .brand-info li a,
  footer .brand-info li p {
    font-size: 16px;
  }
  .mmpopup .content-sec {
    max-width: 100%;
  }
  
 .mainBanner.blogPage .banner-heading {
    font-size: 34px;
    line-height: 1.3;
} 
.blog-para {
    font-size: 16px;
}
.blog-list li {
    font-size: 16px;
    margin-bottom: 1rem;
}
  
  
  
  
  
  
  
  
  
  
}
