:root {
  --primary-color: #8dc63f;
  --secondary-color: #151515;
  --accent-color: #f5fbec;
  --text-color: #5f6368;
  --white-color: #ffffff;
  --divider-color: #e8eee1;
  --dark-divider-color: rgba(255, 255, 255, 0.16);
  --default-font: "Fustat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.65;
  background: var(--white-color);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--primary-color);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.15;
}

.container {
  position: relative;
  z-index: 2;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
}

.loading-container {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  position: absolute;
  inset: 0;
  border: 3px solid var(--divider-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#loading-icon img {
  width: 64px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.header-sticky {
  width: 100%;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px 0;
  background: rgba(21, 21, 21, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar {
  padding: 0;
}

.navbar > .container {
  gap: 24px;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  display: block;
  width: 188px;
  height: auto;
}

.footer-logo img {
  max-height: 58px;
  width: auto;
}

.main-menu {
  justify-content: flex-end;
}

.nav-menu-wrapper {
  margin-left: auto;
}

.navbar-nav {
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 15px !important;
  text-transform: capitalize;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.header-social-box {
  align-items: center;
  gap: 18px;
  margin-left: 22px;
}

.header-social-links ul,
.footer-social-links ul,
.team-social-list ul,
.team-info-social-list ul,
.post-social-sharing ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.header-social-links a,
.footer-social-links a,
.team-social-list a,
.team-info-social-list a,
.post-social-sharing a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
}

.header-social-links a:hover,
.footer-social-links a:hover,
.team-social-list a:hover,
.team-info-social-list a:hover,
.post-social-sharing a:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-popup {
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border: 0;
  border-radius: 50%;
}

.responsive-menu,
.slicknav_menu {
  display: none;
}

.offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  max-width: 100%;
  visibility: hidden;
  background: var(--secondary-color);
  color: var(--white-color);
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

.offcanvas.offcanvas-end {
  right: 0;
  left: auto;
  transform: translateX(100%);
}

.offcanvas.show,
.offcanvas.showing {
  visibility: visible;
  transform: none;
}

.navbar-expand-lg .offcanvas.offcanvas-end,
.navbar-expand .offcanvas.offcanvas-end {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  z-index: 1045 !important;
  width: min(420px, 100vw) !important;
  height: 100vh !important;
  visibility: hidden !important;
  background: var(--secondary-color) !important;
  border: 0 !important;
  transform: translateX(100%) !important;
}

.navbar-expand-lg .offcanvas.offcanvas-end.show,
.navbar-expand-lg .offcanvas.offcanvas-end.showing,
.navbar-expand .offcanvas.offcanvas-end.show,
.navbar-expand .offcanvas.offcanvas-end.showing {
  visibility: visible !important;
  transform: none !important;
}

.offcanvas .btn-close {
  position: absolute;
  top: 22px;
  right: 22px;
  filter: invert(1);
  opacity: 1;
}

.offcanvas-body {
  padding: 80px 34px 34px;
}

.header-contact-box,
.footer-contact-item,
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.icon-box {
  flex: 0 0 auto;
}

.icon-box img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.header-contact-box-content h3,
.footer-contact-content h3,
.contact-item-content h3 {
  margin-bottom: 6px;
  color: inherit;
  font-size: 18px;
  text-transform: capitalize;
}

.header-contact-box-content p,
.footer-contact-content p,
.contact-item-content p {
  margin: 0;
}

.sidebar-social-links {
  margin-top: 36px;
}

.sidebar-social-links h3 {
  color: var(--white-color);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 170px 0 110px;
  overflow: hidden;
  background: var(--secondary-color);
}

.hero::before,
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35));
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video video,
.hero-bg-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  color: var(--white-color);
}

.typing-title {
  display: none;
}

.section-title h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
}

.section-title h1,
.section-title h2,
.page-header-box h1 {
  font-size: clamp(38px, 6vw, 76px);
  color: var(--secondary-color);
}

.hero .section-title h1,
.hero .section-title h2 {
  color: var(--white-color);
}

.section-title span,
.page-header-box span,
.typed-title {
  color: var(--primary-color);
}

.hero-content-body {
  display: grid;
  grid-template-columns: auto minmax(0, 620px);
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.hero-video-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-content-video {
  position: relative;
  width: 132px;
  height: 132px;
}

.video-play-button a {
  position: absolute;
  inset: 36px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 50%;
}

.learn-more-circle {
  animation: spin 12s linear infinite;
}

.btn-default,
.btn-highlighted,
.readmore-btn,
.contact-btn a,
.pricing-btn a,
.post-item-btn a,
.project-btn a,
.cta-contact-btn a,
.work-process-btn a,
.contact-now-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100px;
}

.btn-default:hover,
.btn-highlighted:hover,
.readmore-btn:hover,
.contact-btn a:hover,
.pricing-btn a:hover,
.post-item-btn a:hover,
.project-btn a:hover,
.cta-contact-btn a:hover,
.work-process-btn a:hover,
.contact-now-btn a:hover {
  color: var(--white-color);
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-highlighted {
  color: var(--white-color);
  background: transparent;
  border-color: var(--white-color);
}

.hero-btn,
.section-btn {
  margin-top: 32px;
}

.our-scrolling-ticker,
.subpages-scrolling-ticker {
  overflow: hidden;
  background: var(--primary-color);
}

.scrolling-ticker-box {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.scrolling-content {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  animation: ticker 28s linear infinite;
}

.scrolling-content span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
  text-transform: capitalize;
}

.scrolling-content img {
  width: 18px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.about-agency,
.our-services,
.digital-success,
.why-choose-us,
.our-features,
.how-it-work,
.our-faqs,
.our-testimonial,
.our-blog,
.agency-supports,
.who-we-are,
.agency-benefits,
.mission-vision-content,
.our-approach,
.executive-partners,
.page-services,
.page-service-single,
.page-project,
.page-gallery,
.page-video-gallery,
.page-pricing,
.page-team,
.page-team-single,
.page-faqs,
.page-contact-us,
.page-single-post {
  padding: 100px 0;
}

.section-row {
  margin-bottom: 54px;
}

.section-content-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.section-title-content {
  max-width: 440px;
}

.about-agency-item,
.service-item,
.success-list-item,
.why-choose-item,
.digital-features-item,
.work-process-item,
.faq-accordion .accordion-item,
.testimonial-item,
.testimonial-box-item,
.post-item,
.pricing-box,
.team-item,
.contact-info-box,
.contact-us-form,
.service-sidebar,
.sidebar-cta-box,
.team-single-sidebar,
.team-contact-box {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.06);
}

.about-agency-list {
  display: grid;
  gap: 24px;
}

.about-agency-item {
  display: flex;
  gap: 22px;
  padding: 28px;
}

.agency-item-content h3,
.service-item-body h3,
.why-choose-item h3,
.digital-features-content h3,
.work-process-title h3,
.testimonial-content h3,
.post-item-content h3,
.pricing-title h3,
.team-content h3 {
  margin-bottom: 12px;
  font-size: 24px;
  text-transform: capitalize;
}

.service-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
  background: var(--accent-color);
}

.service-item-header,
.work-process-header,
.process-step-header,
.testimonial-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.service-arrow a,
.testimonial-button-prev,
.testimonial-button-next {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  border-radius: 50%;
}

.service-footer {
  margin-top: 12px;
  text-align: center;
}

.service-footer a,
.footer-links a,
.pricing-list li::marker {
  color: var(--primary-color);
  font-weight: 700;
}

.digital-success,
.our-features,
.our-faqs,
.agency-benefits,
.page-services,
.page-project,
.page-pricing,
.page-faqs {
  background: #f8faf5;
}

.digital-success-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 54px;
  color: var(--white-color);
  background: var(--secondary-color);
  border-radius: 8px;
}

.digital-success-box h2,
.digital-success-box h3,
.digital-success-box p {
  color: var(--white-color);
}

.success-counter-box,
.experts-counters-list,
.testimonial-benefits-box,
.our-partners-list,
.pricing-list {
  display: grid;
  gap: 20px;
}

.success-counter-box {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

.success-counter-item h2,
.experts-counter-item h2 {
  color: var(--primary-color);
  font-size: 48px;
}

.digital-success-list {
  display: grid;
  gap: 22px;
}

.success-list-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--dark-divider-color);
  box-shadow: none;
}

.success-list-item span {
  color: var(--primary-color);
  font-weight: 800;
}

.why-choose-image,
.digital-features-image,
.mission-vision-image,
.service-feature-image,
.service-entry-image,
.team-single-image,
.post-featured-image,
.experts-rating-video-image,
.video-gallery-image,
.project-image,
.team-image,
.post-image,
.photo-gallery,
.image-anime {
  overflow: hidden;
  border-radius: 8px;
}

.why-choose-image img,
.digital-features-image img,
.mission-vision-image img,
.service-feature-image img,
.service-entry-image img,
.team-single-image img,
.post-featured-image img,
.experts-rating-video-image img,
.video-gallery-image img,
.project-image img,
.team-image img,
.post-image img,
.photo-gallery img,
.image-anime img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-item:hover img,
.team-item:hover img,
.post-item:hover img,
.photo-gallery:hover img {
  transform: scale(1.05);
}

.why-choose-content,
.digital-features-content,
.work-process-content,
.process-step-content,
.team-content,
.post-item-content,
.project-content,
.testimonial-content,
.pricing-box-content {
  padding: 26px;
}

.why-choose-item,
.digital-features-item,
.work-process-item,
.process-step-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.work-process-no,
.process-step-no,
.benefits-steps-no {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-weight: 800;
  background: var(--primary-color);
  border-radius: 50%;
}

.page-header {
  position: relative;
  padding: 190px 0 110px;
  text-align: center;
  background: url("../images/page-header-bg.jpg") center / cover no-repeat;
}

.page-header-box {
  position: relative;
  z-index: 2;
}

.page-header-box h1 {
  color: var(--white-color);
  margin-bottom: 20px;
}

.breadcrumb {
  justify-content: center;
  margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.82);
  text-transform: capitalize;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.agency-supports-logo,
.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  background: var(--white-color);
}

/* Homepage: support, portfolio, testimonials and benefits */
.agency-supports {
  padding: 38px;
  background: var(--secondary-color);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.agency-supports-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.agency-supports-content {
  max-width: 580px;
}

.agency-supports-content h3,
.agency-supports-content p {
  color: var(--white-color);
}

.agency-supports-content h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.agency-free-consultation {
  flex: 0 0 116px;
}

.agency-free-consultation img {
  display: block;
  width: 100%;
  animation: spin 12s linear infinite;
}

.agency-supports-slider .swiper-slide {
  height: auto;
}

.agency-supports-logo {
  min-height: 92px;
  height: 100%;
}

.agency-supports-logo img {
  width: auto;
  max-width: 100%;
  max-height: 42px;
}

.our-portfolio {
  padding: 100px 0;
}

.our-Project-nav {
  margin: -10px 0 34px;
}

.our-Project-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.our-Project-nav a {
  display: inline-flex;
  padding: 10px 18px;
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid var(--divider-color);
  border-radius: 100px;
}

.our-Project-nav a:hover,
.our-Project-nav .active-btn {
  color: var(--secondary-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.project-item-box {
  margin-bottom: 30px;
}

.project-item {
  height: 100%;
  overflow: hidden;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.06);
}

.project-image {
  position: relative;
}

.project-image .image-anime {
  border-radius: 0;
}

.project-image img {
  aspect-ratio: 1.25 / 1;
}

.project-tag,
.project-btn {
  position: absolute;
  z-index: 1;
}

.project-tag {
  left: 20px;
  bottom: 20px;
}

.project-tag a {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  background: var(--white-color);
  border-radius: 100px;
}

.project-btn {
  top: 20px;
  right: 20px;
}

.project-btn a {
  width: 46px;
  min-height: 46px;
  padding: 0;
}

.project-btn img {
  width: 16px;
  height: 16px;
}

.project-content h3 {
  margin: 0;
  font-size: 22px;
  text-transform: capitalize;
}

.our-testimonial {
  background: var(--secondary-color);
}

.our-testimonial .section-title h2,
.our-testimonial .section-title h3,
.our-testimonial .section-title-content p {
  color: var(--white-color);
}

.testimonial-review-box {
  height: 100%;
  padding: 32px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 8px;
}

.testimonial-review-header {
  align-items: flex-start;
  flex-wrap: wrap;
}

.testimonial-review-header h2,
.testimonial-review-header p,
.testimonial-review-content h3 {
  color: var(--secondary-color);
}

.testimonial-review-header h2 {
  font-size: 54px;
}

.testimonial-review-header .testimonial-rating {
  margin: 10px 0 0 auto;
  color: var(--secondary-color);
}

.testimonial-review-content h3 {
  font-size: 25px;
}

.testimonial-review-image {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.satisfy-client-image {
  width: 54px;
  height: 54px;
  margin-left: -12px;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
}

.satisfy-client-image:first-child {
  margin-left: 0;
}

.satisfy-client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-item {
  height: 100%;
  padding: 34px;
}

.testimonial-company-logo {
  height: 42px;
  margin-bottom: 22px;
}

.testimonial-company-logo img {
  width: auto;
  max-width: 100px;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.testimonial-content {
  padding: 0;
  margin-bottom: 28px;
}

.testimonial-content p {
  font-size: 17px;
}

.testimonial-btn {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-button-prev,
.testimonial-button-next {
  border: 1px solid var(--divider-color);
  cursor: pointer;
}

.testimonial-button-prev::before,
.testimonial-button-next::before {
  color: var(--secondary-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.testimonial-button-prev::before {
  content: "\f060";
}

.testimonial-button-next::before {
  content: "\f061";
}

.testimonial-benefits-box {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--dark-divider-color);
}

.testimonial-benefits-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-divider-color);
  border-radius: 8px;
}

.testimonial-benefits-item .icon-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.testimonial-benefits-content h3,
.testimonial-benefits-content li {
  color: var(--white-color);
}

.testimonial-benefits-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.testimonial-benefits-content ul {
  margin: 0;
  padding-left: 18px;
}

.testimonial-benefits-content li {
  font-size: 14px;
}

.benefits-steps-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 28px;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
}

.benefits-steps-no {
  margin-bottom: 34px;
}

.benefits-steps-no h3 {
  margin: 0;
  font-size: 17px;
}

.benefits-steps-item .icon-box {
  margin-bottom: 26px;
}

.benefits-steps-item .icon-box img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.benefits-steps-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .testimonial-review-box,
  .testimonial-slider {
    margin-bottom: 30px;
  }

  .testimonial-benefits-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .agency-supports {
    padding: 26px 22px;
  }

  .agency-supports-header {
    align-items: flex-start;
  }

  .agency-free-consultation {
    flex-basis: 76px;
  }

  .our-portfolio {
    padding: 70px 0;
  }

  .our-Project-nav {
    margin-bottom: 26px;
  }

  .our-Project-nav ul {
    gap: 8px;
  }

  .our-Project-nav a {
    padding: 9px 13px;
    font-size: 14px;
  }

  .testimonial-review-box,
  .testimonial-item,
  .benefits-steps-item {
    padding: 24px 22px;
  }

  .testimonial-benefits-box {
    grid-template-columns: 1fr;
  }
}

.faq-accordion .accordion-item {
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 800;
  background: var(--white-color);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background: var(--accent-color);
}

.faq-accordion .accordion-body {
  padding: 0 24px 24px;
}

.testimonial-slider {
  position: relative;
}

.testimonial-item,
.testimonial-box-item {
  padding: 34px;
}

.testimonial-rating,
.client-testimonial-rating {
  color: #ffc107;
  margin-bottom: 18px;
}

.client-author-content,
.author-content,
.team-info-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-author-image img,
.author-image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

.client-testimonial-info,
.testimonial-body,
.post-item-body {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-box {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 34px;
}

.pricing-price {
  margin: 22px 0;
}

.pricing-price h2 {
  color: var(--primary-color);
  font-size: 50px;
}

.pricing-list ul,
.service-catagery-list ul,
.faq-catagery-list ul,
.service-entry-list ul,
.team-contect-list ul,
.footer-links ul {
  list-style: none;
}

.pricing-list li,
.service-entry-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.pricing-list li::before,
.service-entry-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.service-catagery-list a,
.faq-catagery-list a {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: 700;
  background: var(--accent-color);
  border-radius: 8px;
}

.service-catagery-list a:hover,
.faq-catagery-list a:hover,
.service-catagery-list .active a,
.faq-catagery-list .active a {
  color: var(--secondary-color);
  background: var(--primary-color);
}

.project-item,
.team-item,
.post-item,
.photo-gallery,
.video-image {
  margin-bottom: 30px;
}

.project-content {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.project-tag {
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-items {
  display: block;
}

.video-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.video-image .video-play-button a,
.experts-rating-video .video-play-button a {
  inset: auto;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
}

.contact-info-box,
.contact-us-form {
  padding: 34px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-control {
  min-height: 54px;
  padding: 13px 18px;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  box-shadow: none;
}

textarea.form-control {
  min-height: 150px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(141, 198, 63, 0.15);
}

.google-map-iframe iframe {
  width: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  border-radius: 8px;
}

.main-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--secondary-color);
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-main h3,
.footer-work-together h2,
.footer-contact-content h3 {
  color: var(--white-color);
}

.footer-work-together {
  padding-bottom: 46px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--dark-divider-color);
}

.footer-work-together h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact-box {
  display: grid;
  gap: 18px;
}

.footer-contact-item {
  margin: 0;
}

.footer-newsletter-form .form-control {
  border-color: var(--dark-divider-color);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  padding: 24px 0;
  border-top: 1px solid var(--dark-divider-color);
}

.footer-copyright-text p {
  margin: 0;
}

.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}

.text-anime-style-2,
.text-anime-style-3 {
  visibility: visible;
}

@media (max-width: 991px) {
  .main-header {
    position: absolute;
  }

  .navbar > .container {
    justify-content: space-between;
  }

  .main-menu,
  .header-social-box {
    display: none !important;
  }

  .responsive-menu,
  .slicknav_menu {
    display: block;
  }

  .slicknav_menu {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    z-index: 1001;
    padding: 0;
    background: transparent;
  }

  .slicknav_btn {
    position: absolute;
    top: -58px;
    right: 0;
    width: 44px;
    height: 44px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 8px;
  }

  .slicknav_nav {
    margin-top: 10px;
    padding: 12px;
    background: var(--secondary-color);
    border-radius: 8px;
  }

  .slicknav_nav a {
    color: var(--white-color);
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .slicknav_nav a:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
  }

  .hero {
    min-height: auto;
    padding: 150px 0 80px;
  }

  .hero-content-body,
  .digital-success-box {
    grid-template-columns: 1fr;
  }

  .section-content-btn {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .about-agency,
  .our-services,
  .digital-success,
  .why-choose-us,
  .our-features,
  .how-it-work,
  .our-faqs,
  .our-testimonial,
  .our-blog,
  .agency-supports,
  .who-we-are,
  .agency-benefits,
  .mission-vision-content,
  .our-approach,
  .executive-partners,
  .page-services,
  .page-service-single,
  .page-project,
  .page-gallery,
  .page-video-gallery,
  .page-pricing,
  .page-team,
  .page-team-single,
  .page-faqs,
  .page-contact-us,
  .page-single-post {
    padding: 70px 0;
  }

  .page-header {
    padding: 150px 0 80px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .navbar-brand img {
    width: 104px;
  }

  .footer-logo img {
    max-height: 46px;
  }

  .section-title h1,
  .section-title h2,
  .page-header-box h1 {
    font-size: 36px;
  }

  .hero-content-body {
    gap: 22px;
    margin-top: 24px;
  }

  .hero-video-content p {
    font-size: 16px;
  }

  .about-agency-item,
  .client-testimonial-info,
  .testimonial-body,
  .post-item-body {
    align-items: flex-start;
    flex-direction: column;
  }

  .digital-success-box {
    padding: 30px 22px;
  }

  .success-counter-box {
    grid-template-columns: 1fr;
  }

  .scrolling-content span {
    padding: 14px 18px;
    font-size: 18px;
  }

  .service-item,
  .why-choose-content,
  .digital-features-content,
  .work-process-content,
  .process-step-content,
  .team-content,
  .post-item-content,
  .project-content,
  .testimonial-content,
  .pricing-box-content,
  .testimonial-item,
  .testimonial-box-item,
  .pricing-box,
  .contact-info-box,
  .contact-us-form {
    padding: 22px;
  }

  .agency-supports {
    padding: 26px 22px;
  }

  .agency-supports-header {
    align-items: flex-start;
  }

  .agency-free-consultation {
    flex-basis: 76px;
  }

  .our-portfolio {
    padding: 70px 0;
  }

  .testimonial-review-box,
  .benefits-steps-item {
    padding: 24px 22px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .agency-supports {
    padding: 34px;
  }
}

/* Shared layout layer for page sections */
.digital-features-box,
.service-process-steps,
.testimonial-box-list,
.executive-partners-box {
  display: grid;
  gap: 30px;
}

.digital-features-box {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.digital-features-item,
.mission-vision-item,
.process-step-item,
.team-info-box,
.faq-cta-box,
.work-together-box {
  height: 100%;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.06);
}

.digital-features-item {
  margin: 0;
}

.digital-features-box .agency-supports {
  grid-column: 1 / -1;
}

.about-agency-content,
.who-we-are-content,
.service-single-content,
.team-single-content,
.contact-information {
  height: 100%;
}

.mission-vision-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.mission-vision-item .mission-vision-image {
  border-radius: 0;
}

.mission-vision-item .mission-vision-content {
  padding: 28px;
}

.mission-vision-content h3,
.service-entry h3,
.service-entry h4,
.service-entry h5,
.team-personal-info h2,
.team-career-guideline h2 {
  margin-bottom: 16px;
}

.service-entry > * + * {
  margin-top: 22px;
}

.service-entry-list-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.service-entry-list ul,
.team-career-list ul {
  padding-left: 22px;
}

.service-entry-list li,
.team-career-list li {
  margin-bottom: 10px;
}

.service-process-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step-item {
  overflow: hidden;
}

.process-step-content {
  min-height: 210px;
}

.process-step-header {
  margin-bottom: 22px;
}

.process-step-header .icon-box img {
  width: 48px;
  height: 48px;
}

.process-step-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.process-step-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.executive-partners-box {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.executive-partners-box .team-item {
  margin-bottom: 0;
}

.who-we-are-client,
.company-client-images,
.client-testimonial-content,
.work-together-box,
.team-info-header,
.team-contact-content {
  display: flex;
  align-items: center;
}

.who-we-are-client,
.client-testimonial-content,
.team-info-header {
  gap: 22px;
}

.who-we-are-client {
  margin-top: 28px;
}

.company-client-images {
  padding-left: 12px;
}

.client-image {
  width: 48px;
  height: 48px;
  margin-left: -12px;
  overflow: hidden;
  border: 3px solid var(--white-color);
  border-radius: 50%;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comapny-client-rating ul,
.team-career-list ul {
  margin: 0;
}

.comapny-client-rating ul {
  display: flex;
  gap: 3px;
  padding: 0;
  color: #ffc107;
  list-style: none;
}

.faq-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--secondary-color);
}

.faq-cta-box h2,
.faq-cta-box h3,
.faq-cta-box p {
  color: var(--white-color);
}

.faq-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-images img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 145px;
  object-fit: cover;
  border-radius: 8px;
}

.faq-sidebar,
.service-sidebar {
  display: grid;
  gap: 28px;
}

.work-together-box {
  justify-content: space-between;
  gap: 28px;
  padding: 38px 46px;
  background: var(--primary-color);
  border: 0;
  box-shadow: none;
}

.work-together-content h3,
.work-together-content h2 {
  color: var(--secondary-color);
}

.work-together-content h3 {
  margin-bottom: 8px;
}

.work-together-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  color: var(--white-color);
  font-weight: 700;
  background: var(--secondary-color);
  border-radius: 100px;
}

.footer-work-together {
  position: relative;
  z-index: 2;
  margin-bottom: -58px;
}

.main-footer {
  padding-top: 58px;
}

.about-footer {
  max-width: 330px;
}

.about-footer p {
  margin-top: 22px;
}

.team-info-box {
  padding: 32px;
}

.team-info-header {
  justify-content: space-between;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--divider-color);
}

.team-info-title h2 {
  font-size: 34px;
}

.team-info-title p {
  margin: 0;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: capitalize;
}

.team-personal-info,
.team-career-guideline {
  margin-top: 44px;
}

.team-career-list {
  margin-top: 20px;
  padding: 24px;
  background: #f8faf5;
  border-radius: 8px;
}

.team-single-contact-form {
  margin-top: 30px;
}

.google-map {
  overflow: hidden;
  border-radius: 8px;
}

.page-faq-accordion .accordion-item {
  margin-bottom: 18px;
}

@media (max-width: 1199px) {
  .digital-features-box,
  .service-process-steps,
  .executive-partners-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-box-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .service-entry-list-image {
    grid-template-columns: 1fr;
  }

  .process-step-content {
    min-height: 0;
  }

  .footer-work-together {
    margin-bottom: -42px;
  }

  .main-footer {
    padding-top: 42px;
  }
}

@media (max-width: 767px) {
  .digital-features-box,
  .service-process-steps,
  .executive-partners-box,
  .testimonial-box-list,
  .faq-images {
    grid-template-columns: 1fr;
  }

  .mission-vision-item .mission-vision-content,
  .faq-cta-box,
  .team-info-box,
  .team-career-list {
    padding: 24px 22px;
  }

  .faq-cta-box,
  .work-together-box,
  .team-info-header,
  .who-we-are-client,
  .client-testimonial-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-together-box {
    padding: 30px 24px;
  }

  .team-info-title h2 {
    font-size: 28px;
  }

  .footer-work-together {
    margin-bottom: -30px;
  }

  .main-footer {
    padding-top: 30px;
  }
}

.our-team,
.our-faq-section,
.page-testimonial {
  padding: 100px 0;
}

/* About page: executive partners */
.executive-partners {
  background: #f8faf5;
}

.executive-partners-box {
  display: block;
  padding: 46px;
  background: var(--secondary-color);
  border-radius: 8px;
}

.executive-partners-box .section-title h2,
.executive-partners-box .section-title h3 {
  color: var(--white-color);
}

.our-partners-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.our-partners-list .company-logo {
  min-height: 104px;
}

.our-partners-list .company-logo img {
  width: auto;
  max-width: 100%;
  max-height: 42px;
}

.work-process-body,
.team-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.work-process-body {
  padding: 26px;
}

.work-process-icon-box img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.team-body {
  padding: 0 26px 26px;
}

.team-social-list ul {
  gap: 8px;
}

.team-social-list a {
  width: 34px;
  height: 34px;
}

.sidebar-cta-box {
  padding: 30px;
  background: var(--secondary-color);
}

.sidebar-cta-box h3,
.sidebar-cta-box p {
  color: var(--white-color);
}

.sidebar-cta-box .icon-box {
  margin-bottom: 22px;
}

.cta-contact-content h3 {
  margin-bottom: 10px;
}

.pricing-box-list {
  margin-top: 24px;
}

.pricing-box-list ul {
  padding-left: 20px;
}

@media (max-width: 767px) {
  .our-team,
  .our-faq-section,
  .page-testimonial {
    padding: 70px 0;
  }

  .executive-partners-box {
    padding: 30px 22px;
  }

  .our-partners-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .work-process-body,
  .team-body {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }
}
