/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Codeio - IT Solution and Technology HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Our Features css
09. How It Work css
10. Intro Video css
11. Our Projects css
12. Our Pricing css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. 404 Error Page css
33. Responsive css
-------------------------------------------------------------------------------------- */

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

:root {
  --primary-color: #1f1a17;
  --secondary-color: #f5f5f5;
  --text-color: #6d6d6d;
  --accent-color: #da2927;
  --bg-color: #ffffff;
  --white-color: #ffffff;
  --black-color: #000000;
  --divider-color: #0534561a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Sora", sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

.data-img-hover {
  position: relative;
  width: 100%;
}

.data-img-hover img {
  width: 100%;
  height: auto;
}

.data-img-hover canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.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(--accent-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25em;
  text-transform: capitalize;
  color: var(--white-color);
  padding: 16px 50px 16px 20px;
  overflow: hidden;
  border: none;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  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: translate(2px, -50%);
}

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

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

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

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

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

.readmore-btn {
  position: relative;
  display: inline-block;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 27px;
  transition: all 0.4s ease-in-out;
}

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

.readmore-btn:hover::before {
  transform: translateX(0px);
}

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

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

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

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

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-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: 100px;
  transform: translate(-50%, -50%);
}

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

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

.bg-section {
  background-color: var(--secondary-color);
  /* border-radius: 20px; */
  max-width: 1800px;
  margin: 0 auto;
}

.bg-section .container {
  max-width: 1560px;
}

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

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

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

.section-title.section-title-center p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

.section-sub-title h3,
.section-title h3 {
  position: relative;
  display: inline-block;
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding: 11px 15px 11px 40px;
  margin-bottom: 10px;
}

.section-sub-title h3::before,
.section-title h3::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/common/icon-sub-heading.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  width: 17px;
  height: 14px;
}

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

.section-title h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

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

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

.dark-section {
  background-color: var(--primary-color);
}

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

.dark-section .section-sub-title h3,
.dark-section .section-title h3 {
  border-color: var(--dark-divider-color);
  background-color: var(--accent-color);
}

.dark-section .section-sub-title h3::before,
.dark-section .section-title h3::before {
  background-image: url("../images/icon-sub-heading-dark.svg");
  filter: brightness(4);
}

.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		 ****/
/************************************/

.topbar {
  background: var(--primary-color);
  padding: 7px 0;
}

.topbar-contact-info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-link-bar {
  color: var(--white-color);
}

.topbar-contact-info ul li {
  font-size: 14px;
  color: var(--white-color);
  line-height: normal;
}

.topbar-contact-info ul li img {
  max-width: 20px;
  margin-right: 10px;
}

.topbar-contact-info ul li span {
  font-weight: 500;
}

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

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

.topbar-social-links {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

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

.topbar-social-links ul li {
  display: inline-block;
  font-size: 14px;
  border-right: 1px solid var(--dark-divider-color);
  margin-right: 5px;
  padding-right: 5px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.topbar-social-links ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a i {
  font-size: 15px;
  color: var(--white-color);
  margin-right: 8px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover i,
.topbar-social-links ul li a:hover {
  color: var(--accent-color);
}

header.main-header {
  position: relative;
  background: var(--bg-color);
  z-index: 100;
}

header.main-header .container-fluid {
  padding: 0;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100;
}

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

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--bg-color);
  border-bottom: 1px solid var(--divider-color);
}

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

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

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

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

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

.main-menu ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1em;
  padding: 15px 5px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

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

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

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 260px;
  border-radius: 10px;
  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);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li ul li a {
  line-height: 1.5 !important;
}

.main-menu ul li ul li:hover,
.main-menu ul li ul li:focus,
.main-menu ul li ul li.active {
  color: var(--accent-color);
  background-color: var(--primary-color);
  border-left: 5px solid var(--white-color);
}

.main-menu ul li ul li.active a {
  color: var(--white-color);
}

.main-menu ul li ul {
  padding: 0 !important;
  border-radius: 15px;
}

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

.header-btn {
  text-align: end;
}

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

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

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

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

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

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

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

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

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

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

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 7px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

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

.slicknav_menu ul ul li a {
  padding: 7px 20px 7px 30px;
}

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

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

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

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

/* .hero {
	position: relative;
	background: url('../images/hero-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 100vh;
	align-content: end;
	padding: 160px 0;
	overflow: hidden;
} */

/* .hero::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(49, 49, 49, 0) 29.57%, #1d1d1d 88.12%);
	width: 100%;
	height: 100%;
	z-index: 1;
} */

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

.hero-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1470px;
  margin: 0 auto 0 1%;
}

.hero-content {
  max-width: 65%;
}

.hero-content .section-title p {
  max-width: 850px;
}

.hero-counter-box {
  max-width: 23%;
  background: var(--dark-divider-color);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border-radius: 20px;
  padding: 20px;
}

.hero-review-content {
  margin-bottom: 20px;
}

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

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

.company-benefits-item.box-2 .satisfy-client-images {
  margin-bottom: 30px;
}

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

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

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

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

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

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

.satisfy-client-image.add-more h3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--white-color);
}

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

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

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

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

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

.about-businesses-client-content {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 200px;
}

.about-client-box {
  max-width: 350px;
  background: var(--primary-color);
  border-radius: 20px;
  padding: 30px;
}

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

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

.about-us-content {
  margin-left: 5.208vw;
}

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

.about-body-item {
  position: relative;
  width: calc(33.33% - 20px);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.about-body-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 20px;
  width: 0;
  height: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.about-body-item:hover::before {
  width: 100%;
  height: 100%;
}

.about-body-item .icon-box,
.about-body-item-content {
  position: relative;
  z-index: 1;
}

.about-body-item .icon-box {
  margin-bottom: 40px;
}

.about-body-item .icon-box img {
  width: 100%;
  max-width: 40px;
  transition: all 0.4s ease-in-out;
}

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

.about-body-item-content h3 {
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}

.about-body-item-content p {
  margin: 15px 0 0;
  transition: all 0.4s ease-in-out;
}

.about-body-item:hover .about-body-item-content h3,
.about-body-item:hover .about-body-item-content p {
  color: var(--white-color);
}

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

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

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

.services-item {
  position: relative;
  min-height: 440px;
  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;
}

.services-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 20px;
  width: 0;
  height: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.services-item.active::before,
.services-item:hover::before {
  width: 100%;
  height: 100%;
}

.services-item-header,
.services-item-content {
  position: relative;
  z-index: 1;
}

.services-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.services-item-header .icon-box img {
  width: 100%;
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}

.services-item.active .services-item-header .icon-box img,
.services-item:hover .services-item-header .icon-box img {
  filter: brightness(0) invert(1);
}

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

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

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

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

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

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

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

.services-item-content ul {
  border-top: 1px solid var(--divider-color);
  list-style: disc;
  margin: 30px 0 0;
  padding: 30px 0 0 20px;
  transition: all 0.4s ease-in-out;
}

.services-item-content ul li {
  line-height: 1.5em;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

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

.services-item-content ul li::marker {
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.services-item.active .services-item-content ul,
.services-item:hover .services-item-content ul {
  border-color: var(--dark-divider-color);
}

.services-item.active .services-item-content h3,
.services-item:hover .services-item-content h3,
.services-item.active .services-item-content p,
.services-item:hover .services-item-content p,
.services-item.active .services-item-content ul li::marker,
.services-item:hover .services-item-content ul li::marker,
.services-item.active .services-item-content ul li,
.services-item:hover .services-item-content ul li {
  color: var(--white-color);
}

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

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

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

.section-footer-text span {
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white-color);
  background: var(--accent-color);
  padding: 4px 10px;
  border-radius: 100px;
  margin-right: 5px;
}

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

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

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

/************************************/
/*** 	 07. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
  padding: 100px 0;
}

.why-choose-image-box {
  position: relative;
  margin-right: 2.083vw;
}

.why-choose-box-1,
.why-choose-box-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 20px;
}

.why-choose-box-1 {
  align-items: end;
  margin-bottom: 20px;
  margin-left: 2.604vw;
}

.why-choose-box-2 {
  margin-right: 4.688vw;
}

.why-choose-img.image-1 {
  width: calc(45% - 10px);
}

.why-choose-img.image-2 {
  width: calc(55% - 10px);
}

.why-choose-img.image-3 {
  width: calc(58% - 10px);
}

.why-choose-img.image-4 {
  width: calc(42% - 10px);
}

.why-choose-img figure {
  display: block;
  border-radius: 20px;
}

.why-choose-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.why-choose-img.image-1 img {
  aspect-ratio: 1 / 0.817;
}

.why-choose-img.image-2 img {
  aspect-ratio: 1 / 0.895;
}

.why-choose-img.image-3 img {
  aspect-ratio: 1 / 0.897;
}

.why-choose-img.image-4 img {
  aspect-ratio: 1 / 0.93;
}

.why-choose-image-box .contact-us-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

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

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

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

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

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

.why-choose-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
}

.why-choose-list {
  width: calc(100% - 290px);
}

.why-choose-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-choose-list ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 20px;
}

.why-choose-list ul li:last-child {
  margin-bottom: 0;
}

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

.why-choose-counter-box {
  position: relative;
  width: 260px;
  background: var(--accent-color);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.why-choose-counter-box::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 20px;
  width: 0;
  height: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.why-choose-counter-box:hover::before {
  width: 100%;
  height: 100%;
}

.why-choose-counter-box .icon-box {
  position: absolute;
  top: -25px;
  right: -25px;
  z-index: 1;
}

.why-choose-counter-box .icon-box img {
  width: 100%;
  max-width: 110px;
}

.why-choose-counter-content {
  position: relative;
  z-index: 1;
}

.why-choose-counter-content h2 {
  font-size: 46px;
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 40px;
}

.why-choose-counter-content p {
  font-size: 20px;
  margin: 0;
  color: var(--white-color);
}

.why-choose-btn {
  margin-top: 60px;
}

/************************************/
/*** 	 08. Our Features css	  ***/
/************************************/

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

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

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

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

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

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

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

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

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

.feature-body .icon-box img {
  width: 100%;
  max-width: 35px;
  transition: all 0.4s ease-in-out;
}

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

.feature-info {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
  transition: all 0.4s ease-in-out;
}

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

.feature-info h3 {
  font-size: 20px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.feature-info h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--accent-color);
  margin-top: 3px;
  transition: width 0.4s ease;
}

.feature-info p {
  margin: 15px 0 0;
  transition: all 0.4s ease-in-out;
  color: #4e4e4e;
}

.feature-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}

.feature-counter-item {
  width: calc(50% - 5px);
}

.feature-counter-item h2 {
  font-size: 30px;
  transition: all 0.4s ease-in-out;
}

.feature-counter-item p {
  margin: 15px 0 0;
  transition: all 0.4s ease-in-out;
}

.feature-item.active .feature-info h3,
.feature-item.active .feature-info h5,
.feature-item.active .feature-info p,
.feature-item.active .feature-counter-item h2,
.feature-item.active .feature-counter-item p,
.feature-item:hover .feature-info h3,
.feature-item:hover .feature-info p,
.feature-item:hover .feature-counter-item h2,
.feature-item:hover .feature-counter-item p {
  color: var(--white-color);
}

.feature-review-box {
  position: relative;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.feature-review-image {
  height: 100%;
}

.feature-review-image figure {
  display: block;
  height: 100%;
}

.feature-review-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.68;
  object-fit: cover;
}

.review-box {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 100%;
  max-width: 200px;
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border-radius: 14px;
  padding: 20px;
  z-index: 1;
}

.review-box .satisfy-client-image img {
  max-width: 38px;
}

.review-box .satisfy-client-image.add-more {
  width: 40px;
  height: 40px;
}

.review-box .satisfy-client-image.add-more i {
  font-size: 18px;
}

.review-box .satisfy-client-content p {
  font-size: 14px;
  font-weight: 600;
  color: var(--white-color);
  margin: 15px 0 0;
}

/************************************/
/*** 	 09. How It Work css	  ***/
/************************************/

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

.how-work-step-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.how-work-item {
  position: relative;
  width: calc(25% - 22.5px);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 510px;
  overflow: hidden;
}

.how-work-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 20px;
  width: 0;
  height: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.how-work-item:hover::before {
  width: 100%;
  height: 100%;
}

.how-work-body,
.how-work-item-list {
  position: relative;
  z-index: 1;
}

.how-work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
}

.how-work-header .icon-box img {
  width: 100%;
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}

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

.how-work-stpe-no h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  border: 1px solid var(--divider-color);
  border-radius: 50px;
  padding: 8px 16px;
  transition: all 0.4s ease-in-out;
}

.how-work-item-content h3 {
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}

.how-work-item-content p {
  margin: 15px 0 0;
  transition: all 0.4s ease-in-out;
}

.how-work-item-content ul {
  list-style: disc;
  margin: 20px 0 0;
  padding: 0 0 0 20px;
}

.how-work-item-content ul li {
  line-height: 1.5em;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

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

.how-work-item-content ul li::marker {
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.how-work-item:hover .how-work-item-content h3,
.how-work-item:hover .how-work-item-content p,
.how-work-item:hover .how-work-item-content ul li,
.how-work-item:hover .how-work-item-content ul li::marker {
  color: var(--white-color);
}

.how-work-item-list {
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  transition: all 0.4s ease-in-out;
}

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

.how-work-item-list ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 50px;
  padding: 8px 15px;
  transition: all 0.4s ease-in-out;
}

.how-work-item:hover .how-work-item-list {
  border-color: var(--dark-divider-color);
}

.how-work-item:hover .how-work-stpe-no h3,
.how-work-item:hover .how-work-item-list ul li {
  background: var(--white-color);
}

.how-it-work .section-footer-text {
  margin-top: 60px;
}

/************************************/
/*** 	 10. Intro Video css	  ***/
/************************************/

.intro-video-box {
  position: relative;
  background: transparent;
}

.intro-video-box .container-fluid {
  padding: 0;
}

.intro-video-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.intro-video-image figure {
  display: block;
}

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

.intro-video-image img {
  width: 100%;
  aspect-ratio: 1 / 0.45;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.intro-video:hover .intro-video-image img {
  transform: scale(1.15);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

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

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

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

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

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

.video-play-button a i {
  font-size: 26px;
  color: var(--white-color);
  margin-left: 3px;
}

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

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

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

.project-image {
  border-radius: 20px;
  overflow: hidden;
}

.project-image figure {
  display: block;
}

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

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

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

.project-item.active .project-btn,
.project-item:hover .project-btn {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

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

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

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

.project-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 20px;
  z-index: 1;
}

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

.project-content h3 a {
  color: inherit;
}

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

.our-projects .section-footer-text span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-block;
  align-content: center;
  text-align: center;
  padding: 0;
}

.our-projects .section-footer-text span img {
  max-width: 16px;
}

/************************************/
/*** 	 12. Our Pricing css	  ***/
/************************************/

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

.our-pricing-swich {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  padding: 0;
}

.our-pricing-swich .form-check-label {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.our-pricing-swich.form-switch .form-check-input {
  width: 75px;
  height: 40px;
  --bs-form-check-bg: var(--accent-color);
  --bs-form-switch-bg: url("../images/pricing-swich-circle.svg");
  background-size: 28px auto;
  background-position: left 6px center;
  border-radius: 100px;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.form-switch .form-check-input:checked {
  background-color: var(--primary-color);
  background-position: right 6px center;
}

.pricing-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.pricing-item {
  width: calc(25% - 22.5px);
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}

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

.pricing-item-header .icon-box {
  margin-bottom: 40px;
}

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

.pricing-price {
  margin-bottom: 15px;
}

.pricing-price h2 {
  font-size: 30px;
  font-weight: 500;
}

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

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

.pricing-body h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

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

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

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

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

.pricing-btn {
  margin-top: 40px;
}

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

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

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

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

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

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

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

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

.faq-image-box {
  display: flex;
  flex-wrap: wrap;
  margin-right: 20px;
}

.faq-img-1 {
  position: relative;
  margin-right: 15.104vw;
}

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

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

.faq-img-1 .faq-image img {
  aspect-ratio: 1 / 1.238;
}

.faq-img-1 .contact-us-circle {
  position: absolute;
  top: 70px;
  transform: translateX(50%);
  right: 0;
  z-index: 2;
}

.faq-img-1 .contact-us-circle a {
  border: 4px solid var(--white-color);
}

.faq-img-2 {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  z-index: 1;
}

.faq-img-2 .faq-image {
  width: calc(47% - 7px);
  margin-top: -12.76vw;
}

.faq-img-2 .faq-image figure {
  border: 6px solid var(--white-color);
  overflow: hidden;
}

.faq-img-2 .faq-image img {
  aspect-ratio: 1 / 1.06;
  border-radius: 0;
}

.faq-cta-box {
  width: calc(53% - 7px);
  background: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 30px 25px;
  margin-bottom: 6px;
}

.faq-cta-box .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  border-radius: 100px;
  margin-right: 15px;
}

.faq-cta-box .icon-box img {
  width: 100%;
  max-width: 30px;
}

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

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

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

.faq-cta-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.faq-cta-content h3 a:hover {
  color: var(--accent-color);
}

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

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

.faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
  background: transparent;
  color: #000;
  padding: 0px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
  color: var(--white-color);
  padding-bottom: 0;
}

.accordion-header {
  background-color: #8b8787;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f068";
  font-family: "FontAwesome";
  position: absolute;
  right: 0px;
  top: 1px;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-body {
  background: #f3f3f3;
  padding: 15px 10px;
  padding-right: 30px;
}

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

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

.our-testimonials-content {
  position: sticky;
  top: 0;
  padding: 100px 0;
}

.testimonial-item-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 100px 0;
}

.testimonial-item {
  /* background-color: var(--white-color); */
  background-color: #ffe4e4;
  border-radius: 20px;
  padding: 60px;
}

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

.testimonial-quote img {
  width: 100%;
  max-width: 40px;
  filter: invert(1) hue-rotate(23deg) brightness(1);
}

.testimonials-rating i {
  color: var(--accent-color);
  font-size: 16px;
}

.testimonial-content {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider-color);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  margin-right: 20px;
}

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

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

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

.author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.author-content p {
  text-transform: capitalize;
  margin: 0;
}

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

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

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

.post-item {
  width: calc(25% - 22.5px);
}

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

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

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

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

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

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

.post-item-tags a {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  background: var(--divider-color);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: 40px;
  color: var(--white-color);
  padding: 10px 20px;
  cursor: pointer;
}

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

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

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

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

.main-footer {
  padding: 60px 0 0;
  /* margin-bottom: 60px; */
}

.footer-logo {
  margin-bottom: 20px;
}

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

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

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

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

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

.footer-social-links ul li {
  display: inline-block;
  background: transparent;
  padding: 0;
  margin: 0 15px 0 0;
}

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

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

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

.footer-social-links ul li a i {
  font-size: 18px;
  color: var(--white-color);
}

.footer-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: space-evenly;
  margin-left: 5.208vw;
}

.footer-links {
  max-width: 30%;
}

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

.footer-links h4 {
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 15px;
}

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

.footer-links h3 a,
.footer-links p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-links h3 a:hover,
.footer-links p a:hover {
  color: var(--accent-color);
}

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

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

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

.footer-newsletter {
  max-width: 35%;
  margin: 0;
}

.footer-newsletter-form {
  margin-top: 30px;
}

.footer-newsletter-form .form-group {
  width: 100%;
  display: flex;
  background: var(--dark-divider-color);
  border-radius: 12px;
  padding: 8px;
}

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

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

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

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

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

.footer-newsletter-form .form-group .newsletter-btn:hover img {
  filter: brightness(0) invert(0);
}

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

.footer-top-button {
  position: fixed;
  right: 0px;
  bottom: 20px;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.footer-top-button a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  border-radius: 50%;
  border: none;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

.footer-top-button a:hover {
  background: var(--white-color);
}

.footer-top-button a img {
  width: 100%;
  max-width: 24px;
  transform: rotate(-90deg);
  animation: jumpInfinite 0.7s linear infinite alternate;
  transition: all 0.3s ease-in-out;
}

@keyframes jumpInfinite {
  0% {
    margin-top: 8px;
  }

  100% {
    margin-bottom: 8px;
  }
}

.footer-top-button a:hover img {
  filter: brightness(0) invert(0);
}

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

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

.footer-menu ul li {
  color: var(--white-color);
  text-transform: capitalize;
  line-height: 1.5em;
  transition: all 0.3s ease-in-out;
}

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

.footer-menu ul li a {
  color: inherit;
}

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

.page-header {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  background-position: center right !important;
  padding: 80px 0;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(5, 52, 86, 0) 0%,
      var(--primary-color) 100%);
  z-index: 0;
}

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

.page-header-box h2 {
  display: inline-block;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

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

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

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

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

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

.approach-image {
  position: relative;
  padding: 0 0 160px 150px;
  overflow: hidden;
}

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

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

.approach-image-list {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  max-width: 255px;
  height: 100%;
  overflow-y: scroll;
}

.approach-image-list::-webkit-scrollbar {
  display: none;
}

.approach-list-img {
  border: 10px solid var(--secondary-color);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.approach-list-img:last-child {
  margin-bottom: 0;
}

.approach-list-img figure {
  display: block;
}

.approach-image .contact-us-circle {
  position: absolute;
  bottom: 90px;
  right: 60px;
}

.our-approach-content {
  margin-left: 20px;
}

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

.approach-item {
  position: relative;
  width: calc(32% - 15px);
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.approach-item:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 20px;
  width: 0;
  height: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.approach-item:hover:before {
  width: 100%;
  height: 100%;
}

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

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

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

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

.approach-item-content h3 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

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

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

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

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

.strength-image-video {
  position: relative;
  height: 100%;
  margin-right: 20px;
}

.strength-image-video .intro-video-image,
.strength-image-video .intro-video-image figure {
  height: 100%;
}

.strength-image-video .intro-video-image img {
  aspect-ratio: 1 / 0.494;
  height: 100%;
}

.strength-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background: var(--secondary-color);
  border-radius: 20px;
  gap: 20px;
  padding: 40px;
  margin-bottom: 30px;
  overflow: hidden;
}

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

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

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

.strength-item-counter {
  position: relative;
  align-content: center;
  width: calc(30% - 10px);
  border-right: 1px solid var(--divider-color);
  padding-right: 20px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

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

.strength-item-counter h2 {
  font-size: 46px;
  font-weight: 700;
  transition: all 0.4s ease-in-out;
}

.strength-item-content {
  position: relative;
  width: calc(70% - 10px);
  z-index: 1;
}

.strength-item-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

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

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

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

.team-image figure {
  display: block;
}

/* @media (min-width: 1199px) {
  .team-image figure {
    height: 290px;
  }
} */
.team-item {
  display: flex;
  flex-direction: column;
}

.team-body {
  flex-grow: 1;
}

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

.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.19;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

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

.team-body {
  /* position: absolute; */
  /* bottom: 30px;
  left: 30px;
  right: 30px; */
  background-color: #f1f0f0;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 0 0 12px 12px;
  text-align: center;
  padding: 12px;
  overflow: hidden;
  z-index: 1;
}

.team-content h3 {
  font-size: 18px;
  color: #0e0d0d;
  margin-bottom: 5px;
  text-transform: capitalize;
}

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

.team-content p {
  color: #0e0d0d;
  margin: 0;
  font-size: 15px;
}

.team-social-list {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-list {
  height: 40px;
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
}

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

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

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

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

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

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

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

.innovation-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.innovation-counter-item {
  width: calc(50% - 20px);
  border-right: 1px solid var(--divider-color);
  padding-right: 40px;
}

.innovation-counter-item:nth-child(2n + 2),
.innovation-counter-item:last-child {
  padding: 0;
  border: none;
}

.innovation-counter-item h2 {
  font-size: 46px;
  font-weight: 500;
}

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

.innovation-list {
  margin-top: 40px;
}

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

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

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

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

.innovation-btn {
  margin-top: 40px;
}

.innovation-image-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.innovation-item,
.innovation-image {
  position: relative;
  width: calc(50% - 15px);
  border-radius: 20px;
  overflow: hidden;
}

.innovation-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 20px;
  width: 0;
  height: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.innovation-item.active::before,
.innovation-item:hover::before {
  width: 100%;
  height: 100%;
}

.innovation-item {
  min-height: 290px;
  background: var(--white-color);
  padding: 40px;
}

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

.innovation-item .icon-box img {
  width: 100%;
  max-width: 120px;
  transition: all 0.5s ease-in-out;
}

.innovation-item.active .icon-box img,
.innovation-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

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

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

.innovation-item-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.innovation-item.active .innovation-item-content h3,
.innovation-item:hover .innovation-item-content h3,
.innovation-item.active .innovation-item-content p,
.innovation-item:hover .innovation-item-content p {
  color: var(--white-color);
}

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

.innovation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.5;
}

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

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

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

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

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

.page-single-sidebar {
  position: sticky;
  top: 130px;
  margin-right: 2.344vw;
}

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

.page-category-list h3 {
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 18px;
  padding: 25px;
}

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

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

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

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

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

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

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

.page-category-list ul li a.active::before {
  transform: translateY(-50%) rotate(0);
  filter: brightness(0) invert(0);
}

.page-category-list ul li a:hover::before {
  transform: translateY(-50%) rotate(0);
  filter: brightness(0) invert(0);
}

.sidebar-cta-box {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 20px 20px 40px;
  background-color: #ffffff1f;
  backdrop-filter: blur(50px);
}

.sidebar-cta-img,
.sidebar-cta-content {
  margin-bottom: 30px;
}

.sidebar-cta-img {
  overflow: hidden;
  border-radius: 14px;
}

.sidebar-cta-img figure {
  display: block;
}

.sidebar-cta-img img {
  width: 100%;
  aspect-ratio: 1 / 0.591;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-img img {
  transform: scale(1.1);
}

.sidebar-cta-body {
  padding: 0 15px;
}

.sidebar-cta-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.sidebar-cta-content p {
  margin: 0;
}

.sidebar-cta-contact {
  background-color: var(--accent-color);
  border-radius: 20px;
  padding: 20px 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sidebar-cta-contact .icon-box {
  margin-right: 20px;
}

.sidebar-cta-contact .icon-box img {
  width: 100%;
  max-width: 70px;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
}

.sidebar-contact-content {
  width: calc(100% - 90px);
}

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

.sidebar-contact-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6em;
  color: var(--white-color);
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

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

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

.sidebar-contact-content ul li a:hover {
  color: var(--primary-color);
}

.sidebar-contact-content ul li img {
  width: 100%;
  max-width: 20px;
}

.page-single-image {
  border-radius: 20px;
  margin-bottom: 40px;
  overflow: hidden;
}

.page-single-image figure {
  display: block;
}

.page-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.55;
  object-fit: cover;
}

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

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

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

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

h2.text-anime-style-3 .split-line:first-child>div:first-child>div:first-child {
  color: var(--accent-color);
  font-weight: 700;
}

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

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

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

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

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

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

.service-care-box,
.service-solution-box,
.service-success-box {
  margin-top: 30px;
}

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

.service-care-item-list,
.service-care-info-box {
  width: calc(50% - 15px);
}

.service-care-item {
  position: relative;
  background: var(--secondary-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

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

.service-care-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--accent-color);
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
}

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

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

.service-care-item .icon-box img {
  width: 100%;
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}

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

.service-care-item-content {
  position: relative;
  width: calc(100% - 70px);
  z-index: 1;
}

.service-care-item-content p {
  transition: all 0.4s ease-in-out;
}

.service-care-item:hover .service-care-item-content p {
  color: var(--white-color);
}

.service-care-info-box {
  background: var(--accent-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
}

.service-care-info-box {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-care-info-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #f5f5f5;
  transition: height 0.5s ease;
  z-index: -1;
}

.service-care-info-box:hover::before {
  height: 100%;
}

.service-care-info-box .service-care-info-content h3 {
  margin-bottom: 0 !important;
}

.service-care-info-box:hover .icon-box img {
  filter: unset;
}

.service-care-info-box:hover .service-care-info-content h3 {
  color: var(--accent-color);
}

.service-care-info-box:hover .service-care-info-content p,
.service-care-info-box:hover .service-care-info-content ul li,
.service-care-info-box:hover .service-care-info-content ul li::before {
  color: var(--primary-color);
}

.service-care-info-box .icon-box img {
  width: 100%;
  max-width: 35px;
  filter: brightness(0) invert(1);
}

.service-care-info-box .icon-box i {
  font-size: 18px;
  color: var(--white-color);
}

.service-care-info-content h3,
.service-care-info-content p,
.service-care-info-content ul li,
.service-care-info-content ul li::before {
  color: var(--white-color);
}

.service-care-info-content ul {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.service-care-info-box:hover .service-care-info-content ul {
  border-color: #999999;
}

.service-care-info-box:hover .icon-box i {
  color: var(--accent-color);
}

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

.service-solution-item {
  position: relative;
  width: calc(33.33% - 20px);
}

.service-solution-image {
  border-radius: 20px;
  overflow: hidden;
}

.service-solution-image figure {
  display: block;
}

.service-solution-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(5, 52, 86, 0) 30%,
      rgba(5, 52, 86, 0.8) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 20px;
}

.service-solution-image img {
  width: 100%;
  aspect-ratio: 1 / 1.21;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.service-solution-item:hover .service-solution-image img {
  transform: scale(1.1);
}

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

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

.service-success-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.service-success-box ul li {
  width: calc(50% - 7.5px);
  margin-bottom: 0;
}

.service-success-counters {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.success-counter-item {
  position: relative;
  width: calc(25% - 45px);
}

.success-counter-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  background: var(--divider-color);
  width: 1px;
  height: 80%;
  transform: translateY(-50%);
  border-radius: 20px;
}

.success-counter-item:nth-child(4n + 4)::before,
.success-counter-item:last-child::before {
  display: none;
}

.success-counter-item h2 {
  line-height: 1em;
  margin-bottom: 10px;
}

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

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

.page-pagination {
  margin-top: 60px;
  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;
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-tags .tag-links a:hover {
  background-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);
  border-radius: 10px;
  color: var(--white-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

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

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

.project-category-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.project-category-list ul li span {
  color: var(--primary-color);
  font-weight: 500;
}

.project-category-list ul li a {
  display: inline-flex;
  padding: 0;
  margin-right: 5px;
}

.project-category-list ul li a:last-child {
  margin: 0;
}

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

.project-category-list ul li a i {
  font-size: 20px;
  color: initial;
  transition: all 0.3s ease-in-out;
}

.project-category-list ul li a:hover i {
  color: var(--accent-color);
}

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

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

.project-entry h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

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

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

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

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

.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: 16px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.project-transaction-box,
.project-excellence-box {
  margin-top: 60px;
}

.project-transaction-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.project-transaction-content {
  width: calc(62% - 15px);
}

.project-entry-image-video {
  position: relative;
  width: calc(38% - 15px);
}

.project-entry-image-video .intro-video-image,
.project-entry-image-video .intro-video-image figure {
  height: 100%;
}

.project-entry-image-video .intro-video-image img {
  aspect-ratio: 1 / 0.732;
  height: 100%;
}

.project-entry-image-video .video-play-button a {
  width: 56px;
  height: 56px;
}

.project-entry-image-video .video-play-button a i {
  font-size: 18px;
}

.project-entry-image-video .video-play-button a:before,
.project-entry-image-video .video-play-button a:after {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
}

.transaction-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  background: var(--accent-color);
  border-radius: 20px;
  margin-top: 40px;
  padding: 30px;
}

.transaction-item {
  position: relative;
  width: calc(33.33% - 26.67px);
  display: flex;
  align-items: center;
}

.transaction-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  background: var(--dark-divider-color);
  width: 1px;
  height: 80%;
  transform: translateY(-50%);
  border-radius: 20px;
}

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

.transaction-item .icon-box {
  margin-right: 15px;
}

.transaction-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.transaction-item-title {
  width: calc(100% - 65px);
}

.transaction-item-title h3 {
  color: var(--white-color);
}

.project-excellence-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: var(--secondary-color);
  border-radius: 20px;
  margin: 40px 0;
  padding: 30px;
}

.project-excellence-image {
  width: calc(23.33% - 20px);
}

.project-excellence-item {
  width: calc(76.66% - 20px);
}

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

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

.project-excellence-item .icon-box {
  margin-bottom: 40px;
}

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

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

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

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

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

.team-single-image,
.team-personal-info,
.contact-us-form.team-contact-form {
  margin-right: 1.302vw;
}

.team-single-image {
  height: 100%;
}

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

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

.team-contact-list {
  margin-bottom: 40px;
}

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

.team-contact-list ul li {
  font-size: 16px;
  line-height: 1.6em;
  width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
}

.team-contact-list ul li span {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
}

.member-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 20px;
}

.member-social-list h3 {
  font-size: 20px;
  text-transform: capitalize;
}

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

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

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

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

.team-personal-skill {
  padding: 50px 0;
}

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

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

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

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

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

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

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

.skills-progress-bar .skillbar .skill-title {
  color: var(--primary-color);
  line-height: normal;
}

.skills-progress-bar .skillbar .skill-no {
  color: var(--text-color);
  line-height: normal;
}

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

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

.team-contact-expertise {
  padding: 50px 0 100px;
}

.contact-us-form.team-contact-form {
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 20px;
}

.team-expertise-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.expertise-body-cta-box {
  width: calc(50% - 15px);
  background-color: var(--secondary-color);
  border-radius: 20px;
  text-align: center;
  padding: 30px;
}

.expertise-body-cta-box .icon-box {
  margin-bottom: 30px;
}

.expertise-body-cta-box .icon-box img {
  width: 100%;
  max-width: 50px;
}

.expertise-body-cta-content {
  margin-bottom: 30px;
}

.expertise-body-cta-content h3 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.expertise-body-cta-content p {
  margin: 0;
}

.team-expertise-body-content {
  width: calc(50% - 15px);
}

.team-expertise-body-content h3 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.team-expertise-body-content p {
  margin: 0;
}

.team-expertise-body-content ul {
  list-style: none;
  margin: 25px 0 0 0;
  padding: 0;
}

.team-expertise-body-content ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.team-expertise-body-content ul li:last-child {
  margin-bottom: 0;
}

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

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

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

.page-pricing .pricing-item {
  border: 1px solid var(--divider-color);
}

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

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

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

/************************************/
/*** 	 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.783;
  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: 40%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--white-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.783;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	  30. FAQs 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;
}

.contact-us-heading {
  position: sticky;
  top: 20px;
}

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

.contact-info-item {
  position: relative;
  width: calc(33.33% - 20px);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.contact-info-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 20px;
  width: 0;
  height: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover::before {
  width: 100%;
  height: 100%;
}

.contact-info-item .icon-box {
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
}

.contact-info-item .icon-box img {
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
}

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

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

.contact-item-content h3 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

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

.contact-item-content h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  transition: all 0.4s ease-in-out;
}

.contact-item-content h4 a {
  color: inherit;
}

.contact-info-item:hover .contact-item-content h3,
.contact-info-item:hover .contact-item-content p,
.contact-info-item:hover .contact-item-content h4 {
  color: var(--white-color);
}

.contact-form-box {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--secondary-color);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 100px;
}

.contact-us-form {
  width: 50%;
  padding: 3.125vw;
}

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

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

.contact-form .btn-default {
  width: 100%;
  padding: 16px 20px;
  margin: 0;
}

.contact-form .btn-default::before {
  display: none;
}

.google-map-iframe {
  width: 50%;
}

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

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

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

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

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

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

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

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

/* @media only screen and (max-width: 1800px) {

	/* .bg-section {
		width: calc(100% - 40px);
		margin: 0 20px;
	} 

	.main-footer {
		margin-bottom: 20px;
	}
} */

@media only screen and (max-width: 1440px) {

  .bg-section .container,
  .container {
    max-width: 1300px;
  }

  .hero-counter-box {
    max-width: 25%;
  }

  .about-us-content {
    margin-left: 0;
  }

  .about-us-body {
    gap: 20px;
  }

  .about-body-item {
    width: calc(33.33% - 13.33px);
    padding: 30px 20px;
  }

  .services-item {
    min-height: 400px;
    padding: 20px;
  }

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

  .why-choose-list {
    width: calc(100% - 210px);
  }

  .why-choose-list ul li {
    margin-bottom: 15px;
  }

  .why-choose-counter-box {
    width: 190px;
    padding: 20px;
  }

  .why-choose-counter-content h2 {
    margin-bottom: 30px;
  }

  .why-choose-btn {
    margin-top: 40px;
  }

  .feature-item {
    min-height: 420px;
    padding: 20px;
  }

  .feature-counter-item p {
    font-size: 14px;
  }

  .how-work-item {
    min-height: 100%;
    gap: 30px;
    padding: 30px 20px;
  }

  .how-work-item-list ul {
    gap: 10px;
  }

  .how-work-item-list ul li {
    padding: 6px 12px;
  }

  .project-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }

  .project-content h3 {
    font-size: 18px;
  }

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

  .our-pricing-swich {
    margin-bottom: 40px;
  }

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

  .pricing-item-header .icon-box {
    margin-bottom: 30px;
  }

  .pricing-item-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

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

  .faq-image-box {
    margin: 0;
  }

  .faq-img-2 .faq-image {
    margin-top: -150px;
  }

  .faq-cta-box {
    padding: 20px;
  }

  .faq-cta-content p {
    font-size: 14px;
  }

  .testimonial-slider {
    margin: 0;
  }

  .testimonial-item {
    padding: 40px;
  }

  .footer-link-list {
    margin-left: 50px;
  }

  .approach-item {
    padding: 30px;
  }

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

  .strength-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .strength-item-counter h2 {
    font-size: 36px;
  }

  .strength-item-content p {
    font-size: 14px;
  }

  /* .team-body {
    right: 20px;
    bottom: 20px;
    left: 20px;
  } */

  .innovation-item {
    padding: 30px;
  }

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

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

  .sidebar-cta-box {
    padding: 15px;
  }

  .sidebar-cta-contact {
    padding: 20px 15px;
  }

  .sidebar-cta-body {
    padding: 0;
  }

  .sidebar-cta-contact .icon-box {
    margin-right: 15px;
  }

  .sidebar-cta-contact .icon-box img {
    max-width: 50px;
  }

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

  .sidebar-contact-content ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .service-care-item {
    padding: 20px;
  }

  .service-care-info-box {
    padding: 30px;
  }

  .service-care-info-content ul {
    padding-top: 20px;
    margin: 0;
  }

  .service-solution-item-list {
    gap: 20px;
  }

  .service-solution-item {
    width: calc(33.33% - 13.33px);
  }

  .service-solution-content {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

  .service-success-counters {
    gap: 30px;
  }

  .success-counter-item {
    width: calc(25% - 22.5px);
  }

  .success-counter-item::before {
    right: -15px;
  }

  .success-counter-item p {
    font-size: 14px;
  }

  .transaction-item-list {
    padding: 20px;
  }

  .transaction-item-title h3 {
    font-size: 18px;
  }

  .project-excellence-body {
    padding: 20px;
  }

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

  .project-excellence-item-content p {
    font-size: 14px;
  }

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

  .team-contact-list ul {
    gap: 20px;
  }

  .team-contact-list ul li {
    width: calc(50% - 10px);
    gap: 10px;
    font-size: 14px;
  }

  .member-social-list h3,
  .team-contact-list ul li span {
    font-size: 18px;
  }

  .team-expertise-body {
    gap: 20px;
  }

  .expertise-body-cta-box {
    width: calc(41% - 10px);
    padding: 20px;
  }

  .team-expertise-body-content {
    width: calc(59% - 10px);
  }

  .page-testimonials .testimonial-item {
    padding: 30px;
  }

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

@media only screen and (max-width: 1366px) {
  .about-client-box {
    padding: 20px;
  }

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

  .services-item {
    min-height: 350px;
  }

  .services-item-header .icon-box img {
    max-width: 45px;
  }

  .services-btn a {
    width: 40px;
    height: 40px;
  }

  .services-btn a img {
    max-width: 22px;
  }

  .services-item-content ul {
    margin-top: 20px;
    padding-top: 20px;
  }

  .why-choose-counter-box .icon-box img {
    max-width: 90px;
  }

  .why-choose-counter-content p {
    font-size: 18px;
  }

  .feature-item {
    min-height: 350px;
  }

  .feature-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .review-box {
    right: 20px;
    bottom: 20px;
  }

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

  .how-work-header .icon-box img {
    max-width: 45px;
  }

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

  .pricing-body ul li {
    padding-left: 25px;
  }

  .pricing-body ul li::before {
    font-size: 16px;
  }

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

  .scrolling-ticker-box {
    --gap: 30px;
  }

  .testimonial-header {
    margin-bottom: 30px;
  }

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

@media only screen and (max-width: 1024px) {
  .topbar-contact-info ul {
    gap: 10px 15px;
  }

  .topbar-contact-info ul li img {
    max-width: 18px;
    margin-right: 5px;
  }

  .topbar-social-links ul li {
    margin-right: 10px;
    padding-right: 10px;
  }

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

  .btn-default {
    padding: 12px 40px 12px 20px;
  }

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

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

  .hero {
    min-height: 100%;
    padding: 260px 0 60px;
  }

  .hero-content {
    max-width: 100%;
    width: calc(70% - 15px);
  }

  .hero-counter-box {
    max-width: 100%;
    width: calc(30% - 15px);
    padding: 30px;
  }

  .hero-counter-item {
    margin-top: 30px;
    padding-top: 30px;
  }

  .about-businesses-client-content {
    position: initial;
    gap: 20px;
    margin-bottom: 30px;
  }

  .about-body-item {
    padding: 20px;
  }

  .about-body-item .icon-box {
    margin-bottom: 30px;
  }

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

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

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

  .why-choose-image-box {
    max-width: 780px;
    margin: 0 auto 30px;
  }

  .feature-info p,
  .feature-counter-item p {
    margin-top: 10px;
  }

  .feature-counter-item h2 {
    font-size: 26px;
  }

  .how-work-item {
    width: calc(50% - 15px);
  }

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

  .our-projects .section-footer-text span {
    width: 30px;
    height: 30px;
  }

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

  .our-pricing-swich {
    margin-bottom: 30px;
    gap: 20px;
  }

  .our-pricing-swich.form-switch .form-check-input {
    width: 60px;
    height: 32px;
    background-size: 22px auto;
  }

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

  .pricing-body h3 {
    margin-bottom: 15px;
  }

  .pricing-body ul li {
    margin-bottom: 10px;
  }

  .pricing-btn .btn-default {
    padding: 12px 20px;
  }

  .faq-image-box {
    max-width: 80%;
    margin: 0 auto 30px;
  }

  .faq-img-2 .faq-image {
    margin-top: -250px;
  }

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

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

  .our-testimonials-content {
    position: initial;
    margin-bottom: 50px;
    padding: 0;
  }

  .testimonial-item-box {
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0;
  }

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

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

  .post-featured-image img {
    aspect-ratio: 1 / 0.8;
  }

  .footer-links {
    margin: 0;
  }

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

  .about-footer {
    margin-bottom: 40px;
  }

  .footer-link-list {
    margin: 0;
  }

  .footer-copyright {
    margin-top: 60px;
  }

  .approach-image {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 0 0 130px 150px;
  }

  .our-approach-content {
    margin-left: 0;
  }

  .approach-item {
    padding: 20px;
  }

  .approach-item .icon-box {
    margin-bottom: 20px;
  }

  .approach-item .icon-box img {
    max-width: 40px;
  }

  .our-approach .section-footer-text {
    margin-top: 30px;
  }

  .strength-image-video {
    height: auto;
    margin: 0 0 30px;
  }

  .strength-image-video .intro-video-image,
  .strength-image-video .intro-video-image figure,
  .strength-image-video .intro-video-image img {
    height: auto;
  }

  .strength-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .strength-item {
    width: calc(33.33% - 13.33px);
    gap: 10px;
    margin-bottom: 0;
  }

  .strength-item-counter {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }

  .strength-item-content {
    width: 100%;
  }

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

  .innovation-list,
  .innovation-btn {
    margin-top: 30px;
  }

  .innovation-item .icon-box img {
    max-width: 100px;
  }

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

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

  .sidebar-cta-img,
  .sidebar-cta-content {
    margin-bottom: 20px;
  }

  .sidebar-cta-contact {
    display: block;
    padding: 15px;
  }

  .sidebar-cta-contact .icon-box {
    margin: 0 0 20px 0;
  }

  .sidebar-contact-content {
    width: 100%;
  }

  .sidebar-contact-content ul li img {
    max-width: 18px;
  }

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

  .page-single-image img {
    aspect-ratio: 1 / 0.65;
  }

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

  .service-care-box,
  .service-solution-box,
  .service-success-box {
    margin-top: 40px;
  }

  .service-care-item {
    gap: 10px;
  }

  .service-care-item .icon-box img {
    max-width: 40px;
  }

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

  .service-care-item-content p {
    font-size: 14px;
  }

  .service-care-info-box {
    padding: 20px;
  }

  .service-care-info-box .icon-box img {
    max-width: 40px;
  }

  .service-solution-image img {
    aspect-ratio: 1 / 1.5;
  }

  .service-solution-content {
    bottom: 15px;
    right: 15px;
    left: 15px;
  }

  .service-solution-content p {
    font-size: 14px;
  }

  .service-success-counters {
    margin-top: 30px;
    padding-top: 30px;
  }

  .project-category-list ul li {
    font-size: 14px;
  }

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

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

  .project-transaction-box,
  .project-excellence-box {
    margin-top: 40px;
  }

  .project-transaction-content,
  .project-entry-image-video {
    width: 100%;
  }

  .project-entry-image-video .intro-video-image,
  .project-entry-image-video .intro-video-image figure {
    height: auto;
  }

  .project-entry-image-video .intro-video-image img {
    aspect-ratio: 1 / 0.56;
    height: auto;
  }

  .transaction-item-list {
    margin-top: 30px;
  }

  .transaction-item {
    width: calc(50% - 20px);
  }

  .transaction-item:nth-child(3n + 3)::before {
    display: block;
  }

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

  .transaction-item .icon-box {
    margin-right: 10px;
  }

  .transaction-item .icon-box img {
    max-width: 40px;
  }

  .transaction-item-title {
    width: calc(100% - 50px);
  }

  .project-excellence-body {
    margin: 30px 0;
  }

  .project-excellence-image {
    width: 100%;
  }

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

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

  .project-excellence-item .icon-box {
    margin-bottom: 20px;
  }

  .project-excellence-item .icon-box img {
    max-width: 40px;
  }

  .team-single-image,
  .team-personal-info,
  .contact-us-form.team-contact-form {
    margin-right: 0;
    margin-bottom: 30px;
  }

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

  .skills-progress-bar .skill-data {
    margin-bottom: 10px;
  }

  .team-expertise-body {
    margin-bottom: 30px;
  }

  .expertise-body-cta-box .icon-box,
  .expertise-body-cta-content {
    margin-bottom: 20px;
  }

  .team-expertise-body-content ul {
    margin-top: 15px;
  }

  .team-expertise-body-content ul li {
    margin-bottom: 10px;
  }

  .page-contact-us .contact-us-heading {
    position: initial;
    margin-bottom: 10px;
  }

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

  .contact-info-item {
    padding: 20px;
  }

  .contact-info-item .icon-box {
    margin-bottom: 20px;
  }

  .contact-info-item .icon-box img {
    max-width: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .topbar-contact-info ul li span {
    display: none;
  }

  .topbar-social-links ul li a i {
    margin-right: 5px;
  }

  .navbar {
    padding: 20px 0;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

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

  .header-btn {
    display: none;
  }

  .bg-section {
    border-radius: 0;
    width: 100%;
    margin: 0px;
  }

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

  .section-title.section-title-center {
    max-width: 100%;
  }

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

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

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

  .section-sub-title h3,
  .section-title h3 {
    padding: 10px 12px 10px 35px;
  }

  .section-sub-title h3::before,
  .section-title h3::before {
    left: 12px;
    width: 15px;
    height: 12px;
  }

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

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

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

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

  .hero {
    padding: 0px 0 0px;
  }

  .hero::before {
    background: linear-gradient(180deg,
        rgba(5, 52, 86, 0.3) 0.57%,
        #053456 88.12%);
  }

  .hero-counter-box,
  .hero-content {
    width: 70%;
  }

  .hero-counter-item h2 {
    font-size: 36px;
  }

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

  .about-businesses-client-content .section-sub-title {
    margin-bottom: 0;
  }

  .about-body-item-content p {
    margin-top: 5px;
  }

  .our-services {
    padding: 50px 0;
  }

  .services-item-content ul li {
    margin-bottom: 10px;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-body {
    padding-top: 30px;
  }

  .contact-us-circle a img {
    max-width: 120px;
  }

  .why-choose-list ul li {
    margin-bottom: 10px;
    padding-left: 25px;
  }

  .why-choose-list ul li::before {
    font-size: 16px;
  }

  .why-choose-counter-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

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

  .feature-counter-item h2 {
    font-size: 22px;
  }

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

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

  .how-work-item-content ul {
    margin-top: 15px;
  }

  .how-work-item-content ul li {
    margin-bottom: 10px;
  }

  .how-it-work .section-footer-text {
    margin-top: 30px;
  }

  .intro-video-box .container-fluid {
    padding: 0 15px;
  }

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

  .video-play-button a:before,
  .video-play-button a:after {
    top: -33%;
    left: -33%;
  }

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

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

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

  .pricing-item-header .icon-box {
    margin-bottom: 20px;
  }

  .pricing-item-header .icon-box img {
    max-width: 40px;
  }

  .pricing-price h2 {
    font-size: 26px;
  }

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

  .pricing-benefit-list ul {
    gap: 15px 30px;
  }

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

  .faq-image-box {
    max-width: 100%;
  }

  .faq-img-2 .faq-image {
    margin-top: -230px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding-bottom: 10px;
  }

  .our-testimonials {
    padding: 50px 0;
  }

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

  .testimonial-item {
    padding: 30px;
  }

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

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

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

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

  .post-item-tags {
    top: 20px;
    left: 20px;
  }

  .post-item-tags a {
    padding: 8px 16px;
  }

  .post-item-content {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

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

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-links {
    max-width: 100%;
    width: calc(50% - 15px);
  }

  .footer-newsletter {
    width: 100%;
    max-width: 100%;
  }

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

  .footer-links h4,
  .footer-links p {
    margin-bottom: 10px;
  }

  .footer-newsletter-form {
    margin-top: 20px;
  }

  .footer-copyright {
    margin-top: 40px;
    padding: 40px 0 30px;
  }

  .footer-top-button a {
    width: 40px;
    height: 40px;
  }

  .footer-top-button a img {
    max-width: 20px;
  }

  .footer-menu ul {
    gap: 10px 20px;
  }

  .footer-menu ul li {
    font-size: 14px;
  }

  .page-header {
    padding: 45px 0;
  }

  .page-header-box h1 {
    font-size: 42px;
  }

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

  .our-strength {
    padding: 50px 0;
  }

  .our-team {
    padding: 50px 0 20px;
  }

  .team-body {
    padding: 15px;
  }

  .team-image img {
    aspect-ratio: 1 / 1.09;
  }

  .our-innovation {
    padding: 50px 0;
  }

  .innovation-counter-item h2 {
    font-size: 36px;
  }

  .innovation-list ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

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

  .innovation-item {
    min-height: 250px;
  }

  .page-services {
    padding: 50px 0 20px;
  }

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

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

  .page-category-list {
    margin-bottom: 30px;
  }

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

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

  .sidebar-cta-img img {
    aspect-ratio: 1 / 0.42;
  }

  .sidebar-cta-contact {
    display: flex;
  }

  .sidebar-cta-contact .icon-box {
    margin: 0 15px 0 0;
  }

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

  .service-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

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

  .service-care-body,
  .service-solution-item-list,
  .service-success-box ul {
    margin-top: 30px;
  }

  .success-counter-item h2 {
    margin-bottom: 10px;
  }

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

  .page-pagination {
    margin-top: 40px;
  }

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

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

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.42em;
  }

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

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

  .post-entry ol li,
  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin: 20px 0;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-tags .tag-links a {
    padding: 10px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-projects {
    padding: 50px 0 20px;
  }

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

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

  .project-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .project-entry ul {
    margin-top: 20px;
  }

  .project-entry ul li {
    margin-bottom: 10px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

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

  .team-personal-skill {
    padding: 25px 0;
  }

  .team-personal-info-list ul li {
    margin-bottom: 10px;
  }

  .skills-progress-bar .skillbar .skill-progress {
    height: 12px;
  }

  .team-contact-expertise {
    padding: 25px 0 50px;
  }

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

  .page-testimonials {
    padding: 50px 0 20px;
  }

  .page-testimonials .testimonial-item {
    padding: 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;
  }

  .contact-info-list {
    gap: 20px;
  }

  .contact-info-item {
    width: calc(33.33% - 13.33px);
  }

  .contact-form-box {
    margin-top: 50px;
  }

  .contact-us-form {
    width: 100%;
  }

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

  .contact-form .btn-default {
    padding: 12px 15px;
  }

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

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

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-image img {
    max-width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .topbar {
    padding: 10px 0;
  }

  .topbar-contact-info ul {
    justify-content: center;
  }

  .topbar-social-links {
    display: none;
  }

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

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

  .section-title h2 {
    font-size: 26px !important;
  }

  .hero {
    padding: 0px;
  }

  .hero-counter-box {
    padding: 20px;
  }

  .hero-counter-box,
  .hero-content {
    width: 100%;
  }

  .hero-counter-item {
    margin-top: 20px;
    padding-top: 20px;
  }

  .hero-counter-item h2 {
    font-size: 26px !important;
    line-height: 32px !important;
  }

  .hero-content {
    padding: 30px 0 20px !important;
  }

  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide {
    height: auto !important;
  }

  .hero-swiper .container {
    padding: 20px 0 40px !important;
  }

  .hero-swiper .hero-counter-box {
    position: relative !important;
    margin-bottom: 60px !important;
  }

  .about-client-box {
    padding: 20px;
  }

  .about-us-body {
    gap: 20px;
  }

  .about-body-item {
    width: 100%;
  }

  .about-body-item .icon-box {
    margin-bottom: 20px;
  }

  .services-item {
    min-height: auto;
  }

  .services-item-content h3 {
    font-size: 18px;
  }

  .why-choose-box-1,
  .why-choose-box-2 {
    gap: 10px;
  }

  .why-choose-box-1 {
    margin-bottom: 10px;
  }

  .why-choose-box-2 {
    margin-right: 4.688vw;
  }

  .why-choose-img.image-1 {
    width: calc(45% - 5px);
  }

  .why-choose-img.image-2 {
    width: calc(55% - 5px);
  }

  .why-choose-img.image-3 {
    width: calc(58% - 5px);
  }

  .why-choose-img.image-4 {
    width: calc(42% - 5px);
  }

  .why-choose-img figure,
  .why-choose-img img {
    border-radius: 12px;
  }

  .contact-us-circle a img {
    max-width: 90px;
  }

  .why-choose-list {
    width: 100%;
  }

  .why-choose-list ul li {
    font-size: 14px;
  }

  .why-choose-counter-box {
    width: 100%;
  }

  .why-choose-counter-box .icon-box {
    top: -15px;
    right: -15px;
  }

  .why-choose-counter-box .icon-box img {
    max-width: 70px;
  }

  .why-choose-counter-content h2 {
    font-size: 26px;
  }

  .why-choose-counter-content p {
    font-size: 16px;
  }

  .feature-item {
    min-height: auto;
  }

  .feature-info h3 {
    font-size: 18px;
  }

  .feature-review-image img {
    aspect-ratio: 1 / 0.98;
  }

  .how-work-item {
    width: 100%;
    gap: 20px;
  }

  .how-work-stpe-no h3 {
    padding: 6px 14px;
  }

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

  .how-work-item-content p {
    margin-top: 5px;
  }

  .how-work-item-list {
    padding-top: 20px;
  }

  .intro-video-image img {
    aspect-ratio: 1 / 0.7;
  }

  .our-pricing-swich .form-check-label {
    font-size: 18px;
  }

  .pricing-item {
    width: 100%;
  }

  .pricing-price {
    margin-bottom: 10px;
  }

  .pricing-price h2 {
    font-size: 22px;
  }

  .pricing-price sub {
    font-size: 14px;
  }

  .pricing-body h3 {
    font-size: 18px;
  }

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

  .pricing-benefit-list ul {
    gap: 10px 25px;
  }

  .pricing-benefit-list ul li {
    font-size: 12px;
  }

  .pricing-benefit-list ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .faq-img-1 {
    margin: 0 0px 20px 0;
  }

  .faq-img-1 .faq-image img {
    aspect-ratio: 1 / 0.95;
  }

  .faq-img-1 .contact-us-circle {
    top: auto;
    right: 50%;
    bottom: -10px;
    transform: translate(50%, 50%);
  }

  .faq-img-2 {
    flex-direction: column-reverse;
    gap: 20px;
    margin: 0;
  }

  .faq-img-2 .faq-image {
    width: 100%;
    margin-top: 0;
  }

  .faq-img-2 .faq-image figure {
    border: none;
  }

  .faq-img-2 .faq-image img {
    aspect-ratio: 1 / 0.75;
  }

  .faq-cta-box {
    width: 100%;
    padding: 15px;
    margin-bottom: 0;
  }

  .faq-cta-content h3 {
    font-size: 18px;
  }

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

  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding-right: 25px;
  }

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

  .faq-accordion .accordion-item .accordion-body {
    padding: 0;
  }

  .faq-accordion .accordion-item .accordion-body p {
    font-size: 14px;
  }

  .scrolling-ticker-box {
    --gap: 20px;
  }

  .testimonial-item {
    width: 100%;
    padding: 20px;
  }

  .testimonial-header {
    margin-bottom: 20px;
  }

  .testimonial-quote img {
    max-width: 35px;
  }

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

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

  .author-image {
    margin-right: 10px;
  }

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

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

  .post-item {
    width: 100%;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

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

  .footer-links {
    width: 100%;
  }

  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-newsletter-form {
    margin-top: 20px;
  }

  .footer-newsletter-form .form-group {
    border-radius: 8px;
    padding: 5px;
  }

  .footer-copyright {
    justify-content: center;
  }

  .footer-menu ul {
    gap: 12px;
  }

  .page-header-box h1 {
    font-size: 28px;
  }

  .approach-image {
    max-width: 100%;
    padding: 0 0 70px 50px;
  }

  .approach-image-list {
    max-width: 150px;
  }

  .approach-list-img {
    border-width: 5px;
    margin-bottom: 20px;
  }

  .approach-image .contact-us-circle {
    bottom: 28px;
    right: 30px;
  }

  .approach-item {
    width: 100%;
  }

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

  .strength-image-video .intro-video-image img {
    aspect-ratio: 1 / 0.65;
  }

  .strength-item {
    width: 100%;
  }

  .strength-item-counter h2 {
    font-size: 26px;
  }

  .innovation-counters {
    gap: 20px;
  }

  .innovation-counter-item {
    width: calc(50% - 10px);
    padding-right: 20px;
  }

  .innovation-counter-item h2 {
    font-size: 26px;
  }

  .innovation-counter-item p {
    font-size: 14px;
  }

  .innovation-image-list {
    gap: 20px;
  }

  .innovation-item,
  .innovation-image {
    width: 100%;
  }

  .innovation-item {
    padding: 20px;
    min-height: 200px;
  }

  .innovation-item .icon-box img {
    max-width: 80px;
  }

  .innovation-item-content h3 {
    font-size: 18px;
  }

  .innovation-image img {
    aspect-ratio: 1 / 0.6;
  }

  .page-category-list h3 {
    font-size: 18px;
  }

  .sidebar-cta-img img {
    aspect-ratio: 1 / 0.62;
  }

  .sidebar-cta-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .sidebar-cta-content p {
    font-size: 14px;
  }

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

  .service-entry h2 {
    font-size: 26px;
  }

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

  .service-entry ul li {
    margin-bottom: 10px;
  }

  .service-care-item-list,
  .service-care-info-box {
    width: 100%;
  }

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

  .service-solution-item {
    width: 100%;
  }

  .service-solution-image img {
    aspect-ratio: 1 / 0.85;
  }

  .service-success-box ul {
    gap: 0;
  }

  .service-success-box ul li {
    width: 100%;
  }

  .service-success-counters {
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .success-counter-item {
    width: calc(50% - 10px);
  }

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

  .success-counter-item:nth-child(2n + 2):before {
    display: none;
  }

  .post-single-meta ol li,
  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

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

  .tag-links {
    font-size: 18px;
  }

  .project-entry h2 {
    font-size: 26px;
  }

  .project-entry h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .project-transaction-box,
  .project-excellence-box {
    margin-top: 30px;
  }

  .project-entry-image-video .intro-video-image img {
    aspect-ratio: 1 / 0.65;
  }

  .transaction-item-list {
    gap: 20px;
  }

  .transaction-item {
    width: 100%;
  }

  .transaction-item::before {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: -10px;
    right: 0;
    left: 0;
    transform: none;
  }

  .transaction-item:nth-child(2n + 2)::before {
    display: block;
  }

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

  .project-excellence-body {
    margin: 20px 0;
  }

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

  .project-excellence-item {
    width: 100%;
  }

  .project-excellence-item .icon-box {
    margin-bottom: 15px;
  }

  .team-single-image img {
    aspect-ratio: 1 / 0.97;
  }

  .team-contact-list ul {
    gap: 15px;
  }

  .team-contact-list ul li {
    width: 100%;
    padding-bottom: 15px;
  }

  .member-social-list ul {
    gap: 10px;
  }

  .member-social-list ul li a {
    width: 38px;
    height: 38px;
  }

  .team-skills-list {
    gap: 20px;
  }

  .team-skills-list .skills-progress-bar {
    width: 100%;
  }

  .expertise-body-cta-box,
  .team-expertise-body-content {
    width: 100%;
  }

  .expertise-body-cta-content h3 {
    font-size: 18px;
  }

  .team-expertise-body-content h3 {
    font-size: 18px;
  }

  .contact-info-item {
    width: 100%;
  }

  .contact-info-item .icon-box {
    margin-bottom: 15px;
  }

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

  .contact-us-form {
    padding: 30px 20px;
  }

  .industry-wrapper {
    height: 700px !important;
    flex-direction: column !important;
  }
}

.serv-image img {
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .impact-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px !important;
  }

  .impact-icon {
    width: 35px !important;
    height: 35px !important;
  }

  .impact-content h3 {
    font-size: 26px !important;
  }

  .impact-content p {
    font-size: 16px !important;
    max-width: 100% !important;
  }

  .projects-wrapper {
    flex-direction: column !important;
  }

  .projects-wrapper {
    margin-top: 30px !important;
  }

  .projects-preview {
    padding: 10px !important;
    min-height: unset !important;
  }

  .map-area {
    height: 260px !important;
  }
}

/* .page-header.sustainability-header {
  background-size: contain !important;
} */

#core-values-modern {
  padding: 20px;
  margin-bottom: 30px;
}

#core-values-modern .core-values-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* card */
#core-values-modern .core-values-row {
  display: block;
  padding: 30px 25px;
  border-radius: 14px;
  background: #f9f9f9;
  border: 1px solid #eee;
  transition: 0.35s ease;
  height: 100%;
}

/* top section */
#core-values-modern .core-values-left {
  display: block;
  margin-bottom: 15px;
}

#core-values-modern .core-values-left i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 15px;
  transition: 0.35s;
}

#core-values-modern .core-values-left h3 {
  margin: 0;
  font-size: 20px;
}

/* content */
#core-values-modern .core-values-right p {
  margin: 0;
  line-height: 1.7;
  color: #555;
}

/* hover */
#core-values-modern .core-values-row:hover {
  background: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

#core-values-modern .core-values-row:hover h3,
#core-values-modern .core-values-row:hover p {
  color: #fff;
}

#core-values-modern .core-values-row:hover i {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
}

/* tablet */
@media (max-width: 1024px) {
  #core-values-modern .core-values-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 600px) {
  #core-values-modern .core-values-container {
    grid-template-columns: 1fr;
  }
}

/*  */
.page-category-list ul {
  max-height: 400px;
  /* adjust height as needed */
  overflow-y: auto;
  /* padding-right: 10px; */
  /* avoid scrollbar overlap */
}

/* Optional: smooth scrollbar (Chrome/Edge) */
.page-category-list ul::-webkit-scrollbar {
  width: 6px;
}

.page-category-list ul::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.page-category-list ul::-webkit-scrollbar-track {
  background: transparent;
}

/*  */

.page-category-list ul {
  max-height: 500px;
  overflow-y: auto;
  /* padding-right: 10px; */
}

@media (min-width: 1520px) {
  .page-category-list ul {
    max-height: 500px;
    overflow-y: auto;
  }

}