/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Framex - Windows and Doors 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. Our Work css
08. Our Projects css
09. Intro Video css
10. How It Work css
11. Our Team css
12. Our Testimonials css
13. Our Faqs css
14. Contact Us 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. FAQ's 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: #0b1d33;
  --secondary-color: #ffffff;
  --bg-color: #f6f5ed;
  --text-color: #83827f;
  --accent-color: #fff;
  --main-color: #0b1d33;
  --white-color: #ffffff;
  --divider-color: #1818181a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Stack Sans Headline", sans-serif;
  --hover-color: #ffffffb2;
}

/************************************/
/*** 	   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);
  scroll-behavior: smooth;
}

::-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(--main-color);
}

::selection {
  background-color: var(
    --primary-color
  ); /* A semi-transparent version of your primary color */
  color: var(--white-color);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.2em;
  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: 1300px;
}

.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 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  background: var(--main-color);
  border-radius: 100px;
  padding: 17px 54px 17px 24px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  border: 1px solid var(--primary-color);
}

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

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

.btn-default:hover::before {
  transform: translateY(-50%) rotate(45deg);
  filter: brightness(0) invert(1);
  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 {
  filter: none;
}

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

.readmore-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 28px;
  transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  width: 20px;
  height: 20px;
  transition: all 0.4s ease-in-out;
}

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

.cb-cursor:before {
  background: var(--main-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);
  }
}

.light-section {
  width: 100%;
  background-color: var(--secondary-color);
}

.light-section .container-fluid {
  padding: 0;
}

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

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

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

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 700px;
  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-sub-heading .section-sub-title,
.section-title .section-sub-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: normal;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 100px;
  padding: 8px 16px 8px 32px;
  margin-bottom: 15px;
}

.section-sub-heading .section-sub-title::before,
.section-title .section-sub-title::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--main-color);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.section-sub-heading .section-sub-title,
.section-title.section-sub-heading .section-sub-title {
  margin-bottom: 0;
}

.section-title h1 {
  font-size: 58px;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 0;
  cursor: none;
}

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

.light-section .section-sub-heading .section-sub-title,
.light-section .section-title .section-sub-title {
  background-color: var(--bg-color);
}

.dark-section .section-sub-heading .section-sub-title,
.dark-section .section-title .section-sub-title {
  background: var(--dark-divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.dark-section .section-sub-heading .section-sub-title,
.dark-section .section-title .section-sub-title,
.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;
  left: 0px;
  right: 0px;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--dark-divider-color);
  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);
  border-bottom: 1px solid var(--dark-divider-color);
}

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

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

.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 {
  position: relative;
  margin: 0 10px;
}

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

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

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 30px;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--main-color);
  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: 5px 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);
  padding: 8px 20px !important;
  transition: all 0.3s 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 20px 8px 23px !important;
}

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

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

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

.slicknav_btn {
  background: var(--main-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(--white-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(--main-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 7px 20px;
  color: var(--white-color);
  line-height: normal;
  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: 7px 20px 7px 30px;
}

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

.slicknav_arrow:after {
  content: "\f107";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-color);
  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.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 250px 0 120px;
  height: auto;
  min-height: 100vh;
  align-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(
      90deg,
      rgba(24, 24, 24, 0.8) 0%,
      rgba(24, 24, 24, 0.72) 36.01%,
      transparent 63.02%
    ),
    linear-gradient(180deg, rgba(24, 24, 24, 0.8) 0%, transparent 18.18%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

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

.hero-content-list ul li {
  position: relative;
  width: calc(50% - 10px);
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 25px;
}

.hero-content-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
  top: 0;
  left: 0;
}

.hero-content-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 50px;
  padding-top: 50px;
}

.video-play-button {
  display: inline-flex;
  align-items: center;
}

.video-play-button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: none;
  gap: 10px;
}

.video-play-button a span {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-play-button a span.bg-effect:before,
.video-play-button a span.bg-effect:after {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  border: 35px 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 span.bg-effect:after {
  animation-delay: 0.3s;
}

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

.video-play-button a span i {
  font-size: 16px;
  color: var(--primary-color);
  margin-left: 2px;
}

.video-play-button p {
  font-weight: 500;
  color: var(--white-color);
  margin: 0;
}

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

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

.about-us-image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  margin-right: 15px;
}

.about-us-image-box-1 {
  position: relative;
  width: 73%;
  height: 100%;
}

.about-us-image-box-1 .about-us-image,
.about-us-image-box-1 .about-us-image figure,
.about-us-image-box-1 .about-us-image img {
  height: 100%;
}

.about-us-image figure {
  display: block;
  border-radius: 20px;
}

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

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

.about-us-image-box-2 .about-us-image figure {
  border: 10px solid var(--bg-color);
  margin-left: -137px;
  border-radius: 30px 20px 20px 30px;
  border-right: none;
}

.about-us-image-box-2 .about-us-image figure img {
  aspect-ratio: 1 / 1.21;
}

.about-us-counter-box {
  position: absolute;
  bottom: 55px;
  right: -70px;
  background-color: var(--main-color);
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease-in-out;
  animation: experienceboxmove 3s infinite linear alternate;
  z-index: 2;
}

.about-us-counter-box:hover {
  background-color: var(--white-color);
}

@keyframes experienceboxmove {
  50% {
    transform: translateX(30px);
  }
}

.about-us-counter-box .icon-box img {
  width: 100%;
  max-width: 50px;
}

.about-us-counter-content {
  width: calc(100% - 65px);
}

.about-us-counter-content h2 {
  font-size: 40px;
  line-height: 1em;
}

.about-us-counter-content p {
  color: var(--primary-color);
  margin: 5px 0 0;
}

.about-us-content {
  height: 100%;
  align-content: center;
}

.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.about-us-body-content {
  width: calc(65% - 30px);
}

.about-us-body-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-us-body-list ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.about-us-body-list ul li:last-child {
  margin-bottom: 0px;
}

.about-us-body-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
  top: 0;
  left: 0;
}

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

.about-us-counter-list {
  width: calc(35% - 30px);
}

.about-us-counter-item {
  text-align: center;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.about-us-counter-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.about-us-counter-item h2 {
  font-size: 46px;
  line-height: 1em;
}

.about-us-counter-item p {
  margin: 5px 0 0;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services {
  background-image: url("../images/service-bg-image.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto;
  padding: 120px 0;
}

.service-item {
  position: relative;
  background: var(--bg-color);
  border-radius: 20px;
  min-height: 450px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-color);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
  transform: translate(100%, -100%);
}

.service-item-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-image,
.service-item:hover .service-item-image {
  opacity: 1;
}

.service-item-image a {
  position: relative;
  display: block;
  height: 100%;
  cursor: none;
}

.service-item-image a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
}

.service-item-image figure {
  display: block;
  height: 100%;
}

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

.service-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}

.service-item-body .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

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

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

.service-item-body .icon-box img {
  position: relative;
  width: 100%;
  max-width: 40px;
  z-index: 1;
}

.service-item-content-box {
  position: relative;
  z-index: 1;
}

.service-item-content {
  max-width: 240px;
}

.service-item-content h2 {
  font-size: 20px;
  line-height: 1.4em;
  transition: all 0.4s ease-in-out;
}

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

.service-item.active .service-item-content h2,
.service-item:hover .service-item-content h2 {
  color: var(--white-color);
}

.service-item-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
}

.service-item.active .service-item-btn,
.service-item.hover .service-item-btn {
  border-color: var(--dark-divider-color);
}

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

.service-item.active .service-item-btn a.readmore-btn::before,
.service-item:hover .service-item-btn a.readmore-btn::before {
  filter: brightness(0) invert(1);
}

.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 {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  background: var(--main-color);
  color: var(--primary-color);
  line-height: 1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-right: 10px;
}

.section-footer-text p a {
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--main-color);
  transition: all 0.4s ease-in-out;
}

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

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

.section-footer-text ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--primary-color);
  margin-right: 10px;
}

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

.section-footer-text ul li i {
  font-size: 16px;
  background: var(--main-color);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.dark-section .section-footer-text p a:hover {
  color: var(--hover-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 {
  width: 100%;
  max-width: 16px;
}

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

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

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

.satisfy-client-image figure {
  display: block;
  border-radius: 50%;
}

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

.satisfy-client-image.add-more {
  width: 42px;
  height: 42px;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.satisfy-client-image.add-more i {
  font-size: 14px;
  color: var(--primary-color);
}

.satisfy-client-image.add-more h3 {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  margin: 0;
}

.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 .satisfy-client-image {
  margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image:first-child {
  margin-left: 0;
}

.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 {
  width: 100%;
  max-width: 16px;
}

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

/************************************/
/***   	   07. Our Work css       ***/
/************************************/

.our-works {
  padding: 120px 0;
}

.our-work-item-list {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.our-work-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(50% - 15px);
  gap: 15px;
}

.our-work-item .icon-box {
  position: relative;
  background: var(--main-color);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

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

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

.our-work-item-content {
  width: calc(100% - 65px);
}

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

.work-content-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  margin-top: 40px;
}

.work-contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

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

.work-contact-box .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: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

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

.work-contact-box .icon-box i,
.work-contact-box .icon-box img {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.work-contact-box .icon-box i {
  font-size: 22px;
  color: var(--primary-color);
}

.work-contact-box:hover .icon-box i {
  color: var(--white-color);
}

.work-contact-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

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

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

.work-contact-box-content p {
  margin: 0px;
}

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

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

.work-contact-box-content h3 a:hover {
  color: var(--text-color);
}

.our-work-image {
  margin-left: 15px;
}

.our-work-image figure {
  position: relative;
  display: block;
  mask-image: url("../images/our-work-image-bg-shape.svg");
  background-image: url("../images/our-work-image-bg-shape.svg");
  mask-size: cover;
  mask-position: center center;
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.our-work-image figure img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.958;
  border-radius: 10px;
}

/************************************/
/***      08. Our Project css    ***/
/************************************/

.our-project {
  background:
    url("../images/dark-section-bg-image.png"),
    linear-gradient(180deg, var(--primary-color) 70%, var(--bg-color) 30%);
  background-size:
    100% 70%,
    100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 120px 0 0;
}

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

.project-item-image figure {
  display: block;
  border-radius: 1000px 1000px 0 0;
  overflow: hidden;
}

.project-item-image figure a {
  position: relative;
  display: block;
  border-radius: 1000px 1000px 0 0;
  cursor: none;
}

.project-item-image figure a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 39.2%,
    rgba(24, 24, 24, 0.8) 100%
  );
  border-radius: 1000px 1000px 0 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.project-item-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.22;
  object-fit: cover;
  border-radius: 1000px 1000px 0 0;
  transition: all 0.6s ease-in-out;
}

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

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

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

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

.project-item-btn {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 20px;
  margin-top: 20px;
}

.project-item-btn .readmore-btn {
  color: var(--white-color);
}

.project-item-btn .readmore-btn::before {
  background-image: url("../images/arrow-white.svg");
}

.our-project .section-footer-text p,
.our-project .section-footer-text ul li {
  color: var(--primary-color);
}

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

/************************************/
/***     09. intro video css      ***/
/************************************/

.intro-video {
  padding: 120px 0;
}

.intro-video-title .intro-video-btn {
  margin-top: 40px;
}

.intro-video-content p:last-child {
  margin: 0;
}

.intro-video-counter-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.intro-video-counter-item {
  width: calc(33.33% - 20px);
}

.intro-video-counter-item h2 {
  font-size: 46px;
  line-height: 1em;
}

.intro-video-counter-item p {
  margin: 5px 0 0;
}

.intro-video-content-box {
  position: relative;
  min-height: 600px;
  border-radius: 20px;
  align-content: end;
  padding: 40px;
  overflow: hidden;
}

.intro-video-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 50.75%,
    rgba(24, 24, 24, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro-video-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.intro-video-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-video-item-list {
  position: relative;
  z-index: 1;
}

.intro-video-item-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.intro-video-item-list ul li {
  position: relative;
  line-height: 1.5em;
  color: var(--white-color);
  padding-left: 25px;
}

.intro-video-item-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
  top: 0;
  left: 0;
}

/************************************/
/***      10. How It Work css     ***/
/************************************/

.how-it-work {
  padding: 120px 0;
}

.how-it-work-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.how-it-work-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.how-it-work-item-no {
  position: relative;
  background-color: var(--main-color);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.how-it-work-item:hover .how-it-work-item-no::before {
  border-radius: 0;
  transform: scale(1);
}

.how-it-work-item-no h3 {
  position: relative;
  font-size: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.how-it-work-item:hover .how-it-work-item-no h3 {
  color: var(--white-color);
}

.how-it-work-item-content {
  width: calc(100% - 65px);
}

.how-it-work-item-content h3 {
  font-size: 20px;
}

.how-it-work-item-content p {
  margin: 10px 0 0;
}

.how-it-work-image-box {
  margin-left: 65px;
}

.how-work-image-list {
  margin-top: 20px;
}

.how-work-image-slider .swiper-wrapper,
.how-work-image-list .swiper-slide {
  cursor: none;
}

.how-work-image-slider .swiper-slide figure,
.how-work-image-list .swiper-slide figure {
  display: block;
}

.how-work-image-slider .swiper-slide img,
.how-work-image-list .swiper-slide img {
  width: 100%;
  object-fit: cover;
}

.how-work-image-slider .swiper-slide figure,
.how-work-image-slider .swiper-slide img {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}

.how-work-image-slider .swiper-wrapper .swiper-slide img {
  aspect-ratio: 1 / 0.974;
}

.how-work-image-list .swiper-wrapper .swiper-slide img {
  aspect-ratio: 1 / 0.673;
}

/************************************/
/***       11. Our Team css       ***/
/************************************/

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

.team-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: var(--secondary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.team-item:hover {
  transform: translateY(-5px);
}

.team-item-content-box {
  padding: 50px;
  flex: 1;
}

.team-item-image a {
  display: inline-block;
  border-radius: 50%;
  cursor: none;
}

.team-item-image figure {
  display: block;
  max-width: 192px;
  margin: 0 auto;
  border-radius: 50%;
}

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

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

.team-item-content {
  margin-top: 30px;
}

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

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

.team-item-content p {
  margin: 5px 0 0;
}

.team-item-btn .readmore-btn {
  font-weight: 500;
  width: 100%;
  background-color: var(--main-color);
  padding: 20px;
}

.team-item-btn .readmore-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.team-item-btn .readmore-btn::before {
  display: none;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonial {
  background-image: url("../images/testimonial-bg-image.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
  padding: 120px 0;
}

.testimonial-slider,
.testimonial-slider .swiper,
.testimonial-slider .swiper-wrapper,
.testimonial-slider .swiper-slide,
.testimonial-item {
  height: 100%;
}

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

.testimonial-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px;
  border-radius: 20px;
}

.testimonial-slider .swiper-slide .testimonial-item {
  transform: scale(0.95);
  transition: all 0.6s ease-in-out;
}

.testimonial-slider .swiper-slide.swiper-slide-next .testimonial-item {
  transform: scale(1);
}

.testimonial-item-header {
  padding: 30px;
}

.testimonial-item-rating {
  margin-bottom: 20px;
}

.testimonial-item-rating i {
  font-size: 20px;
  color: var(--main-color);
}

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

.testimonial-item-content p:last-child {
  margin-bottom: 0;
}

.testimonial-item-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  background-color: var(--dark-divider-color);
  border-radius: 10px;
  padding: 30px;
}

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

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

.testimonial-author-content {
  width: calc(100% - 75px);
}

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

.testimonial-author-content p {
  color: var(--white-color);
  margin: 5px 0 0;
}

.our-testimonial .section-footer-text {
  margin-top: 60px;
}

/************************************/
/***      13. Our Faqs css       ***/
/************************************/

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

.our-faq-content {
  position: sticky;
  top: 30px;
  margin-right: 15px;
}

.faq-cta-box {
  max-width: 550px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 10px;
}

.faq-cta-client-box {
  display: flex;
  max-width: 64%;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.faq-cta-client-image figure {
  display: block;
  border-radius: 50%;
}

.faq-cta-client-image img {
  width: 100%;
  max-width: 60px;
  border-radius: 50%;
}

.faq-cta-client-content-box {
  width: calc(100% - 75px);
}

.faq-cta-client-content-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-cta-client-content-header h3 {
  font-size: 16px;
  color: var(--white-color);
  min-width: 25px;
}

.faq-cta-client-content-header {
  margin-bottom: 0px;
}

.faq-cta-client-content-header i {
  font-size: 16px;
  color: var(--main-color);
}

.faq-cta-client-content {
  margin-top: 5px;
}

.faq-cta-client-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.faq-cta-btn .btn-default::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: var(--primary-color);
  background: transparent;
  line-height: normal;
}

.faq-cta-btn .btn-default:hover::before {
  transform: translateY(-50%);
}

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

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

.faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.333em;
  background: transparent;
  color: var(--primary-color);
  padding: 22px 55px 22px 22px;
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 22px;
  top: 50%;
  font-size: 24px;
  font-weight: 900;
  transform: translateY(-50%);
  color: var(--main-color);
  transition: all 0.4s ease-in-out;
}

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

.faq-accordion .accordion-item .accordion-body {
  background: var(--primary-color);
  border-top: 1px solid var(--dark-divider-color);
  padding: 22px;
}

.faq-accordion .accordion-item .accordion-body p {
  color: var(--white-color);
}

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

/************************************/
/***      14. Contact Us css      ***/
/************************************/

.contact-us-box {
  position: relative;
  background-image: url("../images/contact-us-box-bg-image.jpg");
  background-position: center center;
  overflow: hidden;
  padding: 120px 0;
}

.contact-us-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    270deg,
    transparent -5%,
    rgba(24, 24, 24, 0.9) 100%
  );
  width: 100%;
  height: 100%;
}

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

.contact-us-content-box {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-us-info-box {
  border-top: 1px solid var(--divider-color);
  padding-top: 60px;
}

.contact-us-info-box .contact-us-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.dark-section .contact-us-info-box {
  border-color: var(--dark-divider-color);
}

.dark-section .contact-us-info-box .work-contact-box .icon-box::before {
  background: var(--white-color);
}

.dark-section .contact-us-info-box .work-contact-box:hover .icon-box img {
  filter: none;
}

.dark-section .contact-us-info-content p,
.dark-section
  .contact-us-info-box
  .work-contact-box
  .work-contact-box-content
  p,
.dark-section
  .contact-us-info-box
  .work-contact-box
  .work-contact-box-content
  h3 {
  color: var(--white-color);
}

.contact-us-info-content {
  max-width: 394px;
  margin-top: 30px;
}

.contact-us-info-content p:last-child {
  margin-bottom: 0;
}

.contact-box-form {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 50px;
}

.contact-box-form .section-title h2 {
  color: var(--primary-color);
}

.contact-box-form .section-title p {
  color: var(--text-color);
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--primary-color);
  background-color: var(--bg-color);
  border: none;
  border-radius: 10px;
  padding: 18px 20px;
  outline: none;
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
}

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

.our-blog {
  padding: 120px 0 90px;
}

.post-item {
  position: relative;
  min-height: 450px;
  background: var(--secondary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
  overflow: hidden;
}

.post-item::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--secondary-color);
  transition: 0.5s ease-in-out;
}

.post-item.active::before,
.post-item:hover::before {
  transform: translate(100%, -100%);
}

.post-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.post-item.active .post-featured-image,
.post-item:hover .post-featured-image {
  opacity: 1;
}

.post-featured-image a {
  position: relative;
  display: block;
  height: 100%;
  cursor: none;
}

.post-featured-image a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
}

.post-featured-image figure {
  display: block;
  height: 100%;
}

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

.post-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}

.post-item-tag,
.post-item-content-box {
  position: relative;
  z-index: 1;
}

.post-item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-item-tag a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--primary-color);
  background: var(--bg-color);
  border-radius: 100px;
  padding: 6px 16px;
  transition: all 0.4s ease-in-out;
}

.post-item.active .post-item-tag a,
.post-item:hover .post-item-tag a {
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white-color);
}

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

.post-item-content h2 {
  font-size: 20px;
  line-height: 1.4em;
  transition: all 0.4s ease-in-out;
}

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

.post-item.active .post-item-content h2,
.post-item:hover .post-item-content h2 {
  color: var(--white-color);
}

.post-item-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 25px;
  margin-top: 25px;
  transition: all 0.4s ease-in-out;
}

.post-item.active .post-item-btn,
.post-item.hover .post-item-btn {
  border-color: var(--dark-divider-color);
}

.post-item.active .post-item-btn a.readmore-btn,
.post-item:hover .post-item-btn a.readmore-btn {
  color: var(--white-color);
}

.post-item.active .post-item-btn a.readmore-btn::before,
.post-item:hover .post-item-btn a.readmore-btn::before {
  background-image: url("../images/arrow-white.svg");
}

/************************************/
/***         16. Footer css       ***/
/************************************/

.main-footer {
  padding: 120px 0 0;
}

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

.about-footer-content {
  margin-top: 30px;
}

.about-footer-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-social-links {
  margin-top: 40px;
}

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

.footer-social-links ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

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

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

.footer-links-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4.167vw;
  margin-left: 40px;
}

.footer-quick-links {
  width: calc(23% - 2.778vw);
}

.footer-links {
  position: relative;
}

.footer-links::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -2.083vw;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.footer-links:last-child::before {
  display: none;
}

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

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

.footer-links ul li {
  line-height: 1.4em;
  color: var(--white-color);
  margin-bottom: 15px;
}

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

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

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

.footer-service-links {
  width: calc(36% - 2.778vw);
}

.footer-newsletter-box {
  width: calc(41% - 2.778vw);
}

.footer-newsletter-form .form-group .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  color: var(--white-color);
  border-radius: 100px;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 15px 24px;
}

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

.footer-newsletter-form .form-group .btn-default {
  width: 100%;
  padding: 17px;
  text-align: center;
  margin-top: 20px;
}

.footer-newsletter-form .form-group .btn-default::before {
  display: none;
}

.footer-cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 80px;
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 30px 40px;
  border-radius: 20px;
}

.footer-cta-content {
  width: calc(40% - 10px);
}

.footer-cta-content h2 {
  font-size: 26px;
  color: var(--white-color);
}

.footer-cta-contact-list {
  max-width: calc(60% - 10px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4.167vw;
}

.footer-cta-contact-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.footer-cta-contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2.083vw;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.footer-cta-contact-item:nth-child(2n + 2):before,
.footer-cta-contact-item:last-child:before {
  display: none;
}

.footer-cta-contact-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

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

.footer-cta-contact-item-content {
  width: calc(100% - 65px);
}

.footer-cta-contact-item-content p {
  margin: 0 0 5px;
  color: var(--white-color);
}

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

.footer-cta-contact-item-content h3 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-cta-contact-item-content h3 a:hover {
  color: var(--main-color);
}

.footer-copyright-text {
  text-align: center;
  padding: 60px 0;
}

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

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

.page-header {
  position: relative;
  background: url("../images/page-header-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 270px 0 160px;
  overflow: hidden;
}

.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(24, 24, 24, 0.8) 0%,
      rgba(24, 24, 24, 0.72) 36.01%,
      transparent 63.02%
    ),
    linear-gradient(180deg, rgba(24, 24, 24, 0.8) 0%, transparent 18.18%);
  z-index: 1;
}

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

.page-header-box h1 {
  display: inline-block;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--white-color);
  margin-bottom: 15px;
  cursor: none;
}

.page-header-box ol {
  display: inline-flex;
  margin: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.3em;
  color: var(--white-color);
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.our-apporach {
  padding: 120px 0;
}

.approach-content {
  height: 100%;
  align-content: center;
}

.approach-accordion .accordion-item {
  margin-bottom: 30px;
}

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

.approach-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  border-bottom: 1px solid var(--divider-color);
  padding: 0 30px 30px 0;
  transition: all 0.3s ease-in-out;
}

.approach-accordion
  .accordion-item:last-child
  .accordion-header
  .accordion-button.collapsed {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.approach-accordion .accordion-item .accordion-button::after,
.approach-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--main-color);
  transition: all 0.4s ease-in-out;
}

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

.approach-accordion .accordion-item .accordion-body {
  padding: 30px 30px 0 0;
}

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

.our-approach-image-box {
  position: relative;
  height: 100%;
  margin-left: 15px;
}

.our-approach-image {
  height: 100%;
}

.our-approach-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.our-approach-image figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.99;
  object-fit: cover;
  border-radius: 20px;
}

.our-approach-cta-box {
  max-width: 260px;
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 25px;
  animation: experienceboxmove 3s infinite linear alternate;
  z-index: 1;
}

.our-approach-cta-box .satisfy-client-image figure img {
  max-width: 40px;
}

.our-approach-cta-footer {
  margin-top: 25px;
}

.our-approach-cta-footer-counter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.our-approach-cta-footer-counter h2 {
  font-size: 16px;
  font-weight: 400;
}

.our-approach-cta-footer-counter p {
  margin-bottom: 0;
}

.our-approach-cta-footer-counter p i {
  font-size: 16px;
  color: var(--main-color);
}

.our-approach-cta-footer-content p {
  margin: 5px 0 0;
}

.key-fact {
  padding: 120px 0;
}

.key-fact-content {
  height: 100%;
  align-content: center;
}

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

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

.skills-progress-bar .skill-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

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

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

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

.key-fact-btn {
  margin-top: 40px;
}

.key-fact-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.key-fact-item {
  position: relative;
  width: calc(50% - 15px);
  min-height: 265px;
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.key-fact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.key-fact-item.active::before,
.key-fact-item:hover::before {
  transform: translate(100%, -100%);
}

.key-fact-item-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-image,
.key-fact-item:hover .key-fact-item-image {
  opacity: 1;
}

.key-fact-item-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.key-fact-item-image figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 40%;
}

.key-fact-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.key-fact-item-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
  z-index: 2;
}

.key-fact-item-header p {
  margin: 0 0 10px;
  transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-header p,
.key-fact-item:hover .key-fact-item-header p {
  color: var(--white-color);
}

.key-fact-item-header h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1em;
  transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-header h2,
.key-fact-item:hover .key-fact-item-header h2 {
  color: var(--white-color);
}

.key-fact-item-footer {
  border-top: 1px solid var(--divider-color);
  padding-top: 25px;
  transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-footer,
.key-fact-item:hover .key-fact-item-footer {
  border-color: var(--dark-divider-color);
}

.key-fact-item-footer p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-footer p,
.key-fact-item:hover .key-fact-item-footer p {
  color: var(--white-color);
}

.premium-quality {
  padding: 120px 0;
}

.premium-quality-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 80px;
}

.premium-quality-item {
  position: relative;
  width: calc(33.33% - 53.33px);
  text-align: center;
}

.premium-quality-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  height: 100%;
  width: 1px;
  background: var(--dark-divider-color);
}

.premium-quality-item:nth-child(3n + 3):before,
.premium-quality-item:last-child:before {
  display: none;
}

.premium-quality-item-image figure {
  display: block;
  max-width: 200px;
  border-radius: 50%;
  margin: 0 auto;
}

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

.premium-quality-item:hover .premium-quality-item-image img {
  transform: scale(1.06);
}

.premium-quality-item-content {
  margin: 40px auto 0;
  max-width: 334px;
}

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

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

.premium-quality .section-footer-text {
  margin-top: 60px;
}

.cta-box {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -85px;
  left: 5px;
  background: url(../images/cta-box-section-bg-img-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 375px;
  height: 275px;
  z-index: 1;
}

.cta-box::after {
  content: "";
  position: absolute;
  bottom: -85px;
  right: 5px;
  background: url(../images/cta-box-section-bg-img-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 440px;
  height: 360px;
  z-index: 1;
}

.cta-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.cta-content .section-title p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  position: relative;
  display: inline-block;
  margin-top: 50px;
}

.cta-btn::before {
  content: "";
  position: absolute;
  left: auto;
  bottom: 10px;
  right: -160px;
  background: url("../images/cta-box-arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 84px;
  height: 50px;
  animation: arrowmove 3s infinite linear alternate;
}

@keyframes arrowmove {
  50% {
    transform: translateX(-20px);
  }
}

/************************************/
/*** 	18. Services Pgae css     ***/
/************************************/

.page-services {
  padding: 120px 0 90px;
}

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

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

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

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

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

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

.page-category-list .page-category-list-title {
  font-size: 20px;
  background: var(--main-color);
  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);
  margin-bottom: 20px;
  padding-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: inherit;
  padding-right: 25px;
  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: 50%;
  right: 0;
  background: url("../images/arrow-primary.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 10px;
}

.sidebar-cta-content-box {
  text-align: center;
  padding: 20px 20px 30px;
}

.sidebar-cta-logo img {
  width: 100%;
  max-width: 152px;
}

.sidebar-cta-content {
  margin-top: 30px;
}

.sidebar-cta-content h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.sidebar-cta-contact-btn {
  margin-top: 30px;
}

.sidebar-cta-contact-btn .btn-default {
  padding: 17px 24px 17px 54px;
}

.sidebar-cta-contact-btn .btn-default::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: 24px;
  top: 50%;
  right: auto;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--primary-color);
  background: transparent;
  width: auto;
  height: auto;
}

.sidebar-cta-contact-btn .btn-default:hover:before {
  transform: translateY(-50%);
  filter: none;
  color: var(--white-color);
}

.sidebar-cta-image-box figure {
  display: block;
  border-radius: 10px;
}

.sidebar-cta-image-box figure img {
  width: 100%;
  aspect-ratio: 1 / 0.49;
  object-fit: cover;
  border-radius: 10px;
}

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

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

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

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

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

.service-entry h2 {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 20px;
}

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

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

.service-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-entry ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 20px;
}

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

.service-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3em;
  color: var(--main-color);
  top: 0;
  left: 0;
}

.service-entry .section-footer-text {
  margin-top: 40px;
}

.service-why-choose-box,
.service-features-box,
.service-window-box {
  margin-top: 60px;
}

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

.service-why-choose-item-list-box,
.service-why-choose-image-box {
  width: calc(50% - 15px);
}

.service-why-choose-item {
  background-color: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
}

.service-why-choose-item:last-child {
  margin-bottom: 0;
}

.service-why-choose-item span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--primary-color);
  background: var(--bg-color);
  border-radius: 100px;
  padding: 6px 15px;
  margin-bottom: 30px;
}

.service-why-choose-image-box figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.service-why-choose-image-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 1 / 1.025;
}

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

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

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

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

.service-feature-item:hover .icon-box::before {
  transform: scale(1);
}

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

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

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

.service-feature-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.service-feature-body-list,
.service-feature-body-image {
  width: calc(50% - 15px);
  align-content: center;
}

.service-feature-body-image figure {
  height: 100%;
  display: block;
  border-radius: 20px;
}

.service-feature-body-image figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.4;
  object-fit: cover;
  border-radius: 20px;
}

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

.service-window-item {
  width: calc(33.33% - 20px);
  background-color: var(--secondary-color);
  border-radius: 20px;
  text-align: center;
  padding: 40px 25px;
}

.service-window-item .icon-box {
  position: relative;
  background: var(--main-color);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

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

.service-window-item:hover .icon-box::before {
  transform: scale(1);
}

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

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

.service-window-item-content {
  margin-top: 40px;
}

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

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

.page-blog {
  padding: 120px 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(--white-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(--main-color);
}

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

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

.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: 20px;
  overflow: hidden;
}

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

.post-content {
  width: 100%;
  max-width: 1100px;
  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(--main-color);
}

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

.post-entry h1 {
  font-size: 58px;
  font-weight: 500;
}

.post-entry h2 {
  font-size: 46px;
  font-weight: 500;
}

.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:last-child,
.post-entry ul:last-child {
  margin-bottom: 0;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  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(--main-color) url("../images/icon-blockquote.svg");
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--primary-color);
}

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

.tag-links {
  font-size: 20px;
  font-weight: 500;
  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: 500;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--main-color);
  color: var(--primary-color);
  border-radius: 100px;
  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(--main-color);
  color: var(--primary-color);
  border-radius: 50%;
  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: 120px 0 90px;
}

.page-projects .project-item-image figure,
.page-projects .project-item-image a,
.page-projects .project-item-image figure a::before,
.page-projects .project-item-image figure img {
  border-radius: 20px;
}

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

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

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

.project-category-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  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 img {
  width: 100%;
  max-width: 20px;
}

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

.project-category-item-content h3,
.project-category-social-links h3 {
  font-size: 16px;
  line-height: normal;
}

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

.project-category-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  width: 100%;
}

.page-category-list .project-category-social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}

.page-category-list .project-category-social-links ul li {
  margin: 0;
  padding: 0;
  border: none;
}

.page-category-list .project-category-social-links ul li a {
  width: 30px;
  height: 30px;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.page-category-list .project-category-social-links ul li a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.page-category-list .project-category-social-links ul li a::before {
  display: none;
}

.page-category-list .project-category-social-links ul li a i {
  font-size: 16px;
}

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

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

.project-entry h2 {
  font-size: 46px;
  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-entry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.project-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3em;
  color: var(--main-color);
  top: 0;
  left: 0;
}

.project-client-requirement-box,
.project-solution-box,
.project-feedback-box {
  margin-top: 60px;
}

.project-client-requirement-list,
.project-solution-item-list-box {
  margin-top: 40px;
}

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

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

.project-solution-item {
  width: calc(50% - 15px);
}

.project-feedback-body {
  border-left: 4px solid var(--main-color);
  background-color: var(--secondary-color);
  border-radius: 20px;
  margin-top: 40px;
  padding: 30px;
}

.project-feedback-body-content {
  margin-bottom: 20px;
}

.project-feedback-body-content p {
  color: var(--primary-color);
}

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

.page-team {
  padding: 120px 0 90px;
}

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

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

.team-member-about {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 10px;
  margin-bottom: 80px;
}

.team-single-image {
  width: calc(48% - 5px);
}

.team-single-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.team-single-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.07;
  object-fit: cover;
  border-radius: 20px;
}

.team-about-content {
  width: calc(52% - 5px);
  padding: 40px;
}

.team-contact-info-title {
  margin-bottom: 30px;
}

.team-contact-info-title h3 {
  font-size: 24px;
}

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

.team-contact-item {
  width: calc(50% - 15px);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
}

.team-contact-item .icon-box img {
  width: 100%;
  max-width: 30px;
}

.team-contact-content {
  width: calc(100% - 45px);
}

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

.team-contact-content p {
  margin: 5px 0 0;
}

.team-member-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  align-items: center;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.team-member-social-list h3 {
  font-size: 20px;
}

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

.team-member-social-list ul li a {
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

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

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

.team-experience-info {
  margin-bottom: 80px;
}

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

.team-experience-item {
  width: calc(33.33% - 20px);
}

.team-experience-item h3 {
  position: relative;
  font-size: 20px;
  line-height: 1.4em;
  padding-left: 30px;
}

.team-experience-item h3::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 900;
  color: var(--main-color);
  top: 0;
  left: 0;
}

.team-experience-item p {
  margin: 20px 0 0;
}

.team-slills-form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.contact-box-form.team-contact-form {
  width: calc(50% - 30px);
}

.team-skills-box {
  width: calc(50% - 30px);
  align-content: center;
}

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

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

.team-skills-image {
  margin-top: 40px;
}

.team-skills-image figure {
  display: block;
  border-radius: 20px;
}

.team-skills-image figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 1 / 0.46;
}

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

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

.pricing-item {
  background-color: var(--white-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 10px;
}

.pricing-item-header-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.pricing-item-header-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pricing-item-header-image figure {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

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

.pricing-item-header-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.pricing-item:hover .pricing-item-header-image figure img {
  transform: scale(1.04);
}

.pricing-item-content {
  position: relative;
  padding: 30px;
  z-index: 2;
}

.pricing-item-content span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  color: var(--white-color);
}

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

.pricing-item-content h2 {
  font-size: 40px;
  color: var(--white-color);
  font-weight: 400;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 20px;
  padding-top: 20px;
}

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

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

.pricing-item-list h3 {
  font-size: 20px;
}

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

.pricing-item-list ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

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

.pricing-item-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
  top: 0;
  left: 0;
}

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

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

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

.pricing-benefit-list ul li {
  display: inline-flex;
  align-items: center;
}

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

/************************************/
/***  27. Testimonials Page css   ***/
/************************************/

.page-testimonials {
  padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
  background-color: var(--secondary-color);
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-testimonials .testimonial-item-content p,
.page-testimonials .testimonial-author-content p {
  color: var(--text-color);
}

.page-testimonials .testimonial-item-author {
  background-color: var(--bg-color);
}

.page-testimonials .testimonial-author-content h2 {
  color: var(--primary-color);
}

/************************************/
/*** 	28. Image Gallery css     ***/
/************************************/

.page-gallery {
  padding: 120px 0 90px;
}

.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: 20px;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	29.  Video Gallery css    ***/
/************************************/

.page-video-gallery {
  padding: 120px 0 90px;
}

.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: 20px;
  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(--main-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.87;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	  30. FAQ's Page css      ***/
/************************************/

.page-faqs {
  padding: 120px 0;
}

.page-faqs .page-single-faqs {
  margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
  margin-bottom: 0px;
}

/************************************/
/***   31. Contact Us Page css    ***/
/************************************/

.page-contact-us {
  padding: 120px 0 60px;
}

.google-map {
  padding: 60px 0 120px;
}

.google-map-iframe {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}

.google-map-iframe iframe {
  width: 100%;
  height: 100%;
}

/************************************/
/***   32. 404 Error Page css    ***/
/************************************/

.error-page {
  padding: 120px 0;
}

.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: 1024px) {
  .main-menu ul li {
    margin: 0;
  }

  .section-title-content {
    margin-top: 10px;
  }

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

  .section-row .section-sub-heading,
  .section-title .section-sub-title {
    margin-bottom: 10px;
  }

  .hero:before {
    background: var(--primary-color);
    opacity: 55%;
  }

  .about-us-image-box {
    max-width: 740px;
    margin: 0 auto 30px;
  }

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

  .about-us-image img {
    aspect-ratio: 1 / 1.2;
  }

  .our-work-content {
    margin-bottom: 30px;
  }

  .our-work-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .project-item-image figure,
  .project-item-image figure a,
  .project-item-image figure a::before,
  .project-item-image figure img {
    border-radius: 20px;
  }

  .project-item-image figure img {
    aspect-ratio: 1 / 1.1;
  }

  .project-item-body {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

  .intro-video-title {
    margin-bottom: 30px;
  }

  .intro-video-title .intro-video-btn {
    margin-top: 20px;
  }

  .intro-video-counter-list {
    margin-top: 30px;
    padding-top: 30px;
  }

  .intro-video-content-box {
    padding: 30px;
  }

  .intro-video-item-list ul {
    gap: 10px 30px;
  }

  .how-it-work-content {
    margin-bottom: 30px;
  }

  .how-it-work-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .how-it-work-image-box {
    max-width: 640px;
    margin: 0 auto;
  }

  .testimonial-slider .swiper-slide .testimonial-item {
    transform: scale(1);
  }

  .our-faq-content {
    position: initial;
    margin: 0 0 30px;
  }

  .contact-us-content-box {
    min-height: initial;
    margin-bottom: 40px;
  }

  .contact-us-info-box {
    padding-top: 40px;
  }

  .contact-us-info-content {
    max-width: 100%;
  }

  .post-item {
    min-height: 380px;
  }

  .about-footer {
    margin: 0 0 30px;
  }

  .about-footer-content,
  .footer-social-links {
    margin-top: 20px;
  }

  .footer-links-box {
    margin-left: 0;
  }

  .footer-links h2 {
    margin-bottom: 20px;
  }

  .footer-cta-box {
    padding: 30px;
    margin-top: 30px;
  }

  .footer-cta-contact-item-content h3 {
    font-size: 18px;
  }

  .footer-copyright-text {
    padding: 30px 0;
  }

  .approach-content {
    margin-bottom: 30px;
    height: auto;
  }

  .our-approach-image-box,
  .our-approach-image,
  .our-approach-image figure,
  .our-approach-image figure img {
    height: auto;
  }

  .our-approach-image-box {
    margin-left: 0;
  }

  .our-approach-image figure img {
    aspect-ratio: 1 / 0.7;
  }

  .key-fact-content {
    height: auto;
    margin-bottom: 30px;
  }

  .premium-quality-item-list {
    gap: 30px;
  }

  .premium-quality-item {
    width: calc(33.33% - 20px);
  }

  .premium-quality-item::before {
    right: -15px;
  }

  .premium-quality-item-content {
    margin: 30px auto 0;
  }

  .cta-box::before {
    opacity: 30%;
    width: 275px;
    height: 200px;
  }

  .cta-box::after {
    opacity: 30%;
    width: 340px;
    height: 260px;
  }

  .page-single-sidebar {
    margin: 0;
  }

  .page-category-list .page-category-list-title {
    padding: 15px 20px;
  }

  .page-category-list ul {
    padding: 20px;
  }

  .page-category-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sidebar-cta-content-box {
    padding: 10px 10px 20px;
  }

  .sidebar-cta-content,
  .sidebar-cta-contact-btn {
    margin-top: 20px;
  }

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

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

  .service-entry .section-footer-text {
    margin-top: 30px;
  }

  .service-why-choose-box,
  .service-features-box,
  .service-window-box {
    margin-top: 40px;
  }

  .service-why-choose-body,
  .service-feature-item-list {
    margin-top: 30px;
  }

  .service-why-choose-body {
    gap: 30px 20px;
  }

  .service-why-choose-item-list-box,
  .service-why-choose-image-box {
    width: calc(50% - 10px);
  }

  .service-why-choose-item {
    margin-bottom: 20px;
  }

  .service-feature-item .icon-box {
    height: 50px;
    width: 50px;
  }

  .service-feature-item .icon-box img {
    max-width: 24px;
  }

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

  .service-feature-body {
    padding-top: 30px;
    margin-top: 30px;
    gap: 20px;
  }

  .service-feature-body-list,
  .service-feature-body-image {
    width: calc(50% - 10px);
  }

  .service-feature-body-image figure img {
    aspect-ratio: 1 / 0.5;
  }

  .service-window-item-list {
    margin: 30px 0;
  }

  .service-window-item {
    padding: 30px 25px;
  }

  .service-window-item-content {
    margin-top: 30px;
  }

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

  .project-category-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .page-category-list .project-category-social-links ul {
    gap: 10px;
  }

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

  .project-client-requirement-box,
  .project-solution-box,
  .project-feedback-box {
    margin-top: 40px;
  }

  .project-client-requirement-list,
  .project-solution-item-list-box,
  .project-feedback-body {
    margin-top: 30px;
  }

  .team-member-about {
    margin-bottom: 40px;
  }

  .team-single-image,
  .team-about-content {
    width: 100%;
  }

  .team-single-image figure {
    height: auto;
  }

  .team-single-image img {
    height: auto;
    aspect-ratio: 1 / 0.7;
    object-position: top center;
  }

  .team-about-content {
    padding: 0 20px 20px;
  }

  .team-experience-info {
    margin-bottom: 40px;
  }

  .team-experience-item {
    width: calc(50% - 15px);
  }

  .team-skills-box,
  .contact-box-form.team-contact-form {
    width: 100%;
  }

  .team-skills-list .skills-progress-bar {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .btn-default {
    padding: 15px 46px 15px 18px;
  }

  .btn-default::before {
    right: 18px;
  }

  header.main-header .header-sticky {
    width: 100%;
  }

  header.main-header .header-sticky.active {
    width: 100%;
  }

  .navbar {
    padding: 20px 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-title {
    margin-bottom: 30px;
  }

  .section-sub-heading .section-sub-title,
  .section-title .section-sub-title {
    padding: 6px 12px 6px 24px;
  }

  .section-sub-heading .section-sub-title::before,
  .section-title .section-sub-title::before {
    left: 12px;
  }

  .section-title h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .hero {
    min-height: 800px;
    padding: 150px 0 60px;
  }

  .hero-content-list ul li::before {
    font-size: 16px;
  }

  .hero-content-body {
    margin-top: 30px;
    padding-top: 30px;
  }

  .video-play-button a span {
    width: 46px;
    height: 46px;
  }

  .video-play-button a span i {
    font-size: 16px;
  }

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

  .about-us-counter-box {
    padding: 20px;
  }

  .about-us-counter-box .icon-box img {
    max-width: 40px;
  }

  .about-us-counter-content {
    width: calc(100% - 55px);
  }

  .about-us-counter-content h2 {
    font-size: 32px;
  }

  .about-us-body-list ul li {
    margin-bottom: 10px;
  }

  .about-us-body-list ul li::before {
    font-size: 16px;
  }

  .about-us-btn {
    padding-top: 30px;
    margin-top: 30px;
  }

  .about-us-counter-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .about-us-counter-item h2 {
    font-size: 38px;
  }

  .our-services {
    background-size: 100% auto;
    padding: 60px 0;
  }

  .service-item {
    min-height: 380px;
    padding: 30px;
  }

  .service-item-body .icon-box {
    width: 50px;
    height: 50px;
  }

  .service-item-body .icon-box img {
    max-width: 24px;
  }

  .service-item-content {
    max-width: 100%;
  }

  .service-item-btn {
    margin-top: 20px;
    padding-top: 20px;
  }

  .section-footer-text {
    margin-top: 10px;
  }

  .section-footer-text p span {
    padding: 3px 10px;
  }

  .section-footer-text ul {
    margin-top: 10px;
  }

  .section-footer-text ul li {
    margin-right: 5px;
  }

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

  .our-work-item-list {
    padding: 30px;
  }

  .work-content-footer {
    margin-top: 30px;
  }

  .work-content-footer .work-contact-box {
    gap: 10px;
  }

  .work-content-footer .work-contact-box .icon-box {
    width: 44px;
    height: 44px;
  }

  .work-content-footer .work-contact-box .icon-box i {
    font-size: 20px;
  }

  .work-content-footer .work-contact-box .icon-box img {
    font-size: 20px;
  }

  .work-content-footer .work-contact-box-content {
    width: calc(100% - 54px);
  }

  .work-content-footer .work-contact-box-content p {
    font-size: 14px;
  }

  .work-contact-box-content h3 {
    font-size: 18px;
  }

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

  .intro-video {
    padding: 60px 0;
  }

  .intro-video-counter-item h2 {
    font-size: 38px;
  }

  .intro-video-content-box {
    min-height: 480px;
  }

  .intro-video-item-list ul li::before {
    font-size: 16px;
  }

  .how-it-work {
    padding: 60px 0;
  }

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

  .team-item-content-box {
    padding: 30px;
  }

  .team-item-image figure {
    max-width: 165px;
  }

  .team-item-content {
    margin-top: 20px;
  }

  .team-item-btn .readmore-btn {
    padding: 13px;
  }

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

  .testimonial-item {
    min-height: 380px;
  }

  .testimonial-item-header,
  .testimonial-item-author {
    padding: 20px;
  }

  .testimonial-item-rating i,
  .testimonial-item-content p {
    font-size: 18px;
  }

  .testimonial-author-image figure img {
    max-width: 50px;
  }

  .testimonial-author-content {
    width: calc(100% - 65px);
  }

  .our-testimonial .section-footer-text {
    margin-top: 40px;
  }

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

  .faq-cta-client-image img {
    max-width: 50px;
  }

  .faq-cta-client-content-box {
    width: calc(100% - 65px);
  }

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

  .faq-accordion .accordion-header .accordion-button {
    padding: 15px 45px 15px 20px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 20px;
    font-size: 18px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 15px 20px;
  }

  .contact-us-box {
    padding: 60px 0;
  }

  .contact-us-content-box {
    margin-bottom: 30px;
  }

  .contact-us-info-box {
    padding-top: 30px;
  }

  .contact-us-info-content {
    margin-top: 20px;
  }

  .contact-box-form {
    padding: 30px;
  }

  .contact-form .form-control {
    padding: 13px 15px;
  }

  .our-blog {
    padding: 60px 0 30px;
  }

  .main-footer {
    padding: 60px 0 0;
  }

  .footer-links::before {
    display: none;
  }

  .footer-newsletter-form .form-group .form-control {
    padding: 13px 20px;
  }

  .footer-newsletter-form .form-group .btn-default {
    padding: 15px;
    margin-top: 15px;
  }

  .footer-cta-content {
    width: 100%;
  }

  .footer-cta-content h2 {
    font-size: 24px;
  }

  .footer-cta-contact-list {
    max-width: 100%;
    gap: 30px 40px;
  }

  .footer-cta-contact-item::before {
    right: -20px;
  }

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

  .page-header-box h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }

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

  .approach-accordion .accordion-item {
    margin-bottom: 20px;
  }

  .approach-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding: 0 30px 20px 0;
  }

  .approach-accordion .accordion-item .accordion-body {
    padding: 20px 30px 0 0;
  }

  .key-fact {
    padding: 60px 0;
  }

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

  .skills-progress-bar .skillbar .skill-progress {
    height: 10px;
  }

  .key-fact-btn {
    margin-top: 30px;
  }

  .key-fact-item-header h2 {
    font-size: 38px;
  }

  .key-fact-item-footer {
    padding-top: 20px;
  }

  .premium-quality {
    padding: 60px 0;
  }

  .premium-quality-item {
    width: calc(50% - 15px);
  }

  .premium-quality-item::before {
    right: -15px;
  }

  .premium-quality-item:nth-child(3n + 3)::before {
    display: block;
  }

  .premium-quality-item:last-child:before,
  .premium-quality-item:nth-child(2n + 2)::before {
    display: none;
  }

  .premium-quality-item-image figure {
    max-width: 160px;
  }

  .premium-quality .section-footer-text {
    margin-top: 40px;
  }

  .cta-box {
    padding: 60px 0;
  }

  .cta-btn {
    margin-top: 30px;
  }

  .page-services {
    padding: 60px 0 30px;
  }

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

  .page-single-sidebar,
  .page-category-list {
    margin-bottom: 30px;
  }

  .sidebar-cta-contact-btn .btn-default {
    padding: 15px 18px 15px 45px;
  }

  .sidebar-cta-contact-btn .btn-default::before {
    left: 18px;
  }

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

  .service-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .service-entry ul li {
    margin-bottom: 15px;
  }

  .service-entry ul li::before {
    font-size: 16px;
  }

  .service-why-choose-item span {
    margin-bottom: 20px;
  }

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

  .page-pagination {
    margin-top: 10px;
  }

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

  .post-image {
    margin-bottom: 20px;
  }

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

  .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: 60px 0 30px;
  }

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

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

  .project-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .project-entry ul li::before {
    font-size: 16px;
  }

  .project-solution-item-list {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .project-feedback-body {
    padding: 20px;
  }

  .project-feedback-body-content {
    margin-bottom: 10px;
  }

  .page-team {
    padding: 60px 0 30px;
  }

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

  .team-contact-info-title {
    margin-bottom: 20px;
  }

  .team-contact-info-title h3 {
    font-size: 20px;
  }

  .team-member-social-list {
    margin-top: 30px;
    padding-top: 30px;
  }

  .team-experience-item h3 {
    font-size: 18px;
    padding-left: 25px;
  }

  .team-experience-item h3::before {
    font-size: 18px;
  }

  .team-experience-item p {
    margin: 10px 0 0;
  }

  .team-skills-image {
    margin-top: 30px;
  }

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

  .pricing-item-content {
    padding: 20px;
  }

  .pricing-item-content h2 {
    font-size: 34px;
  }

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

  .pricing-item-list ul {
    margin-top: 15px;
    padding-top: 15px;
  }

  .pricing-item-list ul li {
    margin-bottom: 10px;
  }

  .pricing-item-list ul li::before {
    font-size: 16px;
  }

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

  .pricing-benefit-list ul {
    gap: 20px 30px;
  }

  .pricing-benefit-list ul li img {
    max-width: 18px;
  }

  .page-testimonials {
    padding: 60px 0 30px;
  }

  .page-gallery {
    padding: 60px 0 30px;
  }

  .page-video-gallery {
    padding: 60px 0 30px;
  }

  .page-faqs {
    padding: 60px 0;
  }

  .page-faqs .page-single-faqs {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 60px 0 30px;
  }

  .google-map {
    padding: 30px 0 60px;
  }

  .google-map-iframe {
    height: 450px;
  }

  .error-page {
    padding: 60px 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-list ul {
    gap: 10px;
  }

  .hero-content-list ul li {
    width: 100%;
  }

  .hero-content-body {
    gap: 20px;
  }

  .video-play-button p {
    font-size: 14px;
  }

  .about-us-image img {
    aspect-ratio: 1 / 1.36;
  }

  .about-us-counter-box {
    padding: 12px;
    bottom: 35px;
    right: -50px;
    gap: 10px;
    border-radius: 14px;
  }

  .about-us-counter-box .icon-box img {
    max-width: 30px;
  }

  .about-us-counter-content {
    width: calc(100% - 40px);
  }

  .about-us-counter-content h2 {
    font-size: 24px;
  }

  .about-us-counter-content p {
    font-size: 14px;
  }

  .about-us-image-box-2 {
    margin-bottom: 30px;
  }

  .about-us-image-box-2 .about-us-image figure {
    border-width: 5px;
    border-radius: 24px 20px 20px 24px;
    margin-left: -80px;
  }

  .about-us-body-content,
  .about-us-counter-list {
    width: 100%;
  }

  .about-us-counter-item {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .about-us-counter-item h2 {
    font-size: 26px;
  }

  .service-item {
    padding: 20px;
    min-height: 300px;
  }

  .service-item-content h2 {
    font-size: 18px;
  }

  .our-work-item-list {
    gap: 20px;
    padding: 20px;
  }

  .our-work-item {
    width: 100%;
  }

  .our-work-item-content h3 {
    font-size: 18px;
  }

  .work-content-footer {
    gap: 20px;
  }

  .project-item-body {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .project-item-content h2 {
    font-size: 18px;
  }

  .project-item-btn {
    padding-top: 15px;
    margin-top: 15px;
  }

  .intro-video-counter-list {
    gap: 20px;
  }

  .intro-video-counter-item {
    width: calc(33.33% - 13.33px);
  }

  .intro-video-counter-item h2 {
    font-size: 26px;
  }

  .intro-video-counter-item p {
    font-size: 14px;
  }

  .intro-video-content-box {
    min-height: 380px;
    padding: 20px;
  }

  .intro-video-item-list ul {
    justify-content: start;
  }

  .how-it-work-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .how-it-work-item-no {
    width: 42px;
    height: 42px;
  }

  .how-it-work-item-content {
    width: calc(100% - 57px);
  }

  .how-it-work-item-no h3 {
    font-size: 20px;
  }

  .how-it-work-item-content h3 {
    font-size: 18px;
  }

  .team-item-content-box {
    padding: 20px;
  }

  .team-item-content h2 {
    font-size: 18px;
  }

  .testimonial-item {
    min-height: 300px;
  }

  .testimonial-item-header {
    padding: 10px;
    margin-bottom: 10px;
  }

  .testimonial-item-rating i,
  .testimonial-item-content p {
    font-size: 16px;
  }

  .testimonial-item-author {
    padding: 15px;
  }

  .testimonial-author-content h2 {
    font-size: 18px;
  }

  .faq-cta-client-box {
    max-width: 100%;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 40px 12px 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .contact-box-form {
    padding: 20px;
  }

  .post-item {
    padding: 20px;
    min-height: 320px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .post-item-btn {
    margin-top: 15px;
    padding-top: 15px;
  }

  .footer-links-box {
    justify-content: space-between;
  }

  .footer-quick-links,
  .footer-service-links,
  .footer-newsletter-box {
    width: auto;
  }

  .footer-newsletter-box {
    width: 100%;
  }

  .footer-links h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

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

  .footer-cta-box {
    padding: 20px;
  }

  .footer-cta-content h2 {
    font-size: 22px;
  }

  .footer-cta-contact-list {
    gap: 20px;
  }

  .footer-cta-contact-item::before {
    display: none;
  }

  .footer-cta-contact-item-content h3 {
    font-size: 18px;
  }

  .footer-copyright-text {
    padding: 15px 0;
  }

  .page-header-box h1 {
    font-size: 28px;
  }

  .approach-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding: 0 25px 15px 0;
  }

  .approach-accordion .accordion-item .accordion-button::after,
  .approach-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 18px;
  }

  .approach-accordion .accordion-item .accordion-body {
    padding: 15px 0 0 0;
  }

  .approach-accordion .accordion-item .accordion-body p {
    font-size: 14px;
  }

  .our-approach-image figure img {
    aspect-ratio: 1 / 0.99;
  }

  .our-approach-cta-box {
    bottom: 15px;
    left: 15px;
    padding: 15px;
  }

  .our-approach-cta-footer {
    margin-top: 15px;
  }

  .skills-progress-bar .skill-data {
    margin-bottom: 10px;
  }

  .skills-progress-bar .skill-data .skill-title,
  .skills-progress-bar .skill-data .skill-no {
    font-size: 16px;
  }

  .key-fact-item {
    width: 100%;
    padding: 20px;
    min-height: auto;
  }

  .key-fact-item-body {
    gap: 20px;
  }

  .key-fact-item-header p {
    margin: 0 0 5px;
  }

  .key-fact-item-header h2 {
    font-size: 26px;
  }

  .premium-quality-item {
    width: 100%;
  }

  .premium-quality-item::before {
    display: none;
  }

  .premium-quality-item-content {
    margin: 20px 0 0;
  }

  .premium-quality-item-content h3 {
    font-size: 18px;
  }

  .cta-btn::before {
    display: none;
  }

  .cta-box::before {
    left: -30px;
    width: 205px;
    height: 150px;
  }

  .cta-box::after {
    right: -30px;
    width: 280px;
    height: 200px;
  }

  .page-category-list .page-category-list-title,
  .sidebar-cta-content h2 {
    font-size: 18px;
  }

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

  .page-single-image img {
    aspect-ratio: 1 / 0.65;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry h3 {
    font-size: 18px;
  }

  .service-entry ul li {
    margin-bottom: 10px;
  }

  .service-why-choose-item-list-box,
  .service-why-choose-image-box {
    width: 100%;
  }

  .service-why-choose-image-box figure,
  .service-why-choose-image-box figure img {
    height: auto;
  }

  .service-why-choose-image-box figure img {
    aspect-ratio: 1 / 0.9;
  }

  .service-feature-item {
    width: 100%;
  }

  .service-feature-body-list,
  .service-feature-body-image {
    width: 100%;
  }

  .service-feature-body-image figure,
  .service-feature-body-image figure img {
    height: auto;
  }

  .service-window-item {
    width: 100%;
  }

  .service-window-item-list {
    gap: 20px;
  }

  .service-window-item {
    width: calc(50% - 10px);
    padding: 15px;
  }

  .service-window-item-content {
    margin-top: 20px;
  }

  .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-size: 30px;
    padding: 60px 20px 20px 20px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

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

  .tag-links {
    font-size: 18px;
  }

  .project-entry h2 {
    font-size: 26px;
  }

  .project-entry h3 {
    font-size: 18px;
  }

  .project-entry ul {
    gap: 10px;
  }

  .project-entry ul li {
    width: 100%;
  }

  .project-solution-item-list {
    border-bottom: none;
    padding-bottom: 0;
    gap: 20px;
  }

  .project-solution-item {
    width: 100%;
  }

  .page-team {
    padding: 60px 0 30px;
  }

  .team-single-image img {
    aspect-ratio: 1 / 1;
    object-position: center center;
  }

  .team-about-content {
    padding: 0 10px 10px;
  }

  .team-contact-info-title h3 {
    font-size: 20px;
  }

  .team-contact-list {
    gap: 20px;
  }

  .team-contact-item {
    width: 100%;
    padding: 15px;
  }

  .team-contact-content h3,
  .team-member-social-list h3 {
    font-size: 18px;
  }

  .team-member-social-list {
    gap: 20px;
  }

  .team-experience-item {
    width: 100%;
  }

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

  .team-skills-list .skills-progress-bar {
    margin-bottom: 20px;
  }

  .skills-progress-bar .skill-data {
    margin-bottom: 10px;
  }

  .pricing-item-content span,
  .pricing-item-list h3 {
    font-size: 18px;
  }

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

  .pricing-item-content h2 {
    font-size: 28px;
    margin-top: 15px;
    padding-top: 15px;
  }

  .pricing-item-content h2 sub {
    font-size: 14px;
  }

  .pricing-item-list ul {
    padding: 15px 0 0;
    margin: 15px 0 0;
  }

  .pricing-benefit-list ul {
    gap: 10px 20px;
  }

  .pricing-benefit-list ul li {
    font-size: 14px;
  }

  .pricing-benefit-list ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .google-map-iframe {
    height: 350px;
  }
}

/************************************/
/***  34. Home - Version 2 css    ***/
/************************************/

.topbar-metal {
  background: var(--main-color);
  padding: 15px 0;
}

.topbar-contact-info-metal p {
  line-height: 1.25em;
  color: var(--white-color);
  margin-bottom: 0;
}

.topbar-contact-info-metal p a {
  color: var(--white-color);
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}

.topbar-contact-info-metal p a:hover {
  color: var(--white-color);
}

.topbar-link-box-metal {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
}

.topbar-contact-info-list-metal {
  border-right: 1px solid var(--divider-color);
  margin-right: 20px;
  padding-right: 20px;
}

.topbar-contact-info-list-metal ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar-contact-info-list-metal ul li {
  position: relative;
  color: var(--primary-color);
  text-transform: capitalize;
}

.topbar-contact-info-list-metal ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  background: var(--white-color);
  width: 2px;
  height: 100%;
  transform: rotate(8deg);
}

.topbar-contact-info-list-metal ul li:last-child:before {
  display: none;
}

.topbar-contact-info-list-metal ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.topbar-contact-info-list-metal ul li a:hover {
  text-decoration: underline;
}

.topbar-social-links-metal ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar-social-links-metal ul li a {
  font-size: 18px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  padding: 3px 5px;
}

.topbar-social-links-metal ul li a:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-radius: 50%;
  padding: 3px 5px;
}

.topbar-social-links-metal ul li a i {
  color: inherit;
}

header.main-header-metal {
  position: initial;
}

header.main-header-metal .header-sticky {
  background: var(--secondary-color);
  border: none;
}

header.main-header-metal .main-menu ul li a {
  color: var(--primary-color);
}

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

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

header.main-header-metal .header-sticky.active {
  background: var(--white-color);
  border-color: var(--divider-color);
}

.hero-metal {
  position: relative;
  min-height: 100vh;
  padding: 140px 0;
  align-content: center;
}

.hero-content-metal {
  position: relative;
  margin-right: 20px;
  z-index: 2;
}

.hero-content-footer-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 7.813vw;
  padding-top: 40px;
}

.google-review-box-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-right: 1px solid var(--dark-divider-color);
  gap: 15px;
  padding-right: 30px;
}

.google-review-box-metal .icon-box img {
  width: 100%;
  max-width: 50px;
}

.google-review-box-content-metal {
  width: calc(100% - 65px);
}

.google-rating-star-metal i {
  font-size: 14px;
  color: var(--white-color);
}

.google-review-box-content-metal p {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: var(--white-color);
  margin: 8px 0 0;
}

.hero-footer-content-metal {
  max-width: 55%;
}

.hero-footer-content-metal p {
  color: var(--white-color);
  margin: 0;
}

.hero-image-slider-metal {
  height: 100%;
  align-content: end;
}

.hero-image-slider-metal .swiper-slide {
  cursor: none;
}

.hero-img-slider-metal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero-img-slider-metal:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 24, 24, 0.8) 16.17%,
    transparent 100%
  );
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-img-slider-metal .swiper {
  height: 100%;
}

.hero-img-slider-metal .swiper-slide,
.hero-img-slider-metal .slide-image {
  height: 100%;
}

.hero-img-slider-metal .slide-image figure {
  display: block;
  height: 100%;
}

.hero-img-slider-metal .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-img-item-metal {
  text-align: right;
  width: 270px;
  margin: 0 0 0 auto;
}

.hero-img-item-metal .swiper-slide {
  border: 2px solid var(--dark-divider-color);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.hero-img-item-metal .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--white-color);
}

.hero-img-item-metal figure {
  display: block;
}

.hero-img-item-metal img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.about-us-metal {
  padding: 120px 0;
}

.about-us-metal .section-title h2 img {
  width: 100%;
  max-width: 120px;
  height: 40px;
  border-radius: 100px;
}

.about-us-item-metal {
  background-color: var(--secondary-color);
  border-radius: 20px;
  min-height: 425px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.about-us-item-header-metal .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid var(--divider-color);
}

.about-us-item-header-metal .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: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-us-item-metal:hover .about-us-item-header-metal .icon-box::before {
  transform: scale(1);
}

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

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

.about-us-item-header-content-metal h3 {
  font-size: 20px;
}

.about-us-item-header-content-metal p,
.about-us-item-counter-metal p {
  margin: 10px 0 0;
}

.about-us-item-counter-metal {
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
}

.about-us-item-counter-metal h2 {
  font-size: 40px;
}

.about-us-image-metal {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

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

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

.about-us-item-image-metal figure {
  display: block;
  background-image: url("../images/about-us-item-image-shape-metal.svg");
  mask-image: url("../images/about-us-item-image-shape-metal.svg");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  width: 200px;
  height: 100px;
  overflow: hidden;
}

.about-us-item-image-metal img {
  width: 100%;
  object-fit: cover;
}

.about-us-item-Content-metal h3 {
  font-size: 20px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
}

.about-us-item-Content-metal p {
  margin: 20px 0 0;
}

.company-supports-slider-box-metal {
  margin-top: 30px;
}

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

.company-supports-content-metal hr {
  height: 1px;
  flex-grow: 1;
  color: var(--divider-color);
  opacity: 1;
  margin: 0;
}

.company-supports-content-metal p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.company-supports-slider-metal {
  margin: 0 3.125vw;
  text-align: center;
}

.company-supports-logo-metal img {
  width: 100%;
  max-width: 165px;
  height: 40px;
}

.our-services-metal {
  background-image: url("../images/service-bg-image-metal.png");
  background-position: bottom -60px center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 120px 0;
}

.service-item-metal {
  background-color: var(--bg-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  min-height: 400px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.service-item-metal .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border: 1px solid var(--divider-color);
}

.service-item-metal .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: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-item-metal:hover .icon-box::before {
  transform: scale(1);
}

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

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

.service-item-contant-metal h2 {
  font-size: 20px;
}

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

.service-item-contant-metal p {
  margin: 15px 0 0;
}

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

.service-cta-box-metal {
  position: relative;
  border-radius: 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-cta-box-metal .service-cta-image-metal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-cta-box-metal .service-cta-image-metal figure {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

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

.service-cta-box-metal .service-cta-image-metal figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.6s ease-in-out;
}

.service-cta-box-content-metal {
  position: relative;
  z-index: 2;
}

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

.service-cta-box-content-metal p {
  color: var(--white-color);
  border-top: 1px solid var(--dark-divider-color);
  margin: 20px 0 0;
  padding: 20px 0 0;
}

.why-choose-us-metal {
  padding: 120px 0;
}

.why-choose-body-metal {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}

.why-choose-item-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.why-choose-item-metal .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--divider-color);
}

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

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

.why-choose-item-metal .icon-box img {
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
}

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

.why-choose-item-Content-metal {
  width: calc(100% - 65px);
}

.why-choose-item-Content-metal h3 {
  font-size: 20px;
}

.why-choose-item-Content-metal p {
  margin: 10px 0 0;
}

.why-choose-image-list-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-body-image-metal {
  max-width: 200px;
}

.why-choose-body-image-metal figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.why-choose-body-image-metal img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-body-list-metal {
  align-content: center;
}

.why-choose-body-list-metal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-body-list-metal ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin: 20px 0;
}

.why-choose-body-list-metal ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
  top: 0;
  left: 0;
}

.why-choose-body-list-metal ul li:last-child {
  margin-bottom: 0;
}

.why-choose-image-box-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-left: 15px;
  padding-right: 15px;
}

.why-choose-image-1-metal {
  width: 67%;
  padding-bottom: 190px;
}

.why-choose-image-box-metal figure {
  display: block;
  border-radius: 20px;
}

.why-choose-image-box-metal figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-image-1-metal figure img {
  aspect-ratio: 1 / 1.265;
}

.why-choose-image-2-metal {
  position: relative;
  width: 33%;
  z-index: 1;
  transform: rotate(6deg);
}

.why-choose-image-2-metal figure {
  border: 6px solid var(--bg-color);
  margin-left: -189px;
  border-radius: 26px;
}

.why-choose-image-2-metal figure img {
  aspect-ratio: 1 / 1.0977;
}

.our-feature-metal {
  padding: 120px 0;
}

.feature-item-metal {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px 40px 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.feature-item-body-metal {
  padding-bottom: 80px;
}
.feature-item-metal:hover {
  transform: translateY(-5px);
}

.feature-item-body-metal .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

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

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

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

.feature-item-content-metal {
  text-align: center;
}

.feature-item-content-metal h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--white-color);
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.feature-item-content-metal p {
  color: var(--white-color);
  margin: 0;
}

.feature-item-image-metal {
  margin: 0 auto -35px;
}

.feature-item-image-metal figure {
  display: block;
  max-width: 280px;
  border-radius: 20px;
}

.feature-item-image-metal img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border-radius: 20px;
}

.feature-item-metal.box-2 {
  background-color: var(--main-color);
  backdrop-filter: none;
}

/* .feature-item-metal.box-2 .feature-item-content-metal {
  text-align: start;
} */

.feature-item-metal.box-2 .feature-item-content-metal h3 {
  color: var(--white-color);
  border-bottom: 1px solid var(--divider-color);
}

.feature-item-metal.box-2 .feature-item-content-metal p {
  color: var(--white-color);
}

.feature-item-image-box-metal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.feature-item-image-1-metal {
  width: calc(50% - 10px);
}

.feature-item-image-1-metal figure {
  display: block;
  border-radius: 20px 20px 0 0;
  margin-left: -30px;
}

.feature-item-image-1-metal figure img {
  width: 100%;
  max-width: 170px;
  border-radius: 20px 20px 0 0;
}

.feature-item-image-2-metal {
  width: calc(50% - 10px);
  text-align: right;
}

.feature-item-image-2-metal figure {
  display: block;
  border-radius: 20px 20px 0 0;
  margin: 0 -50px -20px 0;
}

.feature-item-image-2-metal figure img {
  width: 100%;
  max-width: 210px;
  border-radius: 20px 20px 0 0;
}

.our-feature-metal .satisfy-client-image {
  border-color: var(--primary-color);
}

.our-commitments-metal {
  padding: 120px 0;
}

.our-commitments-image-box-metal {
  position: relative;
  margin-right: 15px;
}

.our-commitments-image-metal figure {
  position: relative;
  display: block;
  border-radius: 20px;
}

.our-commitments-image-metal figure::before {
  content: "";
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-color) 88.75%);
  height: 130px;
  width: 100%;
  z-index: 1;
}

.our-commitments-image-metal img {
  width: 100%;
  aspect-ratio: 1 / 1.172;
  object-fit: cover;
  border-radius: 20px;
}

.commiments-review-box-metal {
  position: absolute;
  bottom: 95px;
  left: 0;
  max-width: 230px;
  background-color: var(--secondary-color);
  border-radius: 14px;
  padding: 30px;
  animation: heroboxmove1 3s infinite linear alternate;
  z-index: 2;
}

@keyframes heroboxmove1 {
  50% {
    transform: translateX(20px);
  }
}

.commiments-review-box-metal h2 {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.commiments-review-box-metal h2 sub {
  font-size: 16px;
  bottom: 0;
}

.commiments-review-box-metal h2 i {
  font-size: 20px;
  color: var(--main-color);
  margin-left: 5px;
}

.commiments-review-box-metal h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.commitments-counter-items-list-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5.208vw;
}

.commitments-counter-item-metal {
  position: relative;
  width: calc(50% - 2.604vw);
}

.commitments-counter-item-metal::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2.604vw;
  width: 1px;
  height: 80%;
  background: var(--divider-color);
}

.commitments-counter-item-metal:last-child:before,
.commitments-counter-item-metal:nth-child(2n + 2):before {
  display: none;
}

.commitments-counter-item-metal h2 {
  font-size: 46px;
}

.commitments-counter-item-metal p {
  margin: 10px 0 0;
}

.commitments-items-list-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.commitments-item-metal {
  width: calc(50% - 15px);
  background-color: var(--secondary-color);
  border-radius: 20px;
  /* min-height: 300px; */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.commitments-item-metal .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--divider-color);
}

.commitments-item-metal .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: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.commitments-item-metal:hover .icon-box::before {
  transform: scale(1);
}

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

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

.commitments-item-metal h3 {
  font-size: 20px;
}

.commitments-item-metal p {
  margin: 10px 0 0;
}

.our-commitments-metal .section-footer-text {
  margin-top: 60px;
}

.intro-video-box-metal {
  position: relative;
}

.intro-video-box-metal .container-fluid {
  padding: 0;
}

.intro-video-image-metal {
  position: relative;
  overflow: hidden;
}

.intro-video-image-metal figure {
  display: block;
}

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

.intro-video-image-metal img {
  width: 100%;
  aspect-ratio: 1 / 0.42;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.intro-video-metal:hover .intro-video-image-metal img {
  transform: scale(1.03);
}

.intro-video-metal .video-play-button-metal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.intro-video-metal .video-play-button-metal a {
  display: inline-block;
  border: 1px solid var(--dark-divider-color);
  padding: 10px;
  border-radius: 50%;
}

.video-play-button-metal a span {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--white-color);
  background-color: var(--divider-color);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50%;
  cursor: none;
  transition: all 0.4s ease-in-out;
}

.intro-video-metal .video-play-button-metal a:hover span {
  color: var(--primary-color);
  background-color: var(--main-color);
}

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

.cta-box-metal {
  position: relative;
  background-image: url("../images/cta-box-bg-image-metal.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 170px 0;
}

.cta-box-metal::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(24, 24, 24, 0.9) 30.93%,
    transparent 75.22%
  );
  z-index: 1;
}

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

.our-faqs-metal {
  padding: 120px 0;
}

.our-faq-content-metal {
  position: sticky;
  top: 30px;
  margin-right: 15px;
}

.faq-accordion-metal .accordion-item {
  background: var(--main-color);
  border-radius: 10px;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

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

.faq-accordion-metal .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.333em;
  color: var(--primary-color);
  background: var(--white-color);
  padding: 22px 70px 22px 20px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion-metal .accordion-item .accordion-button:not(.collapsed) {
  background: transparent;
}

.faq-accordion-metal .accordion-item .accordion-button::after,
.faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  height: 50px;
  width: 50px;
  background-color: var(--main-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}

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

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

.faq-accordion-metal .accordion-item .accordion-body p {
  color: var(--primary-color);
  margin: 0;
}

.our-testimonial-metal {
  background-image: url("../images/testimonial-bg-image-metal.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 120px 0;
}

.testimonial-content-btn-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  align-items: center;
  margin-top: 30px;
}

.our-testimonial-metal .section-content-btn .section-btn {
  margin-top: 0;
}

.testimonial-client-box-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  max-width: 62%;
}

.testimonial-client-box-metal .satisfy-client-image {
  border: 1px solid var(--white-color);
}

.satisfy-client-content-metal {
  width: calc(100% - 151px);
}

.satisfy-client-content-metal p {
  margin-bottom: 0;
}

.testimonial-slider-metal,
.testimonial-slider-metal .swiper {
  height: 100%;
}

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

.testimonial-item-metal {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background-color: var(--bg-color);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider-metal .swiper-slide .testimonial-item-metal {
  transform: scale(0.95);
}

.testimonial-slider-metal
  .swiper-slide.swiper-slide-next
  .testimonial-item-metal {
  transform: scale(1);
}

.testimonial-item-logo-metal img {
  width: 100%;
  max-width: 150px;
}

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

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

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

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

.our-testimonial-metal .section-footer-text {
  margin-top: 60px;
}

.main-footer-metal {
  padding: 120px 0 0;
}

.footer-header-metal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 30px;
  align-items: center;
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 60px;
  margin-bottom: 60px;
}

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

.footer-contact-info-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 50px;
}

.footer-contact-item-metal {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.footer-contact-item-metal::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.footer-contact-item-metal:last-child:before {
  display: none;
}

.footer-contact-item-metal .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.footer-contact-item-metal:hover .icon-box:before {
  transform: scale(1);
}

.footer-contact-item-metal .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.footer-contact-item-content-metal {
  width: calc(100% - 65px);
}

.footer-contact-item-content-metal p {
  color: var(--white-color);
  margin-bottom: 5px;
}

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

.footer-contact-item-content-metal h2 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-contact-item-content-metal h2 a:hover {
  color: var(--text-color);
}

.about-footer-content-metal p {
  color: var(--white-color);
  margin-bottom: 0;
}

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

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

.footer-social-links-metal ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.footer-social-links-metal ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

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

.footer-social-links-metal ul li a i {
  font-size: 18px;
  color: inherit;
}

.footer-links-box-metal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-left: 60px;
}

.footer-links-metal {
  max-width: 26%;
}

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

.footer-links-metal ul {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 20px;
}

.footer-links-metal ul li {
  color: var(--white-color);
  line-height: 1.5em;
  margin-bottom: 15px;
}

.footer-links-metal ul li:last-child {
  margin-bottom: 0;
}

.footer-links-metal ul li::marker {
  color: var(--white-color);
}

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

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

.footer-working-hour-box-metal {
  width: 100%;
  max-width: 40%;
}

.footer-working-hour-box-metal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-working-hour-box-metal ul li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-transform: capitalize;
  line-height: 1.5em;
  margin-bottom: 15px;
}

.footer-copyright-metal {
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  text-align: center;
  padding: 25px 0;
  margin-top: 120px;
}

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

@media only screen and (max-width: 1024px) {
  .topbar-contact-info-list-metal {
    display: none;
  }

  .hero-metal {
    min-height: 780px;
  }

  .hero-content-metal {
    max-width: 100%;
    margin: 0;
  }

  .hero-content-footer-metal {
    margin-top: 40px;
  }

  .hero-img-item-metal {
    margin: 30px 0 0 0;
  }

  .about-us-image-metal img {
    aspect-ratio: 1 / 0.85;
  }

  .company-supports-content-metal {
    margin-bottom: 30px;
  }

  .why-choose-us-content-metal {
    height: auto;
    margin-bottom: 30px;
  }

  .why-choose-image-box-metal {
    max-width: 740px;
    margin: 0 auto;
  }

  .why-choose-image-1-metal figure img {
    aspect-ratio: 1 / 1.2;
  }

  .our-commitments-image-box-metal {
    max-width: 615px;
    margin: 0 auto 30px;
  }

  .intro-video-image-metal img {
    aspect-ratio: 1 / 0.6;
  }

  .cta-box-metal::before {
    background: var(--primary-color);
    opacity: 60%;
  }

  .our-faq-content-metal {
    position: initial;
    margin: 0 0 30px;
  }

  .testimonial-content-btn-metal {
    margin-top: 20px;
  }

  .testimonial-slider-metal .swiper-slide .testimonial-item-metal {
    transform: scale(1);
  }

  .testimonial-item-metal {
    padding: 30px;
    min-height: 410px;
  }

  .testimonial-author-content-metal {
    margin-top: 30px;
    padding-top: 30px;
  }

  .footer-header-metal {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .about-footer-metal {
    margin-bottom: 30px;
  }

  .footer-social-links-metal h2 {
    margin-bottom: 15px;
  }

  .footer-links-box-metal {
    margin-left: 0;
  }

  .footer-links-metal h2 {
    margin-bottom: 20px;
  }

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

  .footer-copyright-metal {
    margin-top: 30px;
    padding: 15px 0;
  }
}

@media only screen and (max-width: 991px) {
  .hero-metal {
    padding: 60px 0;
  }

  .hero-content-footer-metal {
    margin-top: 30px;
    padding-top: 30px;
  }

  .hero-img-item-metal {
    max-width: 230px;
  }

  .hero-img-item-metal .swiper-slide {
    max-width: 100px;
  }

  .about-us-metal {
    padding: 60px 0;
  }

  .about-us-metal .section-title h2 img {
    max-width: 100px;
  }

  .about-us-item-metal {
    min-height: 370px;
    padding: 30px;
  }

  .about-us-item-counter-metal {
    padding-top: 30px;
  }

  .about-us-item-counter-metal h2 {
    font-size: 34px;
  }

  .company-supports-slider-metal {
    margin: 0;
  }

  .company-supports-logo-metal img {
    max-width: 145px;
    height: 34px;
  }

  .our-services-metal {
    background-position: bottom -20px center;
    background-size: 100% auto;
    padding: 60px 0;
  }

  .service-item-metal,
  .service-cta-box-metal {
    min-height: 350px;
    padding: 30px;
  }

  .why-choose-us-metal {
    padding: 60px 0;
  }

  .why-choose-body-metal {
    padding: 30px;
  }

  .why-choose-body-list-metal ul li {
    margin-bottom: 15px;
  }

  .why-choose-body-list-metal ul li::before {
    font-size: 16px;
  }

  .our-feature-metal {
    padding: 60px 0;
  }

  .feature-item-metal {
    padding: 30px 30px 0;
    gap: 30px;
  }

  .feature-item-image-1-metal figure {
    margin-left: -20px;
  }

  .our-commitments-metal {
    padding: 60px 0;
  }

  .commiments-review-box-metal {
    padding: 20px;
  }

  .commiments-review-box-metal h2 {
    font-size: 22px;
  }

  .commitments-counter-item-metal h2 {
    font-size: 38px;
  }

  .commitments-items-list-metal {
    padding-top: 30px;
    margin-top: 30px;
  }

  .commitments-item-metal {
    min-height: auto;
    padding: 20px;
  }

  .commitments-item-metal .icon-box {
    height: 50px;
    width: 50px;
  }

  .commitments-item-metal .icon-box img {
    max-width: 24px;
  }

  .commiments-review-box-metal h2 i {
    font-size: 18px;
  }

  .our-commitments-metal .section-footer-text {
    margin-top: 40px;
  }

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

  .cta-box-metal {
    padding: 90px 0;
  }

  .our-faqs-metal {
    padding: 60px 0;
  }

  .faq-accordion-metal .accordion-item {
    margin-bottom: 20px;
  }

  .faq-accordion-metal .accordion-header .accordion-button {
    padding: 18px 60px 18px 18px;
  }

  .faq-accordion-metal .accordion-item .accordion-button::after,
  .faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }

  .faq-accordion-metal .accordion-item .accordion-body {
    padding: 18px;
  }

  .our-testimonial-metal {
    padding: 60px 0;
  }

  .satisfy-client-image figure img {
    max-width: 40px;
  }

  .testimonial-item-content-metal p {
    font-size: 18px;
  }

  .our-testimonial-metal .section-footer-text {
    margin-top: 40px;
  }

  .main-footer-metal {
    padding: 60px 0 0;
  }

  .footer-contact-item-content-metal h2 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .topbar-metal {
    padding: 10px 0;
  }

  .topbar-contact-info-metal {
    text-align: center;
  }

  .topbar-contact-info-metal p {
    font-size: 14px;
  }

  .topbar-link-box-metal {
    display: none;
  }

  .hero-content-footer-metal {
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .google-review-box-metal {
    width: 100%;
    padding: 0;
    border-right: none;
  }

  .hero-footer-content-metal {
    max-width: 100%;
  }

  .google-review-box-metal .icon-box img {
    max-width: 40px;
  }

  .google-review-box-content-metal {
    width: calc(100% - 55px);
  }

  .google-review-box-content-metal p {
    font-size: 18px;
  }

  .hero-img-item-metal {
    max-width: 175px;
  }

  .hero-img-item-metal .swiper-slide {
    max-width: 80px;
  }

  .about-us-metal .section-title h2 img {
    max-width: 80px;
    height: 30px;
  }

  .about-us-item-metal {
    min-height: auto;
    gap: 20px;
    padding: 20px;
  }

  .about-us-item-header-metal .icon-box {
    margin-bottom: 20px;
  }

  .about-us-item-header-content-metal h3 {
    font-size: 18px;
  }

  .about-us-item-counter-metal {
    padding-top: 20px;
  }

  .about-us-item-counter-metal h2 {
    font-size: 28px;
  }

  .about-us-item-Content-metal h3 {
    font-size: 18px;
  }

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

  .company-supports-slider-box-metal {
    margin-top: 10px;
  }

  .company-supports-content-metal {
    margin-bottom: 20px;
    gap: 10px;
  }

  .company-supports-content-metal p {
    font-size: 14px;
  }

  .service-item-metal,
  .service-cta-box-metal {
    min-height: auto;
    padding: 20px;
  }

  .service-item-contant-metal h2,
  .service-cta-box-content-metal h3 {
    font-size: 18px;
  }

  .service-item-btn-metal {
    padding-top: 20px;
    margin-top: 20px;
  }

  .why-choose-body-metal {
    padding: 20px;
  }

  .why-choose-item-metal {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .why-choose-item-Content-metal {
    width: 100%;
  }

  .why-choose-item-Content-metal h3 {
    font-size: 18px;
  }

  .why-choose-image-list-metal {
    gap: 20px;
  }

  .why-choose-body-image-metal,
  .why-choose-body-list-metal {
    width: 100%;
    max-width: 100%;
  }

  .why-choose-body-list-metal ul li {
    margin-bottom: 10px;
  }

  .why-choose-image-box-metal {
    padding-right: 5px;
  }

  .why-choose-image-1-metal {
    padding-bottom: 100px;
  }

  .why-choose-image-2-metal figure {
    margin-left: -100px;
  }

  .feature-item-metal {
    padding: 20px 20px 0;
    gap: 20px;
  }

  .feature-item-content-metal h3 {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .commiments-review-box-metal {
    bottom: 55px;
    max-width: 155px;
    padding: 15px;
  }

  .commiments-review-box-metal h2 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .commiments-review-box-metal h2 sub {
    font-size: 14px;
  }

  .commiments-review-box-metal h2 i {
    font-size: 16px;
  }

  .commiments-review-box-metal h3 {
    font-size: 16px;
  }

  .commitments-counter-items-list-metal {
    gap: 30px;
  }

  .commitments-counter-item-metal {
    width: calc(50% - 15px);
  }

  .commitments-counter-item-metal::before {
    right: -15px;
  }

  .commitments-counter-item-metal h2 {
    font-size: 26px;
  }

  .commitments-counter-item-metal p {
    margin: 5px 0 0;
  }

  .commitments-items-list-metal {
    gap: 20px;
  }

  .commitments-item-metal {
    width: 100%;
    gap: 20px;
    padding: 20px;
  }

  .commitments-item-metal h3 {
    font-size: 18px;
  }

  .commitments-item-metal p {
    margin: 5px 0 0;
  }

  .intro-video-image-metal img {
    aspect-ratio: 1 / 0.8;
  }

  .intro-video-metal .video-play-button-metal a {
    padding: 5px;
  }

  .intro-video-metal .video-play-button-metal a span {
    font-size: 18px;
    width: 80px;
    height: 80px;
  }

  .faq-accordion-metal .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 50px 12px 15px;
  }

  .faq-accordion-metal .accordion-item .accordion-button::after,
  .faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
    height: 30px;
    width: 30px;
    font-size: 18px;
  }

  .faq-accordion-metal .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .testimonial-client-box-metal {
    max-width: 100%;
  }

  .testimonial-item-metal {
    min-height: auto;
    gap: 20px;
    padding: 20px;
  }

  .testimonial-item-logo-metal img {
    max-width: 135px;
  }

  .testimonial-item-content-metal p {
    font-size: 16px;
  }

  .testimonial-author-content-metal {
    margin-top: 20px;
    padding-top: 20px;
  }

  .testimonial-author-content-metal h2 {
    font-size: 18px;
  }

  .footer-header-metal {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .footer-contact-info-metal {
    gap: 20px;
  }

  .footer-contact-item-metal {
    width: 100%;
  }

  .footer-contact-item-metal::before {
    display: none;
  }

  .footer-contact-item-metal .icon-box {
    width: 44px;
    height: 44px;
  }

  .footer-contact-item-metal .icon-box img {
    max-width: 22px;
  }

  .footer-contact-item-content-metal {
    width: calc(100% - 59px);
  }

  .footer-contact-item-content-metal h2 {
    font-size: 16px;
  }

  .footer-social-links-metal {
    margin-top: 20px;
    padding-top: 20px;
  }

  .footer-social-links-metal h2 {
    font-size: 18px;
  }

  .footer-links-metal {
    max-width: 100%;
  }

  .footer-links-metal h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-working-hour-box-metal {
    width: 100%;
  }

  .footer-copyright-metal {
    padding: 10px 0;
  }
}

/************************************/
/***   35. Home - Version 3 css   ***/
/************************************/

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

.hero-stone::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-stone .container {
  position: relative;
  z-index: 2;
}

.hero-content-stone {
  max-width: 760px;
}

.hero-content-body-stone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
}

.video-play-button-stone a {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: none;
  gap: 10px;
}

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

.video-play-button-stone a span.bg-effect:before,
.video-play-button-stone a span.bg-effect:after {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  border: 25px 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-stone a span.bg-effect:after {
  animation-delay: 0.3s;
}

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

.video-play-button-stone a span i {
  position: relative;
  font-size: 16px;
  color: var(--primary-color);
  margin-left: 2px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.video-play-button-stone p {
  font-weight: 500;
  color: var(--white-color);
  margin: 0;
}

.contact-us-circle-stone {
  text-align: end;
}

.contact-us-circle-stone a {
  display: inline-block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
}

.contact-us-circle-stone a img {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

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

.contact-us-circle-stone a:hover img {
  animation-play-state: paused;
}

.hero-info-list-stone {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 60px;
  margin-top: 10.417vw;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-info-item-stone {
  width: calc(33.33% - 20px);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-info-item-stone .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--main-color);
  overflow: hidden;
}

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

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

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

.hero-info-item-content-stone {
  width: calc(100% - 65px);
}

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

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

.about-us-stone {
  padding: 120px 0;
}

.about-us-image-box-stone {
  display: flex;
  flex-wrap: wrap;
  margin-right: 15px;
}

.about-us-image-box-1-stone {
  width: 38%;
  padding-bottom: 120px;
}

.about-us-image-box-1-stone .about-us-image-stone figure {
  margin-right: -230px;
}

.about-us-image-stone figure {
  display: block;
  border-radius: 20px;
}

.about-us-image-stone figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-us-image-box-1-stone .about-us-image-stone figure img {
  aspect-ratio: 1 / 1.36;
}

.about-us-image-box-2-stone .about-us-image-stone figure img {
  aspect-ratio: 1 / 1.14;
}

.about-us-image-box-2-stone {
  position: relative;
  width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  z-index: 1;
}

.about-experience-box-stone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 25px;
  max-width: 280px;
  margin: 70px 30px 0 auto;
  animation: Movestylestone 2s infinite alternate linear;
}

@keyframes Movestylestone {
  50% {
    transform: translateX(-15px);
  }
}

.about-experience-box-stone .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.about-experience-box-stone:hover .icon-box::before {
  transform: scale(1);
}

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

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

.about-experience-box-content-stone {
  width: calc(100% - 65px);
}

.about-experience-box-content-stone h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1em;
}

.about-experience-box-content-stone p {
  color: var(--primary-color);
  line-height: normal;
  margin: 5px 0 0;
}

.about-us-image-box-2-stone .about-us-image-stone figure {
  border: 6px solid var(--bg-color);
  border-radius: 27px;
}

.about-us-item-box-stone {
  background-color: var(--white-color);
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 25px;
}

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

.about-us-item-stone .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.about-us-item-box-stone:hover .icon-box::before {
  transform: scale(1);
}

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

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

.about-us-item-content-stone {
  width: calc(100% - 70px);
}

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

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

.about-us-item-list-stone ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
}

.about-us-item-list-stone ul li {
  line-height: 1.5em;
  margin-bottom: 10px;
}

.about-us-item-list-stone ul li:last-child {
  margin-bottom: 0;
}

.about-us-item-list-stone ul li::marker {
  color: var(--main-color);
}

.about-us-body-stone {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.about-us-body-content-stone {
  width: calc(50% - 15px);
  align-content: center;
}

.about-us-list-stone ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us-list-stone ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.about-us-list-stone ul li:last-child {
  margin-bottom: 0;
}

.about-us-list-stone ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
}

.about-us-btn-stone {
  margin-top: 40px;
}

.about-us-body-image-stone {
  width: calc(50% - 15px);
}

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

.about-us-body-image-stone figure img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 0.67;
  object-fit: cover;
  border-radius: 20px;
}

.our-service-stone {
  background-image: url("../images/service-bg-image-metal.png");
  background-position: bottom -60px center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 120px 0;
}

.service-item-stone {
  background: var(--bg-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 10px;
  transition: all 0.4s ease-in-out;
}

.service-item-stone:hover {
  transform: translateY(-5px);
}

.servce-item-image-box-stone {
  position: relative;
  margin-bottom: 10px;
}

.servce-item-image-box-stone figure {
  display: block;
  border-radius: 10px;
}

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

.service-item-stone:hover .servce-item-image-box-stone figure img {
  transform: scale(1.06);
}

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

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

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

.service-btn-stone a:hover {
  background-color: var(--primary-color);
}

.service-btn-stone img {
  width: 100%;
  max-width: 20px;
  transition: all 0.4s ease-in-out;
}

.service-btn-stone a:hover img {
  filter: brightness(0) invert(1);
}

.service-btn-stone:hover img {
  transform: rotate(45deg);
}

.service-item-content-stone {
  padding: 20px;
  text-align: center;
}

.service-item-content-stone h2 {
  font-size: 20px;
}

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

.our-values-stone {
  padding: 120px 0;
}

.values-image-box-stone {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

.values-image-box-stone::before {
  content: "";
  position: absolute;
  top: 85px;
  right: 35px;
  background: url("../images/our-values-bg-image-stone.png") no-repeat;
  background-position: center center;
  background-size: cover;
  width: 155px;
  height: 234px;
  transform: rotate(15deg);
}

.values-image-box-1-stone {
  width: 40%;
  padding-bottom: 225px;
}

.values-image-box-1-stone figure {
  display: block;
  border-radius: 200px 200px 0 0;
  margin-right: -165px;
}

.values-image-box-1-stone figure img {
  width: 100%;
  border-radius: 200px 200px 0 0;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
}

.values-image-box-2-stone {
  position: relative;
  width: 60%;
  align-content: end;
  z-index: 1;
}

.values-image-stone figure {
  display: block;
  border-radius: 0 0 200px 200px;
  border: 6px solid var(--bg-color);
}

.values-image-stone figure img {
  width: 100%;
  border-radius: 0 0 200px 200px;
  aspect-ratio: 1 / 1.243;
  object-fit: cover;
}

.values-contact-circle-stone {
  position: absolute;
  left: -65px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
}

.values-contact-circle-stone a {
  display: block;
  border-radius: 50%;
}

.values-contact-circle-stone a img {
  max-width: 130px;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  animation: infiniterotate 20s infinite linear;
}

.values-contact-circle-stone a:hover img {
  animation-play-state: paused;
}

.values-item-stone {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.values-item-stone:last-child {
  margin-bottom: 0;
}

.values-item-stone .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

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

.values-item-stone:hover .icon-box::before {
  transform: scale(1);
}

.values-item-stone .icon-box img {
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
}

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

.values-item-content-stone {
  width: calc(100% - 65px);
}

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

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

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

.values-content-list-stone ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.values-content-list-stone ul li {
  width: calc(50% - 15px);
  position: relative;
  line-height: 1.5em;
  color: var(--primary-color);
  padding: 20px 20px 20px 45px;
  background-color: var(--white-color);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.values-content-list-stone ul li:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.values-content-list-stone ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 20px;
  left: 20px;
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
}

.values-btn-stone {
  margin-top: 40px;
}

.our-core-features-stone {
  padding: 120px 0;
}

.core-features-item-stone {
  border-radius: 20px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.core-features-item-stone.box-1 {
  background-color: var(--main-color);
}

.core-features-item-stone.box-1 .core-features-item-image-stone,
.core-features-item-stone.box-3 .core-features-item-image-stone {
  max-width: 330px;
  margin: 0 auto;
}

.core-features-item-stone.box-1 .core-features-item-image-stone img,
.core-features-item-stone.box-3 .core-features-item-image-stone img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  margin-bottom: -70px;
}

.core-features-item-stone h3 {
  font-size: 20px;
}

.core-features-item-stone p {
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
  margin: 20px 0 0;
}

.core-features-item-stone.box-1 p {
  color: var(--primary-color);
}

.core-features-item-stone.box-2 {
  position: relative;
  justify-content: end;
}

.core-features-item-stone.box-2 .core-features-item-image-stone {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.core-features-item-stone.box-2 .core-features-item-image-stone figure {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.core-features-item-stone.box-2 .core-features-item-image-stone figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(24, 24, 24, 0.8) 82.5%
  );
  height: 100%;
  width: 100%;
}

.core-features-item-stone.box-2 .core-features-item-image-stone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-features-item-stone.box-2 .core-features-item-content-stone {
  position: relative;
  z-index: 1;
}

.core-features-item-stone.box-2 .core-features-item-content-stone h3,
.core-features-item-stone.box-3 .core-features-item-content-stone h3 {
  color: var(--white-color);
}

.core-features-item-stone.box-2 .core-features-item-content-stone p {
  color: var(--white-color);
  border: none;
  padding-top: 0;
}

.core-features-item-stone.box-3 {
  background-color: var(--primary-color);
}

.core-features-item-stone.box-3 .core-features-item-content-stone p {
  color: var(--white-color);
  border-color: var(--dark-divider-color);
}

.cta-box-stone {
  padding: 120px 0;
}

.cta-image-box-stone {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  margin-right: 35px;
}

.cta-image-stone {
  height: 100%;
}

.cta-image-stone figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.cta-image-stone figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border-radius: 20px;
}

.cta-contact-box-stone {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 40px;
}

.cta-contact-item-stone {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 30px;
}

.cta-contact-item-stone .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--main-color);
  overflow: hidden;
}

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

.cta-contact-box-stone:hover .icon-box:before {
  transform: scale(1);
}

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

.cta-contact-item-content-stone p {
  color: var(--white-color);
  margin-bottom: 5px;
}

.cta-contact-item-content-stone h3 {
  font-size: 26px;
  color: var(--white-color);
}

.cta-contact-item-content-stone h3 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.cta-contact-item-content-stone h3 a:hover {
  color: var(--main-color);
}

.cta-contact-box-content-stone p {
  color: var(--white-color);
  margin: 0;
}

.cta-content-stone {
  height: 100%;
  align-content: center;
}

.cta-content-stone .contact-form .form-control {
  background: var(--white-color);
  border: none;
  padding: 18px 20px;
  line-height: 1.5em;
}

.intro-video-box-stone {
  position: relative;
}

.intro-video-box-stone .container-fluid {
  padding: 0;
}

.intro-video-image-stone {
  position: relative;
  overflow: hidden;
}

.intro-video-image-stone figure {
  display: block;
}

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

.intro-video-image-stone img {
  width: 100%;
  aspect-ratio: 1 / 0.42;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.intro-video-stone:hover .intro-video-image-stone img {
  transform: scale(1.03);
}

.intro-video-stone .video-play-button-stone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.intro-video-stone .video-play-button-stone a {
  display: inline-block;
  border: 1px solid var(--dark-divider-color);
  padding: 10px;
  border-radius: 50%;
}

.intro-video-stone .video-play-button-stone a span {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--white-color);
  background: var(--divider-color);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50%;
  cursor: none;
  transition: all 0.4s ease-in-out;
}

.intro-video-stone .video-play-button-stone a:hover span {
  color: var(--primary-color);
  background-color: var(--main-color);
}

.our-team-stone {
  padding: 120px 0;
}

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

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

.team-item-image-stone figure {
  position: relative;
  display: block;
}

.team-item-image-stone figure::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(24, 24, 24, 0.8) 90%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.team-item-image-stone figure img {
  width: 100%;
  aspect-ratio: 1 / 1.24;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.team-item-stone:hover .team-item-image-stone figure img {
  transform: scale(1.06);
}

.team-item-body-stone {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  text-align: center;
  z-index: 2;
}

.team-item-content-stone h2 {
  font-size: 20px;
  color: var(--white-color);
  text-align: left;
}

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

.team-item-content-stone p {
  color: var(--white-color);
  margin: 10px 0 0;
  text-align: left;
}
.team-item-content-stone img {
  width: 13px;
  margin-top: 5px;
}
.project-properties {
  display: flex;
  align-items: start;
  gap: 10px;
  /* text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; */
  font-size: 14px;
}
.team-item-stone:hover p {
  visibility: hidden;
  height: 0;
  max-height: 0;
}
.team-item-stone:hover h2 {
  visibility: hidden;
  height: 0;
  max-height: 0;
}
.team-social-list-stone {
  opacity: 0;
  visibility: hidden;
  height: 0;
  max-height: 0;
  /* border-top: 1px solid var(--dark-divider-color); */
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.team-item-stone:hover .team-social-list-stone {
  opacity: 1;
  visibility: visible;
  height: auto;
  max-height: 500px;
}

.team-social-list-stone {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: start;
  background-color: var(--dark-divider-color);
  /* padding: 15px; */
  border-radius: 15px;
}

.team-social-list-stone ul li {
  color: var(--white-color);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

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

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

.team-social-list-stone ul li a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.team-social-list-stone ul li a i {
  font-size: 18px;
  color: var(--white-color);
  transition: all 0.4s ease-in-out;
}

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

.our-pricing-plan-stone {
  padding: 120px 0;
}

.pricing-item-stone {
  background-color: var(--bg-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.pricing-item-header-stone .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 30px;
}

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

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

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

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

.pricing-item-content-stone .pricing-item-title-stone {
  display: block;
  font-size: 20px;
  line-height: 1.2em;
  color: var(--primary-color);
}

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

.pricing-item-price-stone {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 20px 30px;
  margin: 30px 0;
}

.pricing-item-price-stone h2 {
  font-size: 40px;
  line-height: normal;
}

.pricing-item-price-stone h2 sub {
  font-size: 16px;
  bottom: 0;
}

.pricing-item-list-stone h3 {
  font-size: 20px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

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

.pricing-item-list-stone ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

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

.pricing-item-list-stone ul li:before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
  top: 0;
  left: 0;
}

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

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

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

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

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

.our-faqs-stone {
  padding: 120px 0;
}

.faqs-content-stone {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 10px;
  height: 100%;
}

.faq-image-stone {
  height: 100%;
}

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

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

.faq-body-stone {
  padding: 0 20px 20px;
}

.faq-body-content-stone h3 {
  font-size: 24px;
}

.faq-body-content-stone p {
  margin: 20px 0 0;
}

.faq-contact-item-list-stone {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
  margin-top: 30px;
}

.faq-contact-item-stone {
  position: relative;
  width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.faq-contact-item-stone::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  height: 100%;
  width: 1px;
  background-color: var(--divider-color);
}

.faq-contact-item-stone:last-child:before {
  display: none;
}

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

.faq-contact-item-stone .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: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

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

.faq-contact-item-stone .icon-box img {
  transition: all 0.4s ease-in-out;
}

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

.faq-contact-item-content-stone {
  width: calc(100% - 65px);
}

.faq-contact-item-content-stone p {
  line-height: normal;
  margin-bottom: 5px;
}

.faq-contact-item-content-stone h3 {
  font-size: 20px;
  font-weight: 400;
}

.faq-contact-item-content-stone h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.faq-contact-item-content-stone h3 a:hover {
  color: var(--main-color);
}

.faq-accordion-stone .accordion-item {
  background: var(--white-color);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

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

.faq-accordion-stone .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.333em;
  background-color: var(--white-color);
  color: var(--primary-color);
  padding: 22px 55px 22px 22px;
  transition: all 0.4s ease-in-out;
}

.faq-accordion-stone .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--main-color);
}

.faq-accordion-stone .accordion-item .accordion-button::after,
.faq-accordion-stone .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 22px;
  top: 50%;
  font-size: 24px;
  font-weight: 900;
  transform: translateY(-50%);
  color: var(--main-color);
  transition: all 0.4s ease-in-out;
}

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

.faq-accordion-stone .accordion-item .accordion-body {
  background-color: var(--main-color);
  border-top: 1px solid var(--divider-color);
  padding: 22px;
}

.faq-accordion-stone .accordion-item .accordion-body p {
  color: var(--primary-color);
  margin: 0;
}

.our-faqs-stone .section-footer-text {
  margin-top: 60px;
}

.our-testimonials-stone {
  background-image: url("../images/testimonials-bg-stone.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  padding: 120px 0;
}

.testimonial-slider-stone {
  height: 100%;
}

.testimonial-slider-stone .swiper {
  padding-bottom: 60px;
  height: 100%;
}

.testimonial-slider-stone .swiper-wrapper {
  height: 100%;
  cursor: none;
}

.testimonial-slider-stone
  .swiper-wrapper
  .swiper-slide
  .testimonial-item-stone {
  transform: scale(0.95);
  transition: all 0.6s ease-in-out;
}

.testimonial-slider-stone
  .swiper-wrapper
  .swiper-slide.swiper-slide-next
  .testimonial-item-stone {
  transform: scale(1);
}

.testimonial-item-stone {
  position: relative;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--bg-color);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  overflow: hidden;
}

.testimonial-item-rating-stone i {
  font-size: 18px;
  color: var(--main-color);
}

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

.testimonial-item-author-stone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

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

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

.testimonial-author-content-stone {
  width: calc(100% - 65px);
}

.testimonial-author-content-stone h2 {
  font-size: 20px;
  font-weight: 400;
}

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

.testimonial-slider-stone .testimonial-pagination-stone {
  position: absolute;
  bottom: 0px;
  text-align: center;
}

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

.testimonial-slider-stone
  .testimonial-pagination-stone
  .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--main-color);
  opacity: 1;
}

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

.main-footer-stone {
  padding: 120px 0 0;
}

.footer-header-stone {
  border-bottom: 1px solid var(--dark-divider-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.footer-header-stone .section-title {
  max-width: 700px;
  margin-bottom: 0;
}

.footer-newsletter-form-stone {
  width: 100%;
  max-width: 440px;
}

.footer-newsletter-form-stone .form-group {
  display: flex;
  background-color: var(--dark-divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 5px;
}

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

.footer-newsletter-form-stone .form-group .form-control::placeholder {
  color: var(--text-color);
}

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

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

.footer-newsletter-form-stone .newsletter-btn img {
  width: 100%;
  max-width: 24px;
  transition: all 0.3s ease-in-out;
}

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

.about-footer-stone {
  max-width: 300px;
}

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

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

.about-footer-content-stone p {
  color: var(--white-color);
  margin-bottom: 0;
}

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

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

.footer-contact-lists-stone ul li {
  color: var(--white-color);
  font-size: 20px;
  line-height: normal;
  margin-bottom: 15px;
}

.footer-contact-lists-stone ul li:last-child {
  margin-bottom: 0;
}

.footer-contact-lists-stone ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-contact-lists-stone ul li a:hover {
  color: var(--main-color);
}

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

.footer-links-stone {
  max-width: 27%;
}

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

.footer-links-stone ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
}

.footer-links-stone ul li {
  line-height: 1.5em;
  color: var(--white-color);
  margin-bottom: 15px;
}

.footer-links-stone ul li:last-child {
  margin-bottom: 0;
}

.footer-links-stone ul li::marker {
  color: var(--main-color);
}

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

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

.footer-working-hours-stone {
  width: 100%;
  max-width: 38%;
}

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

.footer-working-hours-stone ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

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

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

.footer-social-links-stone ul li {
  margin-bottom: 0;
}

.footer-social-links-stone ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

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

.footer-social-links-stone ul li a i {
  font-size: 18px;
  color: inherit;
}

.footer-copyright-text-stone {
  text-align: center;
  border-top: 1px solid var(--dark-divider-color);
  padding: 60px 0;
  margin: 60px 0 0;
}

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

@media only screen and (max-width: 1024px) {
  .hero-img-slider-metal:before {
    background: var(--primary-color);
    opacity: 50%;
  }

  .about-us-image-box-stone {
    max-width: 650px;
    margin: 0 auto 30px;
  }

  .about-us-btn-stone {
    margin-top: 30px;
  }

  .about-us-body-image-stone figure img {
    aspect-ratio: 1 / 0.55;
  }

  .servce-item-image-box-stone figure img {
    aspect-ratio: 1 / 1;
  }

  .values-image-box-stone {
    max-width: 635px;
    margin: 0 auto 30px;
  }

  .cta-image-box-stone {
    height: auto;
    margin: 0 0 30px;
  }

  .cta-image-stone,
  .cta-image-stone figure,
  .cta-image-stone img {
    height: auto;
  }

  .cta-image-stone figure img {
    aspect-ratio: 1 / 0.7;
  }

  .cta-contact-box-stone {
    padding: 30px;
  }

  .intro-video-image-stone img {
    aspect-ratio: 1 / 0.6;
  }

  .team-item-image-stone figure img {
    aspect-ratio: 1 / 1.1;
  }

  .faqs-content-stone {
    height: auto;
    margin-bottom: 30px;
  }

  .faq-image-stone,
  .faq-image-stone figure,
  .faq-image-stone img {
    height: auto;
  }

  .testimonial-slider-stone
    .swiper-wrapper
    .swiper-slide
    .testimonial-item-stone {
    transform: scale(1);
  }

  .testimonial-item-stone {
    padding: 30px;
    min-height: 380px;
  }

  .testimonial-item-author-stone {
    margin-top: 30px;
    padding-top: 30px;
  }

  .footer-header-stone {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-newsletter-form-stone,
  .footer-header-stone .section-title {
    max-width: 100%;
  }

  .about-footer-content-stone {
    margin-top: 15px;
  }

  .about-footer-stone {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer-contact-lists-stone ul li {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links-stone h2 {
    margin-bottom: 20px;
  }

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

  .footer-copyright-text-stone {
    margin-top: 30px;
    padding: 30px 0;
  }
}

@media only screen and (max-width: 991px) {
  .hero-stone {
    padding: 150px 0 60px;
  }

  .contact-us-circle-stone {
    display: none;
  }

  .video-play-button-stone a span {
    width: 46px;
    height: 46px;
  }

  .hero-info-list-stone {
    margin-top: 30px;
    padding-top: 30px;
  }

  .hero-info-item-stone {
    width: calc(50% - 15px);
  }

  .about-us-stone {
    padding: 60px 0;
  }

  .about-us-image-box-1-stone .about-us-image-stone figure img {
    aspect-ratio: 1 / 1.2;
  }

  .about-us-image-box-2-stone .about-us-image-stone figure img {
    aspect-ratio: 1 / 1.05;
  }

  .about-experience-box-content-stone h2 {
    font-size: 34px;
  }

  .about-us-item-box-stone {
    margin-bottom: 30px;
  }

  .about-us-list-stone ul li {
    margin-bottom: 10px;
  }

  .about-us-list-stone ul li::before {
    font-size: 16px;
  }

  .our-service-stone {
    background-position: bottom -30px center;
    background-size: 100% auto;
    padding: 60px 0;
  }

  .service-item-content-stone {
    padding: 10px;
  }

  .our-values-stone {
    padding: 60px 0;
  }

  .values-contact-circle-stone a img {
    max-width: 110px;
  }

  .values-content-list-stone ul li {
    padding: 15px 15px 15px 40px;
  }

  .values-content-list-stone ul li::before {
    top: 15px;
    left: 15px;
    font-size: 16px;
  }

  .values-btn-stone {
    margin-top: 30px;
  }

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

  .core-features-item-stone {
    min-height: auto;
    padding: 30px;
  }

  .core-features-item-stone p {
    padding-top: 15px;
    margin: 15px 0 0;
  }

  .cta-box-stone {
    padding: 60px 0;
  }

  .cta-contact-item-content-stone h3 {
    font-size: 22px;
  }

  .cta-content-stone .contact-form .form-control {
    padding: 13px 15px;
  }

  .our-team-stone {
    padding: 60px 0;
  }

  .team-item-body-stone {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }

  .our-pricing-plan-stone {
    padding: 60px 0;
  }

  .pricing-item-stone {
    padding: 30px;
  }

  .pricing-item-header-stone .icon-box {
    margin-bottom: 20px;
  }

  .pricing-item-price-stone {
    padding: 15px 20px;
    margin: 20px 0;
  }

  .pricing-item-price-stone h2 {
    font-size: 34px;
  }

  .pricing-item-list-stone h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .pricing-item-list-stone ul li {
    margin-bottom: 10px;
  }

  .pricing-item-list-stone ul li::before {
    font-size: 16px;
  }

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

  .pricing-benefit-list-stone ul {
    gap: 20px 30px;
  }

  .pricing-benefit-list-stone ul li img {
    max-width: 18px;
  }

  .our-faqs-stone {
    padding: 60px 0;
  }

  .faq-body-content-stone h3 {
    font-size: 22px;
  }

  .faq-body-content-stone p {
    margin: 10px 0 0;
  }

  .faq-contact-item-list-stone {
    padding-top: 20px;
    margin-top: 20px;
  }

  .faq-accordion-stone .accordion-item {
    margin-bottom: 20px;
  }

  .faq-accordion-stone .accordion-header .accordion-button {
    padding: 15px 45px 15px 20px;
  }

  .faq-accordion-stone .accordion-item .accordion-button::after,
  .faq-accordion-stone .accordion-item .accordion-button.collapsed::after {
    font-size: 18px;
    right: 20px;
  }

  .faq-accordion-stone .accordion-item .accordion-body {
    padding: 15px 20px;
  }

  .our-faqs-stone .section-footer-text {
    margin-top: 40px;
  }

  .our-testimonials-stone {
    padding: 60px 0;
  }

  .testimonial-slider-stone .swiper {
    padding-bottom: 50px;
  }

  .testimonial-item-content-stone p {
    font-size: 18px;
  }

  .our-testimonials-stone .section-footer-text {
    margin-top: 20px;
  }

  .main-footer-stone {
    padding: 60px 0 0;
    margin-bottom: 0;
  }

  .footer-links-stone h2 {
    margin-bottom: 20px;
  }

  .footer-links-stone {
    max-width: 32%;
  }

  .footer-working-hours-stone {
    max-width: 40%;
  }

  .footer-social-links-stone {
    padding-top: 20px;
    margin-top: 20px;
  }

  .footer-social-links-stone ul li {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content-body-stone {
    gap: 20px;
  }

  .video-play-button-stone p {
    font-size: 14px;
  }

  .hero-info-list-stone {
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .hero-info-item-stone {
    width: 100%;
  }

  .hero-info-item-content-stone h2 {
    font-size: 18px;
  }

  .hero-info-item-content-stone p {
    margin: 5px 0 0;
  }

  .about-us-image-box-1-stone {
    padding-bottom: 70px;
  }

  .about-us-image-box-1-stone .about-us-image-stone figure {
    margin-right: -140px;
  }

  .about-experience-box-stone {
    gap: 10px;
    padding: 10px;
    margin: 40px 0px 0 auto;
  }

  .about-experience-box-stone .icon-box {
    height: 40px;
    width: 40px;
  }

  .about-experience-box-stone .icon-box img {
    max-width: 20px;
  }

  .about-experience-box-content-stone {
    width: calc(100% - 50px);
  }

  .about-experience-box-content-stone h2 {
    font-size: 28px;
  }

  .about-experience-box-content-stone p {
    font-size: 14px;
  }

  .about-us-item-box-stone {
    padding: 20px;
  }

  .about-us-item-content-stone h3 {
    font-size: 18px;
  }

  .about-us-item-content-stone {
    width: 100%;
  }

  .about-us-body-content-stone,
  .about-us-body-image-stone {
    width: 100%;
  }

  .about-us-btn-stone {
    margin-top: 30px;
  }

  .about-us-body-image-stone figure,
  .about-us-body-image-stone figure img {
    height: auto;
  }

  .service-item-content-stone h2 {
    font-size: 18px;
  }

  .values-image-box-stone::before {
    top: 30px;
    right: 25px;
    width: 95px;
    height: 155px;
  }

  .values-image-box-1-stone {
    padding-bottom: 120px;
  }

  .values-image-box-1-stone figure {
    margin-right: -80px;
  }

  .values-contact-circle-stone {
    left: -45px;
  }

  .values-contact-circle-stone a img {
    max-width: 90px;
  }

  .values-item-stone {
    width: 100%;
  }

  .values-item-content-stone h3 {
    font-size: 18px;
  }

  .values-content-list-stone ul {
    gap: 15px;
  }

  .values-content-list-stone ul li {
    width: 100%;
    padding: 10px 10px 10px 35px;
  }

  .values-content-list-stone ul li::before {
    top: 10px;
    left: 10px;
  }

  .core-features-item-stone {
    gap: 20px;
    padding: 20px;
  }

  .core-features-item-stone h3 {
    font-size: 18px;
  }

  .core-features-item-stone.box-2 {
    min-height: 380px;
  }

  .cta-image-stone figure img {
    aspect-ratio: 1 / 0.9;
  }

  .cta-contact-box-stone {
    padding: 20px;
  }

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

  .cta-contact-item-content-stone h3 {
    font-size: 18px;
  }

  .intro-video-image-stone img {
    aspect-ratio: 1 / 0.8;
  }

  .intro-video-stone .video-play-button-stone a {
    padding: 5px;
  }

  .intro-video-stone .video-play-button-stone a span {
    font-size: 18px;
    width: 80px;
    height: 80px;
  }

  .team-item-body-stone {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .team-item-content-stone h2 {
    font-size: 18px;
  }

  .team-item-stone:hover .team-social-list-stone {
    padding-top: 15px;
    margin-top: 15px;
    height: 55px;
  }

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

  .pricing-item-stone {
    padding: 20px;
  }

  .pricing-item-content-stone .pricing-item-title-stone {
    font-size: 18px;
  }

  .pricing-item-price-stone h2 {
    font-size: 28px;
  }

  .pricing-item-price-stone h2 sub {
    font-size: 14px;
  }

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

  .pricing-benefit-list-stone ul {
    gap: 10px 20px;
  }

  .pricing-benefit-list-stone ul li {
    font-size: 14px;
  }

  .pricing-benefit-list-stone ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .faq-image-stone img {
    aspect-ratio: 1 / 0.65;
  }

  .faq-body-stone {
    padding: 0px 10px 10px;
  }

  .faq-body-content-stone h3 {
    font-size: 20px;
  }

  .faq-contact-item-list-stone {
    gap: 40px;
  }

  .faq-contact-item-stone {
    width: 100%;
  }

  .faq-contact-item-stone::before {
    top: auto;
    right: 0;
    bottom: -20px;
    left: 0;
    height: 1px;
    width: 100%;
  }

  .faq-contact-item-content-stone h3 {
    font-size: 18px;
  }

  .faq-accordion-stone .accordion-header .accordion-button {
    padding: 12px 40px 12px 15px;
    font-size: 16px;
  }

  .faq-accordion-stone .accordion-item .accordion-button::after,
  .faq-accordion-stone .accordion-item .accordion-button.collapsed::after {
    right: 15px;
  }

  .faq-accordion-stone .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .testimonial-item-stone {
    min-height: 300px;
    padding: 20px;
    gap: 20px;
  }

  .testimonial-item-content-stone p {
    font-size: 16px;
  }

  .testimonial-item-author-stone {
    padding-top: 20px;
    margin-top: 20px;
  }

  .testimonial-author-content-stone h2 {
    font-size: 18px;
  }

  .footer-header-stone {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .footer-newsletter-form-stone .form-group .form-control {
    width: calc(100% - 40px);
  }

  .footer-newsletter-form-stone .form-group .newsletter-btn {
    height: 40px;
    width: 40px;
  }

  .footer-newsletter-form-stone .newsletter-btn img {
    max-width: 20px;
  }

  .footer-contact-lists-stone {
    margin-top: 20px;
    padding-top: 20px;
  }

  .footer-contact-lists-stone ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-links-stone {
    max-width: 100%;
  }

  .footer-links-stone h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-social-links-stone ul {
    justify-content: center;
  }

  .footer-copyright-text-stone {
    margin-top: 20px;
    padding: 15px 0;
  }
}
