@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  font-size: 16px;
}
body {
  position: relative;
  background: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #1d1b2c;
  --para-color: #5a5a5a;
}
::selection {
  background: var(--theme-color);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}
::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 0.5);
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(0 0 0 / 0.8);
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 2rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
}
.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
figure {
  margin: 0;
}

[class^="box-"] { display: none; }
[class^="box-"].showfirst { display: block; }


section {
  padding: 5rem 0;
  position: relative;
}
.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  color: var(--white);
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.swiper-pagination-bullet-active {
  width: 25px;
}
.swiper-slide-shadow-left {
  display: none;
}
.swiper-slide-shadow-right {
  display: none;
}
.swiper-pagination-bullet-active {
  background-image: var(--primary);
}
/* loader */

.loader-wrap span {
  overflow: hidden;
  display: block;
}
.loader-wrap {
  position: fixed;
  z-index: 9999;
  height: 100vh;
  width: 100vw;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.loader-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  fill: var(--theme-color);
}
.loader-wrap .loader-wrap-heading h2 {
  font-size: 50px;
  z-index: 20;
  color: #fff;
  text-transform: uppercase;
}
body:not(.home) .loader-wrap {
  display: none;
}
/* loader */

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  z-index: 10000001;
  background-color: var(--theme-color);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner:before {
  content: "Click Me";
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 1rem;
  top: 8px;
  left: 2px;
  display: flex;
  border-radius: 100%;
  opacity: 0;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.active::before {
  opacity: 1;
  top: 0;
}
.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color);
  opacity: 0.3;
}
.cursor-inner.cursor-hover.active {
  margin-left: -40px;
  margin-top: -40px;
  width: 120px;
  height: 120px;
  opacity: 1;
  background-color: #53be8470;
}
/* Cursor End */

/* btn css */

.themeBtn {
  background: var(--black);
  padding: 15px 40px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  border: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}
.themeBtn:before,
.themeBtn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
/* .themeBtn:before {
  background: #fff;
  transform: scaleX(0);
  transform-origin: right center;
} */
.themeBtn:after {
  background: var(--theme-color);
  transform: scaleX(0);
  transform-origin: left center;
}
.themeBtn:hover {
  color: var(--white);
  transform: scale(1.05);
}
.themeBtn:hover:before {
  transform: scaleX(1);
}
.themeBtn:hover:after {
  transform: scaleX(1);
}
/* btn css */

.reveal {
  visibility: hidden;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.reveal img {
  width: 100%;
}
/* Begin: Header CSS */


.marquee-text {
  overflow: clip;
  background: #000;
  padding: 10px 0;
}
.marquee-text-track {
  display: flex;
  padding-left: 4.8rem;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-move-text 40s linear infinite forwards;
}
.marquee-text p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}





/* Header Css */

.main-header {
  padding: 3rem 0 1rem;
  position: relative;
  z-index: 1;
}
header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  transition: all 0.3s ease;
}
/* 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(--theme-color);
  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 {
  background: #b70404;
}
.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 */

.menuWrap .menu {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: initial;
  gap: 3rem;
}
.main_nav {
  background: var(--theme-color);
}
.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}
.menu li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.menu li:last-child {
  padding-right: 0;
}
.menu li a {
  font-size: 1.125rem;
  color: var(--black);
  display: block;
  font-weight: 500;
}
/* .menu > li:hover > a, */

.menu > li.active > a,
.menu > li:hover > a {
}
/* Menu Dropdown CSS */

.has-child,
.menu-item-has-children {
  position: relative;
  z-index: 1;
}
.dropdown,
.sub-menu {
  position: absolute;
  background: #1c7347;
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  width: 190px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
}
.dropdown .dropdown,
.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
.dropdown ul li a,
.sub-menu li a {
  font-size: 1.125rem;
  line-height: 30px;
  color: #fff;
  padding: 10px 20px;
}
.dropdown li:not(:last-child),
.sub-menu li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
}
.dropdown-toggle::after {
  display: none;
}
.menuWrap .menu a i.fa-angle-down {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-top: -2px;
}
.menu li.dropitem {
  position: relative;
  display: block;
  opacity: 0;
  cursor: pointer;
}
.menu > li.dropitem > .dropdownHover {
  position: absolute;
  pointer-events: none;
}
.menu > li.dropitem > .dropdownHover > li {
  transition: transform 0.6s, opacity 0.6s;
  transform: translateY(150%);
  opacity: 0;
  width: 210px;
}
.menu > li.dropitem:hover > .dropdownHover {
  pointer-events: initial;
}
.menu > li.dropitem:hover > .dropdownHover > li.dropitem {
  transform: translateY(0%);
  opacity: 1;
  background: var(--black); /* width: 210px; */
}
.menu > li.dropitem {
  opacity: 1;
}
.dropdownHover > li a {
  padding: 8px 10px;
  font-size: 16px;
  border-bottom: 1px solid #2c2c2c59;
  color: var(--white);
}
.dropdownHover > li:hover > a {
  background: var(--white);
  color: var(--black);
}
.whitecol {
  color: var(--white);
}
/* Dropdown CSS*/
.menuWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerBtn {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.headerBtn .loginBtn {
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
}
/* END: Header */
.container-fluid {
  padding: 0 3rem;
}
.main-Banner {
  height: 110vh;
  display: flex;
  align-items: center;
}

.bannertext h1 {
  font-size: 6rem;
  font-weight: 500;
  color: var(--black);
  margin: 0;
}
.bannertext h1 span {
  font-weight: 200;
}

.bannertext p {
  width: 14%;
  margin: 1rem 0 2rem;
}
.bannertext {
  margin-top: -7rem;
}

.portfolioSec {
  background: #e8e4e4;
}
.portfolioSlider,
.portfolioSliders {
  padding-top: 3rem;
  display: flex;
  white-space: nowrap;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.portfolioSlider .items,
.portfolioSliders .items {
  width: 420px;
  margin: 0 1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.portfolioSlider .items img,
.portfolioSliders .items img {
  object-fit: cover;
  width: 100%;
  object-position: top;
  height: 510px;
}

/* .portfolioSliders .swiper-wrapper { justify-content: center; } */
.portfolioSliders .items{ width: 100%; }
/* .portfolioSliders .swiper-slide{ width: 420px; } */

.themeCol{ color: var(--theme-color); }

h4 {
  font-size: 4.625rem;
  font-weight: 400;
  text-transform: capitalize;
}

.portContnt h3 {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--theme-color);
}

.portContnt p {
  color: var(--theme-color);
  margin: 0;
  font-size: 1.125rem;
}

.portContnt {
  margin: 1rem 0;
}

.websiteSec {
  background: var(--theme-color);
}
.websiteSec h3 {
  font-size: 1.625rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1rem;
}
.websiteSec p {
  color: var(--white);
  width: 70%;
}
.webContnt {
  position: sticky;
  top: 20px;
}

.webContnt h3{ 
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
 }

.themeTwo {
  background: transparent;
  color: var(--theme-color);
  border: 2px solid #00000021;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  font-size: 14px;
  padding: 1rem 1.5rem;
}

.listImages ul li {
  font-size: 3.125rem;
  padding: 6px 0;
  transition: all 0.5s ease;
}

.listImages ul li i {
  opacity: 0;
  font-size: 2rem;
  font-weight: 400;
  padding-left: 15px;
  transition: all 0.5s ease;
}

.listImages ul li:hover,
.listImages ul li.active {
  text-decoration: underline !important;
}

.listImages ul li:hover i,
.listImages ul li.active i {
  opacity: 1;
}

.imagesHovr div {
  display: none; /* Hide all images initially */
}

.imagesHovr .imgOne {
  display: block; /* Show the first image */
}

.templateSec nav {
  position: relative;
  display: flex;
  margin-top: 5rem;
}

.templateSec .line {
  overflow: hidden;
}

.templateSec svg {
  position: relative;
  width: 100%;
}
#Book {
  position: absolute;
  overflow: hidden;
  z-index: 1;
  width: 60%;
  height: 100%;
  left: auto;
  right: 0;
}
.page {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.listImages img {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.click {
  position: relative;
  font-size: 50px;
  color: white;
  text-align: center;
  top: 50%;
  visibility: hidden;
  z-index: 10;
}

.growSec {
  background: var(--theme-color);
}

.growSec h4 {
  color: #fff;
}

h2 {
  font-size: 13.125rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 7rem;
}

.growBox ul {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

.growBox ul li span {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
}

.growBox ul li p {
  color: var(--white);
  width: 80%;
}

.growSec .themeBtn {
  color: #fff;
  border-color: #ffffff3b;
}

.growSec .themeBtn:after {
  background: #000;
}

.growBox {
  margin: 3rem 0;
}
.growBox ul li {
  flex: 0 0 42%;
}
.growSec h3 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.growSec p {
  color: #fff;
}
.growSec .row + .row {
  margin: 6rem 0;
}

.marketSec {
  background: #d0cce0;
}

.modernSec {
  background: #e8e4e4;
}

.modernContnt {
  position: relative;
}

.modernContnt .modrnText {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.modernContnt .modrnText h3 {
  color: #fff;
  font-size: 1.85rem;
}

.modernContnt figure {
  overflow: hidden;
}

.modernContnt figure img {
  transition: all 2s ease;
}

.modernContnt:hover figure img {
  transform: scale(1.2);
}

.progress-bar {
  position: absolute;
  bottom: 10px; /* Adjust as needed */
  left: 0;
  width: 100%; /* Full width */
  height: 4px; /* Thickness of the bar */
  background-color: rgba(0, 0, 0, 0.1); /* Background color */
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  background-color: #000; /* Color of the progress */
  width: 0%; /* Start with 0 width */
  transition: width 0.5s ease; /* Smooth transition */
}
.modernSlider {
  padding-bottom: 5rem;
}

/* accordion css */
.accordian {
  margin-top: 2rem;
}
.accordian li {
  border-bottom: 1px solid #0000001f;
  padding: 1rem;
}

.accordian li h4 {
  color: #000;
  font-size: 1.25rem;
  padding: 1.4rem;
  position: relative;
  cursor: pointer;
  margin: 0;
  line-height: 1.3;
  padding-right: 3rem;
  font-weight: 600;
  padding-left: 0;
}

.accordian h4::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  position: absolute;
  top: 25px;
  right: 35px;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}

.accordian p {
  margin: 0;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 1rem;
}

.accordian li > div {
  display: none;
  padding: 1rem 2rem;
}

.accordian li.active h4::after {
  content: "\f068";
}
/* accordian End */

.modernSec h5 {
  font-size: 3.125rem;
  font-weight: 400;
}
.modernSec .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #000;
}
.modernSec .swiper-pagination {
  bottom: 1rem;
}
.faqsec {
  background: var(--black);
}
.faqsec * {
  color: #fff;
}
.faqsec .accordian li h4,
.faqsec .accordian li p {
  color: #fff;
}
.faqsec .accordian li {
  border-color: #ffffff2e;
}

.faqsec .accordian li ul { list-style: disc; }
.faqsec .accordian li ul li{ border: none; padding: 5px 0; }

.supportSec {
  background: var(--black);
}

.supportSec h4 {
  color: #fff;
  text-align: center;
}

.supportSec .supportBox {
  border: 1px solid #4f4f4f;
  padding: 2rem 2rem;
  text-align: left;
  margin-top: 3rem;
  transition: all 0.5s ease;
  min-height: 308px;
  position: relative;
}

.supportSec .supportBox h3 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}

.supportSec .supportBox p {
  color: #fff;
  font-size: 1.125rem;
}

.supportSec .supportBox a {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.supportSec .supportBox:hover {
  /* transform: scale(1.05) rotate(2deg); */
  border: 1px solid #fff;
}

.supportSec .supportBox:hover a{
  -webkit-animation: supportHoverArrow 1.1s infinite linear;
  animation: supportHoverArrow 1.1s infinite linear;

}

@keyframes supportHoverArrow {
  0% {
      -webkit-transform: translateX(0);
      transform: translateX(0)
  }

  20%,30% {
      -webkit-transform: translateX(2px);
      transform: translateX(2px)
  }

  70%,80% {
      -webkit-transform: translateX(-2px);
      transform: translateX(-2px)
  }

  to {
      -webkit-transform: translateX(0);
      transform: translateX(0)
  }
}

.signUp {
  padding-top: 6rem;
  text-align: center;
}

.signUp h6 {
  font-size: 7.5rem;
}

.signUp p {
  color: #fff;
}

.signUp .themeBtn {
  background: var(--white);
  color: #000;
}

.signUp .themeBtn:hover {
  color: #fff;
}

footer {
  background: var(--black);
  padding-top: 4rem;
}

footer p {
  color: #fff;
  margin: 2rem 0;
}

.socialIcons {
  display: flex;
  gap: 2rem;
}

.socialIcons li a {
  color: #fff;
  font-size: 1.45rem;
}

.socialIcons li a svg {
  fill: #fff;
  width: 25px;
}

footer h3 {
  color: #fff;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
  margin-bottom: 1rem;
}

footer h3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  height: 3px;
  width: 90px;
  bottom: 0;
  top: auto;
}

footer ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 5px 0;
  opacity: 0.6;
}

footer ul li a:hover{ opacity: 1; }

.footerLinks {
  display: flex;
  gap: 4rem;
}

.copyRight ul {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.copyRight {
  margin-top: 3rem;
  border-top: 1px solid #ffffff24;
  padding: 1rem;
}

footer ul li a:hover {
  color: #fff;
}

/* Inner Pages CSS */
.innerBanner {
  background: url(../images/banner/2.webp) center center / cover fixed no-repeat;
  height: 75vh;
  padding-top: 13rem;
}
.innerBanner h6 {
  font-size: 3.125rem;
  font-weight: 400;
  color: #000;
}

.innerBanner p {
  width: 100%;
  color: #000;
  font-size: 1.125rem;
}

.innerBanner .bannertext {
  text-align: center;
}

.innerBanner .bannertext h1 {
  font-weight: 700;
}

.serviceOne h2,
.heading {
  font-size: 9.375rem;
  margin-bottom: 3rem;
}

.serviceOne h3 {
  font-size: 4.625rem;
  color: #000;
  font-weight: 400;
}

h6 {
  font-size: 2.5rem;
  color: var(--theme-color);
}

.partnerSec {
  background: var(--theme-color);
}
.partnerSec h4{ margin-bottom: 3rem; }

.parterLogo {
  display: grid;
  gap: 3rem;
  grid-template-columns: auto auto auto auto auto;
  text-align: center;
  place-items: center;
}

.losoDesignSec {
  background: #e8e4e4;
}
.losoDesignSec p {
  font-size: 1.25rem;
}

.listStyle {
  margin-bottom: 3rem;
  list-style: disc;
  list-style-position: inside;
}

.listStyle li {
  color: var(--theme-color);
  font-size: 1.75rem;
  font-weight: 500;
  padding: 5px 0;
}

.packageBox {
  background: #e8e4e4;
  padding: 1rem 0 2rem;
  transition: all 0.5s ease;
  margin-top: 2rem;
}

.packageBox h6 {
  font-size: 23px;
  font-weight: 700;
  color: #151313;
  transition: all 0.5s ease;
  padding-left: 60px;
  position: relative;
}
.packageBox h6 img{ 
  position: absolute;
  left: 0;
  top: 0;
 }

.packageBox h3 {
  font-style: italic;
  font-size: 3.5rem;
  color: #353232;
  font-weight: 600;
  padding-left: 3rem;
  transition: all 0.5s ease;
}

.packageBox h3 sub {
  font-size: 1.25rem;
  color: #ababab;
  font-weight: 400;
  transition: all 0.5s ease;
}

.packageBody {
  border-top: 2px solid #00000026;
  padding: 2rem 2rem 0;
}

.packageBody ul li {
  padding: 10px 0;
  font-size: 1.125rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.packageBody ul li.heading{ font-weight: 700; margin-bottom: 0; }

.packageBtn {
  background: #d0cce0;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  color: var(--theme-color);
  transition: all 0.5s ease;
}

.packageBody ul {
  margin-bottom: 2.5rem;
  height: 314px;
  overflow: auto;
}
.packHead {
  padding: 1rem;
  padding-left: 2rem;
}
.packageBox:hover {
  background: var(--black);
}

.packageBox:hover * {
  color: #fff;
}

.packageBox:hover .packageBody {
  border-color: #d0cce021;
}

.packageBox:hover .packageBtn {
  background: #fff;
  color: #000;
}

.packageBox:hover ::-webkit-scrollbar-track {
  background: #5e5e5e;
}
.packageBox:hover ::-webkit-scrollbar-thumb {
  background: #ffffff;
}
.packageBox ::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.295);
}
.portfolioInner {
  background: #d0cce0;
}

.portfolioInner a {
  margin: 1rem 0;
  display: block;
}
.para {
  font-size: 22px;
}

.dark {
  background: var(--theme-color);
}
.dark * {
  color: #fff;
}

ul.tab-list {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center;
  cursor: pointer;
}

ul.tab-list li.active {
  color: var(--white);
  border-color: #000;
  background: #000;
  
}

ul.tab-list li {
  font-size: 16px;
  color: #252525;
  padding: 1rem 2rem;
  text-transform: capitalize;
  border: 1px solid #0000003d;
  transition: all 0.5s ease;
}

ul.tab-list li:hover {
  color: var(--white);
  border-color: #000;
  background: #000;
}

.box {
  padding-top: 30px;
  padding-left: 50px;
}

.box p {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.46;
  letter-spacing: normal;
  text-align: left;
  color: #737373;
}
.blueSec {
  background: #d0cce0;
}

.innerDark {
  background: var(--theme-color);
}
.whiteText * {
  color: #fff;
}

.whiteText .themeTwo {
  border-color: #fff;
}

.whiteText .themeTwo:after {
  background: #000;
}

.contentWeb h2 {
  font-size: 8.75rem;
  text-align: center;
}

.contentWeb {
  text-align: center;
}


.blackSec {
    background: #000;
}
.blackSec h4 {
    font-size: 4rem;
}

.blackSec h2 {
    font-size: 8rem;
}
.packageBody ul li span {
  display: contents;
}

.col2set {
  columns: 2;
}

.graphicBox {
  padding: 5rem 10rem;
}

.graphicBox ul li {
  padding: 10px;
  color: #000;
  font-weight: 600;
}

.graphicBox ul {
  margin: 1rem 0;
}

.whiteBox {
  background: url(..//images/bg/1.png) center center / cover  no-repeat;
}

.whiteBox *{
color: var(--theme-color);
}

.darkBlue {
  background: #b5c2fb;
}

.darkBlue h2 {margin-bottom: 3rem;}

.darkBlue p {
  font-size: 2.254rem;
}

.greenSec{
  background: #36E8A1;
}
.greenSec h3 {
  font-size: 2.75rem;
  line-height: 1.3;
  margin: 2rem 0;
}

.whiteBox .themeBtn{
  color: #fff;
}

.darkBlueSec h3 {
  font-size: 2rem;
  margin: 1rem 0;
  width: 70%;
  margin: 1rem auto;
}

.darkBlueSec {
  background: #30429e;
}

.darkBlueSec * {
  color: #fff;
}

.darkBlueSec p {
  width: 70%;
  margin: 0 auto 3rem;
}
.orangeSec {
  background: #E27A2E;
}
h6 a {
  color: var(--theme-color);
}

.featuredSec.templatesPortfolio .items img{ height: 565px; }
.featuredProducts .items figure{ margin-bottom: 1rem; }
.featuredSec .items {
  margin-bottom: 2rem;
}
.featuredSec .items img {
  height: 402px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}
.featuredProducts .items .cont h3{ font-size: 1.625rem; color: #040427; font-weight: 600; line-height: 1.2; }


.easySteps{   background-color: rgba(228, 241, 255, 0.7); }
.easySteps h2{ font-size: 2.5rem; font-weight: bold; margin-bottom: 0; }
.easySteps h2 span{ color: var(--theme-color); padding: 0 1rem; background: var(--head-color); }
.easySteps h3{font-size: 5.5rem;-webkit-text-stroke: 1px #040427;color: transparent;}

.logodesignPg .portfolioSec{ background-color: rgba(228, 241, 255, 0.7); }
.logodesignPg .portfolioSec .items img{ width: 100%; }
.logodesignPg .dg-transforms.paraBg2{ padding: 0rem 0; }
.logodesignPg .dg-transforms.paraBg2 p{ font-size: 1.5rem; margin-bottom: 0; }  

.contactSec{ padding: 5rem 0; position: relative; z-index: 1; }
.contactSec:before{content: '';position: absolute;left: 0;bottom: 0;background: #b5c2fb;width: 100%;height: 690px;z-index: -1;}
.connectImgs { display: flex; align-items: center; gap: 3rem; justify-content: center; margin-bottom: 3rem; }
.connectFrom{ padding: 72px; border-radius: 10px; box-shadow: 0 4px 30px 6px rgb(0 0 0 / 12%); background-color: #faf9fc; }
.connectFrom h3{ font-size: 3rem; font-weight: bold; }
.connectFrom .field{ margin-bottom: 1rem; }
.connectFrom .field input,
.connectFrom .field textarea{ border-radius: 5px; background-color: #e6e6e6; padding: 20px 20px; color: #414141; width: 100%; border: none; }
.connectFrom .field textarea{ height: 120px; resize: none; }
.contformDets{ margin-top: 3rem; }
.contformDets .items{border-radius: 10px;background-color: var(--theme-color);padding: 30px 40px;min-height: 95px;display: flex;align-items: center;justify-content: center;height: 100%;}
.contformDets .items p,
.contformDets .items a{font-size: 1rem;color: var(--white);padding-left: 1.5rem;position: relative;line-height: 1.67;margin-bottom: 0;font-weight: 600;}
.contformDets .items p svg,
.contformDets .items a svg,
.contformDets .items p i,
.contformDets .items a i{position: absolute;left: 0;top: 5px;color: var(--head-color);}

.first {
  font-weight: 600;
}



.overlay{ background-color: rgb(8 32 50 / 55%); bottom: 0; left: 0; position: fixed; right: 0; top: 0; z-index: 999; display: none; backdrop-filter: blur(8px); }
.popup-main{ position: fixed; top: 50%; transform: translateY(-50%); left: 0; right: 0; margin: auto; width: 880px; background: #fff; box-shadow: 0 0 30px -9px #0000006e; z-index: 9999999; 
    overflow: hidden; display: none; border-radius: 8px; max-width: 97%; max-height: 90vh; overflow-y: auto; }
.closeico { position: absolute; top: 1px; right: 2px; z-index: 9999; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; 
    background: #F3F4F6; border-radius: 100px; }
.mmpopup { background: #f8f8f8; display: flex; align-items: center;  }
.mmpopup .imgpop{ width: 45%; }
.mmpopup .imgpop img{ height: 600px; object-fit:cover; }
.mmpopup .cont{ width: 35%; padding: 2rem 2rem; }
.mmpopup .formPop{width: 55%;padding: 2rem 2rem;}
.mmpopup .formPop h3,
.mmpopup .formPop h4{ font-size: 2rem; font-weight: 600; margin-bottom: 0; }
.mmpopup .formPop h4 sub{ display: none; }
.mmpopup .contpop { margin-bottom: 1rem; }
.mmpopup .cont h3{ font-size: 1.425rem; font-weight: 600; }
.mmpopup .cont p{ margin-bottom: 10px; font-size: 14px; }
.mmpopup .cont .lists{ padding: 1rem 0; }
.mmpopup .cont .lists li{ color: var(--head-color); padding: 2px 0; padding-left: 1.5rem; }
.mmpopup .cont .lists li svg,
.mmpopup .cont .lists li i{ top: 5px; }
.mmpopup .cont .call a{ font-size: 1.4rem; font-weight: 600; color: var(--head-color); }
.formPop .fld{ margin-bottom: 0.4rem; font-size: 14px; }
.formPop .fld input,
.formPop .fld textarea{ border-radius: 5px; border: solid 1px #e6e6e6; width: 100%; height: 50px; padding: 10px 10px; font-size: 1rem; }
.formPop .fld textarea{ height: 80px; }
.popup-main .themeBtn{ width: 100%; justify-content: center; text-transform: uppercase;  margin-top: 10px; }
.popup-main .themeBtn i{ margin-left: 10px; }
.checkbox-wrap { display: flex; align-items: flex-start; gap: 10px; text-align: left; margin-bottom: 10px; width: 100%; margin-top: 10px; }
.checkbox-wrap label { line-height: 1.3; font-size: 13px; }
.checkbox-wrap input { margin-top: 1px; width: auto !important; }

/* popup */


.popupmain { position: fixed; top: 50%; transform: translateY(-50%); left: 0; right: 0; margin: auto; width: 530px; background: #fff; box-shadow: 0 0 30px -9px #0000006e; 
    z-index: 9999999; overflow: hidden; display: none; border-radius: 8px; max-width: 97%; max-height: 90vh; overflow-y: auto; }
.popupmain .mmpopup { text-align: center; background: #f8f8f8; padding: 45px 25px 25px; display: block; }
.popupmain .mmpopup .formpop { width: 100%; margin: 24px auto; }
.popupmain .mmpopup .fld-input {  height: initial; width: 100%; border-radius: 10px; margin-bottom: 1rem; border: 1px solid #D1D5DB; background: #EEEEEE; }
.popupmain .mmpopup .centercont h3 { font-size: 38px; color: #141515; margin-bottom: 10px; }
.popupmain .mmpopup .centercont h4 { font-size: 20px; color: #000; margin-bottom: 15px; }
.popupmain .mmpopup .centercont h4 span { color: #86cb92; }
.popupmain .mmpopup .centercont h4 span span { display: none; }
.popupmain .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: #e3e3e3; border-radius: 100px; }
.popupmain .mmpopup .centercont p {  margin-bottom: 10px;  }
.popupmain .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; }
.popupmain .mmpopup .centercont ul li { display: block; font-size: 15px; color: #000; padding-bottom: 12px; }
.popupmain .mmpopup .centercont ul li.last { padding-bottom: 0; }
.popupmain .mmpopup .centercont ul li i { color: #ff533e; border: 1px solid; border-radius: 100px; margin-right: 8px; font-size: 10px; padding: 3px; }
.popupmain .mmpopup .centercont h4 { font-size: 30px; }
.popupmain .mmpopup .centercont h3 { font-size: 50px; font-weight: 400; text-align: center; color: #0085ff; }
.popupmain .mmpopup .centercont h3 span {  display: block; margin: 0 0px; color: #000; font-weight: 700; font-size: 36px; line-height: 120%; }
.popupmain .mmpopup .centercont h4 span { font-weight: 700; color: #000; font-size: 25px; margin-left: 10px; } 

.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,
.fld-input textarea{ width: 100%; height: 50px; padding: 10px 24px; font-size: 16px; letter-spacing: 0.2px; background: #EEEEEE; border: 0 !important; outline: 0 !important; 
    box-shadow: none; border-radius: 10px; }
.fld-input textarea{ height:80px; }
.fld-input input::placeholder { color: #737373; font-weight: 400; }

.fld-btn button i { padding-left: 12px; }
.fld-btn button:hover { transform: scale(1.03); }
.packageformsubmit .themeBtn{ width: 100%; justify-content: center;  }
.packageformsubmit .themeBtn i{ margin-left: 10px; }

/* popup */


.privacy_policy_Sec {
  padding: 5rem 0;
}

section.privacy_policy_Sec h4 {
  font-size: 36px;
  font-weight: 600;
  color: #141516;
}
section.privacy_policy_Sec h4:nth-child(1) {
  font-size: 46px;
  padding-top: 0px;
  padding-bottom: 12px;
}
section.privacy_policy_Sec ul >li {
  list-style-type: disc;
  padding: 9px 0;
  font-size: 18px;
  color: #897c68
}
section.privacy_policy_Sec ul {
  padding: 0px 17px;
}
section.privacy_policy_Sec p{ margin-bottom: 1rem; font-size: 22px; }


.portfolioSec{ overflow: hidden; }

.packageBody .mCSB_inside>.mCSB_container{ margin-right: 25px; margin-left: 0; }






.webpack-box .tab-list li+li+li {
    display:none;
}