/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Renovex - Construction HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. What We Do css
08. Our Story css
09. Our Features css
10. Our Pricing Plans css
11. Our Projects css
12. CTA Box css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. 404 Error Page css
33. Responsive css
34. Home - Version 2 css
35. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #0d0d0d;
  --secondary-color: #f5f5f5;
  --bg-color: #ffffff;
  --text-color: #666666;
  --accent-color: #e9720d;
  --white-color: #ffffff;
  --divider-color: #0d0d0d1a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "DM Sans", sans-serif;
  --accent-font: "Space Grotesk", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--bg-color);
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--primary-color);
}

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

::selection {
  color: var(--primary-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--accent-font);
  font-weight: 600;
  line-height: 1.1em;
  color: var(--primary-color);
  margin: 0;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

.container {
  max-width: 1500px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  font-family: var(--accent-font);
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--primary-color);
  background: var(--accent-color);
  border-radius: 5px;
  padding: 17px 57px 17px 20px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default:hover {
  color: var(--white-color);
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 42px;
  height: 42px;
  background-color: var(--primary-color);
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  border-radius: 5px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.btn-default:hover:before {
  background-color: var(--accent-color);
  background-image: url("../images/arrow-primary.svg");
}

.btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
  background-color: var(--primary-color);
  background-image: url("../images/arrow-white.svg");
}

.btn-default.btn-highlighted::after {
  background-color: var(--white-color);
}

.readmore-btn {
  font-family: var(--accent-font);
  position: relative;
  display: inline-block;
  font-weight: 600;
  line-height: normal;
  color: var(--primary-color);
  text-transform: capitalize;
  padding-right: 34px;
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 0px;
  height: 24px;
  width: 24px;
  background-color: var(--accent-color);
  border-radius: 100px;
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
  transform: translateY(-50%) rotate(0deg);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dark-section {
  background-color: var(--primary-color);
  background-image: url("../images/dark-section-bg-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

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

.section-row .section-title {
  margin-bottom: 0;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  text-align: center;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

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

.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 16px;
  margin-bottom: 10px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.section-title h1 {
  font-size: 52px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 48px;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

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

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

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

header.main-header .header-sticky {
  position: fixed;
  top: 0;
  width: 100%;
 background-color: #fff;
  backdrop-filter: blur(30px) saturate(100%);
  -webkit-backdrop-filter: blur(30px) saturate(100%);
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  background: var(--primary-color);
}

.navbar {
  align-items: center;
  padding: 5px 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 90px;
  height: 90px;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 10px;
  position: relative;
  /* color: black !important; */
}

.main-menu ul li a {
  font-family: var(--accent-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  color: black;
  padding: 12px 10px !important;
  background: transparent;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 335px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  z-index: 999;
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  padding: 6px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--primary-color);
  display: block;
  font-size: 15px;
  line-height: 1.25;
  padding: 8px 22px !important;
  transition: all 0.4s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--white-color);
  background-color: transparent;
  padding: 8px 22px 8px 25px !important;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--primary-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 0;
}

.slicknav_menu ul ul {
  margin: 0;
  padding: 4px 0 6px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 9px 18px;
  color: var(--primary-color);
  line-height: 1.25;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--white-color);
}

.slicknav_menu ul ul li a {
  padding: 8px 18px 8px 26px;
  font-size: 15px;
  line-height: 1.25;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--white-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  background-image: url("../images/hero-bg-image.jpg");
  padding: 265px 0 300px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-content-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px 50px;
}

.video-play-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.video-play-button a {
  position: relative;
  height: 40px;
  width: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
  transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
  background: var(--accent-color);
}

.video-play-button a:before,
.video-play-button a:after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 100%;
  height: 100%;
  border: 32px solid var(--white-color);
  opacity: 50%;
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.video-play-button a i {
  font-size: 14px;
  color: var(--white-color);
  margin-left: 2px;
  transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i {
  color: var(--primary-color);
}

.video-play-button h3 {
  font-size: 18px;
  color: var(--white-color);
}

.hero .year-experience-circle {
  text-align: center;
}

.year-experience-circle img {
  width: 100%;
  max-width: 130px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-info-box {
  position: relative;
  margin-top: -50px;
  z-index: 2;
}

.hero-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-info-item {
  position: relative;
  width: calc(33.33% - 20px);
  border-radius: 10px;
  overflow: hidden;
}

.hero-info-item.box-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--secondary-color);
  padding: 10px;
}

.hero-info-content-box {
  width: calc(48% - 5px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.hero-info-item-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.hero-info-item-content ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 5px;
  padding: 5px 14px;
}

.hero-info-item-content h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.hero-info-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 25px;
}

.hero-info-image {
  width: calc(52% - 5px);
}

.hero-info-image figure,
.hero-info-item.box-2 figure {
  display: block;
  height: 100%;
  border-radius: 10px;
}

.hero-info-image img,
.hero-info-item.box-2 img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
  border-radius: 10px;
}

.hero-info-item.box-3 {
  background: var(--primary-color);
  padding: 40px;
}

.hero-info-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.hero-info-header .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-info-header .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.hero-info-item:hover .hero-info-header .icon-box::before {
  transform: rotate(0) scale(1);
}

.hero-info-header .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}

.satisfy-client-images {
  display: flex;
  align-items: center;
}

.satisfy-client-image {
  position: relative;
  display: inline-block;
  margin-left: -14px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

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

.satisfy-client-image figure {
  display: block;
}

.satisfy-client-image figure img {
  width: 100%;
  max-width: 48px;
  border-radius: 50%;
}

.satisfy-client-image.add-more {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i {
  font-size: 20px;
  color: var(--primary-color);
  line-height: normal;
  transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
}

.hero-info-counter-box h3 {
  font-size: 20px;
  color: var(--white-color);
  line-height: 1.4em;
  margin-bottom: 10px;
}

.hero-info-counter-box h2 {
  font-size: 52px;
  color: var(--white-color);
}

.hero-info-bg-icon {
  position: absolute;
  bottom: -15px;
  right: -15px;
}

.hero-info-bg-icon img {
  width: 100%;
  max-width: 100px;
}

/************************************/
/*** 	   05. About Us css 	  ***/
/************************************/

.about-us {
  padding: 100px 0;
}

.about-us-image-box {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

.about-us-image-box-1 {
  width: 74%;
}

.about-us-image {
  height: 100%;
  border-radius: 10px;
}

.about-us-image figure {
  height: 100%;
  display: block;
  border-radius: 10px;
}

.about-us-image img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 1.3;
  object-fit: cover;
  border-radius: 10px;
}

.about-us-image-box-2 {
  position: relative;
  width: 26%;
  z-index: 1;
}

.about-us-image-box-2 .about-us-image,
.about-us-image-box-2 .about-us-image figure,
.about-us-image-box-2 .about-us-image img {
  height: auto;
}

.about-us-image-box-2 .about-us-image {
  margin-top: 80px;
  margin-left: -150px;
}

.about-us-image-box-2 .about-us-image figure {
  border: 4px solid var(--white-color);
}

.about-us-image-box-2 .year-experience-circle {
  position: relative;
  display: inline-block;
  transform: translate(-50%, -50%);
  border: 4px solid var(--white-color);
  border-radius: 50%;
  z-index: 1;
}

.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: var(--secondary-color);
  border-left: 10px solid var(--accent-color);
  border-radius: 10px;
  padding: 25px 40px 25px 30px;
}

.about-body-item {
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 15px);
  gap: 20px;
}

.about-body-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-body-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-body-item:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.about-body-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.about-body-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.about-body-item-content {
  width: calc(100% - 80px);
}

.about-body-item-content h3 {
  font-size: 20px;
}

.about-body-item-content p {
  margin: 10px 0 0;
}

.about-us-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.about-us-footer-content {
  width: calc(53% - 15px);
}

.about-footer-content-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-footer-content-list ul li {
  position: relative;
  line-height: 1.5em;
  color: var(--primary-color);
  padding-left: 16px;
  margin-bottom: 20px;
}

.about-footer-content-list ul li:last-child {
  margin-bottom: 0;
}

.about-footer-content-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.about-us-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
  margin-top: 30px;
}

.about-us-video-box {
  position: relative;
  width: calc(47% - 15px);
}

.about-video-image {
  height: 100%;
}

.about-video-image figure {
  display: block;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.about-video-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  border-radius: 10px;
  opacity: 40%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-video-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.65;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.about-us-video-box:hover .about-video-image img {
  transform: scale(1.08);
}

.about-us-video-box .video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.about-us-video-box .video-play-button a {
  height: 46px;
  width: 46px;
  background: var(--accent-color);
}

.about-us-video-box .video-play-button a i {
  font-size: 16px;
  color: var(--primary-color);
}

.about-us-video-box .video-play-button a:before,
.about-us-video-box .video-play-button a:after {
  border-width: 36px;
}

/************************************/
/*** 	06. Our Servicves css 	  ***/
/************************************/

.our-services {
  background: var(--secondary-color);
  padding: 60px 0;
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  background: var(--white-color);
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 15px;
}

.service-item-header {
  padding: 15px;
}

.service-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}

.service-item-title h2,
.service-item-title h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.service-item-title h2 a {
  color: inherit;
}

.service-item-content {
  border-top: 1px solid var(--divider-color);
  margin-top: 15px;
  padding-top: 15px;
}

.service-item-content p {
  margin: 0;
}

.service-image-box {
  position: relative;
}

.service-item-image figure {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.service-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.81;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.service-item.active .service-item-image img,
.service-item:hover .service-item-image img {
  transform: scale(1.08);
}

.service-item-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.service-item.active .service-item-btn,
.service-item:hover .service-item-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.service-item-btn a {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.service-item-btn a:hover {
  background: var(--white-color);
}

.service-item-btn a img {
  width: 100%;
  max-width: 20px;
  transition: all 0.4s ease-in-out;
  transform: rotate(-45deg);
}

.service-item-btn a:hover img {
  transform: rotate(0);
}

.service-benefit-box {
  margin-top: 30px;
}

.service-benefit-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 25px;
  max-width: 970px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.service-benefit-list ul li {
  position: relative;
  background: var(--white-color);
  font-size: 16px;
  line-height: 1.5em;
  color: var(--primary-color);
  padding: 10px 16px 10px 32px;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.service-benefit-list ul li:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.service-benefit-list ul li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.section-footer-text p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.section-footer-text p span {
  font-size: 14px;
  font-weight: 500;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 10px;
}

.section-footer-text p a {
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--primary-color);
}

.section-footer-text ul {
  width: 100%;
  padding: 0;
  margin: 15px 0 0;
  list-style: none;
}

.section-footer-text ul li {
  display: inline-block;
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: var(--primary-color);
  margin-right: 5px;
}

.section-footer-text ul li:last-child {
  margin: 0;
}

.section-footer-text ul li i {
  color: var(--accent-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
  color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
  color: var(--white-color);
}

.section-footer-text.section-footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
  max-width: 14px;
}

.section-footer-text.section-satisfy-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-footer-text.section-satisfy-img ul {
  margin: 0;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
  border-color: var(--white-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
  max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
  width: 32px;
  height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
  max-width: 16px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more i {
  font-size: 16px;
}

/************************************/
/*** 	   07. What We Do css 	  ***/
/************************************/

.what-we-do {
  padding: 60px 0;
}

.what-we-do-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.what-we-do-item {
  width: calc(50% - 15px);
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

.what-we-do-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.what-we-do-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.what-we-do-item:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.what-we-do-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.what-we-do-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.what-we-do-item-body h3 {
  font-size: 20px;
}

.what-we-do-item-body p {
  margin: 10px 0 0;
}

.what-we-do-item-body ul {
  border-top: 1px solid var(--divider-color);
  list-style: none;
  margin: 20px 0 0;
  padding: 20px 0 0;
}

.what-we-do-item-body ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 16px;
  margin-bottom: 15px;
}

.what-we-do-item-body ul li:last-child {
  margin-bottom: 0;
}

.what-we-do-item-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.what-we-do-btn {
  margin-top: 40px;
}

.what-we-do-image {
  margin-left: 15px;
}

.what-we-do-image figure {
  display: block;
  border-radius: 10px;
}

.what-we-do-image img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 10px;
}

.what-we-do .section-footer-text {
  margin-top: 60px;
}

/************************************/
/*** 	   08. Our Story css 	  ***/
/************************************/

.our-story {
  position: relative;
  background-image: url("https://media.istockphoto.com/id/147683784/photo/a-bulldozer-digging-up-the-earth.jpg?s=612x612&w=0&k=20&c=5TgHyRY2VTSpsjUtvLtjuIqrjF0-fAP4WRuycX5lrbA=");
  padding: 50px 0;
}

.our-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.our-story .container {
  position: relative;
  z-index: 1;
}

.our-story-content {
  max-width: 990px;
  text-align: center;
  margin: 0 auto;
}

.our-story-content .section-title {
  margin-bottom: 0;
}

.watch-video-circle {
  margin-top: 180px;
}

.watch-video-circle a {
  display: inline-block;
  border-radius: 50%;
  cursor: none;
}

.watch-video-circle a img {
  width: 100%;
  max-width: 150px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

.watch-video-circle a:hover img {
  animation-play-state: paused;
}

.video-thumbnail {
  position: relative;
  margin-top: 100px;
  display: inline-block;
}

.video-thumbnail img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffb400;
  color: #000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}

/* POPUP */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup-content {
  position: relative;
}

.close-btn {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/************************************/
/*** 	 09. Our Features css 	  ***/
/************************************/

.our-features {
  padding: 60px 0;
}

.our-features .section-row .section-title.section-title-center {
  max-width: 1050px;
}

.our-features .section-title h2 .feature-title-img-1 {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: var(--accent-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.our-features .section-title h2 .feature-title-img-1 img {
  width: 100%;
  max-width: 22px;
}

.our-features .section-title h2 .feature-title-img-2 img {
  width: 100%;
  max-width: 44px;
}

.our-features .section-title h2 .feature-title-img-3 {
  display: inline-block;
}

.our-features .section-title h2 .feature-title-img-3 img {
  width: 100%;
  max-width: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  margin-left: -8px;
}

.our-features .section-title h2 .feature-title-img-3 img:first-child {
  margin: 0;
}

.feature-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  gap: 60px;
  background: var(--secondary-color);
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.feature-item.box-1 {
  background: var(--primary-color);
}

.feature-item-shape-image figure {
  display: block;
  mask-image: url("../images/feature-item-image-shape-1.svg");
  background-image: url("../images/feature-item-image-shape-1.svg");
  mask-size: cover;
  mask-position: center center;
  mask-repeat: no-repeat;
  width: 220px;
  height: 110px;
}

.feature-item-shape-image img {
  width: 100%;
  object-fit: cover;
}

.feature-item-content {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.feature-item-content h3 {
  font-size: 20px;
}

.feature-item-content p {
  margin: 10px 0 0;
}

.feature-item.box-1 .feature-item-content h3,
.feature-item.box-1 .feature-item-content p {
  color: var(--white-color);
}

.feature-item-content h2 {
  font-size: 54px;
  margin-bottom: 10px;
}

.feature-item-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-item-list ul li {
  position: relative;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 16px;
  margin-bottom: 15px;
}

.feature-item-list ul li:last-child {
  margin-bottom: 0;
}

.feature-item-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.feature-item.box-2 {
  flex-direction: initial;
  gap: 0;
}

.feature-item-info {
  width: 75%;
}

.feature-item-info-content p {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item-info-content h3 {
  font-size: 30px;
  line-height: 1.4em;
}

.feature-item-btn {
  margin-top: 40px;
}

.feature-item-btn .readmore-btn {
  text-decoration: underline;
}

.feature-item-image {
  width: 25%;
  text-align: right;
  align-content: end;
}

.feature-item-image figure {
  display: block;
  margin: 0 -40px -40px -100px;
}

.feature-item-image img {
  width: 100%;
  max-width: 250px;
}

.feature-item.box-3 {
  background: var(--accent-color);
}

.feature-item.box-3 .feature-item-content-box .feature-item-content {
  border-color: var(--divider-color);
}

.feature-item-counter-info p {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.feature-item-counter-info p:last-child {
  margin-bottom: 0;
}

.feature-item-tag-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-box i {
  color: white;
  font-size: 25px;
}

.feature-item-tag-list ul li {
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.5em;
  border: 1px solid var(--divider-color);
  border-radius: 5px;
  padding: 6px 14px;
}

/************************************/
/***  10. Our Pricing Plans css   ***/
/************************************/

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

.pricing-item {
  background: var(--dark-divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 20px;
}

.pricing-item-header {
  position: relative;
  background: var(--dark-divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 10px;
  padding: 30px;
}

.pricing-item-header .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.pricing-item-header .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--bg-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.pricing-item:hover .pricing-item-header .icon-box::before {
  transform: rotate(0) scale(1);
}

/* .pricing-item-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
} */

.pricing-item-content p {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 15px;
}

.pricing-item-content h2 {
  font-size: 44px;
  color: var(--white-color);
}

.pricing-item-content h2 sub {
  font-size: 20px;
  bottom: 0;
}

.pricing-item-body {
  padding: 30px 20px 20px;
}

.pricing-item-list h3 {
  font-size: 20px;
  color: var(--white-color);
}

.pricing-item-list ul {
  list-style: none;
  border-top: 1px solid var(--dark-divider-color);
  padding: 20px 0 0;
  margin: 20px 0 0;
}

.pricing-item-list ul li {
  position: relative;
  line-height: 1.5em;
  color: var(--white-color);
  padding-left: 16px;
  margin-bottom: 15px;
}

.pricing-item-list ul li:last-child {
  margin-bottom: 0;
}

.pricing-item-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.pricing-item-btn {
  margin-top: 30px;
}

.pricing-item-btn .btn-default {
  display: block;
}

.pricing-item.highlighted-box .pricing-item-header {
  background: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-item-header::before {
  content: "Most Popular";
  font-family: var(--accent-font);
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 5px;
  line-height: 1.5em;
  padding: 8px 14px;
}

.pricing-item.highlighted-box .pricing-item-header .icon-box {
  background: var(--primary-color);
}

.pricing-item.highlighted-box .pricing-item-header .icon-box img {
  filter: brightness(0) invert(1);
}

.pricing-item.highlighted-box:hover .pricing-item-header .icon-box img {
  filter: brightness(0) invert(0);
}

.pricing-item.highlighted-box .pricing-item-content p,
.pricing-item.highlighted-box .pricing-item-content h2 {
  color: var(--primary-color);
}

.pricing-benefit-list {
  margin-top: 30px;
}

.pricing-benefit-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px 40px;
}

.pricing-benefit-list ul li {
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
}

.pricing-benefit-list ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

/************************************/
/*** 	 11. Our Projects css 	  ***/
/************************************/

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

.project-nav {
  text-align: center;
  margin-bottom: 60px;
}

.project-nav ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 50px;
  padding: 0;
  margin: 0;
}

.project-nav ul li a {
  position: relative;
  font-size: 18px;
  line-height: 1.4em;
  text-transform: capitalize;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.project-nav ul li a:before {
  content: "";
  position: absolute;
  top: 9px;
  right: -28px;
  background-color: var(--divider-color);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.project-nav ul li:last-child a:before {
  display: none;
}

.project-nav ul li a.active-btn,
.project-nav ul li a:hover {
  color: var(--accent-color);
}

.project-item {
  position: relative;
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.project-item-image a,
.project-item-image figure {
  position: relative;
  display: block;
  cursor: none;
}

.project-item-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0) 37.36%,
    var(--primary-color) 87.69%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.project-item-image img {
  width: 100%;
  aspect-ratio: 1 / 1.128;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.project-item:hover .project-item-image img {
  transform: scale(1.08);
}

.project-item-content {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: 40px;
  z-index: 1;
}

.project-item-content h2 {
  font-size: 20px;
  color: var(--white-color);
}

.project-item-content h2 a {
  color: inherit;
}

.project-item-content p {
  color: var(--white-color);
  margin: 10px 0 0;
}

.project-item-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.project-item:hover .project-item-btn {
  opacity: 1;
  transform: scale(1);
}

.project-item-btn a {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover {
  background: var(--accent-color);
}

.project-item-btn a img {
  width: 100%;
  max-width: 24px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover img {
  filter: brightness(0) invert(0);
}

.project-item-btn a:hover img {
  transform: rotate(0);
}

/************************************/
/*** 		12. CTA Box css		  ***/
/************************************/

.cta-box {
  position: relative;
  background-image: url("https://static.vecteezy.com/system/resources/thumbnails/049/588/230/small/heavy-construction-machinery-on-a-muddy-construction-site-at-sunset-concept-of-bulldozer-construction-work-heavy-equipment-industrial-development-engineering-photo.jpg");
  padding: 40px 0;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-box .container {
  position: relative;
  z-index: 1;
}

.cta-box-content {
  margin-right: 4.167vw;
}

.cta-box-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 40px;
}

.cta-box-item {
  width: calc(50% - 20px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cta-box-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--dark-divider-color);
  backdrop-filter: blur(30px) saturate(100%);
  -webkit-backdrop-filter: blur(30px) saturate(100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-box-item:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.cta-box-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.cta-box-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.cta-box-item-content {
  width: calc(100% - 80px);
}

.cta-box-item-content h3 {
  font-size: 20px;
  line-height: 1.4em;
  color: var(--white-color);
}

.cta-box-btn {
  margin-top: 60px;
}

.cta-box-image {
  text-align: center;
  margin-top: -150px;
}

.cta-box-image figure {
  display: block;
}

.cta-box-image figure img {
  width: 100%;
  max-width: 300px;
}

/************************************/
/*** 	   13. Our FAQs css 	  ***/
/************************************/

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

.our-faqs-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
  padding: 20px 0;
}

.faq-contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
}

.faq-contact-box .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faq-contact-box .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.faq-contact-box:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.faq-contact-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.faq-contact-box:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.faq-contact-box-content {
  width: calc(100% - 70px);
}

.faq-contact-box-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.faq-contact-box-content p {
  margin-bottom: 0;
}

.faq-contact-box-content p a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.faq-contact-box-content p a:hover {
  color: var(--accent-color);
}

.faq-accordion {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 40px;
}

.faq-accordion .accordion-item {
  position: relative;
  background: var(--bg-color);
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  background: transparent;
  color: var(--primary-color);
  padding: 20px 54px 20px 30px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "FontAwesome";
  position: absolute;
  right: 30px;
  top: 50%;
  font-size: 20px;
  font-weight: 400;
  transform: translateY(-50%);
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
  border-top: 1px solid var(--divider-color);
  background: transparent;
  padding: 20px 30px;
}

.faq-accordion .accordion-item .accordion-body p {
  margin: 0;
}

/************************************/
/***   14. Our Testimonials css	  ***/
/************************************/

.our-testimonials {
  background: var(--secondary-color) url("../images/testimonial-image-bg.png")
    no-repeat;
  background-position: bottom left;
  background-size: auto;
  padding: 100px 0;
}

.our-testimonial-content {
  position: sticky;
  top: 20px;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-item {
  background-color: var(--white-color);
  border-radius: 10px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
}

.testimonial-company-logo img {
  width: 100%;
  max-width: 170px;
}

.testimonial-item-content p {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.testimonial-author-content {
  border-top: 1px solid var(--divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.testimonial-author-content h3 {
  font-size: 20px;
}

.testimonial-author-content p {
  margin: 5px 0 0 0;
}

.testimonial-slider .testimonial-pagination {
  text-align: center;
  display: flex;
  margin-top: 40px;
  padding-bottom: 2px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
  position: relative;
  height: 3px;
  width: 100%;
  background: var(--divider-color);
  border-radius: 0;
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: auto;
  right: 0;
  background: var(--accent-color);
  border-radius: 0;
  width: 0;
  height: 3px;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider
  .testimonial-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  width: 100%;
  right: auto;
  left: 0;
}

/************************************/
/*** 	   15. Our Blog css 	  ***/
/************************************/

.our-blog {
  padding: 100px 0 70px;
}

.post-item {
  position: relative;
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.post-featured-image a,
.post-featured-image figure {
  position: relative;
  display: block;
  cursor: none;
}

.post-featured-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  opacity: 40%;
  z-index: 1;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 1.064;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.08);
}

.post-item-tags {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
}

.post-item-tags a {
  display: inline-block;
  font-family: var(--accent-font);
  font-weight: 500;
  line-height: 1.5em;
  color: var(--white-color);
  background: var(--divider-color);
  backdrop-filter: blur(30px) saturate(100%);
  -webkit-backdrop-filter: blur(30px) saturate(100%);
  border-radius: 5px;
  padding: 5px 14px;
  transition: all 0.4s ease-in-out;
}

.post-item-tags a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.post-item-body {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  z-index: 1;
}

.post-content-box {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.post-item-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-item-meta ul li {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 10px;
}

.post-item-content h2 {
  color: var(--white-color);
  font-size: 20px;
  line-height: 1.4em;
}

.post-item-content h2 a {
  color: inherit;
}

.post-item-btn a {
  color: var(--white-color);
}

/************************************/
/*** 	   16. Footer css   	  ***/
/************************************/
/* =========================
   MAIN FOOTER
========================= */

.bmr-footer {

  background:
    linear-gradient(
      rgba(193, 190, 190, 0.92),
      rgba(198, 196, 196, 0.95)
    ),
    url("../images/footerbg.jpg");

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: #070606;

  padding: 70px 20px 50px;

  border-top: 4px solid #e46d0c;

  animation: footerZoom 12s ease infinite alternate;
}

/* =========================
   BG ANIMATION
========================= */

@keyframes footerZoom {

  0% {
    background-size: 100%;
  }

  100% {
    background-size: 110%;
  }
}

/* =========================
   WRAPPER
========================= */

.bmr-footer__wrapper {

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

/* =========================
   COMPANY
========================= */

.bmr-footer__company,
.bmr-footer__heading {

  color: #050404;
}

/* =========================
   TEXT
========================= */

.bmr-footer__text,
.bmr-footer__links li a,
.bmr-footer__contact li {

  color: #0b0808;
}

/* =========================
   HEADING LINE
========================= */

.bmr-footer__heading {

  font-size: 18px;

  font-weight: 700;

  margin-bottom: 20px;

  position: relative;
}

.bmr-footer__heading::after {

  content: "";

  width: 45px;
  height: 3px;

  background: #e46d0c;

  position: absolute;

  left: 0;
  bottom: -8px;

  border-radius: 50px;
}

/* =========================
   SOCIAL
========================= */

.bmr-footer__social {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 20px;
}

.bmr-footer__social a {

  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.1);

  color: #e46d0c;

  transition: all 0.3s ease;
}

.bmr-footer__social a:hover {

  background: #e46d0c;

  color: #100d0d;

  transform: translateY(-4px);
}

/* =========================
   LINKS
========================= */

.bmr-footer__links {

  list-style: none;

  padding: 0;
}

.bmr-footer__links li {

  margin-bottom: 12px;

  transition: all 0.3s ease;
}

.bmr-footer__links li:hover {

  transform: translateX(6px);
}

.bmr-footer__links li a {

  text-decoration: none;

  transition: all 0.3s ease;
}

.bmr-footer__links li a:hover {

  color: #080808;
}

.bmr-footer__links li i {

  color: #e46d0c;;

  margin-right: 8px;
}

/* =========================
   CONTACT
========================= */

.bmr-footer__contact {

  list-style: none;

  padding: 0;
}

.bmr-footer__contact li {

  display: flex;

  gap: 10px;

  margin-bottom: 14px;

  line-height: 1.7;
}

.bmr-footer__contact i {

  color: #e46d0c;

  margin-top: 4px;
}

/* =========================
   BOTTOM BAR
========================= */

.bmr-footer-bottom {

  background: #0c0c0c;

  border-top: 1px solid rgba(255,255,255,0.08);

  padding: 18px 20px;
}

.bmr-footer-bottom__wrapper {

  max-width: 1200px;

  margin: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}

.bmr-footer-bottom__left,
.bmr-footer-bottom__right {

  color: #cfcfcf;

  font-size: 14px;
}

.bmr-footer-bottom__link {

  color: #d97928;

  text-decoration: none;

  font-weight: 600;
}

.bmr-footer-bottom__link:hover {

  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .bmr-footer__wrapper {

    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .bmr-footer {

    padding: 60px 20px 40px;

    background-attachment: scroll;
  }

  .bmr-footer__wrapper {

    grid-template-columns: 1fr;

    gap: 30px;
  }

  .bmr-footer-bottom__wrapper {

    flex-direction: column;

    text-align: center;
  }
}

@media (max-width: 480px) {

  .bmr-footer {

    padding: 50px 15px 35px;
  }

  .bmr-footer__heading {

    font-size: 17px;
  }

  .bmr-footer__text,
  .bmr-footer__links li a,
  .bmr-footer__contact li {

    font-size: 13px;
  }

  .bmr-footer__social a {

    width: 36px;
    height: 36px;
  }
}
.main-footer {
  position: relative;

  overflow: hidden;
}

.main-footer::before,
.main-footer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.main-footer::before {
  background: var(--primary-color);
  opacity: 85%;
}

.main-footer::after {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-scrolling-ticker {
  position: relative;
  background: var(--accent-color);
  padding: 25px 0;
  z-index: 1;
}

.scrolling-ticker-box {
  --gap: 20px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 80s linear infinite;
}

.scrolling-content span {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2em;
  color: var(--primary-color);
  text-transform: capitalize;
}

.scrolling-content span img {
  width: 100%;
  max-width: 30px;
  margin-right: 20px;
  animation: sparkelotate 3s linear infinite;
}

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

  50% {
    transform: rotate(180deg) scale(0.5);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.footer-box {
  position: relative;
  padding: 100px 0 0;
  z-index: 1;
}

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

.footer-logo img {
  width: 100%;
  max-width: 192px;
}

.footer-working-hours {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.footer-working-hours h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-working-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-working-hours ul li {
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.footer-working-hours ul li:last-child {
  margin-bottom: 0;
}

.footer-links-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 30px;
}

.footer-links h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-links p {
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-links p:last-child {
  margin-bottom: 0;
}

.footer-location-info {
  max-width: calc(26% - 20px);
}

.footer-contact-links {
  max-width: calc(34% - 20px);
}

.footer-contact-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-links ul li {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--white-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--dark-divider-color);
}

.footer-contact-links ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.footer-contact-links ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.footer-contact-links ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-contact-links ul li a:hover {
  color: var(--accent-color);
}

.footer-newsletter-form {
  max-width: calc(40% - 20px);
}

.footer-newsletter-form .form-group {
  display: flex;
  background: transparent;
  border: 1px solid var(--dark-divider-color);
  border-radius: 10px;
  padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
  width: calc(100% - 40px);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 6px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
  color: var(--white-color);
  opacity: 20%;
}

.footer-newsletter-form .form-group .newsletter-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn i {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 2px;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
  background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
  max-width: 16px;
  transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
  transform: rotate(45deg);
}

.footer-social-links {
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid var(--dark-divider-color);
}

.footer-social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social-links ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color);
  line-height: normal;
  background: var(--dark-divider-color);
  backdrop-filter: blur(180px);
  -webkit-backdrop-filter: blur(180px);
  border-radius: 10px;
  padding: 10px 16px;
  transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.footer-social-links ul li a i {
  font-size: 20px;
  line-height: normal;
  color: inherit;
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px 30px;
  border-top: 1px solid var(--dark-divider-color);
  padding: 40px 0 60px;
  margin-top: 60px;
}

.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu ul li {
  color: var(--white-color);
  text-transform: capitalize;
  line-height: 1.5em;
}

.footer-menu ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover {
  color: var(--accent-color);
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/*** 	 17. About Us Page css 	  ***/
/************************************/

.page-header {
  position: relative;
  background-position: center center;
  padding: 205px 0 170px;
  height: 500px;
  background: url("../images/about-banner.png")
}

.Inffratech-ban {
  position: relative;
  background: url("../images/ApolloInffratech-ban.png") no-repeat;
  background-position: center center;
  padding: 205px 0 170px;
  height: 500px;
}

.Afinitas-ban {
  position: relative;
  background: url("../images/ApolloAfinitas-ban.png") no-repeat;
  background-position: center center;
  padding: 205px 0 170px;
  height: 500px;
}

.lingong{
   position: relative;
  background: url("../images/LiuGong-ban.png") no-repeat;
  background-position: center center;
  padding: 205px 0 170px;
  height: 500px;
}
.carmix-ban {
  position: relative;
  background: url("../images/ApolloCarmix-ban.png") no-repeat;
  background-position: center center;
  padding: 205px 0 170px;
  height: 500px;
}

.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.226);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.page-header-box {
  text-align: center;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 52px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  justify-content: center;
  margin: 0;
  padding: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  color: #fff;
  text-shadow: 2px 2px 4px rgb(2, 2, 2);
}

.page-header-box ol li.breadcrumb-item a {
  color: rgb(245, 237, 237) !important;
  text-shadow: 0 0 8px rgb(243, 112, 18) !important;
}

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

.approach-item {
  position: relative;
  background-color: var(--dark-divider-color);
  padding: 50px;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.approach-item .icon-box {
  position: absolute;
  top: -20px;
  right: -20px;
}

.approach-item .icon-box img {
  width: 100%;
  max-width: 120px;
}

.approach-item-image {
  margin-bottom: 80px;
}

.approach-item-image figure {
  display: block;
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center center;
  width: 100%;
  max-width: 120px;
}

.approach-item.box-1 .approach-item-image figure {
  mask-image: url("../images/approach-item-shape-1.svg");
  background-image: url("../images/approach-item-shape-1.svg");
}

.approach-item.box-2 .approach-item-image figure {
  mask-image: url("../images/approach-item-shape-2.svg");
  background-image: url("../images/approach-item-shape-2.svg");
}

.approach-item.box-3 .approach-item-image figure {
  mask-image: url("../images/approach-item-shape-3.svg");
  background-image: url("../images/approach-item-shape-3.svg");
}

.approach-item-image figure img {
  width: 100%;
  object-fit: cover;
}

.approach-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.approach-item-content p {
  color: var(--white-color);
  margin: 15px 0 0 0;
}

.approach-item-content ul {
  color: var(--white-color);
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
}

.approach-item-content ul li {
  position: relative;
  line-height: 1.5em;
  margin-bottom: 15px;
  padding-left: 16px;
}

.approach-item-content ul li:last-child {
  margin-bottom: 0;
}

.approach-item-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.approach-item-list {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.approach-item-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.approach-item-list ul li {
  background-color: var(--dark-divider-color);
  padding: 12px 15px;
  border-radius: 5px;
  color: var(--white-color);
}

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

.values-image-box {
  position: relative;
  height: 100%;
  padding: 30px 30px 0 0;
}

.values-image {
  height: 100%;
}

.values-image figure {
  display: block;
  height: 100%;
  border-radius: 10px;
}

.values-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 10px;
}

.lets-together-circle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.lets-together-circle a {
  display: inline-block;
  border: 5px solid var(--white-color);
  border-radius: 50%;
}

.lets-together-circle a img {
  width: 100%;
  max-width: 150px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

.lets-together-circle a:hover img {
  animation-play-state: paused;
}

.value-counter-box {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: var(--divider-color);
  backdrop-filter: blur(30px) saturate(100%);
  -webkit-backdrop-filter: blur(30px) saturate(100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  padding: 30px;
  z-index: 1;
}

.value-counter-box .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.value-counter-box .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.value-counter-box:hover .icon-box::before {
  border-radius: 0;
  transform: rotate(0) scale(1);
}

.value-counter-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.value-counter-box:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.value-counter-box-content {
  width: calc(100% - 75px);
}

.value-counter-box-content h2 {
  color: var(--white-color);
  font-size: 52px;
  line-height: 1em;
}

.value-counter-box-content p {
  color: var(--white-color);
  margin: 5px 0 0 0;
}

.our-values-content {
  margin-left: 15px;
}

.skills-progress-bar {
  margin-bottom: 40px;
}

.skills-progress-bar:last-child {
  margin-bottom: 0;
}

.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
  line-height: normal;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 20px;
  font-family: var(--accent-font);
}

.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 10px;
  background: var(--secondary-color);
  border-radius: 100px;
  overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 100px;
}

.values-content-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--divider-color);
  padding-top: 50px;
  margin-top: 50px;
}

.values-item-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.values-author-image figure {
  display: block;
  border-radius: 50%;
}

.values-author-image img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.values-author-content h3 {
  font-size: 20px;
}

.values-author-content p {
  margin: 5px 0 0 0;
}

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

.team-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.team-item-image a {
  display: block;
  cursor: none;
}

.team-item-image figure {
  position: relative;
  display: block;
  border-radius: 10px;
}

.team-item-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 42.71%,
    rgba(0, 0, 0, 0.8) 85.3%
  );
  z-index: 1;
}

.team-item-image img {
  width: 100%;
  aspect-ratio: 1 / 1.36;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
  border-radius: 10px;
}

.team-item:hover .team-item-image img {
  transform: scale(1.08);
}

.team-item-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  text-align: center;
  z-index: 1;
}

.team-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.team-item-content h3 a {
  color: inherit;
}

.team-item-content p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

.team-social-list {
  position: absolute;
  right: 20px;
  left: 20px;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.team-item:hover .team-social-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.team-social-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-social-list ul li a {
  background: var(--white-color);
  border-radius: 50%;
  color: var(--accent-color);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.team-social-list ul li a i {
  font-size: 18px;
  color: inherit;
}

.team-social-list ul li a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

/************************************/
/*** 	 18. Services Page css 	  ***/
/************************************/

.page-services {
  padding: 100px 0 70px;
}

.page-services .service-item {
  background-color: var(--secondary-color);
}

/************************************/
/*** 	19. Service Single css 	  ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.page-single-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 20px;
}

.page-category-list {
  background: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 60px;
  overflow: hidden;
}

.page-category-list h3 {
  font-size: 20px;
  background: var(--accent-color);
  line-height: normal;
  padding: 20px 30px;
}

.page-category-list ul {
  list-style: none;
  margin: 0;
  padding: 30px;
}

.page-category-list ul li {
  line-height: 1.5em;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-category-list ul li:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.page-category-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: var(--text-color);
  padding-right: 30px;
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
  color: var(--primary-color);
}

.page-category-list ul li a::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  background: url("../images/arrow-primary.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  width: 18px;
  height: 18px;
  transition: all 0.4s ease-in-out;
  transform: rotate(-45deg);
}

.page-category-list ul li a:hover::before {
  transform: rotate(0);
}

.sidebar-cta-box {
  background: var(--accent-color);
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-cta-title {
  background: var(--primary-color);
  padding: 20px 40px;
}

.sidebar-cta-title h3 {
  font-size: 20px;
  line-height: normal;
  color: var(--white-color);
}

.sidebar-cta-body {
  padding: 40px;
}

.sidebar-cta-body-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-cta-body-content ul li {
  display: flex;
  align-items: center;
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--primary-color);
  align-items: center;
  margin-bottom: 25px;
}

.sidebar-cta-body-content ul li:last-child {
  margin-bottom: 0;
}

.sidebar-cta-body-content ul li img {
  width: 100%;
  max-width: 30px;
  margin-right: 15px;
}

.sidebar-cta-body-content ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.sidebar-cta-body-content ul li a:hover {
  color: var(--white-color);
}

.sidebar-cta-body-image {
  margin-top: 50px;
  text-align: right;
}

.sidebar-cta-body-image figure {
  display: block;
  margin: 0 -40px -40px 0;
}

.sidebar-cta-body-image img {
  width: 100%;
  max-width: 240px;
}

.page-single-image {
  margin-bottom: 30px;
}

.page-single-image figure {
  display: block;
  border-radius: 10px;
}

.page-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.568;
  object-fit: cover;
  border-radius: 10px;
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry h2 {
  font-size: 48px;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.service-entry h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-entry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.service-entry ul li {
  position: relative;
  width: calc(50% - 10px);
  line-height: 1.5em;
  padding-left: 16px;
}

.service-entry ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.service-why-choose-box,
.service-offer-box,
.service-process-box {
  margin-top: 60px;
}

.service-why-choose-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-why-choose-item {
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 15px);
  gap: 20px;
}

.service-why-choose-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-why-choose-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-why-choose-item:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.service-why-choose-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-why-choose-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.service-why-choose-item-content {
  width: calc(100% - 80px);
}

.service-offer-list {
  margin-top: 40px;
}

.service-offer-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-offer-item {
  position: relative;
  width: calc(50% - 15px);
}

.service-offer-item-image figure {
  display: block;
  border-radius: 10px;
}

.service-offer-item-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60.52%,
    rgba(0, 0, 0, 0.8) 88.79%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-offer-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  border-radius: 10px;
}

.service-offer-item-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}

.service-offer-item-content h3,
.service-offer-item-content p {
  color: var(--white-color);
}

.service-process-box {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 40px;
}

.service-process-image-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-process-content,
.service-process-image {
  width: calc(50% - 15px);
}

.service-process-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.service-process-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-process-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-process-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-process-item:hover .icon-box::before {
  border-radius: 0%;
  transform: rotate(0) scale(1);
}

.service-process-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-process-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.service-process-item-content {
  width: calc(100% - 80px);
}

.service-process-image figure {
  display: block;
  height: 100%;
  border-radius: 10px;
}

.service-process-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
  border-radius: 10px;
}

/************************************/
/*** 	 20. Blog Archive css 	  ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
}

/************************************/
/*** 	21. Blog Single css 	  ***/
/************************************/

.page-single-post {
  padding: 100px 0;
}

.post-single-meta {
  margin-top: 5px;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 10px;
}

.post-content {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 0.42em;
}

.post-entry h1 {
  font-size: 52px;
}

.post-entry h2 {
  font-size: 48px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 20px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: var(--accent-color) url("../images/icon-blockquote.svg");
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 10px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 10px;
  padding: 12px 20px;
  transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--primary-color);
  color: var(--white-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/*** 	 22. Projects Page css 	  ***/
/************************************/

.page-projects {
  padding: 100px 0 70px;
}

/************************************/
/*** 	23. Project Single css 	  ***/
/************************************/

.page-project-single {
  padding: 100px 0;
}

.project-category-item-list {
  padding: 30px;
}

.project-category-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.project-category-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.project-category-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-category-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.project-category-item:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.project-category-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 16px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.project-category-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.project-category-item-content {
  width: calc(100% - 45px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.project-category-item-content h4 {
  font-size: 16px;
  line-height: normal;
}

.project-category-item-content p {
  margin-bottom: 0;
}

.project-entry {
  margin-bottom: 60px;
}

.project-entry p {
  margin-bottom: 20px;
}

.project-entry h2 {
  font-size: 48px;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.project-entry h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.project-entry p:last-child,
.project-entry h2:last-child,
.project-entry h3:last-child {
  margin-bottom: 0;
}

.project-features-box,
.project-process-box,
.project-issue-box {
  margin-top: 60px;
}

.project-feature-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.project-feature-item {
  width: calc(33.33% - 20px);
  background: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
}

.project-feature-item-body .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 30px;
}

.project-feature-item-body .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.project-feature-item:hover .project-feature-item-body .icon-box::before {
  transform: rotate(0) scale(1);
}

.project-feature-item-body .icon-box img {
  position: relative;
  width: 100%;
  max-width: 25px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.project-feature-item:hover .project-feature-item-body .icon-box img {
  filter: brightness(0) invert(1);
}

.project-feature-item-image {
  margin: 0 -30px -30px;
}

.project-feature-item-image figure {
  mask-image: url("../images/project-feature-image-shape.svg");
  background-image: url("../images/project-feature-image-shape.svg");
  display: block;
  mask-size: cover;
  mask-position: center center;
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.project-feature-item-image img {
  width: 100%;
  object-fit: cover;
}

.project-features-box .section-footer-text {
  margin-top: 60px;
}

.project-process-item-list {
  margin-top: 40px;
}

.project-process-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.project-process-item:last-child {
  margin-bottom: 0;
}

.project-process-item-no {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-process-item-no::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.project-process-item:hover .project-process-item-no::before {
  transform: rotate(0) scale(1);
}

.project-process-item-no h4 {
  position: relative;
  font-size: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.project-process-item:hover .project-process-item-no h4 {
  color: var(--white-color);
}

.project-process-item-content {
  width: calc(100% - 80px);
}

.project-issue-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
  margin-top: 40px;
}

.project-issue-box-item {
  position: relative;
  width: calc(50% - 30px);
}

.project-issue-box-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  background: var(--divider-color);
  width: 1px;
  height: 100%;
}

.project-issue-box-item:nth-child(2n + 2):before,
.project-issue-box-item:last-child:before {
  display: none;
}

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

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

.project-issue-item:last-child {
  margin-bottom: 0;
}

.project-issue-item h4 {
  position: relative;
  font-size: 16px;
  line-height: normal;
  padding-left: 25px;
  margin-bottom: 10px;
}

.project-issue-item h4::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 16px;
  font-weight: 900;
  color: var(--accent-color);
  top: 3px;
  left: 0;
}

/************************************/
/*** 	  24. Team Page css 	  ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/*** 	25. Team Single css 	  ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-sidebar-box {
  border-radius: 10px;
  overflow: hidden;
}

.team-sidebar-image figure {
  display: block;
}

.team-sidebar-image img {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
}

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

.team-sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-sidebar-body ul li {
  width: 100%;
  display: inline-flex;
  gap: 10px;
  line-height: 1.4em;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team-sidebar-body ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.team-sidebar-body ul li span {
  min-width: 30%;
  font-family: var(--accent-font);
  text-transform: capitalize;
  font-weight: 600;
  color: var(--primary-color);
}

.team-sidebar-footer {
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
}

.team-sidebar-footer h3 {
  font-size: 16px;
  min-width: 30%;
}

.team-sidebar-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-sidebar-footer ul li a {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.team-sidebar-footer ul li a:hover {
  background-color: var(--primary-color);
}

.team-sidebar-footer ul li a i {
  font-size: 18px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li a:hover i {
  color: var(--accent-color);
}

.team-member-about,
.team-experience-box,
.team-member-info-box {
  margin-bottom: 60px;
}

.team-member-about .section-title {
  margin-bottom: 0;
}

.team-experience-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.team-experience-item {
  width: calc(50% - 15px);
  background: var(--secondary-color);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.team-experience-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-experience-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.team-experience-item:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.team-experience-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 20px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.team-experience-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.team-experience-item-content {
  width: calc(100% - 55px);
}

.team-experience-item-content h3 {
  font-size: 20px;
}

.team-member-info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 50px;
}

.team-skills-box {
  width: calc(48% - 25px);
}

.team-values-info {
  width: calc(52% - 25px);
}

.team-values-info-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.team-values-info-list ul li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1.5em;
  margin-bottom: 30px;
  padding-left: 25px;
}

.team-values-info-list ul li:last-child {
  margin-bottom: 0;
}

.team-values-info-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 16px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.team-values-info-list ul li span {
  font-family: var(--accent-font);
  width: 36%;
  font-weight: 600;
  color: var(--primary-color);
}

.team-contact-form.contact-us-form {
  margin: 0;
}

/************************************/
/*** 	 26. Pricing Page css 	  ***/
/************************************/

.page-pricing {
  padding: 100px 0;
}

.page-pricing .pricing-item {
  background-color: var(--secondary-color);
}

.page-pricing .pricing-item-header {
  background-color: var(--white-color);
}

.page-pricing .pricing-item-header .icon-box::before {
  background-color: var(--secondary-color);
}

.page-pricing .pricing-item-header p,
.page-pricing .pricing-item-header h2 sub,
.page-pricing .pricing-item-list ul li,
.page-pricing .pricing-benefit-list ul li {
  color: var(--text-color);
}

.page-pricing .pricing-item-header h2,
.page-pricing .pricing-item-list h3,
.page-pricing .pricing-item.highlighted-box .pricing-item-header h2 sub {
  color: var(--primary-color);
}

.page-pricing .pricing-item-list ul {
  border-color: var(--divider-color);
}

/************************************/
/***  27. Testimonials Page css   ***/
/************************************/

.page-testimonials {
  padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
  background-color: var(--secondary-color);
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

/************************************/
/*** 	 28. Image Gallery css 	  ***/
/************************************/

.page-gallery {
  padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 12px;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.81;
  object-fit: cover;
  border-radius: 12px;
}

/************************************/
/*** 	29. Video Gallery css 	  ***/
/************************************/

.page-video-gallery {
  padding: 100px 0 70px;
}

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 10px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 0.81;
  object-fit: cover;
  border-radius: 10px;
}

/************************************/
/*** 	 30. FAQs Page css 		  ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.page-faqs-catagery .page-single-faqs {
  margin-bottom: 60px;
}

.page-faqs-catagery .page-single-faqs:last-child {
  margin-bottom: 0px;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
  padding: 100px 0;
}

.contact-info-list {
  max-width: 510px;
}

.contact-info-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.contact-info-item:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.contact-info-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  overflow: hidden;
}

.contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.contact-info-item:hover .icon-box::before {
  border-radius: 0;
  transform: rotate(0) scale(1);
}

.contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.contact-info-item-content {
  width: calc(100% - 80px);
}

.contact-info-item-content h3 {
  font-size: 20px;
}

.contact-info-item-content p {
  margin: 10px 0 0;
}

.contact-info-item-content p a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.contact-info-item-content p a:hover {
  color: var(--accent-color);
}

.contact-us-form {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 3.125vw;
  margin-left: 30px;
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.125em;
  color: var(--text-color);
  background: var(--white-color);
  border: none;
  border-radius: 10px;
  padding: 21px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
}

.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 700px;
}

/************************************/
/***   32. 404 Error Page css	  ***/
/************************************/

.error-page {
  padding: 100px 0px;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 830px;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1300px;
  }

  .hero-info-content-box {
    padding: 10px;
  }

  .hero-info-item.box-3 {
    padding: 30px;
  }

  .about-us-body {
    padding: 25px 30px 25px 20px;
  }

  .about-us-footer {
    gap: 20px;
  }

  .about-us-footer-content {
    width: calc(56% - 10px);
  }

  .about-footer-content-list ul li {
    margin-bottom: 15px;
  }

  .about-us-video-box {
    width: calc(44% - 10px);
  }

  .service-item-header {
    padding: 5px;
  }

  .what-we-do-item {
    padding: 20px;
  }

  .what-we-do-item .icon-box {
    margin-bottom: 30px;
  }

  .our-story {
    padding: 150px 0;
  }

  .watch-video-circle {
    margin-top: 150px;
  }

  .feature-item {
    padding: 30px;
  }

  .feature-item-info-content h3 {
    font-size: 26px;
  }

  .feature-item-image figure {
    margin: 0 -30px -30px -100px;
  }

  .pricing-item-header {
    padding: 20px;
  }

  .pricing-item-body {
    padding: 30px 10px 10px;
  }

  .cta-box {
    padding: 50px 0;
  }

  .cta-box-image {
    margin-top: -100px;
  }

  .cta-box-image figure img {
    max-width: 150px;
  }

  .faq-accordion {
    padding: 30px;
  }

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

  .testimonial-item {
    min-height: 470px;
    padding: 30px;
  }

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

  .post-item-tags {
    top: 30px;
    left: 30px;
  }

  .post-item-body {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .approach-item {
    padding: 30px;
  }

  .approach-item .icon-box img {
    max-width: 100px;
  }

  .approach-item-image {
    margin-bottom: 60px;
  }

  .value-counter-box {
    padding: 20px;
  }

  .skills-progress-bar {
    margin-bottom: 30px;
  }

  .skills-progress-bar .skill-data {
    margin-bottom: 15px;
  }

  .values-content-footer {
    padding-top: 40px;
    margin-top: 40px;
  }

  .page-category-list h3,
  .page-category-list ul {
    padding: 20px;
  }

  .sidebar-cta-title {
    padding: 20px;
  }

  .sidebar-cta-body {
    padding: 30px;
  }

  .sidebar-cta-body-image figure {
    margin: 0 -30px -30px 0;
  }

  .post-content {
    max-width: 1100px;
  }

  .project-category-item-list {
    padding: 20px;
  }

  .project-feature-item {
    padding: 20px;
  }

  .project-feature-item-image {
    margin: 0 -20px -20px;
  }

  .team-experience-item-list {
    gap: 20px;
  }

  .team-experience-item {
    width: calc(50% - 10px);
    padding: 12px;
    gap: 10px;
  }

  .team-experience-item-content {
    width: calc(100% - 50px);
  }

  .team-skills-box,
  .team-values-info {
    width: 100%;
  }

  .team-values-info-list ul li {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0px;
  }

  .hero-info-item {
    width: calc(50% - 15px);
  }

  .hero-info-item.box-1 {
    width: 100%;
  }

  .about-us-image-box {
    height: auto;
    margin: 0 0 30px;
  }

  .about-us-image,
  .about-us-image figure,
  .about-us-image img {
    height: auto;
  }

  .about-us-image-box-1 .about-us-image img {
    aspect-ratio: 1 / 1.02;
  }

  .about-us-image-box-2 .about-us-image img {
    aspect-ratio: 1 / 1.05;
  }

  .about-video-image img {
    aspect-ratio: 1 / 0.5;
  }

  .what-we-do-content {
    margin-bottom: 30px;
  }

  .what-we-do-image {
    max-width: 540px;
    margin: 0 auto;
  }

  .watch-video-circle {
    margin-top: 100px;
  }

  .feature-item {
    gap: 30px;
  }

  .feature-item-shape-image figure {
    width: 170px;
    height: 85px;
  }

  .our-faqs-content {
    height: auto;
    padding: 0;
    margin-bottom: 30px;
  }

  .our-testimonials {
    background-size: 400px auto;
  }

  .our-testimonial-content {
    position: initial;
    margin-bottom: 40px;
  }

  .testimonial-item {
    min-height: 400px;
  }

  .testimonial-author-content {
    margin-top: 20px;
    padding-top: 20px;
  }

  .about-footer {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .footer-working-hours {
    margin-top: 20px;
    padding-top: 20px;
  }

  .footer-links-box {
    gap: 30px;
  }

  .footer-social-links {
    padding-top: 30px;
  }

  .values-image-box {
    margin: 0 0 30px 0;
    height: auto;
  }

  .values-image {
    height: auto;
  }

  .values-image img {
    height: auto;
    aspect-ratio: 1 / 0.7;
  }

  .our-values-content {
    margin-left: 0;
  }

  .team-item-image img {
    aspect-ratio: 1 / 1.15;
  }

  .team-item-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .page-single-sidebar {
    margin: 0;
  }

  .page-category-list ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .sidebar-cta-body {
    padding: 20px;
  }

  .sidebar-cta-body-content ul li {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .sidebar-cta-body-content ul li img {
    max-width: 24px;
    margin-right: 10px;
  }

  .sidebar-cta-body-image figure {
    margin: 0 -20px -20px 0;
  }

  .page-single-image {
    margin-bottom: 20px;
  }

  .service-entry {
    margin-bottom: 40px;
  }

  .service-why-choose-box,
  .service-offer-box,
  .service-process-box {
    margin-top: 40px;
  }

  .service-why-choose-item-list {
    margin-top: 30px;
    gap: 30px 20px;
  }

  .service-why-choose-item {
    width: calc(50% - 10px);
    gap: 15px;
  }

  .service-why-choose-item .icon-box {
    width: 45px;
    height: 45px;
  }

  .service-why-choose-item .icon-box img {
    max-width: 24px;
  }

  .service-why-choose-item-content {
    width: calc(100% - 60px);
  }

  .service-offer-item-list {
    margin-top: 30px;
  }

  .service-offer-item-image img {
    aspect-ratio: 1 / 0.95;
  }

  .service-offer-item-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .service-process-box {
    padding: 30px;
  }

  .service-process-image-content {
    margin-top: 30px;
  }

  .service-process-content,
  .service-process-image {
    width: 100%;
  }

  .service-process-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .project-category-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .project-category-item-content h4 {
    width: 100%;
  }

  .project-entry {
    margin-bottom: 40px;
  }

  .project-features-box,
  .project-process-box,
  .project-issue-box {
    margin-top: 40px;
  }

  .project-feature-item-list {
    margin-top: 30px;
  }

  .project-feature-item {
    width: calc(50% - 15px);
    gap: 30px;
  }

  .project-feature-item-body .icon-box {
    margin-bottom: 20px;
  }

  .project-features-box .section-footer-text {
    margin-top: 30px;
  }

  .project-process-item-list {
    margin-top: 30px;
  }

  .project-process-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .project-issue-boxes {
    margin-top: 30px;
  }

  .team-sidebar-body,
  .team-sidebar-footer {
    padding: 20px;
  }

  .team-sidebar-body ul li span {
    width: 34%;
  }

  .team-member-about,
  .team-experience-box,
  .team-member-info-box {
    margin-bottom: 60px;
  }

  .team-member-about,
  .team-experience-box,
  .team-member-info-box {
    margin-bottom: 40px;
  }

  .team-member-info-box {
    gap: 40px;
  }

  .contact-us-content {
    margin-bottom: 30px;
  }

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

  .contact-us-form {
    margin-left: 0;
    padding: 35px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .btn-default {
    font-size: 16px;
    padding: 15px 51px 15px 16px;
  }

  .btn-default::before {
    width: 36px;
    height: 36px;
    right: 5px;
    background-size: 18px auto;
  }

  header.main-header {
    top: 0;
  }

  header.main-header .header-sticky.active {
    border-radius: 0;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .header-btn {
    display: none;
  }

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

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 40px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .hero {
    padding: 140px 0 150px;
  }

  .year-experience-circle img {
    max-width: 100px;
  }

  .hero-info-box {
    margin-top: -100px;
  }

  .hero-info-item.box-3 {
    padding: 20px;
  }

  .hero-info-header .icon-box {
    width: 50px;
    height: 50px;
  }

  .hero-info-header .icon-box img {
    max-width: 24px;
  }

  .hero-info-counter-box h2 {
    font-size: 40px;
  }

  .hero-info-bg-icon img {
    max-width: 80px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-body-item {
    gap: 15px;
  }

  .about-body-item .icon-box {
    width: 50px;
    height: 50px;
  }

  .about-body-item .icon-box img {
    max-width: 24px;
  }

  .about-body-item-content {
    width: calc(100% - 65px);
  }

  .about-us-footer {
    margin-top: 30px;
  }

  .about-footer-content-list ul li {
    margin-bottom: 10px;
  }

  .our-services {
    background-size: 250px auto;
    padding: 50px 0;
  }

  .service-item {
    gap: 15px;
  }

  .service-benefit-box {
    margin-top: 10px;
  }

  .service-benefit-list ul {
    gap: 15px;
  }

  .service-benefit-list ul li {
    padding: 6px 14px 6px 30px;
  }

  .service-benefit-list ul li::before {
    left: 14px;
  }

  .section-footer-text {
    margin-top: 10px;
  }

  .section-footer-text ul li {
    font-size: 18px;
  }

  .service-benefit-box .section-footer-text {
    margin-top: 20px;
  }

  .what-we-do {
    padding: 50px 0;
  }

  .what-we-do-item {
    padding: 20px;
  }

  .what-we-do-item .icon-box {
    height: 50px;
    width: 50px;
  }

  .what-we-do-item .icon-box img {
    max-width: 24px;
  }

  .what-we-do-btn {
    margin-top: 30px;
  }

  .what-we-do .section-footer-text {
    margin-top: 40px;
  }

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

  .watch-video-circle a img {
    max-width: 120px;
  }

  .our-features {
    padding: 50px 0;
  }

  .our-features .section-title h2 .feature-title-img-1 {
    width: 30px;
    height: 30px;
  }

  .our-features .section-title h2 .feature-title-img-1 img {
    max-width: 14px;
  }

  .our-features .section-title h2 .feature-title-img-2 img {
    max-width: 30px;
  }

  .our-features .section-title h2 .feature-title-img-3 img {
    max-width: 30px;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-item-list ul li {
    margin-bottom: 10px;
  }

  .feature-item-btn {
    margin-top: 30px;
  }

  .feature-item-image figure {
    margin: 0 -20px -20px -100px;
  }

  .feature-item-content h2 {
    font-size: 42px;
  }

  .our-pricing {
    padding: 50px 0;
  }

  .pricing-item,
  .pricing-item-header {
    padding: 15px;
  }

  .pricing-item-header .icon-box {
    height: 50px;
    width: 50px;
    margin-bottom: 20px;
  }

  .pricing-item-header .icon-box img {
    max-width: 24px;
  }

  .pricing-item-content p {
    margin-bottom: 10px;
  }

  .pricing-item-content h2 {
    font-size: 36px;
  }

  .pricing-item-content h2 sub {
    font-size: 18px;
  }

  .pricing-item-body {
    padding: 30px 5px 5px;
  }

  .pricing-item-list ul li {
    margin-bottom: 10px;
  }

  .pricing-item.highlighted-box .pricing-item-header::before {
    top: 15px;
    right: 15px;
    font-size: 14px;
    padding: 6px 12px;
  }

  .pricing-benefit-list {
    margin-top: 10px;
  }

  .pricing-benefit-list ul {
    gap: 15px 30px;
  }

  .our-projects {
    padding: 50px 0;
  }

  .project-nav {
    margin-bottom: 40px;
  }

  .project-nav ul {
    gap: 10px 32px;
  }

  .project-nav ul li a:before {
    right: -20px;
  }

  .project-item-content {
    bottom: 30px;
    right: 30px;
    left: 30px;
  }

  .project-item-btn {
    top: 30px;
    right: 30px;
  }

  .project-item-btn a {
    width: 50px;
    height: 50px;
  }

  .project-item-btn a img {
    max-width: 20px;
  }

  .cta-box {
    padding: 50px 0;
  }

  .cta-box-content {
    margin-right: 0;
  }

  .cta-box-items-list {
    padding-top: 30px;
  }

  .cta-box-item .icon-box {
    width: 50px;
    height: 50px;
  }

  .cta-box-item .icon-box img {
    max-width: 24px;
  }

  .cta-box-item-content {
    width: calc(100% - 70px);
  }

  .cta-box-btn {
    margin-top: 40px;
  }

  .cta-box-image {
    margin-top: -50px;
  }

  .cta-box-image figure img {
    max-width: 100px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .faq-accordion {
    padding: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 15px 44px 15px 20px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 20px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 15px 20px;
  }

  .our-testimonials {
    padding: 50px 0;
  }

  .our-testimonial-content {
    margin-bottom: 30px;
  }

  .testimonial-item {
    padding: 30px;
  }

  .testimonial-company-logo img {
    width: 100%;
    max-width: 150px;
  }

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

  .testimonial-slider .testimonial-pagination {
    margin-top: 30px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-item-tags {
    top: 20px;
    left: 20px;
  }

  .post-item-body {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .post-content-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .footer-scrolling-ticker {
    padding: 15px 0;
  }

  .scrolling-content span {
    font-size: 22px;
  }

  .footer-box {
    padding: 50px 0 0;
  }

  .footer-location-info,
  .footer-contact-links {
    max-width: 100%;
    width: calc(50% - 15px);
  }

  .footer-newsletter-form {
    max-width: 100%;
    width: 100%;
  }

  .footer-social-links ul li a {
    padding: 8px 12px;
  }

  .footer-social-links ul li a i {
    font-size: 18px;
  }

  .footer-copyright {
    padding: 30px 0;
    margin-top: 30px;
  }

  .footer-menu ul {
    gap: 10px 25px;
  }

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

  .page-header-box h1 {
    font-size: 40px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .approach-item {
    padding: 20px;
  }

  .approach-item .icon-box {
    top: -10px;
    right: -10px;
  }

  .approach-item .icon-box img {
    max-width: 70px;
  }

  .approach-item-image {
    margin-bottom: 30px;
  }

  .approach-item-content p {
    margin-top: 10px;
  }

  .approach-item-content ul {
    margin-top: 20px;
  }

  .approach-item-content ul li {
    margin-bottom: 10px;
  }

  .approach-item-list {
    padding-top: 30px;
    margin-top: 30px;
  }

  .our-values {
    padding: 50px 0;
  }

  .lets-together-circle img {
    max-width: 120px;
  }

  .value-counter-box {
    padding: 20px;
  }

  .value-counter-box .icon-box {
    width: 50px;
    height: 50px;
  }

  .value-counter-box .icon-box img {
    max-width: 24px;
  }

  .value-counter-box-content {
    width: calc(100% - 65px);
  }

  .value-counter-box-content h2 {
    font-size: 40px;
    margin-bottom: 5px;
  }

  .our-team {
    padding: 50px 0;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .page-single-sidebar {
    position: initial;
    margin-bottom: 30px;
  }

  .page-category-list {
    margin-bottom: 30px;
  }

  .page-category-list h3,
  .sidebar-cta-title {
    padding: 15px 20px;
  }

  .sidebar-cta-body-image {
    margin-top: 20px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .service-process-item {
    gap: 15px;
  }

  .service-process-item .icon-box {
    width: 50px;
    height: 50px;
  }

  .service-process-item .icon-box img {
    max-width: 24px;
  }

  .service-process-item-content {
    width: calc(100% - 65px);
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h2 {
    font-size: 36px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ol li,
  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-tags .tag-links a {
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-projects {
    padding: 50px 0 20px;
  }

  .page-project-single {
    padding: 50px 0;
  }

  .project-entry h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .project-entry p {
    margin-bottom: 15px;
  }

  .project-process-item {
    gap: 15px;
  }

  .project-process-item-no {
    width: 50px;
    height: 50px;
  }

  .project-process-item-no h4 {
    font-size: 24px;
  }

  .project-process-item-content {
    width: calc(100% - 65px);
  }

  .project-issue-box-title {
    margin-bottom: 20px;
  }

  .project-issue-item {
    margin-bottom: 15px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-sidebar-body ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .team-sidebar-footer {
    padding: 15px 20px;
  }

  .page-pricing {
    padding: 50px 0;
  }

  .page-testimonials {
    padding: 50px 0 20px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .page-faqs-catagery .page-single-faqs {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0;
  }

  .contact-info-item .icon-box {
    width: 50px;
    height: 50px;
  }

  .contact-info-item .icon-box img {
    max-width: 24px;
  }

  .contact-info-item-content {
    width: calc(100% - 70px);
  }

  .contact-form .form-control {
    padding: 15px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 450px;
  }

  .error-page {
    padding: 50px 0px;
  }

  .error-page-image {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-content-body {
    gap: 30px;
  }

  .video-play-button h3 {
    font-size: 16px;
  }

  .hero .year-experience-circle {
    display: none;
  }

  .hero-info-list {
    gap: 20px;
  }

  .hero-info-item {
    width: 100%;
  }

  .hero-info-item-content h3 {
    font-size: 18px;
  }

  .hero-info-header {
    margin-bottom: 30px;
  }

  .hero-info-counter-box h3 {
    font-size: 18px;
  }

  .hero-info-counter-box h2 {
    font-size: 28px;
  }

  .hero-info-bg-icon {
    bottom: -10px;
    right: -10px;
  }

  .hero-info-bg-icon img {
    max-width: 60px;
  }

  .about-us-image-box-1 .about-us-image img {
    aspect-ratio: 1 / 1.47;
  }

  .about-us-image-box-2 .about-us-image {
    margin-top: 40px;
    margin-left: -110px;
  }

  .about-us-body {
    gap: 20px;
    padding: 20px 15px;
    border-width: 5px;
  }

  .about-body-item {
    width: 100%;
  }

  .about-body-item-content h3 {
    font-size: 18px;
  }

  .about-body-item-content p {
    margin: 5px 0 0;
  }

  .about-us-footer-content {
    width: 100%;
  }

  .about-us-video-box {
    width: 100%;
  }

  .about-video-image img {
    aspect-ratio: 1 / 0.6;
  }

  .service-item-title h2,
  .service-item-title h3 {
    font-size: 18px;
  }

  .service-benefit-list ul li {
    padding: 4px 10px 4px 26px;
  }

  .service-benefit-list ul li::before {
    left: 10px;
  }

  .section-footer-text ul li {
    font-size: 16px;
  }

  .what-we-do-item-list {
    gap: 20px;
  }

  .what-we-do-item {
    width: 100%;
  }

  .our-story {
    padding: 50px 0;
  }

  .watch-video-circle {
    margin-top: 50px;
  }

  .watch-video-circle a img {
    max-width: 100px;
  }

  .feature-item-content h3 {
    font-size: 18px;
  }

  .feature-item-content h2 {
    font-size: 30px;
  }

  .feature-item-info-content p {
    margin-bottom: 5px;
  }

  .feature-item-info-content h3 {
    font-size: 20px;
  }

  .feature-item-btn {
    margin-top: 20px;
  }

  .feature-item-image figure {
    margin: 50px -20px -20px -50px;
  }

  .feature-item-image img {
    max-width: 200px;
  }

  .feature-item-tag-list ul li {
    padding: 3px 10px;
  }

  .pricing-item-content p,
  .pricing-item-list h3 {
    font-size: 18px;
  }

  .pricing-item-content h2 {
    font-size: 28px;
  }

  .pricing-item-content h2 sub {
    font-size: 16px;
  }

  .pricing-benefit-list ul {
    gap: 10px;
  }

  .pricing-benefit-list ul li {
    font-size: 14px;
  }

  .pricing-benefit-list ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .project-nav {
    margin-bottom: 30px;
  }

  .project-nav ul {
    gap: 10px 20px;
  }

  .project-nav ul li a {
    font-size: 14px;
  }

  .project-nav ul li a:before {
    width: 6px;
    height: 6px;
    right: -14px;
    top: 7px;
  }

  .project-item-content {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

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

  .cta-box-items-list {
    gap: 20px;
  }

  .cta-box-item {
    width: 100%;
  }

  .cta-box-btn {
    margin-top: 30px;
  }

  .cta-box-image {
    display: none;
  }

  .faq-accordion {
    padding: 20px;
  }

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

  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 36px 12px 12px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 18px;
    right: 10px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 12px;
  }

  .testimonial-item {
    min-height: 300px;
    padding: 20px;
  }

  .testimonial-author-content h3 {
    font-size: 18px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .scrolling-ticker-box {
    --gap: 15px;
  }

  .scrolling-content span {
    font-size: 20px;
  }

  .scrolling-content span img {
    max-width: 24px;
    margin-right: 15px;
  }

  .footer-working-hours h3,
  .footer-links h3,
  .footer-links p {
    margin-bottom: 15px;
  }

  .footer-working-hours ul li {
    margin-bottom: 10px;
  }

  .footer-location-info,
  .footer-contact-links {
    width: 100%;
  }

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

  .footer-social-links ul {
    gap: 15px;
  }

  .footer-social-links ul li a {
    font-size: 14px;
    gap: 6px;
    padding: 8px 10px;
  }

  .footer-social-links ul li a i {
    font-size: 16px;
  }

  .footer-copyright {
    justify-content: center;
    padding: 15px 0;
  }

  .footer-menu ul {
    gap: 10px 15px;
  }

  .page-header-box h1 {
    font-size: 28px;
  }

  .approach-item-list ul li {
    padding: 10px 12px;
  }

  .values-image-box {
    padding: 20px 20px 0 0;
  }

  .values-image img {
    aspect-ratio: 1 / 1.15;
  }

  .lets-together-circle a img {
    max-width: 90px;
  }

  .value-counter-box {
    padding: 15px;
  }

  .value-counter-box-content h2 {
    font-size: 28px;
  }

  .value-counter-box-content p {
    font-size: 14px;
  }

  .skills-progress-bar {
    margin-bottom: 20px;
  }

  .skills-progress-bar .skill-data .skill-title,
  .skills-progress-bar .skill-data .skill-no {
    font-size: 18px;
  }

  .values-content-footer {
    gap: 20px;
    padding-top: 30px;
    margin-top: 30px;
  }

  .values-item-author {
    gap: 10px;
  }

  .values-author-content h3 {
    font-size: 18px;
  }

  .sidebar-cta-body-content ul li {
    font-size: 16px;
  }

  .sidebar-cta-body-content ul li img {
    max-width: 20px;
  }

  .sidebar-cta-body-image img {
    max-width: 200px;
  }

  .page-single-image img {
    aspect-ratio: 1 / 0.65;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .service-entry ul {
    gap: 10px;
  }

  .service-entry ul li {
    width: 100%;
  }

  .service-why-choose-item {
    width: 100%;
  }

  .service-offer-item {
    width: 100%;
  }

  .service-process-image-content {
    gap: 20px;
  }

  .service-process-box {
    padding: 20px 15px;
  }

  .service-process-item .icon-box {
    width: 45px;
    height: 45px;
  }

  .service-process-item .icon-box img {
    max-width: 22px;
  }

  .service-process-item-content {
    width: calc(100% - 60px);
  }

  .post-single-meta ol li,
  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 18px;
  }

  .project-entry h2 {
    font-size: 28px;
  }

  .project-entry h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .project-feature-item {
    width: 100%;
  }

  .project-process-item {
    padding: 15px;
  }

  .project-issue-box-item {
    width: 100%;
  }

  .project-issue-box-item::before {
    display: none;
  }

  .project-issue-item h4 {
    margin-bottom: 5px;
  }

  .team-experience-item {
    width: 100%;
  }

  .team-experience-item-content h3 {
    font-size: 18px;
  }

  .team-values-info-list ul li {
    gap: 5px;
  }

  .team-values-info-list ul li span {
    width: 100%;
  }

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

  .contact-us-form {
    padding: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }
}

/************************************/
/***   34. Home - Version 2 css	  ***/
/************************************/

header.main-header.header-gold .header-sticky {
  background: transparent;
  backdrop-filter: initial;
  -webkit-backdrop-filter: initial;
  border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header.header-gold .header-sticky.active {
  background: var(--primary-color);
}

.hero-gold {
  background: var(--primary-color) url("../images/hero-gold-bg-shape.png")
    no-repeat;
  background-position: bottom center;
  background-size: auto;
  padding: 205px 0 100px;
}

.hero-content-gold {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-sub-heading-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-sub-heading-gold .satisfy-client-image {
  border-color: var(--white-color);
}

.hero-sub-heading-gold .satisfy-client-image figure img {
  max-width: 28px;
}

.hero-sub-heading-content-gold p {
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.hero-content-gold .section-title h1 {
  font-size: 70px;
}

.hero-content-gold .section-title p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content-body-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.hero-image-box-gold {
  position: relative;
  margin-top: 100px;
}

.hero-image-gold figure {
  display: block;
  border-radius: 10px;
}

.hero-image-gold figure img {
  width: 100%;
  aspect-ratio: 1 / 0.4764;
  object-fit: cover;
  border-radius: 10px;
}

.hero-client-box-gold {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 410px;
  background: var(--primary-color);
  border-radius: 10px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 30px;
  z-index: 2;
}

.hero-client-box-gold::before,
.hero-client-box-gold::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  mask: url("../images/hero-client-box-corner-shape-gold.svg");
  -webkit-mask: url("../images/hero-client-box-corner-shape-gold.svg");
  background-color: var(--primary-color);
  mask-repeat: no-repeat;
  mask-size: cover;
}

.hero-client-box-gold::before {
  top: -20px;
  right: 0;
}

.hero-client-box-gold::after {
  bottom: 0;
  left: -20px;
}

.hero-client-box-content-gold {
  max-width: 210px;
}

.hero-client-box-content-gold p {
  color: var(--white-color);
  margin: 0;
}

.hero-video-box-gold {
  position: absolute;
  bottom: 0;
  left: 60px;
  background: var(--dark-divider-color);
  backdrop-filter: blur(20px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(100%);
  border-radius: 10px 10px 0 0;
  text-align: center;
  width: 100%;
  max-width: 420px;
  padding: 15px;
  z-index: 2;
}

.hero-video-image-gold {
  position: relative;
}

.hero-video-image-gold figure,
.hero-video-image-gold figure a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  cursor: none;
}

.hero-video-image-gold figure img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.hero-video-box-gold:hover .hero-video-image-gold figure img {
  transform: scale(1.06);
}

.hero-video-image-gold .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-video-image-gold .video-play-button a {
  background: var(--accent-color);
  width: 50px;
  height: 50px;
}

.hero-video-image-gold .video-play-button a i {
  font-size: 20px;
  color: var(--primary-color);
}

.hero-video-image-gold .video-play-button a::after,
.hero-video-image-gold .video-play-button a::before {
  display: none;
}

.hero-video-content-gold {
  padding: 30px 20px 20px;
}

.hero-video-content-gold h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 500;
  color: var(--white-color);
}

.about-us-gold {
  padding: 100px 0;
}

.about-us-images-gold {
  display: flex;
  align-items: end;
  margin-right: 15px;
}

.about-us-image-gold {
  width: 100%;
}

.about-us-image-gold figure {
  display: block;
  border-radius: 10px;
}

.about-us-image-gold figure img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  border-radius: 10px;
}

.about-us-image-title-gold h2 {
  font-size: 86px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  cursor: none;
  color: var(--divider-color);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px currentColor;
}

.about-us-hightlighted-content {
  position: relative;
  background: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 20px 30px;
  overflow: hidden;
}

.about-us-hightlighted-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  width: 4px;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.about-us-hightlighted-content:hover:before {
  width: 100%;
}

.about-us-hightlighted-content h3 {
  position: relative;
  font-size: 20px;
  line-height: 1.4em;
  z-index: 1;
}

.about-body-items-list-gold {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-us-body-item-gold {
  width: calc(33.33% - 20px);
}

.about-us-body-item-gold .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.about-us-body-item-gold .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg) scale(0);
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.about-us-body-item-gold:hover .icon-box::before {
  transform: rotate(0deg) scale(1);
  border-radius: 0;
}

.about-us-body-item-gold .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: 0.4s ease-in-out;
  z-index: 1;
}

.about-us-body-item-gold:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.about-us-body-item-content-gold h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.about-us-footer-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 50px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.about-us-counter-box-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.about-us-counter-box-gold h2 {
  font-size: 60px;
}

.about-us-counter-box-gold p {
  max-width: 110px;
  margin: 0;
}

.our-services-gold {
  background: var(--secondary-color) url("../images/services-bg-shape-gold.png")
    no-repeat;
  background-position: top -18% right -18%;
  background-size: auto;
  padding: 100px 0;
}

.service-item-gold {
  position: relative;
  background: var(--white-color);
  border-radius: 10px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-item-gold:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.service-item-gold:hover::before,
.service-item-gold.active::before {
  top: auto;
  height: 100%;
}

.service-item-header-gold {
  position: relative;
  z-index: 1;
}

.service-item-gold .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 6px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  overflow: hidden;
}

.service-item-gold .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.service-item-gold.active .icon-box::before,
.service-item-gold:hover .icon-box::before {
  top: auto;
  height: 100%;
}

.service-item-gold .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: 0.4s ease-in-out;
  z-index: 1;
}

.service-item-gold.active .icon-box img,
.service-item-gold:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.service-item-content-gold p {
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-content-gold p,
.service-item-gold:hover .service-item-content-gold p {
  color: var(--primary-color);
}

.service-item-body-gold {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
  z-index: 1;
}

.service-item-title-gold {
  width: calc(100% - 50px);
}

.service-item-title-gold h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.service-item-title-gold h2 a {
  color: inherit;
}

.service-item-btn-gold a {
  display: inline-block;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-btn-gold a,
.service-item-gold:hover .service-item-btn-gold a {
  border-color: var(--primary-color);
}

.service-item-btn-gold a img {
  width: 100%;
  max-width: 20px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-btn-gold a img,
.service-item-gold:hover .service-item-btn-gold a img {
  filter: brightness(0) invert(0);
}

.service-item-btn-gold a:hover img {
  transform: rotate(0deg);
}

.what-we-do-gold {
  padding: 100px 0;
}

.what-we-item-gold {
  background: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px;
}

.what-we-item-gold.box-1 {
  padding: 10px;
}

.what-we-item-header-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
}

.what-we-item-gold.box-1 .what-we-item-title-gold {
  width: calc(100% - 55px);
}

.what-we-item-title-gold h3 {
  font-size: 20px;
}

.what-we-item-header-gold .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.what-we-item-header-gold .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg) scale(0);
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.what-we-item-gold:hover .what-we-item-header-gold .icon-box::before {
  transform: rotate(0deg) scale(1);
  border-radius: 0;
}

.what-we-item-gold .what-we-item-header-gold .icon-box img {
  position: relative;
  width: 100%;
  max-width: 20px;
  transition: 0.4s ease-in-out;
  z-index: 1;
}

.what-we-item-gold:hover .what-we-item-header-gold .icon-box img {
  filter: brightness(0) invert(1);
}

.what-we-item-image-gold figure {
  display: block;
  border-radius: 10px;
}

.what-we-item-image-gold figure img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 10px;
}

.what-we-item-gold.box-2 .what-we-item-header-gold {
  align-items: start;
  margin-bottom: 50px;
  padding: 0;
}

.what-we-item-shape-image-gold figure {
  display: block;
  mask-size: cover;
  mask-position: center center;
  mask-repeat: no-repeat;
  width: 100px;
  height: 70px;
  mask-image: url("../images/what-we-item-bg-shape-image-1-gold.svg");
  background-image: url("../images/what-we-item-bg-shape-image-1-gold.svg");
}

.what-we-item-shape-image-gold img {
  width: 100%;
  object-fit: cover;
}

.what-we-item-btn-gold a {
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.what-we-item-btn-gold:hover a {
  background: var(--accent-color);
}

.what-we-item-btn-gold a img {
  width: 100%;
  max-width: 20px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.what-we-item-btn-gold:hover a img {
  filter: brightness(0) invert(0);
  transform: rotate(0deg);
}

.what-we-counter-box-gold {
  position: relative;
  margin-bottom: 30px;
}

.what-we-counter-item-gold {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white-color);
  border-radius: 10px;
  text-align: center;
  padding: 25px;
}

.what-we-counter-item-gold h2 {
  font-size: 50px;
  line-height: 1em;
}

.what-we-counter-item-gold p {
  margin: 5px 0 0 0;
}

.what-we-item-gold.box-4 .what-we-item-title-gold,
.what-we-item-gold.box-4 .what-we-item-shape-image-gold {
  margin-bottom: 20px;
}

.what-we-item-gold.box-4 .what-we-item-shape-image-gold figure {
  width: 100px;
  height: 50px;
  mask-image: url(../images/what-we-item-bg-shape-image-2-gold.svg);
  background-image: url(../images/what-we-item-bg-shape-image-2-gold.svg);
}

.what-we-item-body-gold {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.learn-more-circle-gold a {
  display: inline-block;
  border-radius: 50%;
}

.learn-more-circle-gold a img {
  width: 100%;
  max-width: 95px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

.learn-more-circle-gold a:hover img {
  animation-play-state: paused;
}

.what-we-item-body-image-gold {
  margin: 0 -30px -30px 0;
}

.what-we-item-body-image-gold img {
  width: 100%;
  max-width: 165px;
}

.what-we-contect-list-gold {
  text-align: center;
  margin-top: 30px;
}

.what-we-contect-list-gold h3 {
  font-size: 20px;
}

.what-we-contect-list-gold ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.what-we-contect-list-gold ul li {
  display: inline-block;
}

.what-we-contect-list-gold ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.what-we-contect-list-gold ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.what-we-contect-list-gold ul li a:hover {
  color: var(--accent-color);
}

.why-choose-us-gold {
  padding: 100px 0;
}

.why-choose-us-boxes-gold {
  margin-right: 15px;
}

.why-choose-item-gold {
  background: var(--dark-divider-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.why-choose-item-image-gold {
  width: 50%;
}

.why-choose-item-image-gold figure {
  display: block;
  border-radius: 10px;
}

.why-choose-item-image-gold figure img {
  width: 100%;
  aspect-ratio: 1 / 0.97;
  object-fit: cover;
  border-radius: 10px;
}

.why-choose-item-body-gold {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px 20px 40px;
}

.why-choose-item-btn-gold a {
  border: 1px solid var(--white-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.why-choose-item-btn-gold:hover a {
  background: var(--white-color);
}

.why-choose-item-btn-gold a img {
  width: 100%;
  max-width: 24px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.why-choose-item-btn-gold:hover a img {
  filter: brightness(1) invert(1);
  transform: rotate(0deg);
}

.why-choose-item-content-gold h3 {
  font-size: 20px;
  color: var(--white-color);
}

.why-choose-item-content-gold p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

.why-choose-counter-list-gold {
  background: var(--dark-divider-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 40px;
  margin-top: 30px;
}

.why-choose-counter-item-gold {
  position: relative;
  width: calc(33.33% - 40px);
  text-align: center;
}

.why-choose-counter-item-gold::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.why-choose-counter-item-gold:last-child:before,
.why-choose-counter-item-gold:nth-child(3n + 3):before {
  display: none;
}

.why-choose-counter-item-gold h2 {
  font-size: 50px;
  line-height: 1em;
  color: var(--white-color);
}

.why-choose-counter-item-gold p {
  color: var(--white-color);
  margin: 5px 0 0 0;
}

.why-choose-body-gold {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.why-choose-body-item-gold {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: var(--dark-divider-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 10px;
}

.why-choose-body-item-gold .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 10px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-choose-body-item-gold .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg) scale(0);
  background: var(--white-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.why-choose-body-item-gold:hover .icon-box::before {
  transform: rotate(0deg) scale(1);
  border-radius: 0;
}

.why-choose-body-item-gold .icon-box img {
  position: relative;
  width: 100%;
  max-width: 40px;
  z-index: 1;
}

.why-choose-body-item-content-gold {
  width: calc(100% - 100px);
}

.why-choose-body-item-content-gold h2 {
  font-size: 20px;
  color: var(--white-color);
}

.why-choose-body-item-content-gold p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

.why-choose-us-btn-gold {
  margin-top: 50px;
}

.our-features-gold {
  background: linear-gradient(
    180deg,
    var(--secondary-color) 50%,
    var(--white-color) 50%
  );
  padding: 100px 0;
}

.feature-item-gold {
  background: var(--white-color);
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px 40px 0 40px;
}

.feature-item-content-gold h3 {
  font-size: 20px;
}

.feature-item-content-gold p {
  margin: 10px 0 0 0;
}

.feature-item-image-gold {
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
}

.feature-item-image-gold figure {
  display: block;
  border-radius: 10px 10px 0 0;
}

.feature-item-image-gold img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.cta-box-gold {
  background: var(--secondary-color) url(../images/cta-box-bg-gold.png)
    no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  padding: 100px 0 50px;
}

.cta-box-image-gold {
  margin-right: 15px;
}

.cta-box-image-gold figure {
  display: block;
  border-radius: 10px;
}

.cta-box-image-gold img {
  width: 100%;
  aspect-ratio: 1 / 0.754;
  object-fit: cover;
  border-radius: 10px;
}

.cta-box-list-gold ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.cta-box-list-gold ul li {
  position: relative;
  color: var(--primary-color);
  line-height: 1.4em;
  padding-left: 16px;
}

.cta-box-list-gold ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.cta-box-btn-gold {
  margin-top: 40px;
}

.our-projects {
  padding: 100px 0 70px;
}

.project-item-gold {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.project-item-image-box-gold {
  position: relative;
}

.project-item-image-gold {
  border-radius: 10px;
  overflow: hidden;
}

.project-item-image-gold figure {
  display: block;
  cursor: none;
}

.project-item-image-gold img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.project-item-gold:hover .project-item-image-gold img {
  transform: scale(1.08);
}

.project-item-tag-gold {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}

.project-item-tag-gold a {
  position: relative;
  display: inline-block;
  background: var(--white-color);
  border-radius: 100px;
  padding: 10px 15px 10px 30px;
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.project-item-tag-gold a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.project-item-body-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 20px 0 20px;
}

.project-item-content-gold {
  max-width: 500px;
}

.project-item-content-gold h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.project-item-content-gold h2 a {
  color: inherit;
}

.project-readmore-btn-gold a {
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.project-readmore-btn-gold:hover a {
  background: var(--accent-color);
}

.project-readmore-btn-gold a img {
  width: 100%;
  max-width: 20px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.project-readmore-btn-gold:hover a img {
  filter: brightness(0) invert(0);
  transform: rotate(0deg);
}

.intro-video-gold {
  position: relative;
  background: url("../images/intro-video-bg-gold.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0 0;
  overflow: hidden;
}

.intro-video-gold::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 60%;
  z-index: 1;
}

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

.intro-video-box-gold {
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.intro-video-header-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.intro-video-header-gold .section-title {
  max-width: 750px;
  margin: 0;
}

.intro-video-button-gold {
  text-align: right;
}

.intro-video-button-gold a {
  display: inline-block;
  border-radius: 50%;
  cursor: none;
}

.intro-video-button-gold a img {
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

.intro-video-button-gold a:hover img {
  animation-play-state: paused;
}

.intro-video-counter-box-gold {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 100px;
  border: 1px solid var(--dark-divider-color);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 0 20px;
}

.intro-video-counter-item-gold {
  position: relative;
  width: calc(20% - 80px);
  text-align: center;
  padding: 40px 0;
}

.intro-video-counter-item-gold::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50px;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.intro-video-counter-item-gold:last-child:before,
.intro-video-counter-item-gold:nth-child(5n + 5):before {
  display: none;
}

.intro-video-counter-item-gold h2 {
  font-size: 50px;
  color: var(--white-color);
}

.intro-video-counter-item-gold p {
  color: var(--white-color);
  margin: 5px 0 0 0;
}

.our-pricing-gold {
  padding: 100px 0;
}

.pricing-item-gold {
  background-color: var(--secondary-color);
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 15px;
}

.pricing-item-header-gold {
  padding: 25px 25px 30px 25px;
}

.pricing-item-content-gold h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.pricing-item-content-gold h2 {
  font-size: 50px;
  color: var(--accent-color);
}

.pricing-item-content-gold h2 sub {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text-color);
  bottom: 0;
}

.pricing-item-content-gold p {
  margin: 20px 0 0 0;
}

.pricing-item-btn-gold {
  margin-top: 30px;
}

.pricing-item-list-gold {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 40px;
}

.pricing-item-list-gold h3 {
  font-size: 20px;
}

.pricing-item-list-gold ul {
  list-style: none;
  border-top: 1px solid var(--divider-color);
  padding: 20px 0 0 0;
  margin: 20px 0 0 0;
}

.pricing-item-list-gold ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.pricing-item-list-gold ul li:last-child {
  margin-bottom: 0;
}

.pricing-item-list-gold ul li:before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.pricing-benefit-list-gold {
  margin-top: 30px;
}

.pricing-benefit-list-gold ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px 40px;
}

.pricing-benefit-list-gold ul li {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.pricing-benefit-list-gold ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.our-testimonials-gold {
  background: var(--secondary-color)
    url("../images/testimonials-bg-shape-gold.png") no-repeat;
  background-position: bottom left;
  background-size: auto;
  padding: 100px 0;
}

.our-testimonials-content-gold {
  position: sticky;
  top: 40px;
}

.testimonial-item-box-gold {
  background: var(--white-color);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.testimonial-item-gold {
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 10px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
}

.testimonials-rating-gold {
  margin-bottom: 20px;
}

.testimonials-rating-gold i {
  color: var(--accent-color);
  font-size: 16px;
}

.testimonial-content-gold p {
  margin: 0;
}

.testimonial-item-body-gold {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
}

.testimonial-author-gold {
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
}

.author-image-gold {
  margin-right: 20px;
}

.author-image-gold figure {
  display: block;
  border-radius: 50%;
}

.author-image-gold img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.author-content-gold {
  width: calc(100% - 70px);
}

.author-content-gold h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.author-content-gold p {
  text-transform: capitalize;
  margin: 0;
}

.testimonial-quote-gold img {
  width: 100%;
  max-width: 40px;
}

.main-footer-gold {
  background-image: url("../images/footer-bg-shape-gold.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto;
  padding: 100px 0 0;
}

.footer-header-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.footer-header-gold .section-title {
  max-width: 730px;
  margin-bottom: 0;
}

.footer-contact-list-gold {
  text-align: right;
}

.footer-contact-list-gold h3 {
  font-size: 30px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.footer-contact-list-gold h3:last-child {
  margin-bottom: 0;
}

.footer-contact-list-gold h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-contact-list-gold h3 a:hover {
  color: var(--accent-color);
}

.about-footer-gold {
  margin-right: 5.208vw;
}

.footer-logo-gold img {
  width: 100%;
  max-width: 192px;
}

.about-footer-content-gold {
  margin-top: 30px;
}

.about-footer-content-gold p {
  color: var(--white-color);
  margin: 0;
}

.footer-links-box-gold {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-links-gold {
  max-width: 35%;
}

.footer-links-gold h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.footer-links-gold p {
  margin-bottom: 15px;
  color: var(--white-color);
}

.footer-links-gold ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-gold ul li {
  position: relative;
  text-transform: capitalize;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 16px;
  margin-bottom: 15px;
}

.footer-links-gold ul li:last-child {
  margin-bottom: 0;
}

.footer-links-gold ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--accent-color);
  width: 6px;
  height: 6px;
}

.footer-links-gold ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-links-gold ul li a:hover {
  color: var(--accent-color);
}

.footer-newsletter-form-gold p {
  margin-bottom: 20px;
}

.footer-newsletter-form-gold .form-group {
  display: flex;
  flex-wrap: wrap;
}

.footer-newsletter-form-gold .form-group .form-control {
  width: calc(100% - 50px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
  color: var(--white-color);
  background: transparent;
  border: 1px solid var(--dark-divider-color);
  border-radius: 100px;
  outline: none;
  box-shadow: none;
  padding: 14px 24px;
}

.footer-newsletter-form-gold .form-group .form-control::placeholder {
  color: var(--white-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover {
  background: var(--accent-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 2px;
  transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover i {
  color: var(--primary-color);
}

.footer-copyright-gold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 60px;
  padding: 60px 0;
}

.footer-copyright-text-gold p {
  color: var(--white-color);
  margin: 0;
}

.footer-social-links-gold ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social-links-gold ul li a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.footer-social-links-gold ul li a:hover {
  background: var(--accent-color);
}

.footer-social-links-gold ul li a i {
  font-size: 18px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.footer-social-links-gold ul li a:hover i {
  color: var(--primary-color);
}

@media only screen and (max-width: 1440px) {
  .hero-client-box-gold {
    width: 390px;
    padding: 30px 20px;
  }

  .hero-video-box-gold {
    left: 40px;
  }

  .about-body-items-list-gold {
    gap: 20px;
  }

  .about-us-body-item-gold {
    width: calc(33.33% - 13.33px);
  }

  .service-item-gold {
    min-height: 400px;
    padding: 30px 25px;
  }

  .what-we-counter-item-gold {
    padding: 20px;
  }

  .why-choose-item-body-gold {
    padding-left: 30px;
  }

  .why-choose-counter-list-gold {
    padding: 30px;
  }

  .feature-item-gold {
    min-height: 470px;
    padding: 30px 30px 0 30px;
  }

  .intro-video-box-gold {
    min-height: 600px;
  }

  .intro-video-counter-item-gold {
    padding: 30px 0;
  }

  .pricing-item-header-gold {
    padding: 25px 20px 30px 20px;
  }

  .pricing-item-list-gold {
    padding: 30px 25px;
  }

  .testimonial-item-gold {
    padding: 30px;
  }

  .about-footer-gold {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .about-us-images-gold {
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .what-we-item-image-gold figure img {
    aspect-ratio: 1 / 0.9;
  }

  .what-we-item-body-image-gold img {
    max-width: 130px;
  }

  .why-choose-us-content-gold {
    margin-bottom: 30px;
  }

  .why-choose-us-btn-gold {
    margin-top: 30px;
  }

  .why-choose-us-boxes-gold {
    margin: 0;
  }

  .project-item-content-gold {
    width: calc(100% - 60px);
    max-width: 100%;
  }

  .intro-video-button-gold a img {
    max-width: 140px;
  }

  .intro-video-counter-box-gold {
    gap: 0 30px;
  }

  .intro-video-counter-item-gold {
    width: calc(20% - 24px);
    padding: 20px 0;
  }

  .intro-video-counter-item-gold::before {
    right: -15px;
  }

  .our-testimonials-content-gold {
    position: initial;
    margin-bottom: 40px;
  }

  .footer-header-gold .section-title {
    max-width: 600px;
  }

  .footer-contact-list-gold h3 {
    font-size: 26px;
  }

  .about-footer-gold {
    margin: 0 0 40px 0;
  }

  .about-footer-content-gold {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-gold {
    padding: 140px 0 50px;
  }

  .hero-content-gold .section-title h1 {
    font-size: 50px;
  }

  .hero-content-body-gold {
    margin-top: 0;
  }

  .hero-image-box-gold {
    margin-top: 50px;
  }

  .hero-image-gold figure img {
    aspect-ratio: 1 / 0.7;
  }

  .hero-client-box-gold {
    width: 330px;
    padding: 20px 15px;
  }

  .satisfy-client-image figure img {
    max-width: 40px;
  }

  .hero-client-box-content-gold {
    max-width: 180px;
  }

  .hero-client-box-content-gold p {
    font-size: 14px;
  }

  .hero-video-box-gold {
    left: 15px;
    max-width: 280px;
    padding: 10px;
  }

  .hero-video-content-gold {
    padding: 20px 10px 10px;
  }

  .hero-video-content-gold h3 {
    font-size: 18px;
  }

  .about-us-gold {
    padding: 50px 0;
  }

  .about-us-hightlighted-content {
    margin-bottom: 30px;
  }

  .about-us-footer-gold {
    margin-top: 30px;
    padding-top: 30px;
  }

  .about-us-counter-box-gold h2 {
    font-size: 45px;
  }

  .our-services-gold {
    padding: 50px 0;
    background-size: 350px auto;
  }

  .what-we-do-gold {
    padding: 50px 0;
  }

  .what-we-counter-item-gold h2 {
    font-size: 40px;
  }

  .what-we-contect-list-gold {
    margin-top: 10px;
  }

  .what-we-contect-list-gold ul {
    margin-top: 15px;
  }

  .why-choose-us-gold {
    padding: 50px 0;
  }

  .why-choose-body-item-gold {
    gap: 15px;
  }

  .why-choose-body-item-gold .icon-box {
    width: 50px;
    height: 50px;
  }

  .why-choose-body-item-gold .icon-box img {
    max-width: 24px;
  }

  .why-choose-body-item-content-gold {
    width: calc(100% - 65px);
  }

  .why-choose-item-gold {
    padding: 10px;
  }

  .why-choose-counter-item-gold h2 {
    font-size: 40px;
  }

  .our-features-gold {
    padding: 50px 0;
  }

  .cta-box-gold {
    padding: 50px 0;
  }

  .cta-box-image-gold {
    margin: 0 0 30px 0;
  }

  .cta-box-btn-gold {
    margin-top: 30px;
  }

  .our-projects {
    padding: 50px 0 20px;
  }

  .project-item-tag-gold {
    top: 20px;
    left: 20px;
  }

  .project-item-tag-gold a {
    padding: 8px 10px 8px 24px;
  }

  .project-item-tag-gold a::before {
    left: 10px;
  }

  .project-item-body-gold {
    padding: 15px 5px 0 5px;
  }

  .project-item-content-gold h2 {
    font-size: 18px;
  }

  .intro-video-gold {
    padding: 50px 0 0;
  }

  .intro-video-box-gold {
    min-height: 500px;
  }

  .intro-video-button-gold {
    width: 100%;
    text-align: center;
  }

  .intro-video-counter-box-gold {
    padding: 0 15px;
  }

  .intro-video-counter-item-gold h2 {
    font-size: 40px;
  }

  .our-pricing-gold {
    padding: 50px 0;
  }

  .pricing-item-gold {
    padding: 10px;
  }

  .pricing-item-header-gold {
    padding: 10px 10px 20px 10px;
  }

  .pricing-item-content-gold h3 {
    margin-bottom: 15px;
  }

  .pricing-item-content-gold h2 {
    font-size: 40px;
  }

  .pricing-item-content-gold p {
    margin-top: 10px;
  }

  .pricing-item-btn-gold {
    margin-top: 20px;
  }

  .pricing-item-list-gold {
    padding: 20px;
  }

  .pricing-item-list-gold ul li {
    margin-bottom: 10px;
  }

  .pricing-item-list-gold ul li::before {
    font-size: 16px;
  }

  .pricing-benefit-list-gold {
    margin-top: 10px;
  }

  .pricing-benefit-list-gold ul {
    gap: 15px 30px;
  }

  .our-testimonials-gold {
    background-size: 400px auto;
    padding: 50px 0;
  }

  .our-testimonials-content-gold {
    margin-bottom: 30px;
  }

  .testimonial-item-gold {
    min-height: 300px;
    gap: 20px;
  }

  .testimonial-item-body-gold {
    padding-top: 20px;
  }

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

  .footer-header-gold {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .footer-header-gold .section-title {
    max-width: 100%;
  }

  .footer-contact-list-gold {
    text-align: left;
  }

  .footer-links-gold {
    max-width: 40%;
  }

  .footer-links-gold h3 {
    margin-bottom: 15px;
  }

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

  .footer-newsletter-form-gold p {
    margin-bottom: 15px;
  }

  .footer-copyright-gold {
    margin-top: 40px;
    padding: 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content-gold .section-title h1 {
    font-size: 30px;
  }

  .hero-content-body-gold {
    gap: 20px;
  }

  .hero-client-box-gold {
    position: initial;
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
  }

  .hero-video-box-gold {
    position: initial;
  }

  .hero-client-box-gold::before,
  .hero-client-box-gold::after {
    display: none;
  }

  .hero-video-box-gold {
    max-width: 100%;
    margin: 20px 0 -50px;
  }

  .about-us-image-title-gold h2 {
    font-size: 44px;
  }

  .about-us-hightlighted-content {
    padding: 20px 15px;
  }

  .about-us-hightlighted-content h3 {
    font-size: 18px;
  }

  .about-us-body-item-gold {
    width: calc(50% - 10px);
  }

  .about-us-body-item-gold .icon-box {
    margin-bottom: 10px;
  }

  .about-us-body-item-content-gold h3 {
    font-size: 18px;
  }

  .about-us-footer-gold {
    gap: 20px;
  }

  .about-us-counter-box-gold {
    gap: 10px;
  }

  .about-us-counter-box-gold h2 {
    font-size: 30px;
  }

  .about-us-counter-box-gold p {
    font-size: 14px;
  }

  .service-item-gold {
    min-height: 350px;
    gap: 20px;
    padding: 20px;
  }

  .service-item-gold .icon-box {
    margin-bottom: 15px;
  }

  .service-item-body-gold {
    padding-top: 20px;
  }

  .service-item-title-gold h2 {
    font-size: 18px;
  }

  .what-we-item-gold {
    padding: 20px;
  }

  .what-we-item-header-gold {
    padding: 15px 15px 20px 15px;
  }

  .what-we-item-title-gold h3 {
    font-size: 18px;
  }

  .what-we-counter-item-gold h2 {
    font-size: 30px;
  }

  .what-we-item-body-image-gold {
    margin: 0 -20px -20px 0;
  }

  .what-we-item-body-image-gold img {
    max-width: 100px;
  }

  .what-we-contect-list-gold ul {
    gap: 15px;
  }

  .what-we-contect-list-gold ul li {
    font-size: 14px;
  }

  .what-we-contect-list-gold ul li img {
    max-width: 18px;
    margin-right: 5px;
  }

  .why-choose-body-item-content-gold h2 {
    font-size: 18px;
  }

  .why-choose-item-image-gold {
    width: 100%;
  }

  .why-choose-item-body-gold {
    width: 100%;
    padding: 20px 15px 10px;
    flex-direction: column-reverse;
  }

  .why-choose-counter-list-gold {
    padding: 20px;
    gap: 20px;
  }

  .why-choose-counter-item-gold {
    width: calc(33.33% - 13.33px);
  }

  .why-choose-counter-item-gold::before {
    right: -10px;
  }

  .why-choose-counter-item-gold h2 {
    font-size: 30px;
  }

  .why-choose-counter-item-gold p {
    font-size: 14px;
  }

  .feature-item-gold {
    min-height: initial;
    padding: 20px 20px 0 20px;
  }

  .feature-item-image-gold {
    max-width: 240px;
  }

  .intro-video-button-gold a img {
    max-width: 100px;
  }

  .intro-video-counter-item-gold {
    width: calc(50% - 15px);
  }

  .intro-video-counter-item-gold:last-child:before,
  .intro-video-counter-item-gold:nth-child(5n + 5):before {
    display: block;
  }

  .intro-video-counter-item-gold:nth-child(2n + 2):before {
    display: none;
  }

  .intro-video-counter-item-gold h2 {
    font-size: 30px;
  }

  .pricing-item-content-gold h2 {
    font-size: 30px;
  }

  .pricing-item-list-gold {
    padding: 20px 15px;
  }

  .pricing-benefit-list-gold ul {
    gap: 10px;
  }

  .pricing-benefit-list-gold ul li {
    font-size: 14px;
  }

  .pricing-benefit-list-gold ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .testimonial-item-box-gold {
    padding: 10px;
  }

  .testimonial-item-gold {
    padding: 20px;
  }

  .testimonials-rating-gold {
    margin-bottom: 15px;
  }

  .author-image-gold {
    margin-right: 10px;
  }

  .author-content-gold {
    width: calc(100% - 60px);
  }

  .author-content-gold h3 {
    font-size: 18px;
  }

  .footer-header-gold {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-contact-list-gold h3 {
    font-size: 22px;
  }

  .about-footer-gold {
    margin-bottom: 30px;
  }

  .footer-links-gold {
    max-width: 100%;
  }

  .footer-copyright-gold {
    margin-top: 30px;
    padding: 15px 0;
    flex-direction: column-reverse;
  }
}

/************************************/
/***   35. Home - Version 3 css	  ***/
/************************************/

.main-header.header-silver {
  top: 30px;
}

.main-header.header-silver .header-sticky {
  border-radius: 10px;
  max-width: 1500px;
  margin: 0 auto;
}

header.main-header.header-silver .header-sticky.active {
  border-radius: 0 0 10px 10px;
}

.main-header.header-silver .navbar {
  padding: 25px 10px;
}

.hero-silver {
  background-image: url("../images/hero-bg-image-silver.png");
  background-position: center center;
  background-position: center center;
  background-size: cover;
  padding: 230px 0 195px;
  overflow: hidden;
}

.hero-content-silver {
  height: 100%;
  align-content: center;
}

.hero-content-body-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.hero-body-item-silver {
  width: calc(50% - 15px);
  background: var(--dark-divider-color);
  backdrop-filter: blur(30px) saturate(100%);
  -webkit-backdrop-filter: blur(30px) saturate(100%);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
}

.hero-body-item-silver .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 15px;
}

.hero-body-item-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.hero-body-item-silver:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.hero-body-item-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}

.hero-body-item-content-silver {
  width: calc(100% - 75px);
}

.hero-body-item-content-silver h3 {
  color: var(--white-color);
  font-size: 20px;
  line-height: 1.4em;
}

.hero-content-footer-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px 50px;
}

.hero-image-silver {
  height: 100%;
  align-content: end;
}

.hero-image-silver figure {
  display: block;
  border-radius: 10px 10px 0 0;
}

.hero-image-silver img {
  width: 100%;
  aspect-ratio: 1 / 1.073;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: -195px;
}

.about-us-silver {
  padding: 100px 0;
}

.about-us-image-box-silver {
  position: relative;
  height: 100%;
  margin-right: 15px;
}

.about-image-box-1-silver {
  height: 100%;
  padding-top: 40px;
}

.about-image-box-1-silver figure {
  height: 100%;
  display: block;
  border-radius: 10px;
}

.about-image-box-1-silver img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 0.955;
  object-fit: cover;
  border-radius: 10px;
}

.about-image-box-2-silver {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.about-image-box-2-silver figure {
  display: block;
  border-radius: 10px 10px 0 10px;
}

.about-image-box-2-silver img {
  width: 100%;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
  border-radius: 10px 10px 0 10px;
}

.about-counter-box-silver {
  position: absolute;
  width: 100%;
  max-width: 360px;
  bottom: 30px;
  left: 30px;
  background: var(--divider-color);
  backdrop-filter: blur(15px) saturate(100%);
  -webkit-backdrop-filter: blur(15px) saturate(100%);
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  border-radius: 10px;
  padding: 30px;
  z-index: 1;
}

.about-counter-silver h2 {
  font-size: 52px;
  font-weight: 700;
  color: var(--white-color);
}

.about-counter-silver p {
  color: var(--white-color);
  margin: 5px 0 0;
}

.about-counter-box-silver .satisfy-client-image {
  border-color: var(--white-color);
}

.about-counter-box-silver .satisfy-client-image img {
  max-width: 40px;
}

.about-us-content-silver {
  height: 100%;
  align-content: center;
}

.about-us-item-list-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.about-us-item-silver {
  width: calc(50% - 15px);
  background-color: var(--secondary-color);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.about-us-item-silver .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-us-item-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-us-item-silver:hover .icon-box::before {
  border-radius: 0;
  transform: rotate(0) scale(1);
}

.about-us-item-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.about-us-item-silver:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.about-us-item-content-silver {
  width: calc(100% - 75px);
}

.about-us-item-content-silver h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.about-us-body-silver .skills-progress-bar {
  margin-bottom: 40px;
}

.about-us-content-list-silver ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-us-content-list-silver ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.about-us-content-list-silver ul li:last-child {
  margin-bottom: 0;
}

.about-us-content-list-silver ul li:before {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.about-us-footer-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.about-author-Box-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.about-author-image-silver figure {
  display: block;
  border-radius: 50px;
}

.about-author-image-silver img {
  width: 100%;
  max-width: 50px;
  border-radius: 50px;
}

.about-author-content-silver h3 {
  font-size: 20px;
}

.about-author-content-silver p {
  margin: 5px 0 0;
}

.our-services-silver {
  background: var(--secondary-color) url("../images/service-bg-shape.png")
    no-repeat;
  background-position: top right;
  background-size: auto;
  padding: 100px 0;
}

.service-item-silver {
  background: var(--bg-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.service-item-header-silver {
  padding: 30px 30px 0;
}

.service-item-header-silver .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-item-header-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-item-silver:hover .service-item-header-silver .icon-box::before {
  transform: rotate(0) scale(1);
}

.service-item-header-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-item-silver:hover .service-item-header-silver .icon-box img {
  filter: brightness(0) invert(1);
}

.service-item-content-silver h3 {
  font-size: 20px;
}

.service-item-content-silver p {
  margin: 10px 0 0;
}

.service-item-image-silver a {
  display: block;
  cursor: none;
}

.service-item-image-silver figure {
  display: block;
  mask-image: url("../images/service-image-shap-silver.svg");
  background-image: url("../images/service-image-shap-silver.svg");
  mask-size: cover;
  mask-position: center center;
  mask-repeat: no-repeat;
  max-width: 355px;
  max-height: 175px;
  margin: 0 auto;
}

.service-item-image-silver figure img {
  width: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.service-item-silver:hover .service-item-image-silver figure img {
  transform: scale(1.06);
}

.what-we-do-silver {
  padding: 100px 0;
}

.what-we-do-box-silver {
  background-color: var(--secondary-color);
  border-radius: 10px;
  margin-right: 15px;
  padding: 30px;
  overflow: hidden;
}

.what-we-box-header-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}

.what-we-header-counter-silver {
  border-right: 1px solid var(--divider-color);
  padding-right: 20px;
  margin-right: 20px;
}

.what-we-header-counter-silver h2 {
  font-size: 52px;
  font-weight: 700;
}

.what-we-header-counter-silver p {
  margin: 5px 0 0 0;
}

.what-we-counter-info-silver {
  width: 50%;
}

.what-we-counter-info-silver p {
  margin-bottom: 0;
}

.what-we-body-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 30px;
}

.what-we-body-image-silver {
  width: calc(65% - 15px);
}

.what-we-body-image-silver figure {
  display: block;
  margin: 0 0 -30px -30px;
}

.what-we-body-image-silver img {
  width: 100%;
  aspect-ratio: 1 / 1.54;
  object-fit: cover;
}

.what-we-counter-box-silver {
  width: calc(35% - 15px);
}

.what-we-counter-box-title-silver h3 {
  font-size: 20px;
  line-height: 1.2em;
  margin-bottom: 40px;
}

.what-we-counter-item-silver {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.what-we-counter-item-silver:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.what-we-counter-item-silver h2 {
  font-size: 52px;
  font-weight: 700;
}

.what-we-counter-item-silver p {
  margin: 10px 0 0;
}

.what-we-content-body-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.what-we-content-image-silver {
  width: calc(44% - 15px);
  border-radius: 10px;
}

.what-we-content-image-silver figure {
  display: block;
  height: 100%;
  border-radius: 10px;
}

.what-we-content-image-silver img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.465;
  object-fit: cover;
  border-radius: 10px;
}

.what-we-items-btn-silver {
  width: calc(56% - 15px);
}

.what-we-item-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.what-we-item-silver:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.what-we-item-silver .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.what-we-item-silver .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.what-we-item-silver:hover .icon-box::before {
  transform: rotate(0) scale(1);
}

.what-we-item-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.what-we-item-silver:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.what-we-item-content-silver {
  width: calc(100% - 80px);
}

.what-we-item-content-silver h3 {
  font-size: 20px;
}

.what-we-item-content-silver p {
  margin: 10px 0 0 0;
}

.what-we-do-btn-silver {
  margin-top: 60px;
}

.our-award-silver {
  background-image: none;
  padding: 100px 0;
}

.award-title-box-silver {
  margin-right: 15px;
}

.award-counter-box-silver {
  background: url("../images/award-counter-bg-silver.png") no-repeat;
  background-position: center center;
  background-size: cover;
  max-width: 600px;
  text-align: center;
  padding: 70px;
  margin: 0 auto;
}

.award-counter-box-silver h2 {
  font-size: 100px;
  color: var(--white-color);
}

.award-counter-box-silver h3 {
  font-size: 20px;
  max-width: 330px;
  line-height: 1.4em;
  color: var(--white-color);
  margin: 10px auto 0;
}

.award-item-silver {
  background-color: var(--dark-divider-color);
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 40px;
}

.award-item-silver:last-child {
  margin-bottom: 0;
}

.award-item-silver .icon-box {
  position: relative;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.award-item-silver .icon-box::before {
  content: "";
  position: absolute;
  background: var(--white-color);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 50px;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.award-item-silver:hover .icon-box::before {
  transform: scale(1);
}

.award-item-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 74px;
  z-index: 1;
}

.award-item-content-silver {
  width: calc(100% - 120px);
}

.award-item-content-silver h3 {
  font-size: 20px;
  color: var(--white-color);
}

.award-item-content-silver ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 15px 20px;
  margin: 25px 0 0 0;
  padding: 0;
}

.award-item-content-silver ul li {
  font-size: 14px;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 30px;
  padding: 8px 20px;
}

.our-pricing-silver {
  padding: 100px 0;
}

.pricing-item-silver {
  background-color: var(--secondary-color);
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 15px;
}

.pricing-item-header-silver {
  padding: 15px 15px 30px;
}

.pricing-item-header-silver .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  overflow: hidden;
}

.pricing-item-header-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.pricing-item-silver:hover .pricing-item-header-silver .icon-box::before {
  border-radius: 0;
  transform: rotate(0) scale(1);
}

.pricing-item-header-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.pricing-item-silver:hover .pricing-item-header-silver .icon-box img {
  filter: brightness(1) invert(1);
}

.pricing-item-content-silver h3 {
  font-size: 20px;
}

.pricing-item-content-silver p {
  margin: 10px 0 0;
}

.pricing-item-body-silver {
  background-color: var(--bg-color);
  border-radius: 10px;
  padding: 40px;
}

.pricing-item-list-silver h2 {
  font-size: 40px;
  font-weight: 700;
}

.pricing-item-list-silver h2 sub {
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  bottom: 0;
}

.pricing-item-list-silver ul {
  border-top: 1px solid var(--divider-color);
  list-style: none;
  padding: 20px 0 0;
  margin: 20px 0 0;
}

.pricing-item-list-silver ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.pricing-item-list-silver ul li:last-child {
  margin-bottom: 0;
}

.pricing-item-list-silver ul li:before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.pricing-item-btn-silver {
  margin-top: 30px;
}

.pricing-item-btn-silver .btn-default {
  width: 100%;
  padding: 17px;
  text-align: center;
}

.pricing-item-btn-silver .btn-default::before {
  display: none;
}

.pricing-benefit-list-silver {
  margin-top: 30px;
}

.pricing-benefit-list-silver ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px 40px;
}

.pricing-benefit-list-silver ul li {
  display: inline-flex;
  align-items: center;
}

.pricing-benefit-list-silver ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.our-working-process-silver {
  position: relative;
  background-image: url("../images/working-process-bg-silver.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  overflow: hidden;
}

.our-working-process-silver::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 80%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.our-working-process-silver .container {
  position: relative;
  z-index: 1;
}

.working-process-item-list-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 30px;
}

.working-process-item-silver {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(25% - 22.5px);
  gap: 80px;
}

.working-process-item-silver:nth-child(even) {
  flex-direction: column-reverse;
  margin: 0 0 170px;
}

.working-process-no-silver {
  position: relative;
}

.working-process-no-silver::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  width: calc(100% + 30px);
  height: 1px;
  background-color: var(--dark-divider-color);
}

.working-process-item-silver:nth-child(even)
  .working-process-no-silver::before {
  bottom: auto;
  top: -38px;
}

.working-process-item-silver:nth-child(4n + 4)
  .working-process-no-silver::before,
.working-process-item-silver:last-child .working-process-no-silver::before {
  width: 100%;
}

.working-process-no-silver h2 {
  color: var(--white-color);
  font-size: 52px;
  line-height: 1em;
  text-align: center;
}

.working-process-body-silver {
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(20px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(100%);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  margin-top: 30px;
}

.working-process-body-silver .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: -60px auto 20px;
}

.working-process-body-silver .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 100%;
  height: 100%;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.working-process-body-silver:hover .icon-box::before {
  border-radius: 0;
  transform: rotate(0) scale(1);
}

.working-process-body-silver .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}

.working-process-item-content-silver {
  text-align: center;
}

.working-process-item-content-silver h3 {
  color: var(--white-color);
  font-size: 20px;
}

.working-process-item-content-silver p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

.our-team-silver {
  padding: 100px 0 70px;
}

.team-item-silver {
  position: relative;
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.team-item-image-silver a {
  display: block;
  cursor: none;
}

.team-item-image-silver figure {
  display: block;
  border-radius: 10px;
}

.team-item-image-silver img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
  border-radius: 10px;
}

.team-item-silver:hover .team-item-image-silver img {
  transform: scale(1.06);
}

.team-item-body-silver {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.team-item-content-silver h3 {
  font-size: 20px;
  color: var(--white-color);
}

.team-item-content-silver h3 a {
  color: inherit;
}

.team-item-content-silver p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

.team-social-list-box-silver {
  position: relative;
}

.team-social-btn-silver a {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.team-social-btn-silver a:hover {
  background-color: var(--white-color);
}

.team-social-btn-silver a i {
  font-size: 24px;
  color: var(--primary-color);
}

.team-social-list-silver {
  position: absolute;
  right: 25px;
  bottom: 100%;
  transform: translate(50%, -30px);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

.team-item-silver:hover .team-social-list-silver {
  opacity: 1;
  visibility: visible;
  transform: translate(50%, -55px);
}

.team-social-list-silver ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.team-social-list-silver ul li a {
  width: 36px;
  height: 36px;
  color: var(--accent-color);
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.team-social-list-silver ul li a i {
  font-size: 18px;
  color: inherit;
}

.team-social-list-silver ul li a:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.our-testimonials-silver {
  background: var(--secondary-color);
  padding: 100px 0;
}

.testimonial-image-box-silver {
  position: relative;
  height: 100%;
}

.testimonial-image-silver {
  height: 100%;
}

.testimonial-image-silver figure {
  display: block;
  height: 100%;
  border-radius: 10px;
}

.testimonial-image-silver figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.098;
  object-fit: cover;
  border-radius: 10px;
}

.testimonial-content-box-silver {
  height: 100%;
  align-content: center;
  margin-left: 15px;
}

.testimonial-slider-silver {
  margin-top: 60px;
}

.testimonial-slider-silver .swiper-wrapper {
  cursor: none;
}

.testimonial-item-rating {
  margin-bottom: 20px;
}

.testimonial-item-rating i {
  color: var(--accent-color);
  font-size: 20px;
}

.testimonial-item-content-silver p {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.testimonial-item-author-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}

.testimonial-author-image-silver figure {
  display: block;
  border-radius: 50%;
}

.testimonial-author-image-silver figure img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.testimonial-author-content-silver {
  width: calc(100% - 65px);
  text-align: left;
}

.testimonial-author-content-silver h3 {
  font-size: 20px;
}

.testimonial-author-content-silver p {
  margin: 5px 0 0;
}

.testimonial-btn-silver {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: right;
  z-index: 2;
}

.testimonial-slider-silver .testimonial-button-next-silver,
.testimonial-slider-silver .testimonial-button-prev-silver {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver {
  margin-left: 15px;
}

.testimonial-slider-silver .testimonial-button-next-silver:hover,
.testimonial-slider-silver .testimonial-button-prev-silver:hover {
  background: var(--accent-color);
}

.testimonial-slider-silver .testimonial-button-next-silver::before,
.testimonial-slider-silver .testimonial-button-prev-silver::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver::before {
  transform: rotate(360deg);
}

.testimonial-footer-content-silver {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.section-footer-text.section-footer-contact {
  width: calc(72% - 15px);
  justify-content: left;
}

.section-footer-text.section-footer-contact span {
  margin-right: 5px;
}

.testimonial-footer-content-silver .section-footer-text {
  margin-top: 0;
}

.testimonial-review-box-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  width: calc(28% - 15px);
}

.testimonial-review-box-silver .icon-box img {
  width: 100%;
  max-width: 35px;
}

.testimonial-review-box-content-silver h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-review-box-content-silver span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.testimonial-review-box-content-silver span i {
  font-size: 12px;
  color: var(--accent-color);
}

.testimonial-review-box-content-silver p {
  font-size: 14px;
  margin: 5px 0 0 0;
}

.main-footer-silver {
  background-image: none;
  padding: 100px 0 0;
}

.footer-header-silver {
  text-align: center;
  border-bottom: 1px solid var(--dark-divider-color);
  margin: 0 auto 60px;
  padding-bottom: 60px;
}

.footer-header-silver .section-title {
  max-width: 990px;
  margin: 0 auto;
}

.footer-header-silver .footer-header-btn-silver {
  margin-top: 40px;
}

.footer-logo-silver img {
  width: 100%;
  max-width: 192px;
}

.about-footer-content-silver {
  max-width: 500px;
  margin-top: 40px;
}

.about-footer-content-silver p {
  color: var(--white-color);
  margin: 0;
}

.about-footer-silver .footer-menu-silver {
  margin-top: 40px;
}

.footer-menu-silver ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu-silver ul li {
  position: relative;
  line-height: 1.5em;
  color: var(--white-color);
}

.footer-menu-silver ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-menu-silver ul li a:hover {
  color: var(--accent-color);
}

.footer-menu-silver.footer-privacy-policy-silver ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  background: var(--accent-color);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
}

.footer-menu-silver.footer-privacy-policy-silver ul li:last-child::before {
  display: none;
}

.footer-newsletter-box-silver {
  max-width: 500px;
  margin: 0 0 0 auto;
}

.footer-newsletter-form-silver h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-newsletter-form-silver .form-group {
  width: 100%;
  display: flex;
  background: transparent;
  border: 1px solid var(--dark-divider-color);
  border-radius: 10px;
  padding: 4px;
}

.footer-newsletter-form-silver .form-group .form-control {
  width: calc(100% - 40px);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 6px 14px;
}

.footer-newsletter-form-silver .form-group .form-control::placeholder {
  color: var(--white-color);
}

.footer-newsletter-form-silver .form-group .newsletter-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-silver .form-group .newsletter-btn i {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 2px;
}

.footer-newsletter-form-silver .form-group .newsletter-btn:hover {
  background-color: var(--white-color);
}

.footer-newsletter-form-silver .form-group .newsletter-btn img {
  max-width: 16px;
  transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-silver .form-group .newsletter-btn:hover img {
  transform: rotate(45deg);
}

.footer-social-links-silver {
  margin-top: 40px;
}

.footer-social-links-silver ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social-links-silver ul li a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.footer-social-links-silver ul li a:hover {
  background: var(--accent-color);
}

.footer-social-links-silver ul li a i {
  font-size: 18px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.footer-social-links-silver ul li a:hover i {
  color: var(--primary-color);
}

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

.footer-copyright-box-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 30px;
}

.footer-copyright-text-silver p {
  color: var(--white-color);
  margin: 0;
}

@media only screen and (max-width: 1540px) {
  .main-header.header-silver .header-sticky {
    width: calc(100% - 30px);
  }
}

@media only screen and (max-width: 1440px) {
  .about-us-item-list-silver {
    gap: 20px;
  }

  .about-us-item-silver {
    width: calc(50% - 10px);
    padding: 10px;
  }

  .service-item-header-silver {
    padding: 30px 15px 0;
  }

  .service-item-image-silver figure {
    max-height: 145px;
  }

  .what-we-box-header-silver {
    margin-bottom: 30px;
  }

  .what-we-body-image-silver {
    width: calc(62% - 15px);
  }

  .what-we-counter-box-silver {
    width: calc(38% - 15px);
  }

  .what-we-counter-box-title-silver h3 {
    margin-bottom: 30px;
  }

  .what-we-do-btn-silver {
    margin-top: 40px;
  }

  .pricing-item-body-silver {
    padding: 30px 25px;
  }

  .working-process-body-silver {
    padding: 30px 20px;
  }

  .testimonial-review-box-silver {
    gap: 10px;
  }

  .testimonial-review-box-silver .icon-box img {
    max-width: 30px;
  }

  .testimonial-review-box-content-silver span {
    gap: 0px;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-content-silver {
    height: auto;
    margin-bottom: 30px;
  }

  .hero-image-silver {
    height: auto;
    max-width: 70%;
    margin: 0 auto;
  }

  .about-us-image-box-silver {
    height: auto;
    margin: 0 0 30px;
  }

  .about-image-box-1-silver,
  .about-us-content-silver {
    height: auto;
  }

  .about-image-box-1-silver img {
    aspect-ratio: 1 / 0.8;
  }

  .about-us-footer-silver {
    margin-top: 40px;
  }

  .service-item-image-silver figure {
    max-height: 175px;
  }

  .what-we-do-box-silver {
    margin: 0;
  }

  .what-we-body-image-silver img {
    max-width: 300px;
  }

  .what-we-do-content-silver {
    margin-bottom: 30px;
  }

  .what-we-content-image-silver img {
    aspect-ratio: 1 / 1.065;
  }

  .award-title-box-silver {
    margin: 0 0 30px 0;
  }

  .working-process-item-silver {
    width: calc(50% - 15px);
    gap: 50px;
  }

  .working-process-item-silver:nth-child(odd) {
    margin: 0;
  }

  .working-process-no-silver::before {
    width: calc(100% + 20px);
  }

  .working-process-item-silver:nth-child(even) {
    flex-direction: column;
    margin: 0px;
  }

  .working-process-no-silver::before {
    width: 100%;
    bottom: -25px;
  }

  .working-process-item-silver:nth-child(even)
    .working-process-no-silver::before {
    top: auto;
    bottom: -25px;
  }

  .team-item-image-silver img {
    aspect-ratio: 1 / 1.19;
  }

  .team-item-body-silver {
    padding: 20px;
  }

  .testimonial-image-box-silver {
    height: auto;
    margin-bottom: 30px;
  }

  .testimonial-image-silver figure img {
    aspect-ratio: 1 / 0.8;
  }

  .testimonial-content-box-silver {
    margin-left: 0;
  }

  .testimonial-slider-silver {
    margin: 0;
  }

  .testimonial-item-author-silver {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .main-header.header-silver {
    top: 0px;
  }

  .main-header.header-silver .header-sticky {
    width: 100%;
    border-radius: 0;
  }

  header.main-header.header-silver .header-sticky.active {
    border-radius: 0;
  }

  .main-header.header-silver .navbar {
    padding: 20px 0;
  }

  .hero-silver {
    padding: 140px 0 0;
  }

  .hero-content-body-silver {
    margin-bottom: 40px;
  }

  .hero-body-item-silver .icon-box {
    height: 50px;
    width: 50px;
  }

  .hero-body-item-silver .icon-box img {
    max-width: 24px;
  }

  .hero-body-item-content-silver {
    width: calc(100% - 65px);
  }

  .hero-image-silver img {
    margin-bottom: 0;
  }

  .about-us-silver {
    padding: 50px 0;
  }

  .about-counter-box-silver {
    gap: 20px;
    padding: 20px;
  }

  .about-counter-silver h2 {
    font-size: 40px;
  }

  .about-us-item-list-silver {
    margin-bottom: 30px;
  }

  .about-us-item-silver .icon-box {
    height: 50px;
    width: 50px;
  }

  .about-us-item-silver .icon-box img {
    max-width: 24px;
  }

  .about-us-item-content-silver {
    width: calc(100% - 65px);
  }

  .about-us-body-silver .skills-progress-bar {
    margin-bottom: 30px;
  }

  .about-us-footer-silver {
    margin-top: 30px;
  }

  .our-services-silver {
    padding: 50px 0;
    background-size: 250px auto;
  }

  .what-we-do-silver {
    padding: 50px 0;
  }

  .what-we-header-counter-silver h2 {
    font-size: 42px;
  }

  .what-we-counter-item-silver h2 {
    font-size: 42px;
  }

  .what-we-counter-item-silver p {
    margin: 5px 0 0;
  }

  .what-we-content-body-silver {
    margin-top: 0;
  }

  .what-we-item-silver {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .what-we-item-silver .icon-box {
    height: 50px;
    width: 50px;
  }

  .what-we-item-silver .icon-box img {
    max-width: 24px;
  }

  .what-we-item-content-silver {
    width: calc(100% - 70px);
  }

  .our-award-silver {
    padding: 50px 0;
  }

  .award-counter-box-silver {
    padding: 50px;
  }

  .award-counter-box-silver h2 {
    font-size: 70px;
  }

  .award-item-silver {
    margin-bottom: 30px;
    padding: 15px;
  }

  .award-item-silver .icon-box {
    height: 80px;
    width: 80px;
  }

  .award-item-silver .icon-box img {
    max-width: 64px;
  }

  .award-item-content-silver {
    width: calc(100% - 100px);
  }

  .our-pricing-silver {
    padding: 50px 0;
  }

  .pricing-item-header-silver .icon-box {
    height: 50px;
    width: 50px;
    margin-bottom: 30px;
  }

  .pricing-item-header-silver .icon-box img {
    max-width: 24px;
  }

  .pricing-item-body-silver {
    padding: 20px 15px;
  }

  .pricing-item-list-silver ul li:before {
    font-size: 16px;
  }

  .pricing-item-list-silver h2 {
    font-size: 36px;
  }

  .pricing-item-list-silver sub {
    font-size: 18px;
  }

  .pricing-item-btn-silver {
    margin-top: 20px;
  }

  .pricing-item-btn-silver .btn-default {
    padding: 14px;
  }

  .pricing-benefit-list-silver {
    margin-top: 10px;
  }

  .pricing-benefit-list-silver ul {
    gap: 15px 30px;
  }

  .our-working-process-silver {
    padding: 50px 0;
  }

  .working-process-body-silver {
    padding: 20px;
  }

  .working-process-body-silver .icon-box {
    width: 50px;
    height: 50px;
  }

  .working-process-body-silver .icon-box {
    margin: -45px auto 20px;
  }

  .working-process-no-silver h2 {
    font-size: 40px;
  }

  .our-team-silver {
    padding: 50px 0 20px;
  }

  .team-item-body-silver {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .team-item-content-silver p {
    margin: 5px 0 0 0;
  }

  .our-testimonials-silver {
    padding: 50px 0;
  }

  .testimonial-footer-content-silver {
    padding-top: 30px;
    margin-top: 30px;
  }

  .testimonial-review-box-silver {
    gap: 20px;
  }

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

  .footer-header-silver {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-header-silver .footer-header-btn-silver {
    margin-top: 30px;
  }

  .about-footer-silver {
    margin-bottom: 30px;
  }

  .about-footer-content-silver {
    max-width: 100%;
    margin-top: 20px;
  }

  .about-footer-silver .footer-menu-silver {
    margin-top: 30px;
  }

  .testimonial-item-content-silver p {
    font-size: 18px;
  }

  .testimonial-item-author-silver {
    margin-top: 30px;
  }

  .footer-newsletter-box-silver {
    max-width: 100%;
    margin: 0;
  }

  .footer-social-links-silver {
    margin-top: 30px;
  }

  .footer-copyright-silver {
    margin-top: 30px;
    padding: 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content-body-silver {
    margin-bottom: 30px;
  }

  .hero-content-body-silver {
    gap: 20px;
  }

  .hero-body-item-silver {
    width: 100%;
    padding: 10px;
  }

  .hero-body-item-content-silver h3 {
    font-size: 18px;
  }

  .hero-content-footer-silver {
    gap: 30px;
  }

  .hero-image-silver {
    max-width: 100%;
  }

  .about-image-box-1-silver img {
    aspect-ratio: 1 / 1.01;
  }

  .about-image-box-2-silver {
    max-width: 70%;
  }

  .about-counter-box-silver {
    max-width: 100%;
    width: auto;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }

  .about-counter-silver h2 {
    font-size: 28px;
  }

  .about-counter-silver p {
    margin: 5px 0 0;
  }

  .about-counter-box-silver .satisfy-client-image img {
    max-width: 34px;
    min-width: 0;
  }

  .about-us-item-silver {
    width: 100%;
  }

  .about-us-item-content-silver h3 {
    font-size: 18px;
  }

  .about-us-footer-silver {
    gap: 20px;
  }

  .about-author-content-silver h3 {
    font-size: 18px;
  }

  .what-we-do-box-silver {
    padding: 20px;
  }

  .what-we-header-counter-silver {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--divider-color);
    padding: 0 0 10px;
    margin: 0 0 10px;
    margin-right: 0;
  }

  .what-we-header-counter-silver p {
    margin: 5px 0 0 0;
  }

  .what-we-counter-info-silver {
    width: 100%;
  }

  .what-we-header-counter-silver h2 {
    font-size: 30px;
  }

  .what-we-body-silver {
    gap: 20px;
  }

  .what-we-body-image-silver {
    width: calc(52% - 10px);
  }

  .what-we-body-image-silver figure {
    margin: 0 0 -20px -20px;
  }

  .what-we-counter-box-silver {
    width: calc(48% - 10px);
  }

  .what-we-counter-box-title-silver h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .what-we-counter-item-silver {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .what-we-counter-item-silver h2 {
    font-size: 30px;
  }

  .what-we-counter-item-silver p {
    font-size: 14px;
  }

  .what-we-content-image-silver,
  .what-we-items-btn-silver {
    width: 100%;
  }

  .what-we-item-content-silver h3 {
    font-size: 18px;
  }

  .what-we-item-content-silver p {
    margin: 5px 0 0 0;
  }

  .what-we-do-btn-silver {
    margin-top: 30px;
  }

  .award-counter-box-silver {
    padding: 30px;
  }

  .award-counter-box-silver h2 {
    font-size: 50px;
  }

  .award-counter-box-silver h3 {
    font-size: 18px;
  }

  .award-item-silver {
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .award-item-content-silver ul li {
    padding: 10px;
  }

  .award-item-content-silver {
    width: 100%;
  }

  .award-item-content-silver h3 {
    font-size: 18px;
  }

  .award-item-content-silver ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }

  .pricing-item-silver {
    padding: 10px;
  }

  .pricing-item-header-silver {
    padding: 10px 10px 20px;
  }

  .pricing-item-header-silver .icon-box {
    margin-bottom: 20px;
  }

  .pricing-item-list-silver h2 {
    font-size: 28px;
  }

  .pricing-item-list-silver sub {
    font-size: 16px;
  }

  .pricing-item-list-silver ul li {
    margin-bottom: 10px;
  }

  .pricing-benefit-list-silver ul {
    gap: 10px;
  }

  .pricing-benefit-list-silver ul li {
    font-size: 14px;
  }

  .pricing-benefit-list-silver ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .working-process-item-silver {
    width: 100%;
  }

  .team-item-body-silver {
    padding: 15px;
  }

  .team-item-content-silver h3 {
    font-size: 18px;
  }

  .team-social-btn-silver a {
    width: 40px;
    height: 40px;
  }

  .testimonial-item-content-silver p {
    font-size: 16px;
  }

  .testimonial-author-content-silver h3 {
    font-size: 18px;
  }

  .testimonial-btn-silver {
    position: initial;
    justify-content: left;
    margin-top: 30px;
  }

  .testimonial-footer-content-silver {
    gap: 20px;
  }

  .section-footer-text.section-footer-contact {
    width: 100%;
  }

  .testimonial-review-box-silver {
    width: 100%;
    justify-content: center;
  }

  .footer-menu-silver ul {
    gap: 5px 12px;
  }

  .footer-copyright-silver {
    padding: 15px 0;
  }

  .footer-copyright-box-silver {
    justify-content: center;
  }

  .footer-menu-silver.footer-privacy-policy-silver ul li::before {
    display: none;
  }
}

/* new crousel  */
.img-hero-slider {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.img-slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.img-slide {
  min-width: 100%;
}

.img-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* Arrows */
.img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
}

.img-left {
  left: 15px;
}

.img-right {
  right: 15px;
}

/* Hover effect */
.img-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .img-slide img {
    height: 300px;
  }
}

:root {
  --brand-red: #e9720d;
  --brand-red-dark: #e9720d;
  --muted-gray: #f4f4f4;
  --border: #f3f3f3;
}

.page-container {
  padding: 24px;
}

.left-col {
  max-width: 349px;
  min-width: 240px;
}

.sidebars {
  background: var(--muted-gray);
  border: 1px solid var(--border);
  padding: 0;
}

.sidebars .ribbon-head {
  position: relative;
  background: var(--brand-red);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 3px solid var(--brand-red-dark);
}

.sidebars .ribbon-head::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 4px;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-right: 22px solid var(--brand-red);
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.category-items {
  border-bottom: 1px solid #e3e3e3;
  background: #fff;
}

.category-items .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
}

.category-items .d-flex a.category-link {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.category-items .d-flex a.category-link:hover {
  color: #000;
}

.btn-link {
  text-decoration: none;
}

.category-items .chev-btn .chev {
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.subcategory {
  padding-left: 10px;
  background: #fff;
}

.subcategory a {
  display: block;
  padding: 8px 18px;
  color: #080707;
  text-decoration: none;
  font-size: 13px;
  border-left: 3px solid transparent;
}

.subcategory-title {
  display: block;
  padding: 10px 18px 6px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.subcategory a:hover {
  color: var(--brand-red);
  background: #fafafa;
  border-left-color: var(--brand-red);
}

.contact-box {
  background: #c9c9c9;
  color: #010101;
  padding: 20px;
  margin: 18px;
  border-radius: 2px;
}

.contact-box h5 {
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-box p {
  margin: 6px 0;
  font-size: 14px;
}

.contact-box a {
  color: #060505;
  text-decoration: none;
}

#titlebar {
  background: linear-gradient(to right, #959393, #979493);
  color: #fff;
}

#titlebar h2#titlebar-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
}

.item-box {
  border: 1px solid #ccc;
  padding: 10px;
  max-width: 300px;
}

/* image */
.item-box img {
  width: 100%;
  height: auto;
  display: block;
}

.item-name {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: bold;
  color: #e9720d;
}

.srpm-table-wrapper {
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 10px;
}

.srpm-table-wrapper h3,
.srpm-table-wrapper h4,
.srpm-table-wrapper h5,
.srpm-table-wrapper h6 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #e9720d;
  border-left: 4px solid #e9720d;
  padding-left: 10px;
}

/* Table */
.srpm-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.srpm-spec-table th,
.srpm-spec-table td {
  padding: 12px 14px;
  border: 1px solid #e2e6ea;
  font-size: 14px;
  vertical-align: top;
}

.srpm-spec-table th {
  width: 35%;
  background: #f8f9fb;
  font-weight: 600;
  color: #020202;
}

.srpm-spec-table td {
  color: #090808;
}

/* Feature List */
.srpm-feature-list {
  list-style: none;
  padding-left: 0;
}

.srpm-feature-list li {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px dashed #ddd;
}

.srpm-feature-list li:last-child {
  border-bottom: none;
}

.btn-quote {
  background-color: #e9720d;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.btn-quote:hover,
.btn-quote:focus {
  background-color: #e9720d;
  color: #ffffff;
  box-shadow: 0 0 0 0.3rem rgba(209, 26, 42, 0.3);
  transform: translateY(-2px);
}

.page-titles {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.text-muted {
  color: #0c0b0b !important;
}

.card-grid .card {
  border: 1px solid var(--border);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.custom-list {
  padding-left: 20px;
  list-style-type: disc;
}

.custom-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

#custom-titlebar {
  padding: 40px 0;
  background: #f5f5f5;
  text-align: center;
}

#custom-titlebar-text h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
  color: #e9720d;
}

#custom-titlebar-breadcrumb {
  margin-top: 10px;
  font-size: 0.9rem;
}

#custom-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#custom-breadcrumb a {
  color: #0f0e0e;
  text-decoration: none;
}

#custom-breadcrumb a:hover {
  text-decoration: underline;
}

.custom-breadcrumb-separator i {
  color: #030303;
}

.custom-breadcrumb-last {
  color: #e9720d;
  text-decoration: underline;
}

.lg-main {
  min-width: 0;
}

.lg-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  background: #181818;
  color: #fff;
  padding: 32px;
  border-left: 6px solid var(--brand-red);
}

.lg-kicker {
  display: inline-flex;
  width: fit-content;
  background: rgba(233, 114, 13, 0.14);
  border: 1px solid rgba(233, 114, 13, 0.45);
  color: #ffb06a;
  padding: 7px 11px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lg-hero-copy h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin: 0 0 14px;
}

.lg-hero-copy p {
  max-width: 760px;
  color: #dedede;
  line-height: 1.7;
  margin: 0;
}

.lg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.lg-primary-btn,
.lg-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.lg-primary-btn {
  background: var(--brand-red);
  color: #fff;
}

.lg-secondary-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.lg-primary-btn:hover,
.lg-secondary-btn:hover {
  transform: translateY(-2px);
}

.lg-primary-btn:hover {
  background: #fff;
  color: #181818;
}

.lg-secondary-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #181818;
}

.lg-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.8fr);
  gap: 14px;
  min-width: 0;
}

.lg-visual-stack {
  display: grid;
  gap: 14px;
}

.lg-visual-card {
  display: grid;
  place-items: center;
  min-height: 150px;
  background: #f5f6f7;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px;
}

.lg-visual-card--large {
  min-height: 314px;
}

.lg-visual-card img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.lg-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dedede;
  margin-top: 18px;
  border: 1px solid #dedede;
}

.lg-stat-strip div {
  background: #fff;
  padding: 18px;
}

.lg-stat-strip strong,
.lg-stat-strip span {
  display: block;
}

.lg-stat-strip strong {
  color: #181818;
  font-size: 17px;
  margin-bottom: 5px;
}

.lg-stat-strip span {
  color: #5c5c5c;
  font-size: 13px;
}

.lg-product-section {
  margin-top: 34px;
}

.lg-product-section--support {
  margin-top: 42px;
}

.lg-section-head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 18px;
}

.lg-section-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 900;
}

.lg-section-head h2 {
  color: #171717;
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.18;
  margin: 0 0 7px;
}

.lg-section-head p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

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

.lg-product-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #171717;
  padding: 14px;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lg-product-row:hover {
  border-color: rgba(233, 114, 13, 0.55);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  color: #171717;
  transform: translateY(-3px);
}

.lg-product-media {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  background: #f6f7f9;
  border: 1px solid #ededed;
}

.lg-product-media img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.lg-product-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.lg-product-info small {
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lg-product-info strong {
  color: #171717;
  font-size: 19px;
  line-height: 1.2;
}

.lg-product-info em {
  color: #5c5c5c;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.lg-product-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #f2f2f2;
  color: var(--brand-red);
  font-size: 24px;
  font-weight: 900;
}

@media (max-width: 1199.98px) {
  .lg-product-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .lg-hero-panel {
    grid-template-columns: 1fr;
  }

  .lg-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .lg-hero-panel {
    padding: 22px;
  }

  .lg-hero-visual {
    grid-template-columns: 1fr;
  }

  .lg-visual-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg-stat-strip {
    grid-template-columns: 1fr;
  }

  .lg-section-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .lg-hero-actions a {
    width: 100%;
  }

  .lg-visual-stack {
    grid-template-columns: 1fr;
  }

  .lg-visual-card--large,
  .lg-visual-card {
    min-height: 180px;
  }

  .lg-product-row {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .lg-product-media {
    width: 82px;
    height: 82px;
  }

  .lg-product-media img {
    width: 68px;
    height: 68px;
  }

  .lg-product-arrow {
    display: none;
  }
}

.liugong-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.55fr);
  gap: 22px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-left: 5px solid var(--brand-red);
  padding: 26px;
  margin-bottom: 28px;
}

.liugong-overview__content {
  min-width: 0;
}

.liugong-eyebrow,
.liugong-section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #f6f7f9;
  color: var(--brand-red);
  border: 1px solid #ececec;
  padding: 6px 10px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.liugong-overview h2,
.liugong-section-head h2 {
  color: #191919;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.liugong-overview h2 {
  max-width: 760px;
  font-size: clamp(24px, 2.6vw, 36px);
  margin-bottom: 12px;
}

.liugong-overview p {
  color: #3f3f3f;
  line-height: 1.7;
  margin: 0;
}

.liugong-highlights {
  display: grid;
  gap: 12px;
}

.liugong-highlights div {
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  padding: 16px;
}

.liugong-highlights strong,
.liugong-highlights span {
  display: block;
}

.liugong-highlights strong {
  color: #1f1f1f;
  font-size: 17px;
  margin-bottom: 4px;
}

.liugong-highlights span {
  color: #626262;
  font-size: 13px;
}

.liugong-products {
  margin-top: 30px;
}

.liugong-products--compact {
  margin-top: 38px;
}

.liugong-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.liugong-section-head h2 {
  max-width: 760px;
  font-size: clamp(22px, 2vw, 30px);
}

.liugong-section-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  background: var(--brand-red);
  color: #fff;
  border: 1px solid var(--brand-red);
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.liugong-section-link:hover {
  background: #191919;
  border-color: #191919;
  color: #fff;
  transform: translateY(-2px);
}

.liugong-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.liugong-product-grid--support {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.liugong-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid #e4e4e4;
  color: #202020;
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.liugong-product-card:hover {
  border-color: rgba(233, 114, 13, 0.55);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  color: #202020;
  transform: translateY(-4px);
}

.liugong-product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: #f6f7f9;
  padding: 18px;
}

.liugong-product-card__media img {
  width: 100%;
  max-width: 170px;
  max-height: 155px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.liugong-product-card:hover .liugong-product-card__media img {
  transform: scale(1.04);
}

.liugong-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
}

.liugong-product-card__body strong {
  color: #171717;
  font-size: 18px;
  line-height: 1.25;
}

.liugong-product-card__body small {
  color: #5b5b5b;
  line-height: 1.5;
}

.liugong-product-card__body span {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 800;
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .liugong-overview {
    grid-template-columns: 1fr;
  }

  .liugong-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .liugong-overview {
    padding: 20px;
  }

  .liugong-highlights {
    grid-template-columns: 1fr;
  }

  .liugong-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .liugong-section-link {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .liugong-overview {
    padding: 16px;
  }

  .liugong-product-grid,
  .liugong-product-grid--support {
    grid-template-columns: 1fr;
  }

  .liugong-product-card__media {
    aspect-ratio: 16 / 10;
  }
}

.tree-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 30px;
}

/* ================= ROOT ================= */
.tree-root {
  text-align: center;
}

.tree-root img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #e9720d;
  padding: 10px;
  background: #fff;
  transition: 0.3s;
}

/* 🔥 MAIN HEADING */
.tree-root span {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  font-weight: 800;
  color: #e9720d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover */
.tree-root:hover img {
  transform: scale(1.05);
}

/* ================= CONNECTOR ================= */
.tree-horizontal {
  height: 2px;
  background: #ccc;
  margin: 30px auto;
  width: 80%;
}

/* ================= BRANCHES ================= */
.tree-branches {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* ================= ITEM ================= */
.tree-item {
  text-align: center;
  position: relative;
  text-decoration: none;
}

/* Vertical Line */
.tree-item::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #ccc;
  transform: translateX(-50%);
}

/* IMAGE */
.tree-item img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  padding: 8px;
  background: #fff;
  border: 1px solid #ddd;
  transition: 0.3s;
}

/* TEXT */
.tree-item span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* HOVER */
.tree-item:hover img {
  transform: scale(1.1);
  border-color: #e9720d;
}

.tree-item:hover span {
  color: #e9720d;
}

/* ================= AWP BOX ================= */
.awp-box span {
  font-weight: 700;
  color: #e9720d;
}

/* ================= AWP SUB TREE ================= */
.awp-sub-tree {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 79px;
  flex-wrap: wrap;
}

/* SUB ITEM */
.tree-sub-item {
  text-align: center;
  position: relative;
  text-decoration: none;
}

/* SUB LINE */
.tree-sub-item::before {
  content: "";
  position: absolute;
  top: -76px;
  left: 50%;
  width: 2px;
  height: 92px;
  background: #ccc;
  transform: translateX(-50%);
}

/* SUB IMAGE */
.tree-sub-item img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  padding: 6px;
  background: #fff;
  border: 1px solid #ddd;
  transition: 0.3s;
}

/* SUB TEXT */
.tree-sub-item span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: #444;
}

/* SUB HOVER */
.tree-sub-item:hover img {
  transform: scale(1.1);
  border-color: #e9720d;
}

.tree-sub-item:hover span {
  color: #e9720d;
}

@media (max-width: 768px) {
  .srpm-spec-table th {
    width: 100%;
    display: block;
  }

  .srpm-spec-table td {
    display: block;
    border-top: none;
  }
}

@media (max-width: 992px) {
  .tree-root img {
    width: 90px;
    height: 90px;
  }

  .tree-root span {
    font-size: 18px;
  }

  .tree-item img {
    width: 65px;
    height: 65px;
  }

  .tree-horizontal {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tree-container {
    padding: 20px 10px;
    gap: 50px;
  }

  .tree-horizontal {
    width: 100%;
    margin: 20px auto;
  }

  .tree-branches {
    gap: 15px;
  }

  .tree-item img {
    width: 55px;
    height: 55px;
  }

  .tree-item span {
    font-size: 12px;
  }

  .tree-root img {
    width: 75px;
    height: 75px;
  }

  .tree-root span {
    font-size: 16px;
  }

  .tree-sub-item img {
    width: 45px;
    height: 45px;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mains {
    padding: 16px;
  }

  .page-titles h2 {
    font-size: 20px;
  }

  .left-col {
    max-width: 357px;
    min-width: 249px;
  }
}

@media (max-width: 576px) {
  .page-titles {
    flex-direction: column;
    gap: 4px;
  }

  .card-body h6 {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .left-col {
    position: sticky;
    top: 24px;
    align-self: flex-start;
  }
}

@media (max-width: 767.98px) {
  .sidebars .ribbon-head::before {
    left: -16px;
    border-right-width: 16px;
    border-top-width: 16px;
    border-bottom-width: 16px;
  }

  .contact-box {
    margin: 14px;
  }

  .sidebars {
    margin-bottom: 18px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  #custom-titlebar-text h2 {
    font-size: 2rem;
  }

  #custom-titlebar-breadcrumb {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  #custom-titlebar {
    padding: 30px 15px;
  }

  #custom-titlebar-text h2 {
    font-size: 1.5rem;
  }

  #custom-titlebar-breadcrumb {
    font-size: 0.8rem;
  }

  #custom-breadcrumb {
    flex-direction: column;
    gap: 2px;
  }
}

/* Propel EV range */
.propel-page {
  background: #f4f5f7;
  padding: 34px 15px 56px;
}

.propel-hero,
.propel-range {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.propel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  background: #151515;
  border-left: 6px solid var(--accent-color);
  padding: 30px;
}

.propel-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.propel-kicker {
  display: inline-flex;
  width: fit-content;
  background: rgba(233, 114, 13, 0.14);
  border: 1px solid rgba(233, 114, 13, 0.45);
  color: #ffb06a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  padding: 7px 11px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.propel-hero h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.12;
  margin-bottom: 14px;
}

.propel-hero p {
  max-width: 720px;
  color: #d9d9d9;
  line-height: 1.7;
  margin: 0;
}

.propel-hero__media {
  display: grid;
  place-items: center;
  min-height: 280px;
  background: #fff;
  padding: 24px;
}

.propel-hero__media img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.propel-range {
  margin-top: 30px;
}

.propel-range__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
}

.propel-range__head div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.propel-range__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 900;
}

.propel-range__head h2 {
  color: #161616;
  font-size: clamp(24px, 2.4vw, 34px);
  margin: 0;
}

.propel-range__head p {
  max-width: 380px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

.propel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.propel-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid #e3e3e3;
  box-shadow: 0 10px 24px rgba(15, 15, 15, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.propel-card:hover {
  border-color: rgba(233, 114, 13, 0.5);
  box-shadow: 0 15px 32px rgba(15, 15, 15, 0.1);
  transform: translateY(-3px);
}

.propel-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  background: #f9fafb;
  border-bottom: 1px solid #ededed;
  padding: 20px;
}

.propel-card__media span {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #151515;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
}

.propel-card__media img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.propel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.propel-card__body h3 {
  color: #171717;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 13px;
}

.propel-spec-list {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.propel-spec-list li {
  display: grid;
  grid-template-columns: minmax(110px, 0.95fr) minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding-bottom: 9px;
  border-bottom: 1px solid #eeeeee;
  color: #555;
  font-size: 14px;
  line-height: 1.35;
}

.propel-spec-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.propel-spec-list strong {
  color: #202020;
  font-weight: 800;
}

.propel-spec-list span {
  min-width: 0;
}

@media (max-width: 1199.98px) {
  .propel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .propel-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .propel-page {
    padding: 22px 12px 42px;
  }

  .propel-hero {
    padding: 22px;
  }

  .propel-hero__media {
    min-height: 220px;
  }

  .propel-range__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .propel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .propel-hero {
    padding: 18px;
  }

  .propel-card__media {
    min-height: 170px;
  }

  .propel-card__media img {
    height: 128px;
  }

  .propel-spec-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

.bm-section {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
}

/* BANNER */
.bm-banner {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4d1cf, #222);
}

.bm-banner-title {
  color: #fff;
  font-size: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 25px;
  border-radius: 10px;
  margin-top: 86px;
}

/* OVERVIEW */
.bm-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bm-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bm-img {
  width: 100%;
  border-radius: 10px;
}

/* HEADINGS */
.bm-title {
  border-left: 4px solid #e9720d;
  padding-left: 10px;
  margin-bottom: 15px;
}

/* LIST */
.bm-list {
  list-style: none;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bm-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.bm-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e9720d;
}

/* SPEC */
.bm-spec-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bm-spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 6px 0;
}

/* =========================
   GALLERY SLIDER (INFINITE)
========================= */
/* =========================
   GALLERY SLIDER (FINAL)
========================= */

.bm-slider {
  overflow: hidden;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* TRACK */
.bm-slides {
  display: flex;
  width: max-content;
  animation: slideLoop 20s linear infinite;
}

/* SLIDE */
.bm-slide {
  flex: 0 0 25%;
  padding: 10px;
  box-sizing: border-box;
}

/* IMAGE (SAME SIZE FIXED) */
.bm-slide img {
  width: 100%;
  height: 200px;
  /* fixed height */
  object-fit: cover;
  /* crop nicely */
  border-radius: 12px;
  display: block;
}

/* =========================
   INFINITE LOOP ANIMATION
========================= */

@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .bm-overview {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bm-banner-title {
    font-size: 2rem;
    margin-top: 60px;
  }

  .bm-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .bm-section {
    padding: 15px;
  }

  .bm-banner {
    height: 248px;
  }

  .bm-banner-title {
    font-size: 1.6rem;
    padding: 10px 18px;
    text-align: center;
  }

  .bm-box,
  .bm-list,
  .bm-spec-box {
    padding: 15px;
  }

  .bm-spec-row {
    flex-direction: column;
    gap: 5px;
  }

  .bm-slide {
    flex: 0 0 100%;
  }

  .bm-slide img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .bm-banner {
    height: 180px;
  }

  .bm-banner-title {
    font-size: 1.3rem;
    margin-top: 98px;
  }

  .bm-title {
    font-size: 18px;
  }

  .bm-slide img {
    height: 160px;
  }
}

/* =========================
   HOVER (OPTIONAL)
========================= */

.bm-slider:hover .bm-slides {
  animation-play-state: paused;
}

.btn-quote {
  background-color: #ff7a00;
  /* orange */
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-quote:hover {
  background-color: #e66a00;
  /* darker orange on hover */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-quote:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.4);
}

:root {
  --bmr-primary: #e9720d;
  --bmr-dark: #222;
  --bmr-light: #f7f7f7;
  --bmr-text: #555;
}

/* Wrapper */
.bmrp-wrap {
  background: var(--bmr-light);
  padding: 20px;
}

/* Container */
.bmrp-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.bmrp-title {
  font-size: 2rem;
  color: var(--bmr-dark);
  border-left: 6px solid var(--bmr-primary);
  padding-left: 12px;
  margin-bottom: 10px;
}

.bmrp-subtitle {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--bmr-text);
}

/* Card */
.bmrp-card {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.bmrp-card:hover {
  transform: translateY(-5px);
}

/* Section Headings */
.bmrp-heading {
  font-size: 1.4rem;
  color: var(--bmr-primary);
  margin-bottom: 10px;
}

/* Lists */
.bmrp-list {
  padding-left: 20px;
}

.bmrp-list li {
  margin-bottom: 8px;
}

/* Grid */
.bmrp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Highlight */
.bmrp-highlight {
  background: rgba(233, 114, 13, 0.1);
  border-left: 5px solid var(--bmr-primary);
  padding: 15px;
  margin-top: 20px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .bmrp-grid {
    grid-template-columns: 1fr;
  }

  .bmrp-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .bmrp-wrap {
    padding: 15px;
  }

  .bmrp-card {
    padding: 15px;
  }

  .bmrp-title {
    font-size: 1.5rem;
  }

  .bmrp-subtitle {
    font-size: 0.95rem;
  }

  .btn-quote {
    padding: 9px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .bmrp-title {
    font-size: 1.3rem;
  }

  .bmrp-heading {
    font-size: 1.1rem;
  }

  .bmrp-card {
    padding: 12px;
  }

  .btn-quote {
    width: 100%;
    padding: 10px;
  }
}

/* Wrapper */
.sitemap-tree {
  max-width: 900px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-left: 6px solid #fc760c;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Title */
.sitemap-title {
  font-size: 26px;
  color: #1c3668;
  margin-bottom: 20px;
  border-bottom: 2px solid #fc760c;
  padding-bottom: 10px;
  font-weight: bold;
}

/* Tree Base */
.tree ul {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.tree ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  border-left: 2px solid #ddd;
  height: 100%;
}

/* Each Item */
.tree li {
  position: relative;
  padding: 8px 0 8px 20px;
}

/* Horizontal Line */
.tree li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 20px;
  border-top: 2px solid #ddd;
}

/* Links */
.tree a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}

.tree a:hover {
  color: #fc760c;
  padding-left: 5px;
}

/* Parent Headings */
.tree > ul > li > a {
  font-weight: bold;
  color: #1c3668;
}

/* Responsive */
@media (max-width: 600px) {
  .sitemap-tree {
    padding: 15px;
  }

  .sitemap-title {
    font-size: 22px;
  }

  .tree a {
    font-size: 14px;
  }
}

/* Wrapper */
.disclaimer-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border-left: 6px solid #fc760c;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}

/* Title */
.disclaimer-title {
  color: #1c3668;
  font-size: 26px;
  margin-bottom: 20px;
  border-bottom: 2px solid #fc760c;
  padding-bottom: 10px;
  font-weight: bold;
}

/* Headings */
.disclaimer-heading {
  color: #1c3668;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Text */
.disclaimer-text {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

/* List */
.disclaimer-list {
  margin-left: 20px;
  margin-bottom: 15px;
}

.disclaimer-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Contact */
.disclaimer-contact {
  margin-top: 20px;
  padding: 15px;
  background: #1c3668;
  color: #fff;
  border-radius: 6px;
}

.disclaimer-contact a {
  color: #fc760c;
  text-decoration: none;
}

.disclaimer-contact a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-content {
    margin: 20px;
    padding: 15px;
  }

  .disclaimer-title {
    font-size: 22px;
  }

  .disclaimer-heading {
    font-size: 18px;
  }

  .disclaimer-text,
  .disclaimer-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .disclaimer-content {
    padding: 12px;
  }

  .disclaimer-contact {
    font-size: 14px;
  }
}
.main-menu ul li a.active {
  color: #e9720d !important;
}

/* Final site polish */
.page-header {
  min-height: 500px;
  height: auto;
  display: flex;
  align-items: center;

  background-size: cover !important;
  background-position: center center !important;
  padding: 145px 0 80px;
}

.page-header-box ol,
.page-header-box .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}

.page-header-box ol li,
.page-header-box .breadcrumb li,
.page-header-box .breadcrumb a {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.header-search-wrap {
  flex: 0 0 auto;
}

.header-search {
  display: flex;
  align-items: center;
  width: min(230px, 20vw);
  min-width: 178px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(233, 114, 13, 0.38);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #151515;
  font-size: 14px;
  padding: 0 10px 0 15px;
}

.header-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--accent-color);
  color: #fff;
  cursor: pointer;
}

.main-menu ul ul {
  width: 290px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(233, 114, 13, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.main-menu ul ul li a {
  color: #161616;
  border-bottom: 1px solid #f0f0f0;
}

.main-menu ul ul li:last-child a {
  border-bottom: 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus,
.main-menu ul ul li a.active {
  background: var(--accent-color);
  color: #fff !important;
}

.slicknav_menu {
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  color: #151515;
  border-bottom: 1px solid #eeeeee;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background: var(--accent-color);
  color: #fff;
}

.slicknav_menu ul ul li a {
  background: #fafafa;
}

.img-hero-slider {
  height: auto;
  max-height: none;
  background: #fff;
  margin-top: 0;
}

.img-slider-track,
.img-slide {
  height: auto;
}

.img-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.img-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: rgba(233, 114, 13, 0.92);
  font-size: 24px;
  line-height: 1;
}

.img-arrow:hover {
  background: #151515;
}

.top-heading {
  padding: 38px 18px 10px;
  text-align: center;
}

.top-heading h2 {
  color: #111;
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 8px;
}

.top-heading h3 {
  color: var(--accent-color);
  font-size: clamp(17px, 1.6vw, 22px);
}

.grid.product-grid,
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 54px;
  padding: 24px 18px;
}

.grid .card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.grid .card:hover {
  border-color: rgba(233, 114, 13, 0.5);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.11);
  transform: translateY(-4px);
}

.grid .img-box {
  display: grid;
  place-items: center;
  min-height: 172px;
  background: #f8f9fb;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 15px;
}

.grid .img-box img {
  width: 100%;
  height: 145px;
  object-fit: contain;
}

.grid .card h3 {
  color: #171717;
  font-size: 20px;
  line-height: 1.25;
  margin: 15px 0 10px;
}

.grid .card p {
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 7px;
}

.grid .card p strong {
  color: #1c1c1c;
}

.grid .card > .btn,
.grid .product-card-action {
  margin-top: auto;
}

.grid .card > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--accent-color);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.grid .card > .btn:hover {
  background: var(--accent-color);
  color: #fff;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  background: rgba(233, 114, 13, 0.12);
  color: #bd5705;
  border: 1px solid rgba(233, 114, 13, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
}

.product-specs {
  display: flex;
  flex: 1;
  flex-direction: column;
}


.gallery-page,
.search-page {
  background: #f4f5f7;
  padding: 44px 15px 58px;
}

.gallery-wrap,
.search-wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.gallery-head,
.search-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
}

.gallery-head h2,
.search-head h2 {
  color: #151515;
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 8px;
}

.gallery-head p,
.search-head p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.gallery-category {
  margin-top: 30px;
}

.gallery-category h3 {
  color: #151515;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 8px;
}

.gallery-category p {
  color: #555;
  line-height: 1.55;
  margin: 0 0 16px;
}

.gallery-grid,
.search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card,
.search-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #151515;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.gallery-card:hover,
.search-card:hover {
  border-color: rgba(233, 114, 13, 0.5);
  color: #151515;
  transform: translateY(-3px);
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-page {

  padding: 60px 15px 70px;
}

/* =========================
   WRAPPER
========================= */

.gallery-wrap {

  width: min(1350px, 100%);

  margin: 0 auto;
}

/* =========================
   CATEGORY
========================= */

.gallery-category {

  margin-bottom: 35px;
}

/* =========================
   GRID
========================= */

.gallery-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 22px;
}

/* =========================
   CARD
========================= */

.gallery-card {

  display: block;

  overflow: hidden;

  border-radius: 18px;

  background: rgba(255,255,255,0.04);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.08);

  text-decoration: none;

  transition: all 0.35s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

}

.gallery-card:hover {

  transform: translateY(-6px);

  border-color: rgba(217,121,40,0.7);

  box-shadow: 0 16px 35px rgba(0,0,0,0.35);
}

/* =========================
   IMAGE
========================= */

.gallery-card img {

  width: 100%;
height: 250px;

  object-fit: contain;

  background: #ffffff;

  padding: 15px;

  display: block;

  transition: all 0.4s ease;
}

.gallery-card:hover img {

  transform: scale(1.05);
}

/* =========================
   IMAGE NAME
========================= */

.gallery-name {

  padding: 14px 16px;

  background: #1b1b1b;

  color: #ffffff;

  font-size: 14px;

  font-weight: 700;

  line-height: 1.5;

  text-align: center;

  border-top: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-name {

  color: #d97928;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

  .gallery-grid {

    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {

  .gallery-grid {

    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .gallery-page {

    padding: 50px 15px 60px;
  }

  .gallery-grid {

    grid-template-columns: 1fr;

    gap: 18px;
  }

  .gallery-card img {

    height: 220px;
  }

  .gallery-name {

    font-size: 13px;

    padding: 12px;
  }
}

.search-form-large {
  display: flex;
  width: min(620px, 100%);
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.search-form-large input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 13px 18px;
}

.search-form-large button {
  border: 0;
  background: var(--accent-color);
  color: #fff;
  font-weight: 800;
  padding: 0 22px;
}

.search-card {
  padding: 18px;
}

.search-card small {
  color: var(--accent-color);
  font-weight: 900;
  text-transform: uppercase;
}

.search-card em {
  color: #555;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
  padding: 0 14px 14px;
}

@media (max-width: 1199.98px) {
  .grid.product-grid,
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .header-search-wrap {
    display: none;
  }

  .page-header {
    height: 260px;
    padding: 150px 0 90px;
    background-size: cover;
  }

  .gallery-grid,
  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .grid.product-grid,
  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 12px 38px;
  }

  .img-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .gallery-head,
  .search-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-form-large {
    border-radius: 10px;
  }
}

@media (max-width: 575.98px) {
  .page-header {
    height: 230px;
    padding: 130px 0 70px;
  }

  .page-header-box h1 {
    font-size: 34px;
  }

  .gallery-grid,
  .search-grid {
    grid-template-columns: 1fr;
  }

  .search-form-large {
    flex-direction: column;
  }

  .search-form-large button {
    min-height: 44px;
  }
}
