/* Barlow Condensed & Manrope Font Family From Google Fonts */

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Manrope:wght@200..800&display=swap");

/* Structure */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Barlow Condensed", sans-serif;
  background-color: var(--c1);
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  color: var(--c4);
  font-family: "Manrope", sans-serif;
  margin: 0px;
  font-weight: 500;
  line-height: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

/* Colors Root */

:root {
  --c1: #161617;
  --c2: #fff;
  --c3: #00a49a;
  --c4: #7b7e86;
  --c5: #0c0c0d;
  --c6: #1e1e1e;
}

/* Selection */

::selection {
  background: var(--c3);
  color: var(--c2);
}

/* Custom Scrollbar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--c2);
}

::-webkit-scrollbar-thumb {
  background: var(--c3);
}

/* Website Loader */

div#preloader {
  position: fixed;
  z-index: 99999;
  background: var(--c6);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c3) #0000;
  animation: loader_keyframe 1s infinite linear;
}

.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.custom-loader::before {
  border-color: var(--c2) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.custom-loader::after {
  margin: 8px;
}

#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

@keyframes loader_keyframe {
  100% {
    transform: rotate(1turn);
  }
}

/* Wrapper */

.wrapper {
  overflow: hidden;
}

/* Container */

.container-fluid {
  max-width: 1600px;
}

/* Same Work */

/* Main  Title */
.project-title,
.services-title,
.faqs-title,
.we-do-title,
.portfolio-title,
.pricing-title,
.app-title,
.working-process-title {
  text-align: center;
  margin-bottom: 60px;
}

/* Same Spacing */
.about-us,
.vision-and-mission,
.languages,
.projects,
.portfolio-sec,
.community,
.testimonials,
.pricing,
.faqs,
.pp-space,
.working-process,
.service-discription,
.combo-package,
.cont-base,
.contact-us,
.projects-widget,
.contact-info-box {
  padding: 100px 0px;
}

/* Same Font Family */
.consult-form-item input, .web-btn a, .web-btn ul li a, .web-btn ul li button, .resp-menu-item ul li a span, .cross-btn a, .resp-box-item-inner p, .responsive-contact-item a, .responsive-contact-item p, .sub-header-info ul li, .sub-header-info ul li a, .wrap-form-item input, .wrap-form-item textarea, .wrap-form-submit input, .contact-submit-btn input, .service-disc-content ul li, .combo-list-item ul li, .info-item-content a, .info-item-content p, .info-item-content span, .f-quick-links ul li a, .f-info ul li, .cont-base-item ul li, .resp-box-item-inner a , .privacy-disc-inner-content ul li {
  font-family: "Manrope";
}

/* Section Backgrounds */
section.service-discription.logo-discription {
  background: var(--c6);
}

section.service-discription.digital-marketing-description {
  background: var(--c6);
}

section.cont-base.digital-marketing-cont {
  background: var(--c1);
}

section.pricing.mobile-app-development-service {
  background: var(--c6);
}

section.contact-us.digital-marketing-contact {
  background: var(--c1);
}

section.contact-us.contact-branding {
  background: var(--c1);
}

section.cont-base.cont-branding {
  background: var(--c1);
}

section.cont-base.logo-cont-base {
  background: var(--c1) !important;
}

section.contact-us.logo-contact {
  background: var(--c1) !important;
}

section.service-discription.branding-discription {
  background: var(--c6);
}

/* Custom Cursor */

.cursor1,
.cursor2 {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor1 {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c3);
  transition: 0.15s;
}

.cursor2 {
  width: 8px;
  height: 8px;
  background-color: var(--c3);
  transition: 0.2s;
}

/* Whatsapp */

.whtsapp-icon {
  position: fixed;
  bottom: 3%;
  left: 2%;
  box-shadow: 0px 0px 9px -4px;
  z-index: 9999;
}

.whtsapp-icon a {
  font-size: 35px;
  color: var(--c2);
  padding: 4px 14px;
  border-radius: 8px;
  background-color: #3ed53e;
}

.whtsapp-icon {
  animation: ring 6s 0.7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  1% {
    transform: rotate(10deg);
  }

  3% {
    transform: rotate(-18deg);
  }

  5% {
    transform: rotate(14deg);
  }

  7% {
    transform: rotate(-12deg);
  }

  9% {
    transform: rotate(10deg);
  }

  11% {
    transform: rotate(-18deg);
  }

  13% {
    transform: rotate(16deg);
  }

  15% {
    transform: rotate(-14deg);
  }

  17% {
    transform: rotate(12deg);
  }

  19% {
    transform: rotate(-10deg);
  }

  21% {
    transform: rotate(8deg);
  }

  23% {
    transform: rotate(-6deg);
  }

  25% {
    transform: rotate(4deg);
  }

  27% {
    transform: rotate(-2deg);
  }

  29% {
    transform: rotate(5deg);
  }

  31% {
    transform: rotate(-8deg);
  }

  33% {
    transform: rotate(6deg);
  }

  35% {
    transform: rotate(-4deg);
  }

  37% {
    transform: rotate(2deg);
  }

  39% {
    transform: rotate(-1deg);
  }

  41% {
    transform: rotate(1deg);
  }

  43% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

/* Same Spacing B/W Sections */

.spacing {
  padding-top: 100px;
}

/* Main Title */

.main-title h6 {
  font-size: 18px;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--c2);
}

.main-title h2 {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 200;
  color: var(--c2);
}

.main-title span {
  color: var(--c3);
  font-weight: 600;
}

/* Web Btn */

.web-btn a {
  box-shadow: 0px 0px 24px 0px #1c746f;
}

.web-btn a,
.web-btn ul li a,
.web-btn ul li button {
  background-color: var(--c3) !important;
  color: var(--c2) !important;
  padding: 14px 36px;
  border-radius: 50px !important;
  transition: all 0.5s;
  border: 0 !important;
}

.web-btn a:hover,
.web-btn ul li.active a,
.web-btn ul li button.active {
  background: var(--c2) !important;
  color: var(--c3) !important;
  box-shadow: 0px 0px 40px 0px #1c746f;
  border: 0 !important;
}

/* Main Btn */

.main-btn a {
  padding: 20px 40px;
  background: var(--c3);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.5s;
  color: var(--c1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-btn a:hover::before {
  left: 0;
}

.main-btn a::before,
.main-btn a::after {
  width: 50%;
  top: 0;
  position: absolute;
  content: "";
  height: 100%;
  background-color: var(--c2);
  z-index: -1;
  transition: all 0.4s;
}

.main-btn a::before {
  left: -100%;
}

.main-btn a::after {
  right: -100%;
}

.main-btn a:hover::after {
  right: 0;
}

/* Responsive Menu */

.menu-box {
  display: flex;
  justify-content: end;
}

.menu-box a {
  color: var(--c2);
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.menu-box a i {
  color: var(--c2);
  font-size: 32px;
}

.responsive-menu-logo {
  width: 40%;
}

.responsive-menu {
  position: fixed;
  top: -100%;
  right: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.7s;
  visibility: visible;
  opacity: 1;
  background-color: var(--c6);
  height: 100%;
  overflow: hidden;
}

.responsive-menu.active {
  top: 0;
  visibility: visible;
  opacity: 1;
}

.responsive-menu-inner {
  height: 100%;
  padding-top: 60px;
}

.resp-menu-item ul li a {
  color: var(--c2);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: 1px;
  transition: all 0.7s;
}

.resp-menu-item ul li a span {
  font-size: 15px;
  margin-right: 9px;
  color: var(--c3);
}

.resp-menu-item>ul>li {
  position: relative;
  padding: 15px 20px;
}

.resp-menu-item ul li a:hover {
  transform: skewX(2deg);
  letter-spacing: 2.5px;
}

.resp-menu-item {
  position: relative;
  z-index: 3;
  border-right: 1px solid #8080804a;
  margin-top: 70px;
}

.resp-menu-item:before {
  position: absolute;
  content: "MENU";
  top: 12%;
  left: 0;
  color: #42414133;
  width: 100%;
  height: 300px;
  font-size: 258px;
  font-weight: 800;
  z-index: -1;
}

.cross-btn a {
  display: flex !important;
  color: var(--c2);
  letter-spacing: 6.5px;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
}

.cross-btn a i {
  color: var(--c2);
  font-size: 32px;
}

.cross-btn {
  display: inline-block;
}

.resp-boxes-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.resp-boxes-item {
  height: 180px;
  border: 1px solid var(--c2);
  border-radius: 5px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 25px;
  transition: all 0.5s;
}

.resp-box-item-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.resp-box-item-inner h5,
.responsive-contact-item span.resp-mob-men-head {
  position: relative;
  color: var(--c2);
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.responsive-contact-item span.resp-mob-men-head {
  display: block;
}

.resp-box-item-inner h5:before,
.responsive-contact-item span.resp-mob-men-head:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  width: 20px;
  height: 2px;
  background-color: var(--c2);
  content: "";
}

.responsive-contact-item {
  margin-bottom: 30px;
}



.resp-box-item-inner a {
  color: var(--c3);
  font-weight: 500;
  transition: all 0.5s;
  margin-bottom: 3px;
}

.resp-box-item-inner a:hover,
.responsive-contact-item a:hover {
  color: var(--c2);
}

.resp-box-item-inner p,
.responsive-contact-item a,
.responsive-contact-item p {
  color: var(--c3);
}

.responsive-contact-item ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c3);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.responsive-contact-details {
  padding-left: 50px;
  margin-top: 80px;
}

.responsive-contact-item ul {
  display: flex;
  gap: 10px;
}

.responsive-contact-item ul li a:hover {
  background-color: var(--c2);
  color: var(--c3);
}

.responsive-contact-item a {
  padding: 2px 0px;
  transition: all 0.5s;
}

.resp-boxes-item:hover {
  border-color: var(--c3);
  transform: rotate(4deg);
}

.resp-menu-item ul li ul {
  padding-left: 50px;
  margin-top: 20px;
  display: none;
}

.resp-menu-item ul li .more {
  position: absolute;
  right: 0;
  top: 8px;
  height: 65px;
  width: 70px;
  background-color: var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--c2);
  cursor: pointer;
}

.resp-menu-item ul li ul li a {
  font-size: 24px;
  opacity: 0.75;
  padding: 10px 0px;
  display: block !important;
  font-family: "Barlow Condensed";
}

.resp-menu-item>ul {
  height: 486px;
  overflow: auto;
}

.resp-menu-item>ul::-webkit-scrollbar {
  width: 5px;
}

.resp-menu-item ul li i.active:before {
  content: "\f068";
}

/* Header */

/* Sub Header */

.sub-header {
  background-color: var(--c1);
  padding: 10px 0px;
}

.sub-header-info ul {
  display: flex;
  gap: 20px;
}

.sub-header-info ul li,
.sub-header-info ul li a {
  color: var(--c2);
  font-size: 14px;
  transition: all 0.5s;
}

.sub-header-info ul li i {
  color: var(--c3);
  margin-right: 6px;
}

.sub-header-social ul {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.sub-header-social ul li a {
  color: var(--c2);
  transition: all 0.5s;
}

.sub-header-social ul li a:hover {
  color: var(--c3);
}

.sub-header-info ul li a:hover {
  color: var(--c2);
}

/* Main Header */

.logo {
  width: 180px;
}

.logo a,
.f-logo a {
  display: block !important;
}

.main-header {
  position: absolute;
  width: 100%;
  z-index: 99;
  background: #ffffff0f;
  filter: drop-shadow(2px 4px 6px black);
}

.nav-items nav ul {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.nav-items nav>ul>li {
  padding: 40px 0px;
}

.nav-items nav ul li a i {
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
}

.call-btn {
  display: flex;
  gap: 15px;
  align-items: center;
}

.call-icon i {
  width: 45px;
  height: 45px;
  background: var(--c1);
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--c3);
  font-size: 18px;
}

.call-number a {
  color: var(--c2);
  font-size: 18px;
  letter-spacing: 0.1em;
  transition: all 0.5s;
}

.call-number a:hover {
  color: var(--c3);
}

.header-btns {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 50px;
}

.get-quote {
  position: relative;
}

.get-quote:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--c2);
  top: 0;
  left: -25px;
}

/* Nav Before After Hover Effect */

.nav-items nav ul li a {
  font-size: 18px;
  color: var(--c2);
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 6px;
  transition: all 0.5s ease;
  position: relative;
}

.nav-items nav ul li a:hover,
.nav-items nav ul li.active a {
  color: var(--c3);
}

.nav-items nav ul>li>a:before,
.nav-items nav ul>li>a:after {
  content: "";
  position: absolute;
  transform: scaleX(0);
  background: var(--c3);
  transition: all 0.5s ease;
}

.nav-items nav ul>li>a:before {
  width: 2px;
  bottom: 15px;
  left: 0px;
  height: 12px;
}

.nav-items nav ul>li>a:after {
  width: 16px;
  bottom: 0px;
  left: 15px;
  height: 2px;
}

.nav-items nav ul>li>a:hover:before,
.nav-items nav ul>li.active>a:before {
  transform: scaleX(1);
  bottom: 0;
}

.nav-items nav ul>li>a:hover:after,
.nav-items nav ul>li.active>a:after {
  transform: scaleX(1);
  left: 0;
}

/* Header Sub Menu */

.nav-items nav ul li ul {
  position: absolute;
  color: var(--c1);
  background-color: var(--c2);
  flex-direction: column;
  top: 100%;
  gap: 0px;
  width: 225px;
  transition: all 0.5s;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 18px -10px #000000b3;
  z-index: 1;
}

.nav-items nav ul li ul:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  top: -5px;
  left: 50px;
  opacity: 1;
  z-index: -1;
  background: var(--c2);
  border-radius: 2px;
  transform: rotate(45deg);
}

.nav-items nav ul li:hover ul {
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}

.nav-items nav ul li ul li {
  border-bottom: 1px solid #f5f5f5;
}

.nav-items nav ul li ul li:last-child {
  border-bottom: 0;
}

.nav-items nav ul li ul li a:hover,
.nav-items nav ul li ul li.active a {
  background-color: var(--c3);
  color: var(--c2);
}

.nav-items nav ul li ul li a {
  font-size: 15px;
  color: var(--c1);
  padding: 12px 30px;
  width: 100%;
}

.nav-items nav ul li ul li a:before,
.nav-items nav ul li ul li a:after {
  display: none;
}

/* Banner */

.banner-shape-image {
  position: absolute;
  top: 0;
  width: 80%;
  left: 0;
  height: 100%;
}

.banner-image {
  height: 100vh;
}

.banner-shape-image img {
  height: 100%;
  filter: brightness(0.5);
}

.banner-image img {
  height: 100vh;
  object-fit: cover;
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  object-position: right;
  animation: zoomEffect 8s infinite alternate ease-in-out;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.banner {
  position: relative;
}

.banner-content-main {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0;
  z-index: 3;
}

.banner-content h1 {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c2);
  line-height: 0.9em;
}

.banner-content p {
  font-size: 18px;
  margin: 20px 0px;
}

.client-box {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.client-box ul {
  display: flex;
}

.client-box ul li img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--c2);
  margin-right: 0;
}

.client-box ul li {
  margin-left: -30px;
  transform: scale(1);
  transition: all 0.5s;
}

.client-box ul li:first-child {
  margin-left: 0px;
}

.client-box ul li:hover {
  position: relative;
  transform: scale(1.1);
  z-index: 9;
}

.client-box h3 {
  color: var(--c3);
  font-size: 23px;
  text-transform: capitalize;
  font-weight: 400;
}

.client-box h3 span {
  font-weight: 700;
}

.banner-slider ul.slick-dots {
  position: absolute;
  left: 150px;
  gap: 30px;
  background: linear-gradient(140deg, var(--c3), var(--c5));
  border-radius: 50px;
  display: flex;
  padding: 30px 18px;
  top: 50%;
  flex-direction: column;
  transform: translateY(-50%) !important;
}

.banner-slider ul.slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0px;
  border: 0;
  background-color: var(--c5);
  border-radius: 50%;
  display: block;
  transition: all 0.5s;
}

.banner-slider li.slick-active {
  position: relative;
}

.banner-slider ul.slick-dots li.slick-active button:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--c2);
  top: -10px;
  left: -10px;
}

.banner-slider ul.slick-dots li.slick-active button {
  background-color: var(--c2);
}

/* About Agency */

.about-agency {
  background: var(--c6);
}

.about-agency-image-two img {
  height: 328px;
  object-fit: cover;
}

.about-agency-image-one img {
  height: 535px;
  object-fit: cover;
}

.about-agency-image-one img,
.about-agency-image-two img {
  filter: brightness(50%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  transition: all 0.3s;
}

.about-agency-image-one img:hover,
.about-agency-image-two img:hover {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: translateY(-8px);
}

.about-agency-main {
  position: relative;
  padding-right: 60px;
}

.about-agency-image-two {
  position: absolute;
  top: 60px;
  right: -20px;
  width: 33%;
}

.about-agency-content {
  margin-left: 40px;
}

.about-agency-title h2 {
  margin-bottom: 20px;
}

.widget-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-agency-widget {
  display: flex;
  justify-content: space-between;
  background-color: var(--c2);
  padding: 40px 30px;
  margin: -80px 80px 0px 80px;
  position: relative;
}

.widget-content h4 {
  font-size: 44px;
  font-weight: 600;
  color: var(--c1);
}

.widget-content span {
  display: inline-block;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.item-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.item-title {
  flex: 0 0 70%;
}

.item-icon {
  flex: 0 0 30%;
}

.item-icon i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--c1);
  text-align: center;
  color: var(--c3);
}

.item-title h4 {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--c3);
  font-weight: 600;
}

.about-agency-item {
  margin-bottom: 20px;
  margin-top: 30px;
}

.name {
  text-transform: uppercase;
  color: var(--c3);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.progress-container,
.progress {
  background-color: #f2f2f6;
  position: relative;
  height: 15px;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 16px;
}

.progress {
  background-color: var(--c3);
  width: 0;
  transition: width 5s linear;
}

.percentage {
  color: var(--c4);
  font-size: 16px;
  position: absolute;
  top: -40px;
  transition: left 0.4s linear;
  transform: translateX(-50%);
}

/* Languages */

.languages {
  background: var(--c6);
}

.language-title h6 {
  color: var(--c3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.language-title h6:before {
  position: absolute;
  content: "";
  width: 37%;
  height: 1px;
  top: 50%;
  background: #e6e6ec;
  transform: translateY(-50%);
  right: 0;
}

.language-title h6:after {
  position: absolute;
  content: "";
  width: 37%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #e6e6ec;
}

.language-title {
  margin-bottom: 40px;
}

.language img {
  width: 130px;
  margin: 0 auto;
  padding: 0px 25px;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  transition: all 0.5s;
}

.language img:hover {
  filter: unset;
}

/* section-what-we-do */

.we-do {
  position: relative;
}

.business-box-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.business-box-item-icon {
  width: 20%;
}

.business-content-box {
  display: flex;
  justify-content: space-between;
}

.business-box-item {
  padding: 30px;
  width: 48%;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}

.business-box-item-title {
  width: 75%;
}

.business-box-item-title h4 {
  color: var(--c3);
  font-size: 20px;
}

.we-tabs-main ul li button {
  display: flex;
  padding: 20px;
  gap: 12px;
  align-items: center;
  border-radius: 100px !important;
  background: var(--c3) !important;
  box-shadow: 0px 0px 24px 0px #1c746f;
}

.business-content-item .main-title {
  margin-bottom: 30px;
}

.we-tabs-main ul li button.active {
  background: var(--c2) !important;
}

.we-tabs-main ul li button.active h3 {
  color: var(--c5);
}

.we-tabs-main ul li button h3 {
  color: var(--c5);
  font-size: 18px;
  width: 170px;
  line-height: 1.5;
  text-align: left;
  font-weight: 400;
}

.we-tabs-main ul li button .tab-icon {
  width: 60px;
  height: 60px;
  background-color: var(--c2);
  border-radius: 50%;
  line-height: 60px;
  font-size: 20px;
  color: var(--c3);
}

.we-tabs-main ul li button.active .tab-icon {
  background-color: var(--c1);
  color: var(--c3);
}

.we-tabs-main ul {
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.about-image dotlottie-player {
  width: 80% !important;
  height: 450px !important;
  margin: 0 auto;
}

/* Marquee */

.marquee-item h2 span {
  margin: 0px 50px;
  position: relative;
}

.marquee-item h2 span:after {
  position: absolute;
  top: 50%;
  right: -62px;
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--c1);
  border-radius: 50%;
  transform: translateY(-50%);
}

.marquee-item h2 span:last-child:after {
  display: none;
}

.marquee .marquee-item:nth-child(2) .marquee-text {
  color: var(--c1);
}

.marquee .marquee-item:nth-child(2) {
  background: var(--c2);
}

.marquee-item {
  white-space: nowrap;
  padding: 10px 0px;
  margin-top: 30px;
  transform: rotate(-2deg) scale(1.1);
  background-color: var(--c3);

  .marquee-text {
    display: inline-block;
    padding-left: 100%;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--c2);
    animation: marquee-direction var(--_speed) linear infinite;

    &[data-direction="rtl"] {
      --_right: 0%;
      --_left: -100%;
    }

    &[data-direction="ltr"] {
      --_right: -100%;
      --_left: 0%;
    }
  }
}

@keyframes marquee-direction {
  0% {
    transform: translateX(var(--_right));
  }

  100% {
    transform: translateX(var(--_left));
  }
}

/* Services */

.services {
  padding: 100px 0px 0px 0px;
}

.services-box {
  display: flex;
  overflow: hidden;
  transform: skew(5deg);
}

.services-box a {
  flex: 1;
  display: block !important;
  color: inherit;
  transition: flex 0.7s ease-in-out;
}

.service-item {
  transition: all 0.7s ease-in-out;
  height: 370px;
  position: relative;
  margin-right: 1em;
  overflow: hidden;
}

.service-image {
  height: 100%;
}

.service-item img {
  height: 100%;
  object-fit: cover;
  transition: filter 0.7s ease-in-out;
  filter: grayscale(100%);
}

.service-item .service-content h3 {
  color: var(--c5);
  background: var(--c3);
  padding: 10px;
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
  width: 270px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 20px;
  white-space: nowrap;
}

.services-box a:hover {
  flex-grow: 2;
}

.services-box a:hover img {
  filter: grayscale(0);
}

.services-box a:hover .service-content h3 {
  text-align: center;
  top: calc(100% - 2em);
  color: var(--c2);
  background: rgba(0, 0, 0, 0.5);
  font-size: 30px;
  transform: rotate(0deg) skew(0deg);
  width: 100%;
}

.services-box a:nth-child(4) .service-item {
  margin-right: 0;
}

/* Projects */

.projects {
  position: relative;
}

.project-btn-more a {
  color: var(--c6) !important;
}

.projects-main {
  padding: 25px;
  padding-bottom: 0px;
}

.home-proj .projects-main {
  margin: 40px 15px 0px 15px;
}

.projects-main .row .col-lg-4:nth-child(2) .project-item {
  margin-bottom: 25px;
}

.projects .slick-list.draggable {
  padding-right: 380px !important;
}

.project-btn-more {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects .slick-dots {
  display: flex;
  position: absolute;
  top: 0;
  left: 5.5%;
  width: 90%;
}

.projects .slick-dots li button {
  background: unset;
  border: 0;
  color: transparent;
  position: relative;
  width: 250px;
  padding-bottom: 15px;
  transition: all 0.4s;
  overflow: hidden;
}

.projects .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--c3);
  font-weight: 400;
  font-size: 20px;
}

.projects .slick-dots li:first-child button:before {
  content: "Web Design";
}

.projects .slick-dots li:nth-child(2) button:before {
  content: "Logo Design";
}

.projects .slick-dots li:nth-child(3) button:before {
  content: "Branding Design";
}

.projects .slick-dots li button:after {
  bottom: 0;
  content: "";
  position: absolute;
  left: -100%;
  transition: all 0.5s;
  width: 100%;
  height: 2px;
  background-color: var(--c2);
}

.projects .slick-dots li.slick-active button:after {
  left: 0;
}

.slide-one.web .project-image img {
  height: 683px;
}

/* Portfolio */

.portfolio-sec {
  background: var(--c6);
}

.portfolio-btn {
  margin-top: 40px;
  text-align: center;
}

.projects-main .project-item {
  margin-bottom: 25px;
}

.project-image a {
  display: block !important;
}

.project-item-inner-main {
  position: relative;
}

.portfolio-sec.website .project-item,
.portfolio-sec.logo-des .project-item,
.portfolio-sec.brand .project-item {
  padding: 30px;
  border-bottom: 1px solid #80808030;
  border-right: 1px solid #80808030;
  margin-bottom: unset !important;
}

.portfolio-sec.website .projects-main,
.portfolio-sec.logo-des .projects-main,
.portfolio-sec.brand .projects-main {
  padding: 0px;
  border: 1px solid #80808030;
}

.portfolio-sec.website .project-image a img {
  height: 600px;
}

.portfolio-sec.website .project-image a img,
.slide-one.web .project-image img {
  object-fit: cover;
  object-position: top;
  transition: 4s all ease;
}

.portfolio-sec.website .project-item-inner-main:hover .project-image img,
.slide-one.web .project-image:hover img {
  object-position: bottom;
}

.slide-one .projects-main .row .col-lg-4:last-child .project-item {
  height: 470px;
  overflow: hidden;
  margin-bottom: 60px;
}

/* section-app-development */

.app-development {
  padding: 100px 0px 0px;
  position: relative;
}

.app-devel-content span {
  color: var(--c2);
  font-weight: 800;
  font-size: 28px;
}

.app-devel-content h2 {
  font-weight: 800;
  font-family: var(--fbolder);
  font-size: 70px;
  margin-bottom: 15px;
  color: var(--c3);
  text-transform: uppercase;
}

.app-devel-item-inner {
  position: relative;
}

.app-devel-item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000a1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.app-devel-item-content a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}

.app-devel-item-content:hover .app-devel-content {
  visibility: visible;
  opacity: 1;
}

.app-devel-slide .slick-arrow {
  position: absolute;
  bottom: 13%;
  font-size: 26px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--c2);
  color: var(--c3);
  text-align: center;
  line-height: 46px;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 99;
}

.app-devel-slide .slick-prev {
  right: 50%;
}

.app-devel-slide .slick-next {
  right: 41%;
}

.app-devel-slide .slick-arrow:hover {
  background-color: var(--c3);
  color: var(--c2);
}

.app-development .inner-sec-title {
  margin-bottom: 90px;
}

.app-devel-content p {
  margin-bottom: 15px;
}

.app-devel-content p:last-child {
  margin: 0px;
}

.app-development .app-devel-row {
  margin-bottom: 70px;
}

.app-development .app-devel-row:last-child {
  margin-bottom: 0px;
}

.app-development .app-devel-row:nth-child(odd) .row {
  flex-direction: row-reverse;
}

.app-development .app-devel-row:nth-child(odd) .row .slick-prev {
  left: 41%;
}

.app-development .app-devel-row:nth-child(odd) .row .slick-next {
  left: 50%;
}

.app-devel-slide-main .slick-dots li button {
  border: 0;
  outline: 0;
  background: unset;
  color: transparent;
  background-color: var(--c4);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.app-devel-slide-main .slick-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.app-devel-slide-main .slick-dots li.slick-active button {
  background-color: var(--c3);
}

.app-devel-img a img {
  padding: 10px;
  border-radius: 30px;
}

.app-devel-img a {
  display: block !important;
}

.app-devel-slide-main .slick-list.draggable {
  padding: 90px 0px !important;
}

.app-devel-item.slick-center {
  margin-top: -60px;
}

.app-devel-item {
  transition: all 0.6s;
}

/* Website-Portfolio */

.portfolio-sec .gallery-btns ul,
.package-tab-btns ul,
.graph-btns ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.package-tab-btns ul li button {
  color: var(--c5) !important;
}

.package-tab-btns ul li button.active {
  color: var(--c5) !important;
}

.package-tab-btns ul {
  gap: 20px;
  margin-bottom: 30px;
}

.portfolio-sec .graph-btns {
  padding: 0px 100px;
  margin-bottom: 40px;
}

.portfolio-sec .graph-btns ul {
  row-gap: 15px;
}

.gallery-btns {
  margin-bottom: 20px;
}

.portfolio-sec .iso-tab {
  width: 33.33%;
}

.portfolio-sec.website .iso-tab:nth-child(3n + 3) .project-item,
.portfolio-sec.logo-des .row .col-lg-3:nth-child(4n + 4) .project-item,
.portfolio-sec.brand .row .col-lg-4:nth-child(3n + 3) .project-item {
  border-right: unset;
}

/* logo-portfolio */

.portfolio-sec.logo-des .project-image,
.portfolio-sec.brand .project-image {
  position: relative;
  overflow: hidden;
}

.project-image video {
  width: 100%;
  height: 100%;
  display: block;
}

.portfolio-sec.logo-des .project-image:before,
.portfolio-sec.brand .project-image:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgb(143 64 64 / 0%) 0%, #ffffff29 100%);
  transform: skewX(-25deg);
}

.portfolio-sec.logo-des .project-image:hover:before,
.portfolio-sec.brand .project-image:hover:before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Community */

.community {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.community-btn {
  display: flex;
  justify-content: end;
}

.community:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000c;
  z-index: -1;
}

.community-upper-text h2 {
  color: var(--c2);
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  width: 80%;
}

/* Testimonials */

.testimonial-image-main {
  position: relative;
  width: 60%;
}

.testimonials {
  background: var(--c6);
}

.testimonial-image-slider:before {
  position: absolute;
  content: "";
  background-size: auto;
  background-position: center right;
  background-image: url(../images/testimonial-line.png);
  width: 20px;
  height: 100%;
  top: 0;
  right: 60px;
  background-repeat: no-repeat;
}

.testimonial-icon {
  position: absolute;
  top: 0;
  right: 40px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  background: var(--c3);
  font-size: 22px;
  color: var(--c2);
}

.testimonial-image img {
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  transition: all 0.5s;
  width: 316px;
  height: 316px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-image img:hover {
  filter: unset;
}

.testimonial-content ul {
  display: flex;
  gap: 2px;
  color: var(--c3);
}

.testimonial-content p {
  font-size: 22px;
  padding: 20px 0px;
  font-weight: 400;
  line-height: 1.818em;
}

.testimonial-content h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--c2);
}

.testimonial-content h6 {
  color: var(--c4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-slider .slick-arrow {
  position: absolute;
  bottom: -60px;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  color: var(--c2);
  background: var(--c3);
  border-radius: 50%;
  transition: all 0.5s;
  cursor: pointer;
}

.testimonial-slider .slick-prev {
  right: 70px;
}

.testimonial-slider .slick-next {
  right: 0;
}

.testimonial-slider .slick-arrow i {
  font-weight: 800;
}

.testimonial-slider .slick-arrow:hover {
  background: var(--c2);
  color: var(--c1);
}

/* Pricing */

.pricing-in-service {
  background: var(--c6);
}

.package-item {
  background-color: var(--c5);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px;
  position: relative;
  border-bottom: 1px solid rgb(255 255 255 / 11%);
}

.sell-mark {
  position: absolute;
  top: 2%;
  right: -4%;
  width: 243px;
  border-radius: 100px 0px 0px 100px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 20px;
  color: var(--c2);
  font-weight: 300;
}

.pack-name h4 {
  font-family: var(--fmedium);
  color: var(--c3);
  font-size: 28px;
  margin-bottom: 3px;
}

.pack-name span,
.package-btn-main span {
  color: var(--c2);
}

.package-item .price h3 {
  text-transform: uppercase;
  color: var(--c3);
  font-size: 22px;
}

.package-item .price span {
  font-size: 40px;
}

.package-list {
  padding: 20px 30px;
  height: 300px;
  overflow-y: scroll;
}

.package-list ul li {
  color: var(--c2);
  padding: 12px 0px 12px 35px;
  position: relative;
  font-size: 17px;
}

.package-list ul li:before {
  position: absolute;
  left: 0;
  content: "";
  top: 15px;
  width: 20px;
  height: 20px;
  border: 4px solid var(--c2);
  background-color: var(--c1);
  border-radius: 50%;
  box-shadow: 0px 0px 40px 0px #1c746f;
}

.package-list::-webkit-scrollbar {
  width: 5px;
  background-color: var(--c2);
}

.package-list::-webkit-scrollbar-thumb {
  background: var(--c3);
}

.package-btn-main {
  padding: 40px 30px;
  display: flex;
  align-items: center;
}

.package-btn-main span {
  margin-left: 20px;
}

.package-list ul li:last-child {
  padding-bottom: 0px;
}

/* FAQ's */

section.faqs.faqs-single-page {
  background: var(--c1);
}

.faqs {
  background: var(--c6);
}

.accordion-box .accordion-item {
  border: none;
  margin-bottom: 16px;
}

.accordion-box .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--c2);
}

.accordion-box .accordion-button {
  color: var(--c2) !important;
  padding: 40px 35px;
  font-size: 22px;
  background-color: var(--c3);
  font-weight: 600;
}

.accordion-box .accordion-button:after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  position: absolute;
  left: -20px;
  top: 40px;
  font-weight: 800;
  color: var(--c2);
  background-color: var(--c3);
  border: 5px solid var(--c2);
  font-size: 15px;
  width: 40px;
  height: 40px;
  line-height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-image: unset;
}

.accordion-box .accordion-button:not(.collapsed)::after {
  background-image: unset;
}

.accordion-box .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.accordion-box .accordion-button:hover::after,
.accordion-box .accordion-button:not(.collapsed):hover::after {
  transform: rotate(360deg);
}

.accordion-box .accordion-body {
  background-color: #fff;
  color: #8c8c8c;
  line-height: 25px;
  padding: 10px 25px 20px 35px;
  font-size: 16px;
  position: relative;
}

/* Projects Widgets */

.projects-widget {
  background-size: cover !important;
  background-position: center;
  background-attachment: fixed !important;
  background: var(--c1);
}

.project-widget-icon img {
  width: 60px;
  filter: drop-shadow(2px 4px 6px black);
  mix-blend-mode: hard-light;
}

.project-widget-box {
  text-align: center;
}

.project-widget-content h2 {
  color: var(--c2);
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.project-widget-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--c2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto -60px auto;
  position: relative;
}

.project-widget-content {
  border: 10px solid var(--c3);
  padding: 60px 0px 40px 0px;
}

.project-widget-content h6 {
  text-transform: uppercase;
  color: var(--c4);
  font-size: 20px;
}

/* Consultancy */

.consult-form-item input {
  width: 100%;
  border: 0;
  outline: 0;
  border-bottom: 1px solid #fff;
  padding: 20px;
  color: var(--c2);
  transition: all 0.4s;
  background: rgba(255, 255, 255, 0.1);

  font-size: 15px;
}

.consult-title span {
  color: var(--c6);
}

.consultancy .consult-bg {
  background-image: url(../images/form-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.consult-form-item input::placeholder {
  color: var(--c2);
}

.consult-form-item {
  margin-bottom: 18px;
}

.consult-form-item:last-child {
  margin-bottom: 0px;
}

.consultancy .consult-bg {
  padding: 70px 0px;
}

.consult-title a {
  padding: 18px 40px;
  background-color: var(--c2);
  color: var(--c3);
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s;
}

.consult-title a:hover {
  background-color: var(--c6);
  color: var(--c2);
}

.consult-title.web-title {
  margin-bottom: 0px;
}

.consult-form-item input:focus {
  border-color: var(--c5);
}

.consult-form {
  margin-left: 40px;
}

/* Privacy policy and Terms & Conditions */

.privacy-disc-inner-content h5 {
  color: var(--c3);
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

.privacy-disc-inner-content h2 {
  color: var(--c2);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 36px;
}

.privacy-disc-inner-content p {
  margin-bottom: 20px;
}

.privacy-disc-inner-content a {
  color: var(--c3);
  font-weight: 600;
}

.privacy-disc-title h2 {
  color: var(--c4);
  font-size: 50px;
  font-weight: 700;
}

.privacy-disc-title {
  padding-left: 40px;
}

.privacy-disc-inner-content ul li {
  color: var(--c2);
  margin-bottom: 20px;
}

/* Service Single Page */

/* 01. Service Inner Wrapper */

.inner-wrapper-two {
  background-color: var(--c5);
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.service-wrap-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.wrap-form-item input,
.wrap-form-item textarea {
  background: unset;
  border: 1px solid var(--c2);
  outline: 0;
  width: 100%;
  padding: 10px 15px;
  color: var(--c3);
  transition: all 0.6s;
  font-size: 15px;
}

.wrap-form-item {
  margin-bottom: 20px;
}

.wrap-form-item textarea {
  height: 170px;
}

.wrap-form-item input:focus,
.wrap-form-item textarea:focus {
  border-color: var(--c3);
}

.wrap-form-item input:focus::placeholder,
.wrap-form-item textarea:focus::placeholder {
  opacity: 0;
}

.wrap-form-item input::placeholder,
.wrap-form-item textarea::placeholder {
  color: var(--c2);
  transition: all 0.9s;
}

.service-wrap-content h1 {
  font-size: 70px;
  color: var(--c2);
  font-weight: 700;
}

.service-wrap-form {
  padding: 40px;
  /* border: 1px dotted var(--c3); */
  border-radius: 6px;
  background-color: var(--c1);
}

.service-wrap-content p {
  color: var(--c4);
  padding: 20px 0px;
}

.service-wrap-content h4 {
  color: var(--c3);
}

.service-wrap-content h4 a {
  color: var(--c2);
}

.wrap-form-submit input,
.contact-submit-btn input {
  background: unset;
  outline: 0;
  border: 1px solid var(--c1);
  width: 100%;
  color: var(--c3);
  padding: 15px 20px;
  transition: all 0.5s;
  font-weight: 700;
  background: var(--c2);
}

.wrap-form-submit input:hover,
.contact-submit-btn input:hover {
  box-shadow: 0px 10px 60px 0px rgb(0 164 154 / 37%);
}

.contact-submit-btn input {
  border-radius: 50px;
  padding: 18px 30px;
  width: 40%;
}

.wrap-form-item input {
  height: 50px;
}

.inner-wrapper-two .circle-1 {
  width: 500px;
  height: 500px;
  left: -60px;
  top: -90px;
  animation: 20s linear infinite alternate nudge1;
}

.inner-wrapper-two .circle-2 {
  width: 400px;
  height: 400px;
  top: 166px;
  left: -130px;
  animation: 20s linear infinite alternate nudge2;
}

.inner-wrapper-two .circle-4 {
  right: 600px;
  top: 500px;
  width: 120px;
  height: 120px;
  animation: 20s linear infinite alternate nudge2;
}

.inner-wrapper-two .circle-3 {
  right: 0;
  top: -28px;
  width: 400px;
  height: 400px;
  animation: 20s linear infinite alternate nudge3;
}

.inner-wrapper-two .circle {
  opacity: 0.08;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle 800px at 75% -25%,
      var(--c3) 0,
      var(--c3) 100%);
}

@keyframes nudge1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(100px, 0);
  }

  80% {
    transform: translate(-1px, 0);
  }
}

@keyframes nudge2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 150px);
  }

  80% {
    transform: translate(-150px, 0);
  }
}

@keyframes nudge3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-100px, 0);
  }

  80% {
    transform: translate(-1px, 0);
  }
}

/* 02. Service Discription */

.working-process {
  background: var(--c5);
}

.service-disc-content {
  color: var(--c3);
  padding-left: 40px;
}

.service-disc-content p {
  margin-top: 15px;
}

.service-disc-content ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  font-size: 18px;
  color: var(--c2);
}

.service-disc-image img {
  height: 650px;
  object-fit: cover;
}

.service-disc-content ul li:before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  left: 0;
  top: 0;
  color: var(--c3);
}

.service-disc-content ul li:last-child {
  margin: 0px;
}

.service-disc-content ul {
  margin-top: 20px;
}

/* 03. Working Process */

.process-item {
  text-align: center;
  color: var(--c3);
  padding: 0px 18px;
  position: relative;
}

.process-count {
  display: inline-block;
  position: relative;
}

.process-count h2 {
  font-size: 80px;
  font-weight: 900;
  background: -webkit-linear-gradient(var(--c3), #082221);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-count .count-icon {
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  background-color: var(--c6);
  border-radius: 50%;
}

.process-content h4 {
  margin: 14px 0px;
  color: var(--c2);
}

.process-item:after {
  position: absolute;
  content: "";
  width: 40%;
  height: 2px;
  border: 1px dashed rgba(216, 216, 217, 0.8);
  top: 20%;
  right: -22%;
}

.working-process .col-lg-3:last-child .process-item:after {
  display: none;
}

.working-process .center-gredient {
  opacity: 0.1;
}

/* 04. Combo Package */

.combo-list-item {
  color: var(--c3);
}

.combo-list-item h5 {
  margin: 20px 0px;
  font-weight: 600;
  color: var(--c3);
}

.combo-list-item ul li {
  position: relative;
  padding-left: 25px;
  color: var(--c2);
}

.combo-list-item ul li:before {
  position: absolute;
  content: "\f00c";
  top: 0;
  font-family: "Font Awesome 5 Pro";
  left: 0;
  color: var(--c2);
}

.combo-pack-img-main {
  position: relative;
}

.combo-batch {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--c1);
  text-align: center;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: #000 1px 31px 58px -1px;
}

.combo-batch p span {
  display: block;
  font-weight: 800;
  font-size: 30px;
  color: var(--c2);
}

.combo-batch p {
  font-weight: 400;
  color: var(--c2);
}

.combo-item-main h2 {
  padding-right: 50px;
}

/* 05. Cont Base */

.cont-base {
  background: var(--c6);
}

.cont-base-item h2 span {
  background: -webkit-linear-gradient(var(--c3), #adc5c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cont-base-item h2 {
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--c3);
}

.cont-base-item p {
  margin-bottom: 20px;
}

.cont-base-item ul li {
  list-style: disc;
  color: rgb(255 255 255 / 81%);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

.cont-base-item ul li:last-child {
  margin-bottom: 0px;
}

.cont-base-item ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.cont-base-item h3 {
  color: var(--c3);
  font-family: var(--fbold);
  margin-bottom: 20px;
  font-size: 22px;
}

/* About Us */

.about-img {
  margin-left: 80px;
  border: 5px solid var(--c4);
  overflow: hidden;
  position: relative;
}

.about-img-main {
  position: relative;
  margin-right: 50px;
}

.about-img-dot {
  position: absolute;
  bottom: -40px;
  right: -36px;
  z-index: -1;
  filter: grayscale(1);
}

.exper-box {
  position: absolute;
  left: 85px;
  width: max-content;
  bottom: 5px;
  padding: 15px 30px;
  background-color: var(--c3);
}

.about-img img {
  transition: all 0.8s;
}

.about-img:hover img {
  transform: scale(1.1);
}

.exper-box h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--c2);
}

.exper-box h3 span.numb {
  font-weight: 700;
  font-size: 50px;
}

.exper-box span.exp {
  font-size: 27px;
}

.about-line {
  position: absolute;
  top: 50%;
  width: 200px;
  height: 350px;
  border: 10px solid #808080b5;
  transform: translateY(-50%);
  z-index: -1;
}

.about-content p.line-para {
  border-left: 4px solid var(--c1);
  padding-left: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-content p {
  margin-top: 20px;
}

.about-content .web-btn {
  margin-top: 40px;
}

section.about-us {
  background: var(--c6);
}

/* Vision & Mission */

.vision-and-mission-tit-cont p {
  margin-bottom: 20px;
}

.vision-and-mission-tabs-btn ul li button.active {
  background: var(--c2) !important;
}

.vision-and-mission-tabs-btn ul li button.active span {
  color: var(--c3);
}

.vision-and-mission-tabs-btn ul li button.active img {
  filter: drop-shadow(2px 4px 6px black);
}

.vision-and-mission-tit-cont p:last-child {
  margin-bottom: 0px;
}

.vision-and-mission-tit-cont {
  margin-bottom: 120px;
}

.vision-and-mission-tab-item h2 {
  margin-bottom: 15px;
}

.vision-and-mission-tabs-btn ul li {
  width: 100%;
}

.vision-and-mission-tabs-btn ul li button {
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 30px 30px;
  position: relative;
  background-color: var(--c3) !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.vision-and-mission-tabs-btn ul li button img {
  width: 35px;
  filter: invert(1);
}

.vision-and-mission-tabs-btn ul li button span {
  color: var(--c2);
  font-size: 20px;
}

.vision-and-mission-tabs-btn ul li button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--c3);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.vision-and-mission-tabs-btn ul li button.active::before {
  visibility: visible;
  opacity: 1;
}

.vision-and-mission-tabs-btn ul {
  gap: 25px;
}

.vision-and-mission-tab-item p {
  margin-top: 20px;
}

.vision-and-mission-tab-item {
  padding: 0px 40px 0px 20px;
  color: var(--c4);
}

.vision-and-mission .container .row:nth-child(2) {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.vision-and-mission .container .row:nth-child(2)::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background-color: var(--c6);
  z-index: -1;
}

.vision-and-mission-tab-img {
  position: relative;
  transform: translateY(-140px) translateX(80px);
}

.vision-and-mission-tab-img::before {
  position: absolute;
  content: "";
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--c3);
  z-index: -1;
}

/* inner-wrapper */

.inner-wrapper {
  height: 80vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  background-position: 0% 110%;
  align-items: center;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
}

.inner-wrap-content h1 {
  font-size: 90px;
  color: var(--c2);
  font-weight: bold;
}

.inner-wrapper:before,
.inner-wrapper:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.inner-wrapper:before {
  width: 50%;
  background: linear-gradient(var(--c3), #adc5c4);
}

.inner-wrapper:after {
  width: 100%;
  background: linear-gradient(179deg, #7366a575, #000000eb);
}

.inner-wrap-content ul {
  display: flex;
  gap: 10px;
}

.inner-wrap-content ul li {
  color: var(--c3);
}

.inner-wrap-content ul li a {
  color: var(--c3);
  transition: all 0.5s;
}

.inner-wrap-content ul li a:hover {
  color: var(--c1);
}

.inner-wrap-content h1 span {
  color: var(--c3);
}

/* Contact Us */

.contact-title {
  margin-bottom: 60px;
  width: 70%;
}

.contact-item input,
.contact-item textarea {
  background: unset;
  outline: 0;
  border: 0;
  width: 100%;
  padding: 15px 0px;
  color: var(--c3);
  border-bottom: 1px solid var(--c2);
  transition: all 0.5s;
}

.contact-item input::placeholder,
.contact-item textarea::placeholder {
  color: var(--c2);
}

.contact-item-main .contact-item {
  margin-bottom: 20px;
}

.contact-item textarea {
  height: 150px;
}

.contact-info-item {
  display: flex;
  width: 50%;
  gap: 20px;
  margin-bottom: 50px;
}

.contact-info-items-main {
  display: flex;
  flex-wrap: wrap;
  padding-left: 50px;
}

.info-item-icon {
  width: 50px;
  height: 50px;
  background-color: var(--c2);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  color: var(--c5);
  font-size: 20px;
}

.info-item-content a,
.info-item-content p {
  color: var(--c2);
  display: block;
  font-weight: 500;
  font-size: 16px;
}

.info-item-content span {
  color: var(--c3);
  font-weight: 600;
  display: block;
  margin-bottom: 9px;
}

.info-item-content {
  width: 70%;
}

.info-item-content a {
  transition: all 0.5s;
  margin-bottom: 5px;
}

.info-item-content a:hover {
  color: var(--c3);
}

.contact-us .web-title {
  margin-bottom: 60px;
}

.contact-us {
  background: var(--c6);
}

.contact-img img {
  height: 550px;
  object-fit: cover;
}

.contact-img-border {
  border: 1px solid var(--c3);
}

.contact-img {

  padding: 40px;
  margin-left: 20px;
  border-radius: 6px;
}

/* Footer */

.f-bg {
  background-size: cover;
  background-position: center;
  padding: 80px 0px;
}

.f-sub-social ul {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.f-sub-social ul li a {
  color: var(--c2);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--c3);
  text-align: center;
  font-size: 20px;
  transition: all 0.5s;
}

.f-sub-social ul li a:hover {
  background: var(--c2);
  color: var(--c1);
}

.f-quick-links ul li {
  margin-bottom: 10px;
}

.f-quick-links ul li a {
  color: var(--c4);
  transition: all 0.5s;
  font-size: 15px;
  position: relative;
}

.f-quick-links ul li a:hover,
.f-quick-links ul li.active a {
  color: var(--c3);
}

.f-quick-links ul li a:before {
  position: absolute;
  content: "";
  background: var(--c2);
  height: 3px;
  top: 9px;
  left: 0px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.f-quick-links ul li a:hover:before,
.f-quick-links ul li.active a:before {
  width: 8px;
  left: -14px;
  visibility: visible;
  opacity: 1;
  border-radius: 30px;
}

.f-info ul li {
  margin-bottom: 10px;
  color: var(--c4);
  font-size: 15px;
}

.f-info ul li a {
  color: var(--c2);
  transition: all 0.5s;
}

.f-info ul li i {
  color: var(--c3);
  margin-right: 10px;
}

.f-info ul li a:hover {
  color: var(--c3);
}

.f-logo {
  width: 30%;
}

.payment-img img {
  width: 100%;
}

.f-part-img {
  display: flex;
  gap: 10px;
  justify-content: end;
}

.f-part-img-item a {
  display: block !important;
}

.f-part-img-item img {
  width: 60px;
  height: 50px;
  object-fit: contain;
}

.f-part-img-item {
  background-color: #fff;
  border-radius: 5px;
}

.payment-img {
  margin-top: 30px;
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
}

.f-main-bd {
  border-top: 1px solid #ffffff1a;
  padding-top: 60px;
}

.f-sub {
  padding-bottom: 40px;
}

.f-copyright {
  background: var(--c5);
  padding: 10px 0px;
}

.popup-link a {
  background: #333;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
  margin: 20px;
  text-decoration: none;
}

.popup-container {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 17, 17, 0.61);
  display: flex;
  align-items: center;
}

.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
}

.popup-content p {
  font-size: 17px;
  padding: 10px;
  line-height: 20px;
}

.popup-content a.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.popup-content a.close:hover {
  color: #333;
}

.popup-content span:hover,
.popup-content span:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.popup-container:target {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.popup-container h3 {
  margin: 10px;
}

.popup-style-7 {
  transform: skewY(180deg);
  transition: all 0.7s ease-in-out;
}

.popup-style-7:target {
  transform: skewY(0deg);
}