/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Who We Are css
08. Intro Video css
09. Our Commitment css
10. Our Projects css
11. Our Fact css
12. CTA Box css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. 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 
-------------------------------------------------------------------------------------- */
@font-face {
  font-family: "atmospheric";
  src: url("../fonts/atmospheric/aAtmospheric.ttf");
}

@font-face {
  font-family: "nebula";
  src: url("../fonts/nebula/Nebula-Regular.otf");
}

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

:root {
  --primary-color: #23336f;
  --secondary-color: #fdc210;
  --accent-color: #040618;
  --bg-color: #f3f3f3;
  --text-color: #04rgb(58, 61, 71);
  --accent-secondary-color: #e9b01a;
  --black-color: #000000;
  --white-color: #ffffff;
  --divider-color: #0406181a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "General Sans";
  --atmospheric-font: "atmospheric";
  --nebula-font: "nebula";
}

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

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

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

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  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: 1500px;
} */

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

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

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

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

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

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

.atmospheric-font {
  font-family: var(--atmospheric-font);
}

.nebula-font {
  font-family: var(--nebula-font);
}

.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;
  background: var(--primary-color);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--secondary-color);
  padding: 17px 58px 17px 24px;
  border: none;
  overflow: hidden;
  outline: none;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}

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

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

.btn-default:hover:before {
  transform: translateY(-50%) rotate(45deg);
  filter: brightness(0) invert(0);
}

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

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

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

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

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

.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: center center;
  background-size: cover;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

.bg-section {
  width: 100%;
  max-width: 1880px;
  background: linear-gradient(88deg, #ffffff 0%, #f2f6ff 100%);
  border-radius: 20px;
  margin: 0 auto;
}

.bg-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: center center;
  background-size: cover;
}

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

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

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 800px;
  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: 20px 0px;
  font-weight: 100px;
}

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

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

.section-title .section-sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  /* 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-title .section-sub-title::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-secondary-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.section-title h1 {
  font-size: 110px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
  font-family: var(--atmospheric-font);
}

.section-title b {
  color: var(--accent-secondary-color);
}

.who-we-are-content-box-metal .section-title p b,
.who-we-are-content-box-metal .section-title p strong {
  color: #212529 !important;
}

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

.section-title h1 span,
.section-title h2 span {
  /* font-style: italic; */
  color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

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

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

.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.brand-title {
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
  position: relative;
  cursor: pointer;
}

.brand-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  /* space below text */
  left: 0;
  background-color: currentColor;
  /* underline same color as text */
  transition: width 0.3s ease;
}

.brand-title:hover::after {
  width: 100%;
}

.navbar-brand img {
  height: 75px;
}

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

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

.main-menu ul li {
  margin: 0 10px;
  position: relative;
}

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

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

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

.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(--accent-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(--white-color) !important;
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li.active a {
  color: var(--accent-secondary-color) !important;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--accent-secondary-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(--accent-secondary-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}

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

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

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

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

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

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

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--primary-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: 500;
  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(--accent-secondary-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: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-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(--accent-secondary-color);
}

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

.hero {
  position: relative;
  background-image: url("../images/hero-bg-image.jpg");
  align-content: center;
  min-height: 100vh;
  padding: 220px 0 80px;
  margin-top: 20px;
  overflow: hidden;
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    var(--primary-color) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
} */

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

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

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

.hero-content-box .section-title {
  margin-bottom: 0;
  text-align: center;
}

.hero-counter-box {
  margin-left: 3.125vw;
}

.hero-counter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4.479vw;
}

.hero-counter-item {
  position: relative;
  width: calc(33.33% - 2.986vw);
}

.hero-counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2.24vw;
  transform: rotate(10deg);
  background-color: var(--dark-divider-color);
  height: 100%;
  width: 1px;
}

.hero-counter-item:last-child:before {
  display: none;
}

.hero-counter-item h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--white-color);
}

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

/* Hero Swiper Styles */
.hero.hero-swiper {
  padding: 0;
  min-height: 100vh;
}

.hero.hero-swiper .swiper {
  width: 100%;
  height: 100vh;
}

.hero.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero.hero-swiper .hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero.hero-swiper .hero-bg-image {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* z-index: 3 */
}

.hero.hero-swiper .hero-content-overlay {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 220px 0 80px;
}

.hero.hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      transparent 50%,
      var(--primary-color) 100%);
  z-index: 2;
}

/* Swiper Pagination Dots */
.hero.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
}

.hero.hero-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  margin: 0 8px !important;
  transition: all 0.3s ease !important;
  border-radius: 50% !important;
}

.hero.hero-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8) !important;
}

.hero.hero-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-secondary-color) !important;
  transform: scale(1.2) !important;
}

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

.hero-rating-box-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.hero-rating-box-header h3 {
  font-size: 20px;
  color: var(--white-color);
}

.hero-rating-box-header p {
  margin-bottom: 0;
}

.hero-rating-box-header p i {
  color: var(--accent-secondary-color);
}

.hero-rating-box-content {
  margin-top: 5px;
}

.hero-rating-box-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

/************************************/
/*** 	   05. About Us css	      ***/
/************************************/
about-two__img:after {
  position: absolute;
  top: 137px;
  left: -144px;
  width: 355px;
  height: 355px;
  border-radius: 50%;
  background-color: var(--light-blue);
  content: "";
  z-index: -1;
  animation-name: zoom-fade-2;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: zoom-fade-2;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: zoom-fade-2;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: zoom-fade-2;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: zoom-fade-2;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

*,
::after,
::before {
  box-sizing: border-box;
}

slideInLeft animation {
  transform: translate3d(0px, 0px, 0px);
  visibility: visible;
}

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

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

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

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

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

.about-us-circle {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
}

.about-us-circle a {
  display: inline-block;
  border-radius: 50%;
}

.about-us-circle img {
  width: 100%;
  max-width: 140px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

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

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

.about-us-circle img:hover {
  animation-play-state: paused;
}

.about-us-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-us-item {
  width: calc(50% - 15px);
  min-height: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--white-color);
  border-radius: 20px;
  gap: 30px;
  padding: 10px;
}

.about-us-item.box-2 .about-us-item-content {
  padding: 0 30px 30px;
}

.about-us-item.box-2 {
  flex-direction: column-reverse;
}

.about-us-item-content {
  padding: 30px 30px 0;
}

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

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

.about-us-item.box-1 .about-us-item-image {
  margin-bottom: -10px;
}

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

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

.about-us-item.box-1 .about-us-item-image figure,
.about-us-item.box-1 .about-us-item-image img {
  border-radius: 20px 20px 0 0;
}

.about-counter-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin-top: 60px;
}

.about-counter-item {
  width: calc(33.33% - 33.33px);
}

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

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

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

.our-service {
  padding: 90px 0;
}

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

.service-item:hover,
.service-item.active {
  background-color: var(--primary-color);
}

.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;
  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::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 50%;
}

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

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

.service-item .service-detail-box {
  position: absolute;
  z-index: 2;
  opacity: 0;
  top: 0px;
  transition: all 0.5s ease;
  color: #fff;
  left: 0;
  padding: 40px;
}

.service-item:hover .service-detail-box {
  opacity: 1;
}

.service-item-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
  z-index: 2;
  transition: all 0.5s ease;
}

.service-item:hover .service-item-body {
  opacity: 0;
}

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

.service-item-body .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--accent-secondary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: 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: scale(1);
}

.service-item-body .icon-box img {
  position: relative;
     width: 60px;
    height: 60px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  filter: brightness(0) invert(1);
}

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

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

.service-item-content p {
  margin: 10px 0 0;
  transition: all 0.4s ease-in-out;
}

.service-item .service-detail-box p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

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

.service-item-btn .readmore-btn {
  padding-right: 35px;
  transition: all 0.4s ease-in-out;
}

.service-item-btn .readmore-btn::before {
  height: 26px;
  width: 26px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  background-size: 16px auto;
}

.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: 500;
  background: var(--accent-color);
  color: var(--primary-color);
  line-height: 1em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 10px;
}

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

.section-footer-text p a:hover {
  color: var(--accent-secondary-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: 600;
  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 {
  color: var(--accent-secondary-color);
}

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

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

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

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

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

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

.section-footer-text.section-footer-contact span img {
  width: 100%;
  max-width: 16px;
}

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

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

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

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

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

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

.satisfy-client-image.add-more h3 {
  font-size: 16px;
}

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

.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 figure img {
  max-width: 30px;
}

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

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

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

/************************************/
/*** 	  07. Who We Are css      ***/
/************************************/

.who-we-are {
  padding: 100px 0;
  background: var(--primary-color);
  color: var(--white-color);
}

.who-we-are .section-title h2,
.who-we-are .section-title .section-sub-title {
  color: var(--white-color);
}

.who-we-nav {
  margin-bottom: 40px;
}

.who-we-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 15px 0;
  border-bottom: 4px solid var(--divider-color);
}

.who-we-nav ul li {
  width: 33.33%;
}

.who-we-nav ul li .nav-link {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 0px;
  padding: 0 5px 30px;
  transition: all 0.4s ease-in-out;
}

.who-we-nav ul li .nav-link.active,
.who-we-nav ul li .nav-link:hover {
  color: var(--secondary-color);
  background: transparent;
}

.who-we-nav ul li .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: auto;
  right: 0;
  background: var(--accent-secondary-color);
  width: 0;
  height: 4px;
  transition: all 0.4s ease-in-out;
}

.who-we-nav ul li .nav-link.active:before,
.who-we-nav ul li .nav-link:hover:before {
  width: 100%;
  left: 0;
}

.who-we-nav ul li .nav-link img {
  width: 100%;
  max-width: 30px;
  transition: all 0.3s ease-in-out;
  filter: brightness(0) invert(1);
}

.who-we-nav ul li .nav-link.active img,
.who-we-nav ul li .nav-link:hover img {
  filter: none;
}

.who-we-tab-header-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.who-we-tab-header-content p {
  margin: 20px 0 0;
}

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

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

.who-we-item .icon-box img {
  width: 100%;
  max-width: 34px;
}

.who-we-item-content {
  width: calc(100% - 49px);
}

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

.who-we-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

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

.about-us-contact-box .icon-box {
  position: relative;
  background: var(--accent-secondary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.about-us-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;
}

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

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

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

.about-us-conatct-content p {
  margin: 0 0 5px;
}

.about-us-conatct-content h3 {
  font-size: 20px;
}

.about-us-conatct-content h3 a {
  color: var(--white-color);
  transition: all 0.4s ease-in-out;
}

.about-us-conatct-content h3 a:hover {
  color: var(--accent-secondary-color);
}

.who-we-image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 20px 30px;
  margin-left: 20px;
}

.who-we-image-box-1 {
  width: calc(55% - 15px);
}

.who-we-image-box-2 {
  width: calc(45% - 15px);
}

.who-we-image figure {
  display: block;
  border-radius: 20px;
}

.who-we-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.who-we-image-box-1 .who-we-image img {
  aspect-ratio: 1 / 1.622;
}

.who-we-image-box-2 .who-we-image img {
  aspect-ratio: 1 / 1.27;
}

.who-we-cta-box {
  background-color: var(--white-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px;
}

.who-we-cta-box .satisfy-client-image img {
  max-width: 34px;
}

.who-we-cta-box .satisfy-client-image.add-more {
  height: 36px;
  width: 36px;
}

.who-we-cta-box .satisfy-client-image.add-more i {
  font-size: 16px;
}

.who-we-cta-rating {
  margin-top: 20px;
}

.who-we-cta-rating span i {
  color: var(--accent-secondary-color);
}

.who-we-cta-content {
  margin-top: 10px;
}

.who-we-cta-content p {
  margin: 0;
}

/************************************/
/*** 	  08. Intro Video css     ***/
/************************************/

.intro-video {
  position: relative;
  background-image: url("../images/intro-video-bg-image.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 45.833vw;
  align-content: end;
  padding: 100px 0;
  overflow: hidden;
}

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

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

.intro-video-content .section-title {
  margin-bottom: 0;
}

.watch-video-circle {
  text-align: end;
}

.watch-video-circle a {
  display: inline-block;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: none;
  border-radius: 50%;
}

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

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

/************************************/
/***    09. Our Commitment css    ***/
/************************************/

.our-commitment {
  padding: 90px 0;
}

.our-commitment-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
  margin-right: 20px;
}

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

.commitment-client-box-content p {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.commitment-item {
  position: relative;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 40px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

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

.commitment-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white-color);
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
}

.commitment-item:hover:before {
  top: auto;
  bottom: 0;
  height: 100%;
}

.commitment-item-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  z-index: 1;
}

.commitment-item-header .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

.commitment-item:hover .commitment-item-header .icon-box {
  background: transparent;
}

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

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

.commitment-item-header .icon-box img {
  position: relative;
  width: 100%;
  width: 40px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  filter: brightness(0) invert(1);
}

.commitment-item:hover .commitment-item-header .icon-box img {
  filter: unset;
}

.commitment-item-title {
  position: relative;
  width: calc(100% - 75px);
  z-index: 1;
}

.commitment-item-title h3 {
  font-size: 20px;
  line-height: 1.3em;
}

.commitment-item-content {
  position: relative;
  margin-top: 30px;
  z-index: 1;
}

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

/************************************/
/*** 	  10. Our Projects css    ***/
/************************************/

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

.project-btn {
  align-items: center;
}

.project-item {
  position: relative;
  border-radius: 20px;
  /* margin-bottom: 30px; */
  overflow: hidden;
  background: transparent;
  height: 100%;
}

.portfolio-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
  border-radius: 20px 20px 0 0;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.06);
}

/* Content under the image */
.portfolio-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Title and paragraph */
.portfolio-details h3 a {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.portfolio-card:hover h3 a,
.portfolio-card .readmore-btn:hover {
  color: var(--secondary-color);
}

.portfolio-details p {
  color: var(--black-color);
  margin: 0;
}

/* Small divider */
.portfolio-details .divider {
  height: 2px;
  width: 50px;
  background-color: var(--secondary-color);
  /* accent color */
  margin: 10px 0;
}

/* Meta section: location left, read more right */
.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--black-color);
  border-top: 1px solid var(--divider-color);
  margin-top: auto;
  padding-top: 20px;
}

.portfolio-meta .location i {
  margin-right: 5px;
  color: var(--secondary-color);
  /* icon color */
}

.portfolio-meta .read-more a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.portfolio-meta .read-more a:hover {
  color: var(--primary-color);
}

/* cardsection- end */
.project-item-image figure {
  position: relative;
  display: block;
  border-radius: 20px;
}

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

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

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

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

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

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

.project-item-content ul li {
  position: relative;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 15px;
}

.project-item-content ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.project-item-content ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.project-item-content ul li a:hover {
  color: var(--accent-secondary-color);
}

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

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

/************************************/
/*** 	    11. Our Fact css      ***/
/************************************/

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

.our-fact-image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  background: url("../images/our-fact-image-box-bg.png") no-repeat;
  background-position: bottom 30px left 57%;
  background-size: auto;
  margin-right: 20px;
}

.our-fact-image-box-1 {
  position: relative;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 10px;
  width: 55%;
  z-index: 2;
}

.our-fact-image-box-1 .our-fact-image figure {
  display: block;
  border-radius: 14px;
}

.our-fact-image-box-1 .our-fact-image img {
  width: 100%;
  aspect-ratio: 1 / 0.765;
  object-fit: cover;
  border-radius: 14px;
}

.our-fact-image-content {
  padding: 20px 10px 10px;
}

.our-fact-image-content p {
  color: var(--primary-color);
  font-weight: 500;
  margin: 0;
}

.our-fact-image-box-2 {
  padding-bottom: 90px;
  width: 45%;
}

.our-fact-image-box-2 .our-fact-image {
  margin-left: -270px;
}

.our-fact-image-box-2 .our-fact-image figure {
  display: block;
  border-radius: 20px;
}

.our-fact-image-box-2 .our-fact-image img {
  width: 100%;
  aspect-ratio: 1 / 1.071;
  object-fit: cover;
  border-radius: 20px;
}

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

.fact-item {
  position: relative;
  width: calc(50% - 15px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  min-height: 320px;
  overflow: hidden;
}

.fact-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white-color);
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
}

.fact-item:hover:before {
  top: auto;
  bottom: 0;
  height: 100%;
}

.fact-item-title {
  position: relative;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  z-index: 1;
}

.fact-item-title ul {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 20px;
}

.fact-item-title ul li {
  line-height: 1.5em;
}

.fact-item-title ul li::marker {
  color: var(--accent-secondary-color);
}

.fact-item-counter-content {
  position: relative;
  z-index: 1;
}

.fact-item-counter-content h2 {
  font-size: 50px;
}

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

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

.cta-box {
  position: relative;
  background-image: url("../img/normal/cta.png");
  padding: 100px 0;
  overflow: hidden;
}

.cta-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(270deg, transparent 0%, rgba(4, 6, 24, 0.7) 100%);
  z-index: 1;
}

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

/* Counter box styling */
.cta-box .counter-box {
  text-align: center;
  background: transparent;
  padding: 20px;
  transition: transform 0.3s ease;
}

.cta-box .counter-box:hover {
  transform: translateY(-10px);
  /* subtle hover effect */
}

/* Counter images */
.cta-box .counter-box img {
  width: 60px;
  margin-bottom: 15px;
}

/* Counter description text */
.cta-box .counter-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Counter numbers */
.cta-box .counter-box h3,
.cta-box .counter-box h3 .count-text {
  font-size: 60px !important;
  /* very big numbers */
  font-weight: 700;
  color: #fff !important;
  /* white color */
  margin: 0;
}

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

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

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

.faq-client-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

.faq-client-box-content {
  max-width: 67%;
}

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

.faq-accordion .accordion-item {
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

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

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

.faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.333em;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 20px 50px 20px 24px;
  transition: all 0.3s ease-in-out;
}

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

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

.accordion-item .accordion-body ul {
  list-style: disc;
  margin: 10px 0 0;
  padding-left: 20px;
}

.accordion-item .accordion-body ul li {
  color: var(--white-color);
  line-height: 1.5em;
  margin-bottom: 5px;
}

.accordion-item .accordion-body ul li:last-child {
  margin-bottom: 0;
}

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

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

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/
.our-testimonials {
  padding: 100px 0;
  margin: 20px auto;
}

.our-testimonials .section-btn {
  display: flex;
  justify-content: center;
}

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

.testimonial-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* gap: 30px; */
  min-height: 430px;
  background-color: var(--bg-color);
  border-radius: 20px;
  padding: 40px;
}

.testimonial-item-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.testimonial-item-rating i {
  color: var(--accent-secondary-color);
  font-size: 18px;
}

.testimonial-item-quote img {
  width: 100%;
  max-width: 40px;
}

.testimonial-item-content p {
  margin-bottom: 0;
  font-weight: 500;
}

.testimonial-item-author {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.testimonial-author-image figure {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  border: 3px solid var(--accent-secondary-color);
}

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

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

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

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

.company-supports-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  text-align: center;
}

.company-supports-content hr {
  height: 1px;
  width: 36%;
  color: var(--divider-color);
  opacity: 1;
  margin: 0;
}

.company-supports-content p {
  margin-bottom: 0;
}

.company-supports-slider {
  padding: 0 4.167vw 0;
}

.company-supports-logo {
  text-align: center;
  /* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05); */
  padding: 10px;
  /* margin: 20px 0; */
  border: 1px solid var(--divider-color);
  border-radius: 10px;
}

.company-supports-logo:hover img {
  transform: scale(1.1);
}

.company-supports-logo img {
  width: 100%;
  max-width: 130px;
  transition: all 0.6s ease-in-out;
}

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

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

.post-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.post-featured-image {
  margin-bottom: 20px;
}

.post-featured-image a,
.post-featured-image figure {
  display: block;
  border-radius: 20px;
  cursor: none;
  overflow: hidden;
}

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

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

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

.post-item-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.post-item-content {
  flex: 1;
}

.post-item-btn {
  margin-top: auto;
}

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

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

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

.main-footer {
  padding: 70px 0 0;
  width: 98%;
  max-width: 100%;
  margin: 0 20px 20px;
}

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

.footer-header .section-title {
  margin-bottom: 0;
  max-width: 860px;
}

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

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

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

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

.footer-social-links ul li a i {
  font-size: 18px;
  color: var(--accent-secondary-color);
  transition: all 0.3s ease-in-out;
}

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

.about-footer {
  margin-right: 2.604vw;
}

.footer-logo {
  background: #fff;
  width: fit-content;
  padding: 10px;
  border-radius: 5px;
}

.footer-logo img {
  height: 75px;
}

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

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

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

/* .footer-links {
  max-width: 35%;
} */

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

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

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

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

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

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

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

.footer-newsletter-form .form-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: transparent;
  border: 1px solid var(--dark-divider-color);
  border-radius: 100px;
  padding: 4px;
}

.footer-newsletter-form .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 14px;
}

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

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

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

.footer-newsletter-form .form-group .newsletter-btn i {
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.footer-copyright {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 40px;
  padding: 40px 0;
  text-align: center;
}

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

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

.page-header {
  position: relative;
  background-image: url("../img/normal/breadcrumb.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 290px 0 150px;
  margin-top: 20px;
  overflow: hidden;
}

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

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

.page-header-box h1 {
  display: inline-block;
  font-size: 60px;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box h1 span {
  font-style: italic;
}

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

.page-header-box ol li.breadcrumb-item {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  color: var(--white-color);
}

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

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

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

.our-approach-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-right: 35px;
}

.our-approach-images::before {
  content: "";
  position: absolute;
  bottom: 70px;
  left: 20px;
  border: 4px solid var(--accent-secondary-color);
  width: 394px;
  height: 410px;
  z-index: 0;
}

.our-approach-image-box-1 {
  position: relative;
  width: 56%;
  z-index: 2;
}

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

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

.our-approach-image-box-2 {
  position: relative;
  width: 44%;
  padding-bottom: 135px;
  z-index: 1;
}

.our-approach-image-box-2 .our-approach-image figure {
  margin-left: -285px;
}

.our-approach-image-box-2 .our-approach-image figure img {
  aspect-ratio: 1 / 0.82;
}

.approach-item-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

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

.approach-item .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.approach-item:hover .icon-box {
  background: var(--accent-secondary-color);
}

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

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

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

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

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

.approach-item:last-child {
  width: 100%;
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
}

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

.our-history-content {
  position: sticky;
  top: 30px;
}

.explore-project-circle a {
  display: inline-block;
  border-radius: 50%;
}

.explore-project-circle img {
  width: 100%;
  max-width: 140px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

.explore-project-circle img:hover {
  animation-play-state: paused;
}

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

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

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

.history-item {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.history-item-header h2 {
  font-size: 50px;
}

.history-item-content {
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
}

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

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

.history-item-image {
  align-content: end;
}

.history-item-image figure {
  width: 100%;
  max-width: 370px;
  border-radius: 0 20px 0 0;
  margin: 0 auto -200px -50px;
}

.history-item-image img {
  width: 100%;
  border-radius: 0 20px 0 0;
  aspect-ratio: 1 / 1.24;
  object-fit: cover;
}

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

.team-item {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px 30px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  transition: all 0.6s ease-in-out;
}

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

.team-item-content {
  max-width: 80%;
}

.team-item-content h2 {
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}

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

.team-item-content p {
  margin: 10px 0 0;
  transition: all 0.4s ease-in-out;
}

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

.team-item-image {
  text-align: center;
}

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

.team-item-image img {
  width: 100%;
  max-width: 245px;
  aspect-ratio: 1 / 1.54;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

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

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

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

.team-social-list ul li {
  margin-bottom: 15px;
}

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

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

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

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

.team-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.team-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

/* Image zoom effect */
.team-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
}

/* Show overlay on hover */
.team-item:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Content Styling */
.team-overlay-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
}

.team-overlay-content span {
  color: #ddd;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.team-overlay-content p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Social Icons */
.team-social {
  display: flex;
  gap: 10px;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease;
}

.team-social a:hover {
  background: #fff;
  color: var(--primary-color);
}

/* our-team section end */
.our-process {
  padding: 100px 0;
}

.our-process-item {
  background: var(--white-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.our-process-item-number {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
}

.our-process-item-number h2 {
  font-size: 50px;
}

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

.our-process-item-content p {
  margin: 20px 0 0;
}

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

.our-process-item-content ul li {
  position: relative;
  color: var(--primary-color);
  font-size: 14px;
  background-color: var(--bg-color);
  border-radius: 100px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 10px 16px 10px 32px;
}

.our-process-item-content ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  height: 6px;
  width: 6px;
  transform: translateY(-50%);
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
}

.our-process-item.box-2 .our-process-item-number {
  margin-bottom: 30px;
}

.our-process-item-image {
  align-content: end;
}

.our-process-item-image figure {
  width: 100%;
  max-width: 300px;
  margin: 0 auto -90px 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.our-process-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.our-process-item.box-3 {
  position: relative;
  background-image: url("../images/our-procces-image-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

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

.our-process-item.box-3 .our-process-item-number,
.our-process-item.box-3 .our-process-item-content {
  z-index: 2;
}

.our-process-item.box-3 .our-process-item-number {
  border-color: var(--dark-divider-color);
}

.our-process-item.box-3 .our-process-item-number h2,
.our-process-item.box-3 .our-process-item-content h3,
.our-process-item.box-3 .our-process-item-content p {
  color: var(--white-color);
}

.our-process-item.box-3 .our-process-item-content ul li {
  color: var(--white-color);
  background-color: var(--dark-divider-color);
}

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

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

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

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

.page-service-single {
  padding: 100px 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 h2 {
  font-size: 20px;
  line-height: normal;
  color: var(--white-color);
  background: var(--accent-color);
  padding: 25px 40px;
}

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

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

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

.page-category-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: 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: 0;
  right: 0;
  background: url("../images/arrow-primary.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  width: 22px;
  height: 22px;
  transition: all 0.4s ease-in-out;
}

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

.sidebar-cta-box {
  border-radius: 20px;
  overflow: hidden;
}

.sidebar-cta-image figure {
  position: relative;
  display: block;
}

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

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

.sidebar-cta-body {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  text-align: center;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

.service-entry h2 {
  font-size: 50px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 20px;
}

.service-entry h2 span {
  font-style: italic;
}

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

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

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

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

.service-entry-single ul {
  display: block;
}

.service-entry-single ul li {
  width: 100%;
}

.service-approach-box,
.service-projects-box,
.service-entry-info-box {
  margin-top: 60px;
}

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

.service-approach-item {
  margin-bottom: 40px;
}

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

.service-approach-item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.service-approach-item-header .icon-box {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.service-approach-item:hover .service-approach-item-header .icon-box {
  background: transparent;
}

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

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

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

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

.service-approach-item-title {
  width: calc(100% - 55px);
}

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

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

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

.service-project-item-image figure {
  display: block;
  width: 100%;
  max-width: 310px;
  border-radius: 20px 20px 0 0;
}

.service-project-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

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

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

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

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

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

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

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

.page-single-post {
  padding: 100px 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%;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 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(--secondary-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.4em;
  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(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 12px 20px;
  transition: all 0.4s ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

.project-category-list ul li span {
  width: 100%;
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

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

.project-entry h2 {
  font-size: 42px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 20px;
}

.project-entry h2 span {
  font-style: italic;
}

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

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

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

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

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

.project-planning-box,
.project-entry-info-box,
.project-challenges-box {
  margin-top: 60px;
}

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

.project-planning-item {
  position: relative;
  width: calc(33.33% - 20px);
  min-height: 280px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

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

.project-planning-item .icon-box img {
  width: 100%;
  max-width: 100px;
}

.project-planning-item-no h2 {
  line-height: 1em;
}

.project-planning-item-no h2 span {
  font-style: normal;
}

.project-planning-item-content h3 {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.project-entry-info-image-content {
  position: relative;
  padding: 40px;
  margin-top: 40px;
}

.project-entry-info-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-entry-info-image figure {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.project-entry-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.project-entry-info-content {
  position: relative;
  display: inline-block;
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  z-index: 1;
}

.project-entry-info-content h3 {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

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

.project-challenges-item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

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

.project-challenges-item:nth-child(even) {
  flex-direction: row-reverse;
}

.project-challenges-image {
  width: calc(50% - 15px);
}

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

.project-challenges-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.814;
  object-fit: cover;
  border-radius: 20px;
}

.project-challenges-item-content {
  width: calc(50% - 15px);
  align-content: center;
}

.project-challenges-item-header,
.project-challenges-item-body {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.project-challenges-item-body {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.project-challenges-item-body .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.project-challenges-item-body:hover .icon-box {
  background: transparent;
}

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

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

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

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

.project-challenges-item-body-content {
  width: calc(100% - 75px);
}

.project-challenges-body-list ul li {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.project-challenges-body-list ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

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

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

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

.team-single-image {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px 30px 0;
  margin-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

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

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

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

.team-contact-list {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--divider-color);
  border-right: none;
  border-bottom: none;
  border-radius: 20px;
  overflow: hidden;
}

.team-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 50%;
  border-right: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
  padding: 50px;
}

.team-contact-item:nth-of-type(-2n + 2) {
  border-radius: 0 20px 0 0;
}

.team-contact-item:last-child,
.team-contact-item:nth-child(2n):nth-last-child(2) {
  border-radius: 0 0 20px 0;
}

.team-contact-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-secondary-color);
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

.team-contact-item ul li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.team-contact-item ul li i {
  font-size: 18px;
  color: inherit;
}

.member-experience-image-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.member-experience-content {
  width: calc(62% - 15px);
  align-content: center;
}

.member-experience-content-item {
  margin-bottom: 40px;
}

.member-experience-content-item:last-child {
  margin-bottom: 0;
}

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

.member-experience-content-item p {
  margin: 15px 0 0;
}

.member-experience-image {
  width: calc(38% - 15px);
}

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

.member-experience-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.041;
  object-fit: cover;
  border-radius: 20px;
}

.member-skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.skills-progress-bar {
  width: calc(50% - 15px);
}

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

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

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
  line-height: normal;
}

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

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

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

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

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

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

.pricing-item-header {
  background-color: var(--bg-color);
  border-radius: 20px;
  padding: 30px;
}

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

.pricing-item-header .icon-box img {
  width: 100%;
  max-width: 24px;
}

.pricing-item-content .pricing-item-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pricing-item-content h2 {
  font-size: 50px;
}

.pricing-item-content h2 sub {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  bottom: 0;
}

.pricing-item-content p {
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
  margin: 20px 0 0;
}

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

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

.pricing-item-list ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 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 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-secondary-color);
  top: 0;
  left: 0;
}

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

.pricing-item-btn .btn-default {
  width: 100%;
  padding: 17px;
  text-align: center;
}

.pricing-item-btn .btn-default::before {
  display: none;
}

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

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

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

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

.pricing-benefit-list ul li {
  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: 100px 0 70px;
}

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

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

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

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}

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

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

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

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 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(--accent-secondary-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.745;
  object-fit: cover;
  border-radius: 20px;
}

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

.page-faqs {
  padding: 100px 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: 100px 0 50px;
}

.contact-us-content {
  margin-right: 15px;
}

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

.contact-info-item h2 {
  font-size: 30px;
  font-weight: 500;
}

.contact-info-item h4 {
  font-size: 20px;
  font-weight: 600;
}

.contact-info-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
}

.contact-info-item p {
  margin: 10px 0 0;
}

.contact-info-item h2 a,
.contact-info-item h3 a,
.contact-info-item p a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.contact-info-item h2 a:hover,
.contact-info-item h3 a:hover,
.contact-info-item p a:hover {
  color: var(--accent-secondary-color);
}

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

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

.contact-us-social-list ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

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

.contact-form {
  background: var(--primary-color);
  border-radius: 20px;
  padding: 60px;
}

.contact-form label {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 15px;
}

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

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

/* Select box arrow fix */
.contact-form select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 50px;
}

.contact-form select.form-control::-ms-expand {
  display: none;
}

.google-map {
  padding: 50px 0 100px;
}

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

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

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

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 520px;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1880px) {
  .bg-section {
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 1580px) {
  header.main-header .header-sticky {
    width: calc(100% - 70px);
  }
}

@media only screen and (max-width: 1440px) {
  .hero-counter-list {
    gap: 20px 30px;
  }

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

  .hero-counter-item::before {
    right: -10px;
  }

  .hero-counter-footer {
    margin-top: 10px;
    padding-top: 15px;
  }

  .about-us-item {
    min-height: initial;
  }

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

  .about-us-item.box-2 .about-us-item-content {
    padding: 0 20px 20px;
  }

  .about-counter-item-list {
    margin-top: 30px;
    gap: 30px;
  }

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

  .service-item {
    padding: 30px 20px;
    /* min-height: 280px; */
  }

  .who-we-cta-box {
    padding: 20px;
  }

  .commitment-item {
    padding: 30px;
    margin-bottom: 30px;
  }

  .project-item-content {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .fact-item {
    padding: 30px;
    min-height: 290px;
  }

  .cta-form-box {
    padding: 40px;
  }

  .faqs-content {
    margin: 0;
  }

  .faq-client-box-content {
    max-width: 60%;
  }

  .testimonial-item {
    padding: 30px;
  }

  .testimonial-item-author {
    padding-top: 30px;
    margin-top: 30px;
  }

  .history-item {
    padding: 30px;
  }

  .our-process-item {
    padding: 30px;
  }

  .our-process-item-content ul {
    margin-top: 30px;
  }

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

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

  .sidebar-cta-body {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

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

  .post-content {
    max-width: 1100px;
  }

  .team-contact-item {
    padding: 40px;
  }

  .member-experience-content-item {
    margin-bottom: 30px;
  }

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

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

  .contact-info-item h3 {
    margin-top: 15px;
  }

  .contact-form {
    padding: 40px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

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

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

  /* .hero {
    min-height: auto;
  } */

  .hero-counter-box {
    margin: 30px 0 0;
  }

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

  .about-us-image img {
    height: auto;
    aspect-ratio: 1 / 0.6;
  }

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

  .who-we-content {
    margin-bottom: 40px;
  }

  .who-we-image-box {
    max-width: 800px;
    margin: 0 auto;
  }

  .intro-video {
    min-height: 550px;
  }

  .watch-video-circle img {
    max-width: 130px;
  }

  .our-commitment-content {
    height: auto;
    margin: 0 0 30px;
  }

  .commitment-client-box-content {
    margin-top: 20px;
    padding-top: 20px;
  }

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

  .our-fact-image-box {
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .cta-box-content {
    height: auto;
    margin: 0 0 30px;
  }

  .faqs-content {
    position: initial;
    margin: 0 0 40px 0;
  }

  .company-supports-content hr {
    width: 33%;
  }

  .footer-header .section-title {
    max-width: 650px;
  }

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

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

  .our-approach-images {
    max-width: 690px;
    margin: 0 auto 30px;
  }

  .our-history-content {
    position: initial;
    margin-bottom: 30px;
  }

  .explore-project-circle img {
    max-width: 120px;
  }

  .our-process-item-image figure {
    max-width: 250px;
  }

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

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

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

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

  .sidebar-cta-body {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .sidebar-cta-content h2 {
    font-size: 26px;
  }

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

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

  .service-entry ul {
    gap: 10px;
    margin-top: 30px;
  }

  .service-entry ul li {
    width: 100%;
  }

  .service-entry ul li::before {
    font-size: 16px;
  }

  .service-approach-box,
  .service-projects-box,
  .service-entry-info-box {
    margin-top: 40px;
  }

  .service-approach-item-list {
    margin-top: 30px;
  }

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

  .service-approach-item-content {
    margin-top: 15px;
  }

  .service-project-item-list {
    margin-top: 30px;
  }

  .service-project-item {
    width: calc(50% - 15px);
    padding: 30px 20px 0;
  }

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

  .project-planning-box,
  .project-entry-info-box,
  .project-challenges-box {
    margin-top: 40px;
  }

  .project-planning-item-list {
    margin-top: 30px;
  }

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

  .project-entry-info-image-content {
    margin-top: 30px;
  }

  .project-challenges-item-list {
    margin-top: 30px;
  }

  .team-single-image {
    padding: 30px 20px 0;
  }

  .team-member-about,
  .team-member-experience-box,
  .team-member-skills-box {
    margin-bottom: 40px;
  }

  .team-contact-item {
    padding: 25px 20px;
  }

  .team-contact-item h3 {
    font-size: 18px;
  }

  .member-experience-content,
  .member-experience-image {
    width: 100%;
  }

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

  .google-map-iframe iframe {
    height: 500px;
  }
}

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

  .btn-default::before {
    right: 16px;
    width: 22px;
    height: 22px;
  }

  header.main-header {
    top: 0px;
  }

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

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

  .navbar {
    padding: 20px 0;
  }

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

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .bg-section {
    width: 100%;
    border-radius: 0;
    margin: 0;
  }

  .bg-section .container-fluid {
    padding: 0 15px;
  }

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

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

  .section-title .section-sub-title {
    padding: 6px 12px 6px 26px;
    margin-bottom: 10px;
  }

  .section-title .section-sub-title::before {
    left: 12px;
    width: 6px;
    height: 6px;
  }

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

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

  .section-title a {
    font-size: 30px;
  }

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

  .section-sub-title {
    font-size: 12px;
  }

  .hero {
    padding: 140px 0 50px;
    margin-top: 0;
  }

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

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

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

  .about-us-circle {
    top: 20px;
    left: 20px;
  }

  .about-us-circle img {
    max-width: 120px;
  }

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

  .our-service {
    padding: 50px 0;
  }

  .service-item {
    padding: 20px;
  }

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

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

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

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

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

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

  .section-footer-text ul li i {
    font-size: 16px;
  }

  .who-we-are {
    padding: 50px 0;
  }

  .who-we-content {
    margin-bottom: 30px;
  }

  .who-we-nav {
    margin-bottom: 30px;
  }

  .who-we-nav ul li .nav-link {
    padding-bottom: 20px;
    gap: 10px;
  }

  .who-we-tab-header-content p {
    margin-top: 10px;
  }

  .who-we-item-list {
    margin-top: 30px;
  }

  .who-we-item {
    gap: 10px;
  }

  .who-we-item .icon-box img {
    max-width: 28px;
  }

  .who-we-item-content {
    width: calc(100% - 38px);
  }

  .who-we-footer {
    margin-top: 30px;
    padding-top: 30px;
  }

  .intro-video {
    min-height: 450px;
    padding: 50px 0;
  }

  .our-commitment {
    padding: 50px 0;
  }

  .commitment-item {
    padding: 20px;
  }

  .commitment-item-header .icon-box {
    width: 50px;
    height: 50px;
  }

  .commitment-item-header .icon-box img {
    max-width: 24px;
  }

  .commitment-item-title {
    width: calc(100% - 65px);
  }

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

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

  .project-item-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project-item-content ul {
    margin-bottom: 10px;
  }

  .our-fact {
    padding: 50px 0;
  }

  .fact-item {
    padding: 20px;
    gap: 20px;
    min-height: 260px;
  }

  .fact-item-title {
    padding-bottom: 20px;
  }

  .fact-item-counter-content h2 {
    font-size: 38px;
  }

  .fact-item-counter-content p {
    margin-top: 5px;
  }

  .cta-box {
    padding: 50px 0;
  }

  .cta-box .counter-box h3,
  .cta-box .counter-box h3 .count-text {
    font-size: 50px !important;
  }

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

  .faqs-content {
    margin-bottom: 30px;
  }

  .faq-client-box {
    margin-top: 30px;
    padding-top: 30px;
  }

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

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

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

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
  }

  .our-testimonials {
    padding: 50px 0;
  }

  .testimonial-item {
    padding: 20px;
    min-height: initial;
  }

  .testimonial-item-author {
    padding-top: 20px;
    margin-top: 20px;
  }

  .company-supports-content hr {
    width: 27%;
  }

  .company-supports-content {
    margin-bottom: 20px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-featured-image {
    margin-bottom: 15px;
  }

  .post-item-content {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

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

  .footer-header {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .footer-header .section-title {
    max-width: 100%;
  }

  .footer-social-links h3 {
    margin-bottom: 15px;
  }

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

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

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

  .footer-newsletter-form .form-group {
    margin-top: 20px;
  }

  .footer-newsletter-form .form-group .form-control {
    width: calc(100% - 40px);
  }

  .footer-newsletter-form .form-group .newsletter-btn {
    width: 40px;
    height: 40px;
  }

  .footer-newsletter-form .form-group .newsletter-btn i {
    font-size: 18px;
  }

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

  .page-header {
    margin-top: 0;
    padding: 180px 0 90px;
  }

  .page-header-box h1 {
    font-size: 44px;
  }

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

  .our-history {
    padding: 50px 0;
  }

  .history-item-header h2 {
    font-size: 38px;
  }

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

  .team-item-image img {
    max-width: 200px;
  }

  .our-process {
    padding: 50px 0;
  }

  .our-process-item {
    gap: 20px;
    padding: 20px;
  }

  .our-process-item-number {
    padding-bottom: 20px;
  }

  .our-process-item-number h2 {
    font-size: 38px;
  }

  .our-process-item.box-2 .our-process-item-number {
    margin-bottom: 20px;
  }

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

  .page-services {
    padding: 50px 0 20px;
  }

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

  .page-single-sidebar,
  .page-category-list {
    margin-bottom: 30px;
  }

  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.85;
  }

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

  .service-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

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

  .page-pagination {
    margin-top: 10px;
  }

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

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h2 {
    font-size: 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: 50px 0 20px;
  }

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

  .project-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

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

  .project-entry ul li {
    margin-bottom: 10px;
  }

  .project-entry ul li::before {
    font-size: 16px;
  }

  .project-planning-item {
    min-height: initial;
  }

  .project-planning-item .icon-box {
    top: -10px;
    right: -10px;
  }

  .project-planning-item .icon-box img {
    max-width: 80px;
  }

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

  .project-entry-info-image-content {
    padding: 30px;
  }

  .project-challenges-item-header,
  .project-challenges-item-body {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

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

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

  .project-challenges-item-body-content {
    width: calc(100% - 65px);
  }

  .project-challenges-body-list ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

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

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

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

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

  .pricing-item-header {
    padding: 20px;
  }

  .pricing-item-header .icon-box {
    margin-bottom: 20px;
  }

  .pricing-item-content p {
    padding-top: 15px;
    margin: 15px 0 0;
  }

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

  .pricing-item-content h2 {
    font-size: 38px;
  }

  .pricing-item-list ul {
    margin-top: 20px;
  }

  .pricing-item-list ul li {
    margin-bottom: 10px;
  }

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

  .pricing-item-btn .btn-default {
    padding: 15px;
  }

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

  .pricing-benefit-list ul {
    gap: 15px 30px;
  }

  .page-testimonials {
    padding: 50px 0 20px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

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

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

  .page-contact-us {
    padding: 50px 0 25px;
  }

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

  .contact-info-item h2 {
    font-size: 26px;
  }

  .contact-form {
    padding: 30px;
  }

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

  .google-map {
    padding: 25px 0 50px;
  }

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

  .error-page-image {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) {
  /* .container {
    max-width: 720px;
  } */
}

@media only screen and (max-width: 767px) {
  .brand-title {
    font-size: 1rem;
  }

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

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

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

  .hero-counter-item h2 {
    font-size: 26px;
  }

  .hero-counter-item p {
    font-size: 14px;
  }

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

  .about-us-circle img {
    max-width: 90px;
  }

  .about-us-item {
    width: 100%;
  }

  .about-us-item-content h3 {
    font-size: 18px;
  }

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

  .about-counter-item-list {
    gap: 20px;
  }

  .about-counter-item {
    width: calc(50% - 10px);
  }

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

  .about-counter-item p {
    font-size: 14px;
  }

  .service-item {
    min-height: unset;
  }

  .service-item-content h2 {
    font-size: 18px;
  }

  .service-item-btn .readmore-btn {
    padding-right: 30px;
  }

  .service-item-btn .readmore-btn::before {
    height: 22px;
    width: 22px;
    background-size: 14px auto;
  }

  .satisfy-client-image figure img {
    max-width: 38px;
  }

  .satisfy-client-image.add-more {
    width: 40px;
    height: 40px;
  }

  .satisfy-client-image.add-more h3,
  .satisfy-client-image.add-more i {
    font-size: 18px;
  }

  .who-we-nav ul li .nav-link img {
    max-width: 26px;
  }

  .who-we-tab-header-content h3,
  .who-we-item-content h3 {
    font-size: 18px;
  }

  .who-we-item-list {
    gap: 20px;
  }

  .who-we-item {
    width: 100%;
  }

  .who-we-footer {
    gap: 20px;
  }

  .about-us-conatct-content h3 {
    font-size: 18px;
  }

  .who-we-image-box-1,
  .who-we-image-box-2 {
    width: 100%;
  }

  .who-we-image-box-1 .who-we-image img {
    aspect-ratio: 1 / 1.27;
  }

  .who-we-cta-box {
    margin-bottom: 20px;
  }

  .intro-video {
    align-content: center;
    text-align: center;
  }

  .watch-video-circle {
    text-align: center;
    margin-top: 30px;
  }

  .watch-video-circle img {
    max-width: 100px;
  }

  .commitment-client-box-content p {
    font-size: 16px;
  }

  .commitment-item-title h3 {
    font-size: 18px;
  }

  .commitment-item-content {
    margin-top: 15px;
  }

  .project-item-content h2 {
    font-size: 18px;
  }

  .our-fact-image-box-1 {
    width: 100%;
    margin-bottom: 20px;
  }

  .our-fact-image-box-2 {
    width: 100%;
    padding: 0;
  }

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

  .fact-item-list {
    gap: 20px;
  }

  .fact-item {
    width: 100%;
    min-height: initial;
  }

  .fact-item-counter-content h2 {
    font-size: 26px;
  }

  .cta-item-box-list {
    gap: 20px;
  }

  .cta-box-item:last-child {
    border-top: none;
    padding-top: 0px;
  }

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

  .cta-form-box {
    padding: 20px;
  }

  .faq-client-box-content {
    max-width: 100%;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 12px 34px 12px 12px;
  }

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

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

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

  .company-supports-content hr {
    display: none;
  }

  .company-supports-content {
    justify-content: center;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .footer-social-links h3 {
    font-size: 18px;
  }

  .footer-links {
    max-width: 100%;
  }

  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-copyright {
    padding: 15px 0;
  }

  .page-header-box h1 {
    font-size: 28px;
  }

  .our-approach-images::before {
    bottom: 50px;
    width: 210px;
    height: 220px;
  }

  .our-approach-image-box-2 {
    padding-bottom: 80px;
  }

  .our-approach-image-box-2 .our-approach-image figure {
    margin-left: -150px;
  }

  .approach-item-box {
    gap: 20px;
  }

  .approach-item {
    width: 100%;
  }

  .approach-item:last-child {
    border-top: none;
    padding-top: 0;
  }

  .approach-item-content h3 {
    font-size: 18px;
  }

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

  .explore-project-circle img {
    max-width: 90px;
  }

  .history-item {
    width: 100%;
    padding: 20px;
  }

  .history-item-header h2 {
    font-size: 26px;
  }

  .history-item-content {
    margin-top: 15px;
    padding-top: 15px;
  }

  .history-item-content h3 {
    font-size: 18px;
  }

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

  .history-item-image figure {
    margin-bottom: -150px;
  }

  .team-item {
    padding: 35px 25px;
    min-height: auto;
  }

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

  .team-item-content p {
    font-size: 14px;
  }

  .team-item-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

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

  .team-social-list ul li a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .our-process-item-number h2 {
    font-size: 26px;
  }

  .our-process-item-content h3 {
    font-size: 18px;
  }

  .our-process-item-content ul {
    margin-top: 20px;
  }

  .our-process-item-content ul li {
    padding: 8px 14px 8px 28px;
  }

  .page-category-list h2 {
    font-size: 18px;
  }

  .sidebar-cta-image img {
    aspect-ratio: 1 / 1.145;
  }

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

  .sidebar-cta-content h2 {
    font-size: 22px;
  }

  .page-single-image img {
    aspect-ratio: 1 / 0.65;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

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

  .service-approach-item-content {
    margin-top: 10px;
  }

  .service-project-item {
    width: 100%;
    padding: 20px 20px 0;
  }

  .post-single-meta ol li,
  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

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

  .tag-links {
    font-size: 18px;
  }

  .project-category-list ul li span {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .project-entry h2 {
    font-size: 26px;
  }

  .project-entry h3 {
    font-size: 18px;
  }

  .project-planning-item {
    width: 100%;
    padding: 20px;
  }

  .project-planning-item .icon-box img {
    max-width: 60px;
  }

  .project-entry-info-image-content {
    padding: 0;
  }

  .project-entry-info-image {
    position: initial;
    margin-bottom: 20px;
    height: auto;
  }

  .project-entry-info-image figure,
  .project-entry-info-image img {
    height: auto;
  }

  .project-entry-info-image img {
    aspect-ratio: 1 / 0.65;
  }

  .project-entry-info-content {
    display: block;
    padding: 20px;
  }

  .project-entry-info-content h3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .project-challenges-image,
  .project-challenges-item-content {
    width: 100%;
  }

  .team-single-image img {
    max-width: 270px;
  }

  .team-contact-item {
    padding: 20px;
    width: 100%;
  }

  .team-contact-item:nth-of-type(-2n + 2),
  .team-contact-item:nth-child(2n):nth-last-child(2) {
    border-radius: 0;
  }

  .member-experience-content-item h3 {
    font-size: 18px;
  }

  .member-skill-list {
    gap: 20px;
  }

  .skills-progress-bar {
    width: 100%;
  }

  .pricing-item-content .pricing-item-title,
  .pricing-item-list h3 {
    font-size: 18px;
  }

  .pricing-item-content h2 {
    font-size: 26px;
  }

  .pricing-item-content h2 sub {
    font-size: 14px;
  }

  .pricing-item-content p {
    padding-top: 10px;
    margin-top: 10px;
  }

  .pricing-benefit-list ul {
    gap: 10px 15px;
  }

  .pricing-benefit-list ul li {
    font-size: 14px;
  }

  .pricing-benefit-list ul li img {
    margin-right: 5px;
  }

  .contact-info-item h2 {
    font-size: 22px;
  }

  .contact-info-item h3,
  .contact-info-item h4 {
    font-size: 18px;
  }

  .contact-info-item p {
    margin: 5px 0 0;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form label {
    margin-bottom: 10px;
  }

  .google-map-iframe iframe {
    height: 350px;
  }
}

/************************************/
/***   34. Home - Version 2 css	  ***/
/************************************/

.dark-section.dark-section-prime {
  background-image: url("../images/dark-section-bg-image-prime.png");
}

.hero-prime {
  position: relative;
  padding: 250px 0 0;
  margin-top: 20px;
  overflow: hidden;
}

.hero-prime.dark-section.dark-section-prime {
  background-image: url("../images/hero-bg-image-prime.jpg");
}

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

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

.hero-content-prime {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-btn-prime {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-btn-prime .btn-default.btn-transparent {
  background: var(--dark-divider-color);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.hero-benefit-item-list-prime {
  max-width: 1245px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 30px;
  margin: 100px auto 0;
}

.hero-benefit-item-prime {
  position: relative;
  width: calc(30% - 20px);
  background: var(--dark-divider-color);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 20px 20px 0 0;
  padding: 40px;
  overflow: hidden;
}

.hero-benefit-item-prime.box-2 {
  width: calc(40% - 20px);
  padding: 0;
}

.hero-benefit-item-prime .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-benefit-item-prime .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-benefit-item-prime:hover .icon-box::before {
  transform: scale(1);
}

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

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

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

.hero-benefit-image-prime {
  height: 100%;
}

.hero-benefit-image-prime figure {
  display: block;
  height: 100%;
}

.hero-benefit-image-prime img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.733;
  object-fit: cover;
  filter: brightness(80%);
}

.hero-benefit-item-prime.box-2 .contact-us-circle-prime {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.contact-us-circle-prime a {
  display: inline-block;
  border-radius: 50%;
}

.contact-us-circle-prime img {
  width: 100%;
  max-width: 120px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

.contact-us-circle-prime a:hover img {
  animation-play-state: paused;
}

.hero-rating-box-prime {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.hero-rating-logo-prime img {
  width: 100%;
  max-width: 55px;
}

.hero-rating-info-prime {
  width: calc(100% - 70px);
}

.hero-rating-header-prime {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-rating-header-prime h3 {
  width: 75px;
  font-size: 30px;
  color: var(--white-color);
}

.hero-rating-star-prime {
  margin-bottom: 0;
}

.hero-rating-star-prime i {
  color: var(--accent-secondary-color);
}

.hero-rating-review-content-prime p {
  color: var(--white-color);
  margin: 0;
}

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

.about-us-image-box-prime {
  display: flex;
  flex-wrap: wrap;
}

.about-us-image-box-1-prime {
  position: relative;
  background: url("../images/about-image-bg-shape-prime.png") no-repeat;
  background-position: bottom 50px left 140px;
  background-size: 135px auto;
  width: 78%;
  padding-bottom: 130px;
}

.about-us-image-prime figure {
  position: relative;
  display: block;
  border-radius: 20px;
  z-index: 0;
}

.about-us-image-prime img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-us-image-box-1-prime .about-us-image-prime img {
  aspect-ratio: 1 / 0.891;
}

.about-us-image-box-2-prime {
  width: 22%;
  align-content: end;
}

.about-us-image-box-2-prime .about-us-image-prime {
  margin-left: -295px;
}

.about-us-image-box-2-prime .about-us-image-prime figure,
.about-us-image-box-1-prime .contact-us-circle-prime a {
  border: 6px solid var(--bg-color);
}

.about-us-image-box-2-prime .about-us-image-prime img {
  aspect-ratio: 1 / 0.748;
  border-radius: 10px;
}

.about-us-image-box-1-prime .contact-us-circle-prime {
  position: absolute;
  top: 80px;
  right: 0;
  transform: translateX(50%);
  z-index: 1;
}

.about-us-body-item-prime {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

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

.about-us-body-item-prime .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
}

.about-us-body-item-prime:hover .icon-box {
  background: transparent;
}

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

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

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

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

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

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

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

.about-counter-item-list-prime {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.about-counter-item-prime {
  width: calc(50% - 15px);
  background: var(--white-color);
  border-radius: 20px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
}

.about-counter-item-header-prime {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.about-counter-item-no-prime h2 {
  font-size: 50px;
}

.about-counter-item-header-prime .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
}

.about-counter-item-prime:hover .about-counter-item-header-prime .icon-box {
  background: transparent;
}

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

.about-counter-item-prime:hover .about-counter-item-header-prime .icon-box::before {
  transform: scale(1);
}

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

.about-counter-item-prime:hover .about-counter-item-header-prime .icon-box img {
  filter: brightness(1) invert(1);
}

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

.about-counter-item-content-prime p {
  border-top: 1px solid var(--divider-color);
  margin: 15px 0 0;
  padding: 15px 0 0;
}

.our-services-prime {
  padding: 100px 0;
}

.service-item-prime {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background: var(--bg-color);
  border-radius: 20px;
  min-height: 340px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-item-prime:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-color);
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
}

.service-item-prime.active:before,
.service-item-prime:hover:before {
  top: auto;
  bottom: 0;
  height: 100%;
}

.service-item-prime .icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
}

.service-item-prime.active .icon-box,
.service-item-prime:hover .icon-box {
  background: transparent;
}

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

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

.service-item-prime .icon-box img {
  position: relative;
  width: 100%;
  width: 40px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.service-item-prime.active .icon-box img,
.service-item-prime:hover .icon-box img {
  filter: unset;
}

.service-item-body-prime {
  position: relative;
  z-index: 1;
}

.service-item-content-prime h2 {
  font-size: 20px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

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

.service-item-content-prime p {
  transition: all 0.4s ease-in-out;
}

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

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

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

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

.service-item-btn-prime a {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
}

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

.service-item-prime.active .service-item-btn-prime a::before,
.service-item-prime:hover .service-item-btn-prime a::before {
  transform: scale(1);
}

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

.service-item-btn-prime a img {
  position: relative;
  width: 100%;
  max-width: 20px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

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

.our-benefits-prime {
  padding: 100px 0;
}

.benefit-image-box-prime {
  position: relative;
}

.benefit-image-prime figure {
  position: relative;
  display: block;
  border-radius: 20px;
}

.benefit-image-prime figure::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg,
      rgba(243, 243, 243, 0) 0%,
      var(--bg-color) 88.75%);
  width: 100%;
  height: 120px;
}

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

.benefit-content-box-prime {
  margin-left: 15px;
}

.benefit-counter-box-prime {
  position: absolute;
  bottom: 80px;
  left: 90px;
  width: 240px;
  background: var(--white-color);
  border-radius: 12px;
  text-align: center;
  padding: 30px;
}

.benefit-counter-box-prime h2 {
  font-size: 40px;
}

.benefit-counter-box-prime p {
  margin: 5px 0 0;
}

.benefit-counter-rating-prime {
  display: inline-block;
  margin-top: 20px;
}

.benefit-counter-rating-prime i {
  color: var(--accent-secondary-color);
}

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

.benefit-body-item-list-prime:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.benefit-body-item-prime {
  width: calc(50% - 15px);
}

.benefit-body-item-prime .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
}

.benefit-body-item-prime:hover .icon-box {
  background: transparent;
}

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

.benefit-body-item-prime:hover .icon-box::before {
  transform: scale(1);
}

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

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

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

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

.our-facts-prime {
  padding: 90px 0;
}

.fact-item-prime {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
    background: var(--dark-divider-color);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 20px;
  height: 100%;
  padding: 40px;
  transition: all 0.4s ease-in-out;
}

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

.fact-item-header-prime .icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

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

.fact-item-prime:hover .fact-item-header-prime .icon-box::before {
  transform: scale(1);
}

.fact-item-header-prime .icon-box img {
  position: relative;
  width: 100%;
  width: 46px;
  z-index: 1;
}

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

.fact-item-list-prime ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
}

.fact-item-list-prime ul li {
  line-height: 1.5em;
  color: var(--white-color);
  margin: 0 0 10px;
}

.fact-item-list-prime ul li:last-child {
  margin: 0;
}

.fact-item-list-prime ul li::marker {
  color: var(--accent-secondary-color);
}

.fact-item-body-prime h2 {
  font-size: 50px;
  color: var(--white-color);
  line-height: 1em;
}

.fact-item-body-prime p {
  color: var(--white-color);
  margin: 15px 0 0;
}

.company-supports-slider-box-prime {
  margin-top: 50px;
}

.company-supports-content-prime {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  text-align: center;
}

.company-supports-content-prime hr {
  height: 1px;
  width: 35%;
  color: var(--dark-divider-color);
  opacity: 1;
  margin: 0;
}

.company-supports-content-prime p {
  color: var(--white-color);
  margin-bottom: 0;
}

.company-supports-slider-prime {
  margin: 0 4.167vw;
}

.company-supports-logo-prime {
  text-align: center;
}

.company-supports-logo-prime img {
  width: 100%;
  max-width: 170px;
  height: 40px;
}

.why-choose-us-prime {
  padding: 100px 0;
}

.why-choose-item-prime {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
  background: var(--white-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px 40px 0;
  overflow: hidden;
}

.why-choose-item-header-prime .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}

.why-choose-item-prime:hover .why-choose-item-header-prime .icon-box {
  background: transparent;
}

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

.why-choose-item-prime:hover .why-choose-item-header-prime .icon-box::before {
  transform: scale(1);
}

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

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

.why-choose-header-content-prime {
  margin-top: 40px;
}

.why-choose-header-content-prime h3 {
  font-size: 20px;
}

.why-choose-header-content-prime p {
  border-top: 1px solid var(--divider-color);
  margin: 20px 0 0;
  padding: 20px 0 0;
}

.why-choose-item-image-prime figure {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
}

.why-choose-item-image-prime img {
  width: 100%;
  aspect-ratio: 1 / 0.658;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.intro-video-prime {
  position: relative;
  min-height: 900px;
  align-content: end;
  padding: 100px 0;
  overflow: hidden;
}

.intro-video-prime.dark-section.dark-section-prime {
  background-image: url("../img/normal/video.png");
}

.intro-video-prime::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(4, 6, 24, 0) 0%,
      rgba(4, 6, 24, 0.95) 80%);
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.intro-video-content-prime {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.intro-video-content-prime .section-title {
  width: calc(60% - 15px);
  margin: 0;
}

.intro-video-circle-box-prime {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

.video-play-button-prime a {
  position: relative;
  height: 120px;
  width: 120px;
  background: var(--dark-divider-color);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
  transition: all 0.4s ease-in-out;
}

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

.video-play-button-prime a i {
  font-size: 24px;
  color: inherit;
  margin-left: 2px;
}

.intro-video-circle-box-prime .contact-us-circle-prime {
  margin-left: -20px;
}

.intro-video-list-prime {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 60px;
  padding-top: 60px;
}

.intro-video-list-prime ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

.faq-image-box-prime {
  position: relative;
  height: 100%;
}

.faq-image-prime {
  height: 100%;
}

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

.faq-image-prime img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.286;
  object-fit: cover;
  border-radius: 20px;
}

.faq-cta-box-prime {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--bg-color);
  border: 20px solid var(--bg-color);
  border-bottom: none;
  border-left: none;
  border-radius: 0 20px 0 0;
  z-index: 1;
}

.faq-cta-box-prime::before,
.faq-cta-box-prime::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  mask: url("../images/image-corner-bg-shape.svg");
  -webkit-mask: url("../images/image-corner-bg-shape.svg");
  background-color: var(--bg-color);
  mask-repeat: no-repeat;
  mask-size: cover;
  z-index: 1;
}

.faq-cta-box-prime::before {
  top: -40px;
  left: 0;
}

.faq-cta-box-prime::after {
  right: -40px;
  bottom: 0;
}

.faq-cta-content-box-prime {
  max-width: 215px;
  background-color: #3f3f3f;
  padding: 30px;
  border-radius: 20px;
}

.faq-cta-content-box-prime .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border-radius: 50%;
}

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

.faq-image-box-prime:hover .faq-cta-content-box-prime .icon-box::before {
  transform: scale(1);
}

.faq-cta-content-box-prime .icon-box img {
  position: relative;
  width: 100%;
  width: 40px;
  z-index: 1;
}

.faq-cta-content-prime h3 {
  font-size: 18px;
  color: var(--white-color);
}

.faq-cta-content-prime p {
  color: var(--white-color);
  border-top: 1px solid var(--dark-divider-color);
  margin: 10px 0 0;
  padding: 10px 0 0;
}

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

.faq-cta-content-prime p a:hover {
  color: var(--accent-secondary-color);
}

.faqs-content-prime {
  height: 100%;
  align-content: center;
  margin-left: 15px;
}

.faq-accordion-prime .accordion-item-prime {
  background: var(--white-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

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

.faq-accordion-prime .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333em;
  background-color: var(--white-color);
  color: var(--primary-color);
  padding: 22px 60px 22px 30px;
  transition: all 0.3s ease-in-out;
}

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

.faq-accordion-prime .accordion-item-prime:last-child .accordion-header .accordion-button.collapsed {
  border-bottom: none;
}

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

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

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

.faq-accordion-prime .accordion-item-prime .accordion-body p {
  color: var(--white-color);
  margin: 0;
  overflow-wrap: anywhere;
}

.our-testimonials-prime {
  padding: 100px 0;
}

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

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

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

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

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

.testimonial-item-footer-prime {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

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

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

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

.testimonial-item-quote-prime {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial-item-quote-prime img {
  width: 100%;
  max-width: 24px;
}

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

.main-footer-prime {
  padding: 100px 0 0;
  margin-bottom: 20px;
}

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

.about-footer-content-prime {
  margin: 15px 0 0;
}

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

.footer-newsletter-form-prime {
  background: var(--dark-divider-color);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 20px;
  padding: 30px;
  margin-top: 40px;
}

.footer-newsletter-form-prime h3 {
  font-size: 20px;
  color: var(--white-color);
}

.footer-newsletter-form-prime p {
  color: var(--white-color);
  margin: 10px 0 0;
}

.footer-newsletter-form-prime .form-group {
  display: flex;
  flex-wrap: wrap;
  background: var(--divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 10px;
  padding: 7px;
  margin-top: 30px;
}

.footer-newsletter-form-prime .form-group .form-control {
  width: calc(100% - 46px);
  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 14px;
}

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

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

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

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

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

.footer-links-box-prime {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-left: 3.646vw;
}

.footer-links-prime {
  max-width: 34%;
}

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

.footer-links-prime ul {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 20px;
}

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

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

.footer-links-prime ul li::marker {
  color: var(--accent-secondary-color);
}

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

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

.footer-contact-list-prime {
  max-width: 41%;
}

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

.footer-contact-list-prime ul li span {
  font-weight: 600;
}

.footer-social-links-prime {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

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

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

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

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

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

.footer-copyright-text-prime {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 60px;
  padding: 60px 0;
  text-align: center;
}

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

@media only screen and (max-width: 1440px) {
  .about-us-image-box-1-prime .contact-us-circle-prime {
    top: 60px;
  }

  .about-counter-item-prime {
    padding: 30px;
  }

  .service-item-prime {
    min-height: 350px;
    padding: 30px 25px;
  }

  .benefit-content-box-prime {
    margin: 0;
  }

  .fact-item-prime {
    padding: 30px;
  }

  .why-choose-item-prime {
    padding: 30px 30px 0;
  }

  .faq-cta-content-box-prime {
    padding: 20px;
  }

  .faq-cta-content-box-prime .icon-box {
    margin-bottom: 30px;
  }

  .testimonial-item-prime {
    min-height: 460px;
    padding: 30px;
  }

  .footer-newsletter-form-prime {
    padding: 20px;
    margin-top: 30px;
  }

  .footer-links-box-prime {
    margin-left: 15px;
  }

  .footer-social-links-prime ul {
    gap: 10px 15px;
  }

  .footer-social-links-prime ul li a {
    padding: 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-prime {
    padding-bottom: 50px;
  }

  .hero-benefit-item-prime {
    width: calc(50% - 15px);
    border-radius: 20px;
    align-content: center;
    padding: 30px;
  }

  .hero-benefit-item-prime.box-2 {
    width: calc(50% - 15px);
  }

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

  .service-item-prime {
    min-height: initial;
  }

  .benefit-image-box-prime {
    max-width: 780px;
    margin: 0 auto 30px;
  }

  .fact-item-prime {
    min-height: initial;
  }

  .company-supports-content-prime hr {
    width: 26%;
  }

  .company-supports-slider-prime {
    margin: 0;
  }

  .intro-video-content-prime .section-title {
    width: 100%;
  }

  .intro-video-list-prime ul li {
    width: calc(50% - 10px);
  }

  .faq-image-box-prime,
  .faq-image-prime,
  .faq-image-prime figure,
  .faq-image-prime img {
    height: auto;
  }

  .faq-image-box-prime {
    max-width: 780px;
    margin: 0 auto 30px;
  }

  .faq-image-prime img {
    aspect-ratio: 1 / 0.95;
  }

  .faqs-content-prime {
    margin: 0;
  }

  .about-footer-prime {
    margin-bottom: 30px;
  }

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

  .footer-social-links-prime {
    margin-top: 0;
  }

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

@media only screen and (max-width: 991px) {
  .hero-prime {
    padding: 140px 0 50px;
    margin: 0;
  }

  .hero-benefit-item-list-prime {
    margin-top: 50px;
  }

  .hero-benefit-item-list-prime {
    align-items: initial;
  }

  .hero-benefit-item-prime .icon-box {
    width: 50px;
    height: 50px;
  }

  .hero-benefit-item-prime .icon-box img {
    max-width: 24px;
  }

  .contact-us-circle-prime img {
    max-width: 100px;
  }

  .hero-rating-box-prime {
    margin-top: 30px;
  }

  .hero-rating-logo-prime img {
    max-width: 45px;
  }

  .hero-rating-info-prime {
    width: calc(100% - 60px);
  }

  .hero-rating-header-prime h3 {
    font-size: 26px;
  }

  .about-us-prime {
    padding: 50px 0;
  }

  .about-us-image-box-1-prime {
    padding-bottom: 100px;
  }

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

  .about-us-body-item-prime .icon-box,
  .about-counter-item-header-prime .icon-box {
    width: 50px;
    height: 50px;
  }

  .about-us-body-item-prime .icon-box img,
  .about-counter-item-header-prime .icon-box img {
    max-width: 24px;
  }

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

  .about-counter-item-list-prime {
    margin-top: 30px;
  }

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

  .our-services-prime {
    padding: 50px 0;
  }

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

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

  .our-benefits-prime {
    padding: 50px 0;
  }

  .benefit-counter-box-prime {
    padding: 20px;
  }

  .benefit-counter-box-prime h2 {
    font-size: 34px;
  }

  .benefit-body-item-list-prime {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

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

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

  .our-facts-prime {
    padding: 50px 0;
  }

  .fact-item-header-prime .icon-box {
    width: 50px;
    height: 50px;
  }

  .fact-item-header-prime .icon-box img {
    max-width: 24px;
  }

  .fact-item-body-prime h2 {
    font-size: 38px;
  }

  .company-supports-slider-box-prime {
    margin-top: 10px;
  }

  .company-supports-content-prime {
    margin-bottom: 20px;
  }

  .why-choose-us-prime {
    padding: 50px 0;
  }

  .why-choose-item-prime {
    padding: 20px 20px 0;
  }

  .why-choose-header-content-prime {
    margin-top: 30px;
  }

  .why-choose-item-header-prime .icon-box {
    width: 50px;
    height: 50px;
  }

  .why-choose-item-header-prime .icon-box img {
    max-width: 24px;
  }

  .intro-video-prime {
    padding: 50px 0;
    min-height: auto;
  }

  .video-play-button-prime a {
    width: 100px;
    height: 100px;
  }

  .video-play-button-prime a i {
    font-size: 20px;
  }

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

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

  .our-faqs-prime {
    padding: 50px 0;
  }

  .faq-cta-content-box-prime .icon-box {
    width: 50px;
    height: 50px;
  }

  .faq-cta-content-box-prime .icon-box img {
    max-width: 24px;
  }

  .faq-accordion-prime .accordion-item-prime {
    border-radius: 12px;
    margin-bottom: 20px;
  }

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

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

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

  .our-testimonials-prime {
    padding: 50px 0;
  }

  .testimonial-item-prime {
    min-height: initial;
    gap: 30px;
    padding: 20px;
  }

  .testimonial-item-content-prime p {
    font-size: 18px;
  }

  .testimonial-item-footer-prime {
    margin-top: 30px;
    padding-top: 30px;
  }

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

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

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

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

@media only screen and (max-width: 767px) {
  .section-title h1 {
    font-size: 48px;
  }

  .btn-default {
    padding: 15px 46px 15px 16px;
    /* font-size: 14px; */
  }

  .section-title .section-sub-title {
    font-size: 14px;
  }

  .hero-benefit-item-list-prime {
    gap: 20px;
  }

  .hero-benefit-item-prime,
  .hero-benefit-item-prime.box-2 {
    width: 100%;
  }

  .hero-benefit-item-prime {
    padding: 20px;
  }

  .hero-benefit-item-prime .icon-box {
    margin-bottom: 20px;
  }

  .hero-benefit-item-content-prime h2 {
    font-size: 18px;
  }

  .hero-rating-header-prime h3 {
    width: 60px;
    font-size: 22px;
  }

  .about-us-image-box-1-prime,
  .about-us-image-box-2-prime {
    width: 100%;
  }

  .about-us-image-box-1-prime {
    background: transparent;
    padding-bottom: 20px;
  }

  .about-us-image-box-1-prime .contact-us-circle-prime {
    top: auto;
    left: 50%;
    transform: translate(-50%, 50%);
    right: auto;
    bottom: 10px;
  }

  .about-us-image-box-2-prime .about-us-image-prime {
    margin: 0;
  }

  .about-us-image-box-2-prime .about-us-image-prime figure {
    border: none;
  }

  .about-us-body-item-prime {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .about-body-item-content-prime {
    width: 100%;
  }

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

  .about-counter-item-prime {
    width: 100%;
    padding: 20px;
    min-height: initial;
  }

  .about-counter-item-no-prime h2 {
    font-size: 26px;
  }

  .about-counter-item-content-prime h3 {
    font-size: 18px;
  }

  .service-item-prime {
    padding: 20px;
    gap: 20px;
  }

  .service-item-content-prime h2 {
    font-size: 18px;
  }

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

  .benefit-counter-box-prime {
    width: 200px;
    bottom: 0;
    left: 0px;
    padding: 15px;
  }

  .benefit-counter-box-prime h2 {
    font-size: 28px;
  }

  .benefit-counter-rating-prime {
    margin-top: 10px;
  }

  .benefit-body-item-list-prime {
    border: none;
    padding: 0;
    margin-bottom: 30px;
  }

  .benefit-body-item-prime {
    width: 100%;
  }

  .benefit-body-item-prime .icon-box {
    margin-bottom: 20px;
  }

  .benefit-body-item-content-prime h3 {
    font-size: 18px;
  }

  .benefit-body-item-content-prime p {
    margin-top: 5px;
  }

  .fact-item-prime {
    padding: 20px;
  }

  .fact-item-body-prime h2 {
    font-size: 26px;
  }

  .company-supports-content-prime hr {
    width: 0;
  }

  .company-supports-logo-prime img {
    max-width: 160px;
    height: 34px;
  }

  .why-choose-header-content-prime {
    margin-top: 20px;
  }

  .why-choose-header-content-prime h3 {
    font-size: 18px;
  }

  .why-choose-header-content-prime p {
    margin-top: 15px;
    padding-top: 15px;
  }

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

  .intro-video-list-prime ul li {
    width: 100%;
  }

  .faq-image-prime img {
    aspect-ratio: 1 / 1.286;
  }

  .faq-cta-box-prime {
    position: initial;
    border: none;
    margin-top: 20px;
  }

  .faq-cta-box-prime::before,
  .faq-cta-box-prime::after {
    display: none;
  }

  .faq-cta-content-box-prime {
    max-width: 100%;
    padding: 15px;
  }

  .faq-cta-content-box-prime .icon-box {
    margin-bottom: 15px;
  }

  .faq-accordion-prime .accordion-header .accordion-button {
    padding: 12px 35px 12px 15px;
  }

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

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

  .testimonial-item-prime {
    gap: 20px;
  }

  .testimonial-item-content-prime p {
    font-size: 16px;
  }

  .testimonial-item-footer-prime {
    margin-top: 20px;
    padding-top: 20px;
  }

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

  .footer-newsletter-form-prime h3 {
    font-size: 18px;
  }

  .footer-newsletter-form-prime .form-group {
    margin-top: 20px;
    padding: 5px;
  }

  .footer-newsletter-form-prime .form-group .form-control {
    width: calc(100% - 40px);
  }

  .footer-newsletter-form-prime .form-group .newsletter-btn {
    width: 40px;
    height: 40px;
  }

  .footer-newsletter-form-prime .form-group .newsletter-btn img {
    max-width: 22px;
  }

  .footer-links-prime {
    max-width: 100%;
  }

  .footer-links-prime h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-social-links-prime h3,
  .footer-social-links-prime ul li a i {
    font-size: 18px;
  }

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

/************************************/
/***   35. Home - Version 3 css	  ***/
/************************************/

.hero-metal {
  position: relative;
  background-image: url("../images/hero-bg-image-metal.jpg");
  background-position: center center;
  padding: 250px 0 0;
  margin-top: 20px;
  overflow: hidden;
}

.hero-metal::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(270deg, transparent 0%, rgba(4, 6, 24, 0.8) 91.83%),
    linear-gradient(0deg, rgba(4, 6, 24, 0.6) 0%, rgba(4, 6, 24, 0.6) 100%);
  z-index: 1;
}

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

.hero-content-metal {
  padding-right: 5.208vw;
}

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

.hero-rating-box-header-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.hero-rating-box-header-metal h2 {
  font-size: 20px;
  color: var(--white-color);
}

.hero-rating-box-header-metal p {
  margin-bottom: 0;
}

.hero-rating-box-header-metal p i {
  color: var(--accent-secondary-color);
}

.hero-rating-box-content-metal {
  margin-top: 5px;
}

.hero-rating-box-content-metal p {
  color: var(--white-color);
  margin-bottom: 0;
}

.hero-watch-video-circle-metal {
  text-align: center;
}

.hero-watch-video-circle-metal a {
  display: inline-block;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  cursor: none;
  border-radius: 50%;
}

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

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

.hero-info-box-metal {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: var(--bg-color);
  border-radius: 20px 20px 0 0;
  padding: 20px 20px 0;
  border-bottom: none;
  margin-top: 140px;
}

.hero-info-box-metal::before,
.hero-info-box-metal::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 20px;
  height: 20px;
  mask: url("../images/image-corner-bg-shape.svg");
  -webkit-mask: url("../images/image-corner-bg-shape.svg");
  background-color: var(--bg-color);
  mask-repeat: no-repeat;
  mask-size: cover;
  transform: rotate(-90deg);
  z-index: 1;
}

.hero-info-box-metal::before {
  right: -20px;
  left: auto;
  transform: rotate(0deg);
}

.hero-info-item-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: var(--primary-color);
  border-radius: 20px;
  overflow: hidden;
}

.hero-info-item-metal.box-1 {
  width: calc(45% - 20px);
  padding: 10px;
}

.hero-info-item-metal.box-1 .hero-info-item-image-metal {
  width: calc(44% - 15px);
}

.hero-info-item-metal.box-1 .hero-info-item-image-metal figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.hero-info-item-metal.box-1 .hero-info-item-image-metal img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 1.064;
  object-fit: cover;
  border-radius: 20px;
}

.hero-info-item-metal.box-1 .hero-info-item-content-box-metal {
  width: calc(56% - 15px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 30px 30px 0;
}

.hero-info-item-content-box-metal .satisfy-client-image img {
  max-width: 42px;
}

.hero-info-item-content-box-metal .satisfy-client-image.add-more {
  width: 44px;
  height: 44px;
}

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

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

.hero-info-item-metal.box-2 {
  width: calc(30% - 20px);
  background-color: var(--white-color);
  text-align: center;
  padding: 40px 30px;
}

.hero-info-item-metal.box-2 .hero-info-item-content-box-metal .satisfy-client-images {
  margin-bottom: 15px;
}

.hero-info-item-metal.box-2 .hero-info-item-content-box-metal .satisfy-client-image img {
  max-width: 34px;
}

.hero-info-item-metal.box-2 .hero-info-item-content-box-metal .satisfy-client-image.add-more {
  width: 36px;
  height: 36px;
}

.hero-info-item-metal.box-2 .hero-info-item-content-metal h3,
.hero-info-item-metal.box-2 .hero-info-item-content-metal p {
  color: var(--primary-color);
}

.trusted-parters-list-metal {
  align-content: center;
  margin: 0 -30px 0;
}

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

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

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

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

.scrolling-content-metal span img {
  width: 100%;
  max-width: 124px;
}

.hero-info-item-metal.box-3 {
  width: calc(25% - 20px);
  background-color: var(--accent-secondary-color);
  flex-direction: column;
  padding: 30px;
}

.hero-info-item-header-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-right: 50px;
}

.hero-info-item-header-metal .icon-box {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.hero-info-item-header-metal .icon-box img {
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.hero-info-item-metal.box-3 .hero-info-item-content-metal {
  width: calc(100% - 65px);
}

.hero-info-item-metal.box-3 .hero-info-item-content-metal h3,
.hero-info-item-metal.box-3 .hero-info-item-content-metal p {
  color: var(--primary-color);
}

.hero-info-counter-box-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-info-counter-item-metal {
  width: calc(60% - 10px);
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
}

.hero-info-counter-image-metal {
  width: calc(40% - 10px);
}

.hero-info-counter-item-metal h2 {
  font-size: 40px;
}

.hero-info-counter-item-metal p {
  color: var(--primary-color);
  margin: 10px 0 0;
}

.hero-info-counter-image-metal figure {
  display: block;
  margin: -70px -90px -70px -20px;
}

.hero-info-counter-image-metal img {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 20px;
}

.about-us-metal {
  padding: 90px 0;
}

.about-us-image-box-metal {
  position: relative;
  height: 100%;
}

.about-us-image-metal {
  height: 100%;
}

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

.about-cta-box-metal {
  width: 340px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--divider-color);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px;
}

.about-cta-header-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 10px;
}

.about-cta-counter-item-metal {
  width: calc(100% - 115px);
}

.about-cta-counter-item-metal h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1em;
  color: var(--white-color);
}

.about-cta-counter-item-metal p {
  color: var(--white-color);
  margin: 10px 0 0 0;
}

.about-cta-header-metal .satisfy-client-image img {
  max-width: 34px;
}

.about-cta-header-metal .satisfy-client-image.add-more {
  width: 36px;
  height: 36px;
}

.about-cta-header-metal .satisfy-client-image.add-more i {
  font-size: 16px;
}

.about-cta-body-metal {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 20px;
  padding-top: 20px;
}

.about-cta-body-rating-metal i {
  color: var(--accent-secondary-color);
}

.about-cta-body-metal p {
  color: var(--white-color);
  margin: 10px 0 0;
}

.about-us-content-metal {
  height: 100%;
  align-content: center;
  margin-left: 15px;
}

.about-us-content-metal p strong,
.about-us-content-metal p b,
.about-us-content-metal p span {
  background-color: transparent !important;
  color: inherit !important;
}

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

.about-body-item-list-metal {
  width: calc(100% - 380px);
}

.about-body-item-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.about-body-item-metal:last-child {
  margin-bottom: 0;
}

.about-body-item-metal .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.about-body-item-metal:hover .icon-box {
  background-color: transparent;
}

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

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

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

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

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

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

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

.about-body-counter-box-metal {
  width: 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
}

.about-body-counter-image-metal,
.about-body-counter-item-metal {
  width: calc(50% - 5px);
}

.about-body-counter-image-metal {
  align-content: end;
}

.about-body-counter-image-metal figure {
  margin: -20px 0px -30px -70px;
}

.about-body-counter-image-metal img {
  width: 100%;
  object-fit: cover;
}

.about-body-counter-item-metal h2 {
  font-size: 50px;
  font-weight: 500;
}

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

.about-us-footer-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin-top: 40px;
}

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

.about-us-contact-box-metal .icon-box {
  position: relative;
  background: var(--accent-secondary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.about-us-contact-box-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-contact-box-metal:hover .icon-box::before {
  transform: scale(1);
}

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

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

.about-us-conatct-content-metal p {
  margin: 0 0 5px;
}

.about-us-conatct-content-metal h3 {
  font-size: 20px;
}

.about-us-conatct-content-metal h3 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.about-us-conatct-content-metal h3 a:hover {
  color: var(--accent-secondary-color);
}

.our-services-metal {
  padding: 100px 0;
}

.service-item-metal {
  background-color: var(--bg-color);
  border-radius: 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.service-item-body-metal {
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
}

.service-item-header-metal .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.service-item-metal:hover .service-item-header-metal .icon-box {
  background-color: transparent;
}

.service-item-header-metal .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--accent-secondary-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 .service-item-header-metal .icon-box::before {
  transform: scale(1);
}

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

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

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

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

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

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

.service-item-btn-metal .readmore-btn {
  padding-right: 35px;
  transition: all 0.4s ease-in-out;
}

.service-item-btn-metal .readmore-btn::before {
  height: 26px;
  width: 26px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  background-size: 16px auto;
}

.why-choose-us-metal {
  padding: 100px 0;
}

.why-choose-video-box-metal {
  position: relative;
  margin-right: 20px;
  height: 100%;
}

.why-choose-video-image-metal {
  height: 100%;
}

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

.why-choose-video-image-metal img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  border-radius: 20px;
}

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

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

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

.video-play-button-metal a.bg-effect:before,
.video-play-button-metal a.bg-effect:after {
  content: "";
  position: absolute;
  top: -36%;
  left: -36%;
  width: 100%;
  height: 100%;
  border: 60px 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-metal a.bg-effect:after {
  animation-delay: 0.3s;
}

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

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

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

.why-choose-us-content-metal {
  height: 100%;
  align-content: center;
}

.why-choose-body-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-body-item-metal {
  width: calc(50% - 15px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 30px;
}

.why-choose-body-item-metal .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.why-choose-body-item-metal:hover .icon-box {
  background-color: transparent;
}

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

.why-choose-body-item-metal:hover .icon-box::before {
  transform: scale(1);
}

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

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

.why-choose-body-content-metal {
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
}

.why-choose-body-content-metal h3 {
  font-size: 20px;
}

.why-choose-body-content-metal p {
  margin: 10px 0 0;
}

.why-choose-us-content-metal .section-footer-text.section-satisfy-img {
  border-top: 1px solid var(--divider-color);
  margin-top: 30px;
  padding-top: 30px;
  text-align: left;
  justify-content: start;
}

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

.our-pricing-metal .pricing-item {
  background: var(--bg-color);
}

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

.who-we-are-metal {
  padding: 100px 0;
}

.who-we-are-image-box-metal {
  position: relative;
  padding: 0 90px 90px 0;
  margin-right: 20px;
}

.who-we-are-image-metal figure {
  display: block;
  border-radius: 20px;
}

.who-we-are-image-metal img {
  width: 100%;
  aspect-ratio: 1 / 0.999;
  object-fit: cover;
  border-radius: 20px;
}

.who-we-are-skills-box-metal {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 360px;
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
}

.who-we-are-skills-title-metal {
  margin-bottom: 30px;
}

.who-we-are-skills-title-metal h3 {
  font-size: 20px;
}

.who-we-are-skills-list-metal .skills-progress-bar {
  width: 100%;
  margin-bottom: 20px;
}

.who-we-are-skills-list-metal .skills-progress-bar:last-child {
  margin-bottom: 0;
}

.who-we-are-skills-list-metal .skills-progress-bar .skill-data .skill-title {
  color: var(--primary-color);
  font-weight: 500;
}

.who-we-are-skills-list-metal .skills-progress-bar .skillbar .skill-progress {
  height: 3px;
}

.who-we-are-body-box-metal {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.who-we-are-body-item-metal {
  width: calc(33.33% - 20px);
  background: var(--white-color);
  border-radius: 20px;
  text-align: center;
  padding: 30px;
}

.who-we-are-body-item-metal .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.who-we-are-body-item-metal:hover .icon-box {
  background: transparent;
}

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

.who-we-are-body-item-metal:hover .icon-box::before {
  transform: scale(1);
}

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

.who-we-are-body-item-metal:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.who-we-are-body-content-metal h3 {
  font-size: 16px;
  line-height: normal;
}

.who-we-are-footer-box-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.our-testimonials-metal {
  padding: 100px 0;
}

.testimonial-content-box-metal {
  position: sticky;
  top: 30px;
}

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

.testimonial-item-metal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 410px;
}

.testimonial-item-header-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 50px;
}

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

.testimonial-item-quote-metal img {
  width: 100%;
  max-width: 44px;
}

.testimonial-item-content-metal p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

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

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

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

.testimonial-btn-metal {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1;
}

.testimonial-slider-metal .testimonial-button-next-metal,
.testimonial-slider-metal .testimonial-button-prev-metal {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--bg-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider-metal .testimonial-button-next-metal:hover,
.testimonial-slider-metal .testimonial-button-prev-metal:hover {
  background: var(--accent-secondary-color);
}

.testimonial-slider-metal .testimonial-button-next-metal::before,
.testimonial-slider-metal .testimonial-button-prev-metal::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/arrow-primary.svg") no-repeat;
  background-position: center center;
  background-size: 20px auto;
  transform: rotate(225deg);
  transition: all 0.4s ease-in-out;
}

.testimonial-slider-metal .testimonial-button-next-metal::before {
  transform: rotate(45deg);
}

.company-supports-slider-box-metal {
  margin-top: 80px;
}

.company-supports-content-metal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  text-align: center;
}

.company-supports-content-metal hr {
  height: 1px;
  width: 33%;
  color: var(--divider-color);
  opacity: 1;
  margin: 0;
}

.company-supports-content-metal p {
  margin-bottom: 0;
}

.company-supports-slider-metal {
  margin: 0 4.167vw;
}

.company-supports-logo-metal {
  text-align: center;
}

.company-supports-logo-metal img {
  width: 100%;
  max-width: 170px;
  height: 40px;
}

.main-footer-metal {
  padding: 100px 0 0;
  margin-bottom: 20px;
}

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

.footer-header-metal .section-title {
  max-width: 56%;
  margin-bottom: 0;
}

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

.about-footer-metal {
  max-width: 35%;
}

.footer-contact-item-list-metal h3,
.footer-newsletter-box-metal h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.footer-contact-item-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.footer-contact-item-metal:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer-contact-item-metal .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.footer-contact-item-metal:hover .icon-box {
  background: var(--white-color);
}

.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 h4 {
  font-size: 20px;
  color: var(--white-color);
}

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

.footer-contact-item-content-metal h4 a:hover {
  color: var(--accent-secondary-color);
}

.about-footer-metal {
  text-align: center;
}

.footer-logo-metal {
  margin-bottom: 30px;
}

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

.about-footer-content-metal {
  margin-bottom: 40px;
}

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

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

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

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

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

.footer-newsletter-box-metal {
  max-width: 25%;
}

.footer-newsletter-box-metal p {
  color: var(--white-color);
  margin-bottom: 30px;
}

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

.footer-newsletter-form-metal .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;
  outline: none;
  box-shadow: none;
  padding: 6px 15px;
}

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

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

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

.footer-newsletter-form-metal .form-group .newsletter-btn-metal i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 3px;
  transition: all 0.3s ease-in-out;
}

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

.footer-copyright-box-metal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px 30px;
}

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

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

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

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

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

.footer-copyright-text a {
  color: var(--secondary-color);
}

.footer-copyright-text a:hover {
  color: var(--white-color);
}

@media only screen and (max-width: 1440px) {
  .hero-content-metal {
    padding-right: 0;
  }

  .hero-info-box-metal {
    margin-top: 80px;
  }

  .hero-info-item-metal.box-1 .hero-info-item-content-box-metal {
    padding: 20px 20px 20px 0;
  }

  .hero-info-item-metal.box-2 {
    padding: 30px 20px;
  }

  .hero-info-item-metal.box-3 {
    padding: 20px;
  }

  .hero-info-item-header-metal {
    margin-right: 20px;
  }

  .hero-info-counter-image-metal figure {
    margin-top: -50px;
  }

  .about-body-item-list-metal {
    width: calc(100% - 350px);
  }

  .about-body-counter-box-metal {
    width: 320px;
  }

  .service-item-metal {
    min-height: 370px;
    padding: 30px 25px;
  }

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

  .why-choose-body-item-metal {
    padding: 20px;
  }

  .who-we-are-body-item-metal {
    padding: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-metal {
    padding-bottom: 15px;
  }

  .hero-watch-video-circle-metal {
    display: none;
  }

  .hero-info-box-metal {
    border-radius: 20px;
    padding: 20px;
    margin-top: 40px;
  }

  .hero-info-box-metal::before,
  .hero-info-box-metal::after {
    display: none;
  }

  .hero-info-item-metal.box-1 {
    width: 100%;
  }

  .hero-info-item-metal.box-1 .hero-info-item-image-metal figure {
    height: auto;
  }

  .hero-info-item-metal.box-1 .hero-info-item-image-metal img {
    height: auto;
    aspect-ratio: 1 / 0.75;
  }

  .hero-info-item-metal.box-2,
  .hero-info-item-metal.box-3 {
    width: calc(50% - 15px);
  }

  .about-us-image-box-metal {
    margin-bottom: 30px;
  }

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

  /* .about-us-image-metal img {
    aspect-ratio: 1 / 0.7;
  } */

  .about-us-content-metal {
    height: auto;
    margin: 0;
  }

  .why-choose-video-box-metal {
    margin: 0 0 30px;
    height: auto;
  }

  .why-choose-video-image-metal,
  .why-choose-video-image-metal figure,
  .why-choose-video-image-metal img,
  .why-choose-us-content-metal {
    height: auto;
  }

  .why-choose-video-image-metal img {
    aspect-ratio: 1 / 0.75;
  }

  .who-we-are-image-box-metal {
    padding: 0 50px 50px 0;
    margin: 0 0 30px;
  }

  .testimonial-content-box-metal {
    position: initial;
    margin: 0 0 30px;
  }

  .testimonial-item-metal {
    min-height: auto;
    gap: 30px;
  }

  .testimonial-item-header-metal {
    margin-bottom: 30px;
  }

  .testimonial-author-content-metal {
    padding-top: 30px;
  }

  .company-supports-slider-metal {
    margin: 0;
  }

  .footer-header-metal .section-title {
    max-width: 75%;
  }

  .about-footer-metal {
    width: 100%;
    max-width: 100%;
    text-align: left;
    order: 1;
  }

  .footer-logo-metal,
  .about-footer-content-metal {
    margin-bottom: 20px;
  }

  .footer-newsletter-box-metal {
    order: 2;
    max-width: 49%;
  }

  .footer-contact-item-list-metal h3,
  .footer-newsletter-box-metal h3,
  .footer-newsletter-box-metal p {
    margin-bottom: 20px;
  }

  .footer-contact-item-metal {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-metal {
    padding: 140px 0 15px;
    margin-top: 0;
  }

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

  .hero-watch-video-circle-metal img {
    max-width: 120px;
  }

  .hero-info-box-metal {
    margin-top: 30px;
  }

  .hero-info-counter-item-metal h2 {
    font-size: 32px;
  }

  .hero-info-counter-image-metal figure {
    margin: -40px -60px -20px -10px;
  }

  .about-us-metal {
    padding: 50px 0;
  }

  .about-cta-box-metal {
    padding: 20px;
    bottom: 20px;
    left: 20px;
  }

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

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

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

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

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

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

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

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

  .our-services-metal {
    padding: 50px 0;
  }

  .service-item-metal {
    min-height: initial;
    gap: 20px;
    padding: 20px;
  }

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

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

  .service-item-body-metal {
    padding-top: 20px;
  }

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

  .why-choose-us-metal {
    padding: 50px 0;
  }

  .video-play-button-metal a {
    width: 60px;
    height: 60px;
  }

  .video-play-button-metal a i {
    font-size: 20px;
  }

  .video-play-button-metal a.bg-effect:before,
  .video-play-button-metal a.bg-effect:after {
    border-width: 50px;
    top: -33%;
    left: -33%;
  }

  .why-choose-body-item-metal {
    min-height: initial;
    gap: 20px;
  }

  .why-choose-body-item-metal .icon-box {
    height: 50px;
    width: 50px;
  }

  .why-choose-body-item-metal .icon-box img {
    max-width: 24px;
  }

  .why-choose-body-content-metal {
    padding-top: 20px;
  }

  .our-pricing-metal {
    padding: 50px 0;
  }

  .who-we-are-metal {
    padding: 50px 0;
  }

  .who-we-are-skills-box-metal {
    padding: 20px;
  }

  .who-we-are-footer-box-metal {
    margin-top: 30px;
    padding-top: 30px;
  }

  .our-testimonials-metal {
    padding: 50px 0;
  }

  .testimonial-item-content-metal p {
    font-size: 18px;
  }

  .company-supports-slider-box-metal {
    margin-top: 50px;
  }

  .company-supports-content-metal {
    margin-bottom: 20px;
  }

  .company-supports-content-metal hr {
    width: 26%;
  }

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

  .footer-header-metal {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-copyright-metal {
    padding: 30px 0;
    margin-top: 30px;
  }

  .footer-menu-metal ul {
    gap: 5px 15px;
  }

  .footer-newsletter-form-metal .form-group .form-control {
    width: calc(100% - 44px);
  }

  .footer-newsletter-form-metal .form-group .newsletter-btn-metal {
    width: 44px;
    height: 44px;
  }

  .footer-newsletter-form-metal .form-group .newsletter-btn-metal i {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-watch-video-circle-metal img {
    max-width: 100px;
  }

  .hero-info-box-metal {
    gap: 20px;
    padding: 10px;
  }

  .hero-info-item-metal {
    gap: 20px;
  }

  .hero-info-item-metal.box-1 .hero-info-item-content-box-metal {
    padding: 0 10px 10px;
  }

  .hero-info-item-metal.box-1 .hero-info-item-image-metal,
  .hero-info-item-metal.box-1 .hero-info-item-content-box-metal,
  .hero-info-item-metal.box-2,
  .hero-info-item-metal.box-3 {
    width: 100%;
  }

  .hero-info-item-content-metal h3 {
    font-size: 18px;
  }

  .hero-info-item-content-metal p,
  .hero-info-counter-item-metal p {
    margin: 5px 0 0;
  }

  .hero-info-counter-item-metal {
    padding-top: 20px;
  }

  .hero-info-counter-item-metal h2 {
    font-size: 26px;
  }

  .hero-info-counter-image-metal figure {
    margin: -30px -40px -20px 0px;
  }

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

  .about-cta-box-metal {
    position: initial;
    width: 100%;
    background-color: var(--primary-color);
    margin-top: 20px;
  }

  .about-cta-counter-item-metal h2 {
    font-size: 26px;
  }

  .about-body-item-list-metal {
    width: 100%;
  }

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

  .about-body-item-content-metal p {
    margin-top: 5px;
  }

  .about-body-counter-box-metal {
    width: 100%;
  }

  .about-body-counter-item-metal h2 {
    font-size: 26px;
  }

  .about-us-footer-metal {
    gap: 20px;
  }

  .about-us-contact-box-metal {
    gap: 10px;
  }

  .about-us-conatct-content-metal h3 {
    font-size: 18px;
  }

  .service-item-content-metal h2 {
    font-size: 18px;
  }

  .why-choose-video-image-metal img {
    aspect-ratio: 1 / 1.2;
  }

  .why-choose-body-item-metal {
    width: 100%;
  }

  .why-choose-body-content-metal h3 {
    font-size: 18px;
  }

  .who-we-are-image-box-metal {
    padding: 0;
  }

  .who-we-are-skills-box-metal {
    position: initial;
    width: 100%;
    margin-top: 20px;
  }

  .who-we-are-skills-title-metal {
    margin-bottom: 20px;
  }

  .who-we-are-skills-title-metal h3 {
    font-size: 18px;
  }

  .who-we-are-body-box-metal {
    gap: 20px;
  }

  .who-we-are-body-item-metal {
    width: calc(50% - 10px);
    padding: 15px;
  }

  .who-we-are-body-item-metal .icon-box {
    margin-bottom: 20px;
  }

  .who-we-are-footer-box-metal {
    gap: 20px;
  }

  .testimonial-item-metal {
    gap: 20px;
  }

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

  .testimonial-item-content-metal p {
    font-size: 16px;
  }

  .testimonial-author-content-metal {
    padding-top: 20px;
  }

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

  .testimonial-btn-metal {
    position: initial;
    justify-content: center;
    margin: 20px 0 0;
  }

  .company-supports-slider-box-metal {
    margin-top: 30px;
  }

  .company-supports-content-metal hr {
    width: 0;
  }

  .company-supports-logo-metal img {
    max-width: 160px;
    height: 34px;
  }

  .footer-header-metal {
    gap: 20px;
  }

  .footer-header-metal .section-title {
    max-width: 100%;
  }

  .footer-body-metal {
    gap: 30px;
  }

  .footer-contact-item-list-metal,
  .footer-newsletter-box-metal {
    width: 100%;
    max-width: 100%;
  }

  .footer-contact-item-list-metal h3,
  .footer-newsletter-box-metal h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-contact-item-content-metal h4 {
    font-size: 18px;
  }

  .footer-copyright-metal {
    padding: 15px 0;
  }

  .footer-copyright-box-metal {
    gap: 10px;
    justify-content: center;
  }

  .footer-menu-metal ul li {
    font-size: 14px;
  }
}

/************************************/
/***  18. Mission & Vision css   ***/
/************************************/

.premium-mission-vision {
  margin: 120px 0;
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #1a2551 0%, #1e2d5f 50%, #1a2551 100%);
  overflow: hidden;
}

.premium-mission-vision::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(52, 168, 224, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}

.premium-mission-vision::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(52, 168, 224, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes float {

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

  50% {
    transform: translateY(30px);
  }
}

/* Section Header */
.section-header-mv {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.mv-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #34a8e0;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: rgba(52, 168, 224, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(52, 168, 224, 0.3);
  animation: slideDown 0.8s ease;
}

.mv-main-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.mv-title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #34a8e0);
  margin: 0 auto;
  border-radius: 2px;
  animation: expandWidth 0.8s ease 0.2s backwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

/* Premium Cards */
.premium-mv-card {
  position: relative;
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.mission-premium {
  background: linear-gradient(135deg,
      rgba(52, 168, 224, 0.15) 0%,
      rgba(52, 168, 224, 0.05) 100%);
  border: 2px solid rgba(52, 168, 224, 0.2);
}

.vision-premium {
  background: linear-gradient(135deg,
      rgba(52, 168, 224, 0.15) 0%,
      rgba(52, 168, 224, 0.05) 100%);
  border: 2px solid rgba(52, 168, 224, 0.2);
}

.premium-mv-card:hover {
  transform: translateY(-20px);
  border-color: transparent;
}

.mission-premium:hover {
  background: linear-gradient(135deg,
      rgba(52, 168, 224, 0.25) 0%,
      rgba(52, 168, 224, 0.1) 100%);
  box-shadow: 0 30px 80px rgba(52, 168, 224, 0.2);
}

.vision-premium:hover {
  background: linear-gradient(135deg,
      rgba(52, 168, 224, 0.25) 0%,
      rgba(52, 168, 224, 0.1) 100%);
  box-shadow: 0 30px 80px rgba(52, 168, 224, 0.2);
}

/* Card Background Effect */
.card-bg-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 0% 0%,
      transparent 0%,
      transparent 100%);
  transition: all 0.5s ease;
  z-index: 0;
}

.premium-mv-card:hover .card-bg-effect {
  background: radial-gradient(circle at 100% 100%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 100%);
}

/* Card Border Animation */
.card-border-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: slideAcross 3s ease-in-out infinite;
  z-index: 1;
}

.mission-premium .card-border-animation {
  background: linear-gradient(90deg,
      transparent,
      rgba(52, 168, 224, 0.5),
      transparent);
}

.vision-premium .card-border-animation {
  background: linear-gradient(90deg,
      transparent,
      rgba(52, 168, 224, 0.5),
      transparent);
}

@keyframes slideAcross {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

/* Card Content */
.premium-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
}

/* Icon Section */
.premium-card-icon-section {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.premium-icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.icon-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-premium .icon-inner {
  color: #ffa500;
}

.vision-premium .icon-inner {
  color: #34a8e0;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}

.mission-premium .icon-glow {
  background: radial-gradient(circle,
      rgba(255, 165, 0, 0.3) 0%,
      transparent 70%);
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.2);
}

.vision-premium .icon-glow {
  background: radial-gradient(circle,
      rgba(52, 168, 224, 0.3) 0%,
      transparent 70%);
  box-shadow: 0 0 30px rgba(52, 168, 224, 0.2);
}

.premium-mv-card:hover .icon-inner {
  transform: scale(1.2) rotate(10deg);
}

.premium-mv-card:hover .icon-glow {
  box-shadow: 0 0 50px rgba(255, 165, 0, 0.4);
}

.vision-premium:hover .icon-glow {
  box-shadow: 0 0 50px rgba(52, 168, 224, 0.4);
}

.icon-accent-line {
  flex-grow: 1;
  height: 2px;
  position: relative;
  overflow: hidden;
}

.mission-premium .icon-accent-line {
  background: linear-gradient(90deg, #ffa500, transparent);
}

.vision-premium .icon-accent-line {
  background: linear-gradient(90deg, #34a8e0, transparent);
}

.icon-accent-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40px;
  background: inherit;
  animation: slideLine 2s ease-in-out infinite;
}

@keyframes slideLine {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(500%);
  }
}

/* Text Content */
.premium-card-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.premium-card-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.mission-premium .premium-card-title {
  background: linear-gradient(135deg, #ffffff 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-premium .premium-card-title {
  background: linear-gradient(135deg, #ffffff 0%, #34a8e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-card-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 35px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.premium-mv-card:hover .premium-card-description {
  color: rgba(255, 255, 255, 0.95);
}

/* Highlights Section */
.premium-highlights {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.highlight-item:hover {
  transform: translateX(5px);
}

.highlight-number {
  font-size: 18px;
  font-weight: 700;
  min-width: 30px;
}

.mission-premium .highlight-number {
  color: #ffa500;
}

.vision-premium .highlight-number {
  color: #34a8e0;
}

.highlight-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.highlight-item:hover .highlight-label {
  color: #ffffff;
}

/* Values Separator */
.values-separator {
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  position: relative;
  z-index: 2;
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .premium-mission-vision {
    padding: 80px 0;
  }

  .mv-main-title {
    font-size: 42px;
  }

  .premium-mv-card {
    height: auto;
    min-height: 450px;
  }

  .premium-card-content {
    padding: 40px 30px;
  }

  .premium-card-title {
    font-size: 28px;
  }

  .premium-card-description {
    font-size: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .premium-mission-vision {
    padding: 60px 0;
  }

  .section-header-mv {
    margin-bottom: 60px;
  }

  .mv-main-title {
    font-size: 32px;
  }

  .premium-mv-card {
    min-height: 500px;
    padding-bottom: 40px;
  }

  .premium-card-content {
    padding: 35px 25px;
  }

  .premium-icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-inner {
    font-size: 32px;
  }

  .premium-card-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .premium-card-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .premium-highlights {
    gap: 15px;
  }

  .highlight-label {
    font-size: 12px;
  }

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

  .team-item {
    padding: 30px 25px;
  }

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

  .team-item-content p {
    font-size: 13px;
  }

  .team-item-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .team-social-list {
    gap: 6px;
  }

  .team-social-list ul li a {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 576px) {
  .premium-mission-vision {
    padding: 50px 0;
  }

  .mv-subtitle {
    font-size: 12px;
    padding: 8px 15px;
  }

  .mv-main-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .section-header-mv {
    margin-bottom: 50px;
  }

  .premium-mv-card {
    min-height: auto;
    margin-bottom: 20px;
  }

  .premium-card-content {
    padding: 30px 20px;
  }

  .premium-card-icon-section {
    margin-bottom: 25px;
  }

  .premium-icon-box {
    width: 60px;
    height: 60px;
  }

  .icon-inner {
    font-size: 28px;
  }

  .premium-card-title {
    font-size: 20px;
  }

  .premium-card-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .premium-highlights {
    flex-direction: column;
    gap: 12px;
  }

  .highlight-label {
    font-size: 12px;
  }

  .mv-title-divider {
    width: 60px;
  }
}

@media only screen and (max-width: 576px) {

  .cta-box .counter-box h3,
  .cta-box .counter-box h3 .count-text {
    font-size: 40px !important;
  }

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

  .team-item {
    padding: 25px 20px;
  }

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

  .team-item-content p {
    font-size: 12px;
  }

  .team-item-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 8px;
  }

  .team-features-list {
    gap: 8px;
    padding-top: 10px;
  }

  .team-feature-item {
    font-size: 12px;
    gap: 8px;
  }

  .team-social-list {
    gap: 5px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .team-social-list ul li a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ---------------------------------------------------------- */

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.scroll-top:after {
  content: "\f062";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--primary-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--primary-color);
  box-shadow: none;
  border-radius: 50%;
}

.scroll-top svg {
  color: var(--primary-color);
  border-radius: 50%;
  background: var(--white-color);
}

.scroll-top svg path {
  fill: none;
}

.scroll-top .progress-circle path {
  stroke: var(--primary-color);
  stroke-width: 20px;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.project-tabs .btn-default {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-form .btn-default,
.who-we-btn .btn-default,
.project-tabs .btn-default.active,
.cta-box .btn-default {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.contact-form .btn-default:hover:before {
  filter: brightness(0) invert(1);
}

.project-tabs .btn-default::before {
  background-color: transparent;
}

.post-item-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0px 0px;
}

.blog-meta {
  margin: 0 0 18px 0;
}

.blog-meta span,
.blog-meta a {
  display: inline-block;
  margin-right: 15px;
  padding-right: 20px;
  font-size: 14px;
  color: var(--body-color);
  position: relative;
}

.blog-meta span i,
.blog-meta a i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.blog-meta span:after,
.blog-meta a:after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #d3dbeb;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-meta a:last-child:after {
  content: none;
}

.vision-big-icon img {
  width: 60px;
  margin-bottom: 10px;
}

.our-commitment-content .about-us-image-metal img {
  aspect-ratio: unset;
}

.page-project-single .project-entry .loc-wrap {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.page-project-single .project-entry i {
  color: var(--secondary-color);
}

.page-project-single .contact-form {
  padding: 35px;
}

.page-single-sidebar {
  position: sticky;
  top: 10px;
  align-self: flex-start;
}

.project-single-content iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Testimonial Slider Equal Height */
.testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-item {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.testimonial-item-rating i {
  color: #ffb400;
  font-size: 14px;
  margin-right: 2px;
}

.testimonial-item-quote img {
  width: 40px;
  opacity: 0.2;
}

.testimonial-item-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--heading-color);
  font-style: italic;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.testimonial-item-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--divider-color);
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: unset;
}

.testimonial-author-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.testimonial-author-content p {
  font-size: 14px;
  margin: 0;
  color: var(--body-color);
}

/* Pagination Dots */
.testimonial-pagination {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--black-color);
  opacity: 0.5;
  margin: 0 6px !important;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

.team {
  padding-top: 120px;
  padding-bottom: 70px;
}

.team .align-title h5::before {
  left: 44%;
}

.team-content {
  position: relative;
  transition: 0.5s;
  margin-bottom: 50px;
}

.team-info {
  padding: 20px 30px;
  width: 331px;
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: absolute;
  right: 0;
  bottom: 30px;
  overflow: hidden;
  transition: 0.5s;
}

.team-info h6 {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #1f2230;
  margin-bottom: 5px;
}

.team-image {
  width: 366px;
  height: 475px;
  border-radius: 0px 50px;
}

.team-image img {
  border-radius: 0px 50px;
}

.team-content:hover .team-media {
  max-height: 200px;
  opacity: 1;
  margin-top: 15px;
}

.team-content:hover .team-info {
  background: var(--primary-color);
}

.team-content:hover .team-info h6,
.team-content:hover .team-info p {
  color: #ffffff;
}

.team-info p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-media {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.team-media ul {
  display: flex;
  margin-top: 10px;
}

.team-media ul li a {
  display: inline-block;
  margin-right: 25px;
  font-size: 20px;
}

.team-media ul li a .svg-inline--fa {
  font-size: 22px;
}

.whatsapp-chat {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 99;
}

.whatsapp-chat img {
  width: 50px;
  height: 50px;
  margin-left: 10px;
}

.insta-link {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
}

.insta-link img {
  width: 50px;
  height: 50px;
}

.partners-section {
  padding: 100px 0;
  /* background: #fff; */
  margin: 0px auto;
}

@media (max-width: 768px) {
  .team-info {
    padding: 20px 30px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    transition: 0.5s;
  }

  .team-image {
    height: auto;
    border-radius: 0 !important;
  }

  .team-image,
  .team-image img {
    border-radius: 0px 50px;
    width: 100%;
  }

  .project-tabs .nav-tabs {
    gap: 10px;
  }

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

.cta-box .btn-default {
  font-size: 16px;
}

.before-after-section {
  padding: 90px 0;
}

.ba-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;

  aspect-ratio: 16/9;
  /* FORCE SAME HEIGHT */
}

/* Both images EXACTLY overlap */
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IMPORTANT */
}

/* Base image */
.after-img {
  z-index: 1;
}

/* Top image clipped */
.before-img {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  /* initial 50% */
}

/* Divider */
.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #0c2278;
  z-index: 3;
  cursor: ew-resize;
}

.ba-handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: #0c2278;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ba-label {
  position: absolute;
  bottom: 40px;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: rgba(12, 34, 120, 0.85);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 4;
}

.before-label {
  left: 40px;
}

.after-label {
  right: 40px;
}

/* Show on hover */
.ba-wrapper:hover .ba-label {
  opacity: 1;
}

/* Hide when dragging */
.ba-wrapper.dragging .ba-label {
  opacity: 0 !important;
}

.services-section {
  position: relative;
  display: block;
  background-color: #23336f;
  overflow: hidden;
  z-index: 1;
  padding: 100px 0px;
}

.services-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.015;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  z-index: -1;
  background-image: url("../img/normal/service-bg.jpg");
}

.services-section .service-card {
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 30px;
  color: var(--white-color);
  height: 100%;
}

.services-section .service-card .icon-box img {
  width: 65px;
}

.services-section .service-card:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.services-section .service-card .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.5s linear;
  margin: 0 auto;
  z-index: 1;
}

.services-section .service-card .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2144d8;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.services-section .service-card:hover .icon-box::before {
  background-color: #fcc810;
  transform: scaleX(1);
}

.services-section .service-card .serv-title {
  font-size: 24px;
  line-height: 32px;
  margin: 20px 0;
  color: var(--white-color);
}

.services-section .service-card .serv-content {
  font-size: 16px;
  line-height: 24px;
  margin: 10px 0 0;
  color: var(--white-color);
}

.process-section {
  padding: 100px 0;
  margin: 0px auto;
}

.process-card {
  background: var(--white-color);
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  margin-top: 50px;
  padding: 85px 30px 0px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  height: 100%;
}

.process-card_icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 0;
  background: var(--white-color);
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.1);
}

.process-card_icon:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  height: 12px;
  width: 22px;
  background: transparent;
  border-top: 12px solid var(--white-color);
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-bottom: 0;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.process-card_icon img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 64px;
  height: 64px;
}

.process-card_bg-shape {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: -1;
}

.process-card_subtitle {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.process-card_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.process-card_text {
  margin-bottom: -0.5em;
}

.process-card:hover {
  background: var(--primary-color);
  --body-color: #8993a1;
}

.process-card:hover .process-card_bg-shape {
  opacity: 0.15;
}

.process-card:hover .process-card_icon {
  background: var(--secondary-color);
}

.process-card:hover .process-card_icon:after {
  border-top: 12px solid var(--secondary-color);
}

.process-card:hover .process-card_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.process-card:hover .process-card_title {
  color: var(--secondary-color);
}

.process-card:hover .process-card_text,
.process-card:hover .process-card_subtitle {
  color: var(--white-color);
}

.mobile-social-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 10px 0;
  z-index: 999;
}



@media (min-width: 1080px) {
  .mobile-social-fixed {
    display: none;
  }

}

@media (max-width: 1079px) {

  .whatsapp-chat,
  .insta-link {
    display: none;
  }

  .mobile-social-fixed img {
    width: 35px;
    height: 35px;
  }

}

@media (max-width: 768px) {
  .mobile-social-fixed img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 1200px) {
  .process-section .row.gy-50 {
    --bs-gutter-y: 5rem;
  }
}

@media (max-width: 1200px) {

  .services-section,
  .before-after-section,
  .partners-section,
  .process-section {
    padding: 80px 0;
  }
}

.main-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  0% {
    top: -80px;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

.slicknav_nav li.active a,
.slicknav_nav li a:hover {
  color: var(--secondary-color);
}

@media (max-width: 1600px) {
  .section-title h1 {
    font-size: 78px;
  }
}

@media (max-width: 1400px) {
  .navbar-brand img {
    height: 62px;
  }

  .footer-contact-item-content-metal h4 {
    font-size: 16px;
  }

  .who-we-are-image-box-metal .row {
    padding: 0;
    margin-bottom: 40px;
  }

  .who-we-are-image-box-metal .row:last-child {
    margin-bottom: 0px;
  }

  .who-we-are-metal .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .navbar-brand img {
    height: 52px;
  }

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

@media only screen and (max-width: 991px) {
  .before-after-section {
    padding: 50px 0;
  }
}

@media (max-width: 992px) {
  .section-title h1 {
    font-size: 70px;
  }

  .whatsapp-chat {
    left: 10px;
  }

  .whatsapp-chat img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .section-title h1 {
    font-size: 55px;
  }

}

@media (max-width: 576px) {
  .service-item .service-detail-box p {
    -webkit-line-clamp: 3;
  }

  .whatsapp-chat img,
  .insta-link img {
    width: 32px;
    height: 32px;
  }

  .whatsapp-chat {
    bottom: 80px;
  }


  .scroll-top {
    right: 10px;
  }

  .scroll-top {
    height: 35px;
    width: 35px;
  }

  .scroll-top:after {
    line-height: 35px;
    height: 34px;
    width: 35px;
  }

  .footer-copyright {
    padding: 15px 0 50px;
  }

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

  .fact-item-list-prime {
    margin-top: 15px;
  }

  .fact-item-prime {
    gap: 15px;
  }

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

@media (max-width: 400px) {
  .section-title h1 {
    font-size: 40px;
  }

}
.our-facts-prime .fact-item-prime {
    border-radius: 22px;
    background: #39487e;
    padding: 34px 34px 38px;
    height: 100%;
}

.our-facts-prime .fact-item-prime .fact-item-header-prime {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.our-facts-prime .fact-item-prime .fact-item-header-prime .icon-box {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.our-facts-prime .fact-item-prime .fact-item-header-prime .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0b800;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.our-facts-prime .fact-item-prime:hover .fact-item-header-prime .icon-box {
    background: transparent;
}

.our-facts-prime .fact-item-prime:hover .fact-item-header-prime .icon-box::before {
    transform: scale(1);
}

.our-facts-prime .fact-item-prime .fact-item-header-prime .icon-box img {
    width: 43px;
    height: 43px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: saturate(1.05) contrast(1.05);
}

.our-facts-prime .fact-item-prime .fact-item-list-prime ul {
    margin: 0;
    padding-left: 18px;
}

.our-facts-prime .fact-item-prime .fact-item-list-prime li {
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
}

.our-facts-prime .fact-item-prime .fact-item-list-prime li::marker {
    color: #f0b800;
}

.our-facts-prime .fact-item-prime .fact-item-list-prime {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 18px;
    padding-top: 18px;
}

.our-facts-prime .fact-item-prime .fact-item-body-prime h2 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1;
    font-weight: 600;
    margin: 0;
}

.our-facts-prime .section-title.section-title-center h2 span {
    color: #f0b800;
}

.thumbnail-carousel-section img{
  border-radius: 20px;
  border: 1px solid #ddd
}

.thumbnail-carousel-section .item.active img{
  border: 1px solid var(--secondary-color)
}

.thumbnail-carousel-section {
    position: relative;
}

.thumbnail-carousel .owl-nav {
    margin: 0;
}

.thumbnail-carousel .owl-nav button.owl-prev,
.thumbnail-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    background: rgba(0,0,0,.7) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .3s;
    z-index: 10;
}

.thumbnail-carousel .owl-nav button.owl-prev {
    left: -18px;
}

.thumbnail-carousel .owl-nav button.owl-next {
    right: -18px;
}

.thumbnail-carousel .owl-nav button:hover {
    background: #000 !important;
}

.thumbnail-carousel .item.active img {
    border: 1px solid var(--secondary-color);
    opacity: 1;
}

.thumbnail-carousel .item img {
    opacity: .7;
    cursor: pointer;
    transition: .3s;
        border: 1px solid #ddd;
}
.thumbnail-carousel .owl-dots{
  display: none; 
    text-align: center;
    margin-top: 15px;
}
.thumbnail-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: block;
    margin: 4px;
}
.thumbnail-carousel .owl-dot.active span {
    background: var(--primary-color);
}

.blog-image-carousel .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.blog-image-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: block;
  margin: 4px;
}
.blog-image-carousel .owl-dot.active span {
   background: var(--primary-color);
}

.blog-image-carousel .item img {
    width: 100%;
    display: block;
}
.company-supports-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}
@media(max-width: 576px){
  .thumbnail-carousel .owl-nav{
    display: none;
  }
  .thumbnail-carousel .owl-dots{
  display: block
}
}

@media(max-width: 1200px){
  body,
  .btn-default,
  .main-menu ul li a,
  .page-header-box ol li.breadcrumb-item,
  .our-facts-prime .fact-item-prime .fact-item-list-prime li{
    font-size: 16px
  }
}
