/************************************/
/*** 	 Global Variables	  ***/
/************************************/

:root {
  --primary-color: #3d2b21;
  --secondary-color: #f0e6d5;
  --text-color: #3d2b21;
  --accent-color: #90744d;
  --accent-secondary-color: #3d2b21;
  --white-color: #ffffff;
  --divider-color: #3b545024;
  --dark-divider-color: #ffffff3d;
  --error-color: rgb(230, 87, 87);
  --default-font: "Plus Jakarta Sans", sans-serif;
}

/************************************/
/*** 	   General css		  ***/
/************************************/

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

section {
  padding: 60px 0 60px 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  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;
}

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

.container {
  max-width: 1300px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.btn-default:before,
.btn-default:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  opacity: 0;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
  z-index: -1;
}

.btn-default:before {
  left: 0;
}

.btn-default:after {
  right: 0;
}

.btn-default:hover:before,
.btn-default:hover:after,
.btn-default:focus:before,
.btn-default:focus:after {
  opacity: 1;
  width: 100%;
}

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

.btn-default.btn-highlighted::after,
.btn-default.btn-highlighted::before {
  background: var(--primary-color);
}
.btn-default:hover,
.btn-default:focus {
  color: var(--white-color);
}
.btn-default.btn-highlighted:hover .btn-default.btn-highlighted:focus {
  background: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-left: 30px;
  margin-bottom: 10px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/icon-sub-heading.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 20px;
  height: 20px;
}

.section-title h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--accent-secondary-color);
}

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

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

.section-title.dark-section h3::before {
  background: url("../images/icon-sub-heading-accent.svg");
}

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

/************************************/
/**** 	   Header css		 ****/
/************************************/

.topbar {
  background: var(--accent-secondary-color);
  padding: 15px 0;
}

.topbar-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

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

.topbar-contact-info ul li a i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 8px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links {
  text-align: right;
}

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

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

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

.topbar-social-links ul li a {
  font-weight: 500;
  color: var(--accent-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a i {
  font-size: 18px;
  color: inherit;
  margin-right: 8px;
}

header.main-header {
  position: relative;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--accent-color);
  z-index: 100;
}

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

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

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

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

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

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

.main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  padding: 14px 15px !important;
  color: var(--accent-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(--primary-color);
}

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

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

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

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(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(--accent-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

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

.slicknav_btn {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 0;
}

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

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

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

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

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

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

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

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 14px 20px;
  color: var(--accent-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: 8px 20px 8px 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(--primary-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

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

/************************************/
/***        Hero css	      ***/
/************************************/

/* .hero {
  background: url("../images/hero-bg-shape.png"),
    linear-gradient(180deg, var(--accent-color) 64%, var(--secondary-color) 36%);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding: 100px 0 50px;
}

.hero.hero-image {
  position: relative;
  background: url("../images/hero/hero-img-1.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 200px 0;
}

.hero.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

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

.hero.hero-image.hero-slider-layout {
  background: none;
  padding: 0;
}

.hero.hero-image.hero-slider-layout .hero-slide {
  position: relative;
  padding: 200px 0;
}

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

.hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-image.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 60px;
  text-align: center;
  z-index: 2;
}

.hero.hero-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero.hero-image.hero-slider-layout
  .hero-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-secondary-color);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
  z-index: 2;
}

.hero-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-btn {
  display: flex;
}

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

.video-play-button a {
  height: 50px;
  width: 50px;
  border: 1px solid var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
  border-color: var(--white-color);
}

.video-play-button i {
  font-size: 18px;
  color: var(--accent-secondary-color);
  transition: all 0.3s ease-in-out;
}

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

.video-play-button p {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--accent-secondary-color);
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.video-play-button:hover p {
  color: var(--white-color);
}

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

.hero-list ul li {
  position: relative;
  color: var(--secondary-color);
  padding-left: 25px;
}

.hero-list ul li:before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 5px;
  left: 0;
  font-weight: 900;
  font-size: 18px;
  color: var(--accent-secondary-color);
  display: inline-block;
  line-height: normal;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 0.573;
  object-fit: cover;
} */

.hero {
  position: relative;
  padding-bottom: 86px;
}

.hero .hero-section {
  background: var(--accent-color);
  background-position: left center;
  background-size: contain;
  padding: 100px 0 186px;
}

.hero.bg-image .hero-section {
  position: relative;
  background: url("../images/hero-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 150px 0 236px;
}

.hero.bg-image .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
}

.hero.bg-image .hero-section .hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero.bg-image .hero-section .hero-content .section-title h1 {
  font-size: 80px;
}

.hero.bg-image .hero-section.hero-slider-layout {
  background: none;
  padding: 0;
}

.hero-section.hero-slider-layout .hero-slide {
  position: relative;
  padding: 150px 0 236px;
}

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

.hero-section.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero-section.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section.hero-slider-layout .hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 120px;
  text-align: center;
  z-index: 2;
}

.hero-section.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero-section.hero-slider-layout
  .hero-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.hero-section.hero-video {
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-section.hero-video .hero-content {
  position: relative;
  z-index: 1;
}

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

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

/* .hero-content .section-title h1 img{
	max-width: 129px;
	border-radius: 100px;
} */

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

.hero-counter-box {
  width: calc(33.33% - 40px);
}

.hero-counter-box h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 20px;
}

.hero-counter-box p {
  text-transform: capitalize;
  line-height: 1.4em;
  color: var(--white-color);
  margin: 0;
}

.hero-content-footer .btn-default {
  padding: 19px 30px 19px 70px;
  margin-right: 30px;
}

.hero-content-footer .btn-default::before {
  left: 0;
  right: auto;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-phone.svg);
  background-size: 24px auto;
  transform: translate(30px, -50%);
}

.hero-content-footer .btn-default.btn-highlighted {
  padding: 18px 30px 18px 60px;
  margin-right: 0px;
}

.hero-content-footer .btn-default.btn-highlighted::before {
  background-image: url(../images/icon-plus.svg);
  width: 16px;
  height: 16px;
  background-size: 16px auto;
}

.hero-content-footer .btn-default.btn-highlighted:hover:before {
  transform: translate(30px, -50%) rotate(45deg);
}

.hero-image {
  position: relative;
  padding-left: 80px;
}

.hero-img figure {
  display: block;
}

.hero-img img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

/* .company-service-rating{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	max-width: 275px;
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 20px;
	animation: serviceratingmoveobject 3s infinite linear alternate;
}

@keyframes serviceratingmoveobject{
	50%{
		left: 60px;
	}
}

.company-rating-icon{
	margin-bottom: 10px;
}

.company-rating-icon ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.company-rating-icon ul li{
	display: inline-block;
}

.company-rating-icon ul li i{
	font-size: 16px;
	color: var(--accent-color);
}

.company-rating-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.company-rating-content p{
	line-height: 1.4em;
	margin: 0;
} */

.our-cta-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 15px;
  z-index: 2;
}

.cta-content-box {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0px 10px 30px 0px #00000008;
  padding: 50px;
}

.cta-item{
	display: flex;
	align-items: center;
  text-align: center;
}

.cta-item h3{
	font-weight: 600;
}

/************************************/
/***     Our Process css      ***/
/************************************/

.process-steps-list {
  display: flex;
  flex-wrap: wrap;
}

.process-step-box {
  position: relative;
  width: calc(33.33%);
  border: 1px solid var(--divider-color);
  padding: 40px;
}

.process-step-box:nth-child(3n + 1) {
  border-top-width: 0;
  border-right-width: 0;
  padding-right: 65px;
}

.process-step-box:nth-child(3n + 2) {
  border-top-width: 0;
  border-right-width: 0;
  padding-left: 65px;
  padding-right: 65px;
}

.process-step-box:nth-child(3n + 3) {
  border-top-width: 0;
  padding-left: 65px;
}

.process-step-box:nth-of-type(-n + 3) {
  border-top-width: 1px;
}

.process-step-box:last-child {
  border-right-width: 1px;
}

.process-step-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  background-color: var(--secondary-color);
  background-image: url(../images/process/arrow-accent.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.process-step-box:last-child:before,
.process-step-box:nth-of-type(3n + 3):before {
  display: none;
}

/* .process-step-box.active:before,
.process-step-box:hover:before {
  background-color: var(--accent-secondary-color);
} */

.process-step-box::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: var(--accent-color);
  height: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.process-step-box:hover::after,
.process-step-box.active::after {
  top: 0;
  height: 100%;
  opacity: 1;
}

.process-step-box .icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  padding-right: 10px;
  z-index: 1;
}

.process-step-box .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  opacity: 40%;
  z-index: 0;
}

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

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

.process-step-content {
  position: relative;
  z-index: 1;
}

.process-step-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.process-step-content p {
  color: var(--primary-color);
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.process-step-box:hover .process-step-content h3,
.process-step-box:hover .process-step-content p,
.process-step-box.active .process-step-content h3,
.process-step-box.active .process-step-content p {
  color: var(--white-color);
}

.process-step-footer {
  width: 100%;
  max-width: 450px;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
}

.process-step-footer p {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 40px;
}

/************************************/
/***  Company Activities css  ***/
/************************************/

.company-activity-box {
  display: flex;
  flex-wrap: wrap;
  gap: 100px 30px;
}

.company-activity-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

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

.company-activity-image {
  position: relative;
  width: calc(50% - 30px);
  padding: 0 0 40px 40px;
}

.company-activity-item:nth-child(even) .company-activity-image {
  padding: 0 40px 40px 0;
}

.company-activity-image::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  bottom: 0;
  background-color: var(--accent-secondary-color);
  opacity: 14%;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
}

.company-activity-item:nth-child(even) .company-activity-image::before {
  left: auto;
  right: 0;
}

.company-activity-image figure {
  display: block;
}

.company-activity-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.94;
  object-fit: cover;
  z-index: 1;
}

.company-activity-content {
  width: calc(50% - 30px);
}

.company-activity-list {
  margin-bottom: 40px;
}

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

.company-activity-list ul li {
  position: relative;
  text-transform: capitalize;
  padding-left: 25px;
  margin-bottom: 15px;
}

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

.company-activity-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  color: var(--accent-color);
  display: inline-block;
  top: 5px;
  left: 0;
}

/************************************/
/***      Our Pricing css     ***/
/************************************/

.our-pricing {
  /* position: relative; */
  background: var(--accent-color);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
}

/* .our-pricing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: url(../images/pricing-bg-img-1.svg) no-repeat;
  background-position: center left;
  background-size: cover;
  height: 512px;
  width: 512px;
  z-index: 0;
} */

.pricing-box {
  position: relative;
  background: var(--secondary-color);
  height: 100%;
  padding: 50px;
  z-index: 1;
}

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

.pricing-header h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.pricing-header p {
  margin-bottom: 20px;
}

.pricing-header h2 {
  font-size: 30px;
}

.pricing-header h2 sub {
  font-size: 16px;
  bottom: 0;
}

.pricing-body {
  margin-bottom: 40px;
}

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

.pricing-body ul li {
  position: relative;
  color: var(--accent-color);
  text-transform: capitalize;
  padding-left: 25px;
  margin-bottom: 10px;
}

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

.pricing-body ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  color: var(--accent-color);
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.pricing-btn .btn-default {
  display: block;
  text-align: center;
}

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

.pricing-box.highlighted-box .pricing-body ul li {
  color: var(--text-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default {
  color: var(--white-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover {
  color: var(--accent-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover::before,
.pricing-box.highlighted-box .pricing-btn .btn-default:hover::after {
  background: var(--white-color);
}

/************************************/
/***   	   Our FAQs css       ***/
/************************************/

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

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

.faq-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
  padding-right: 35px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
  margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f062";
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 2px;
  height: 24px;
  width: 24px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  color: var(--accent-secondary-color);
  border-color: var(--accent-secondary-color);
  transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body {
  padding-right: 35px;
}

.accordion-item .accordion-body p {
  margin-bottom: 15px;
}

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

/************************************/
/***  		Footer css 		  ***/
/************************************/

.main-footer {
  background: url(../images/footer-bg.svg), var(--accent-color);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  padding: 100px 0 0 0;
}

.about-footer {
  width: 100%;
  max-width: 410px;
}

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

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

.about-footer-content {
  margin-bottom: 40px;
}

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

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

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

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

.footer-social-links ul li a {
  width: 40px;
  height: 40px;
  color: var(--accent-color);
  background: var(--white-color);
  border-radius: 50%;
  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-secondary-color);
}

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

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

.footer-links ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

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

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

.footer-links ul li::marker {
  color: var(--white-color);
}

.footer-links ul li:hover::marker {
  color: var(--white-color);
}

.footer-links ul li a {
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

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

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

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

.footer-contact-item .icon-box {
  margin-right: 10px;
}

.footer-contact-item .icon-box img {
  max-width: 20px;
}

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

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

.footer-contact-content p a {
  color: inherit;
  display: block;
  transition: all 0.3s ease-in-out;
}

.footer-contact-content p a:hover {
  color: var(--white-color);
}

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

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

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

.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.footer-menu ul li {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  line-height: normal;
  color: var(--white-color);
  margin-right: 30px;
  transition: all 0.3s ease-in-out;
}

.footer-menu ul li:last-child {
  margin-right: 0;
}

.footer-menu ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  background-color: var(--white-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
  transform: translateY(-50%);
}

.footer-menu ul li:last-child:before {
  display: none;
}

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

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

/************************************/
/***     Page Header Css    ***/
/************************************/

.page-header {
  position: relative;
  background: url("../images/page-header-bg.png"), var(--accent-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 80%;
  padding: 115px 0;
}

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

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

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

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

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

/************************************/
/***     Contact Page Css      ***/
/************************************/

.contact-form {
  background-color: var(--accent-color);
  padding: 40px;
}

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

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

.contact-form .form-control option {
  color: var(--accent-color);
}

.contact-form button {
  border: none;
  outline: none;
}

/************************************/
/***    Image Gallery css     ***/
/************************************/

.page-gallery-box .photo-gallery {
  height: 100%;
}

.page-gallery-box .photo-gallery figure {
  display: block;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
}

/************************************/
/***      FAQs Page css       ***/
/************************************/

.faq-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 30px;
}

.faq-catagery-list {
  border: 1px solid var(--divider-color);
  padding: 30px;
  margin-bottom: 40px;
}

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

.faq-catagery-list ul li {
  margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child {
  margin: 0;
}

.faq-catagery-list ul li a {
  position: relative;
  display: block;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 25px;
  transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
  color: var(--accent-secondary-color);
}

.faq-catagery-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/arrow-accent.svg) no-repeat;
  background-position: right center;
  background-size: cover;
  width: 18px;
  height: 14px;
}

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

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

/************************************/
/***   Contact Us Page css    ***/
/************************************/

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

.contact-info-item {
  display: flex;
  position: relative;
  width: 100%;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info-item:after {
  content: "";
  position: absolute;
  top: 105px;
  width: 100%;
  height: 1px;
  background: var(--text-color);
  opacity: 14%;
}

/*.contact-info-item:nth-child(2n + 2):after {*/
/*  display: none;*/
/*}*/

.contact-info-item .icon-box {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  margin-bottom: 20px;
}

.contact-info-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-secondary-color);
  opacity: 40%;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.contact-info-item .icon-box img {
  max-width: 60px;
}

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

.contact-info-content p {
  margin: 0;
}

.google-map .container-fluid {
  padding: 0;
}

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

/************************************/
/***      Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px) {
  section {
    padding: 50px 0 50px 0;
  }

  .btn-default {
    padding: 15px 20px;
  }

  .topbar-contact-info ul {
    gap: 15px;
  }

  .topbar-social-links ul li {
    padding-right: 10px;
    margin-right: 10px;
  }

  .topbar-social-links ul li a i {
    font-size: 16px;
    margin-right: 5px;
  }

  .navbar {
    padding: 15px 0;
  }

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

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

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

  .header-btn {
    display: none;
  }

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

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

  .section-title h3 {
    padding-left: 25px;
  }

  .section-title h3::before {
    width: 18px;
    height: 18px;
  }

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

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

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

  .section-title-content {
    margin-left: 0;
    margin-top: 15px;
  }

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

  .hero {
    padding-bottom: 60px;
  }

  .hero .hero-section {
    padding: 50px 0 75px;
  }

  .hero-section.hero-slider-layout .hero-slide {
    padding: 100px 0 200px;
  }

  .hero.bg-image .hero-section {
    padding: 100px 0 200px;
  }

  .hero-section.hero-slider-layout .hero-pagination {
    bottom: 140px;
  }

  .hero-content {
    margin-bottom: 30px;
  }

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

  .hero.bg-image .hero-section .hero-content .section-title h1 {
    font-size: 62px;
  }

  .hero-content-body {
    padding: 20px 0;
    margin-bottom: 30px;
  }

  .hero-counter-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .hero-image {
    padding-left: 0px;
    padding-bottom: 50px;
  }

  .hero-img img {
    aspect-ratio: 1 / 0.8;
  }

  .cta-content-box {
    padding: 30px;
  }

  .cta-item h3{
    font-size: 20px;
    font-weight: 600;
  }

  .process-step-box {
    padding: 20px;
  }

  .process-step-box:nth-child(3n + 1) {
    padding-right: 30px;
  }

  .process-step-box:nth-child(3n + 2) {
    padding-left: 30px;
    padding-right: 30px;
  }

  .process-step-box:nth-child(3n + 3) {
    padding-left: 30px;
  }

  .process-step-box::before {
    background-size: 16px auto;
    width: 40px;
    height: 40px;
  }

  .process-step-box .icon-box {
    margin-bottom: 30px;
  }

  .process-step-content h3 {
    font-size: 18px;
  }

  .process-step-content p {
    font-size: 14px;
  }

  .process-step-footer {
    margin-top: 30px;
  }

  .process-step-footer p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .company-activity-box {
    gap: 50px 30px;
  }

  .company-activity-item {
    gap: 30px;
  }

  .company-activity-image,
  .company-activity-content {
    width: 100%;
  }

  .company-activity-image {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 30px 30px;
  }

  .company-activity-item:nth-child(even) .company-activity-image {
    padding: 0 30px 30px 0;
  }

  .company-activity-image::before {
    top: 25px;
    height: calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .company-activity-list {
    margin-bottom: 30px;
  }

  .company-activity-list ul li {
    margin-bottom: 10px;
  }

  .pricing-box {
    padding: 30px;
  }

  .pricing-header h3 {
    font-size: 22px;
  }

  .pricing-header h2 {
    font-size: 26px;
  }

  .pricing-header {
    border-width: 2px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .pricing-body {
    margin-bottom: 30px;
  }

  .our-faqs {
    padding: 50px 0 25px;
  }

  .our-faq-content {
    position: static;
    margin-right: 0;
    margin-bottom: 30px;
  }

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

  .faq-accordion .accordion-button:not(.collapsed) {
    margin-bottom: 10px;
  }

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

  .about-footer {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .about-footer-content {
    margin-bottom: 20px;
  }

  .footer-copyright {
    padding: 20px 0;
    margin-top: 30px;
  }

  .page-header {
    padding: 60px 0;
  }

  .page-header-box h1 {
    font-size: 45px;
  }

  .page-about {
    padding: 50px 0 25px;
  }

  .about-image {
    padding-right: 30px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .about-img img {
    aspect-ratio: 1 / 0.8;
    object-position: top center;
  }

  .company-experience {
    padding: 15px 20px;
  }

  .company-experience h3 {
    font-size: 26px;
  }

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

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

  .client-images {
    margin-bottom: 10px;
  }

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

  .our-approach {
    padding: 25px 0 50px;
  }

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

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

  .mission-vision-item .icon-box {
    margin-bottom: 10px;
  }

  .mission-vision-item .icon-box:before {
    width: 25px;
    height: 25px;
  }

  .mission-vision-item .icon-box img {
    max-width: 40px;
  }

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

  .contact-form .form-control {
    padding: 12px 16px;
  }

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

  .faq-sidebar {
    position: initial;
    top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .faq-catagery-list {
    padding: 20px;
    margin-bottom: 30px;
  }

  .faq-catagery-list ul li {
    margin-bottom: 15px;
  }

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

  .contact-us-content {
    margin-right: 0;
  }

  .contact-info-item .icon-box {
    margin-bottom: 15px;
  }

  .contact-info-item .icon-box img {
    max-width: 50px;
  }

  .contact-info-content h3 {
    margin-bottom: 5px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 400px;
  }

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

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

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

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

  .error-page-content-body p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  section {
    padding: 40px 0 40px 0;
  }

  .topbar-social-links {
    display: none;
  }

  .topbar-contact-info ul {
    justify-content: center;
  }

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

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

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

  .hero {
    padding-bottom: 50px;
  }

  .hero .hero-section {
    padding: 50px 0 50px;
  }

  .hero.bg-image .hero-section .hero-content .section-title h1 {
    font-size: 38px;
  }

  .hero-section.hero-slider-layout .hero-slide {
    padding: 50px 0 250px;
  }

  .hero-section.hero-slider-layout .hero-pagination {
    bottom: 190px;
  }

  .hero-content-body {
    padding: 15px 0;
    margin-bottom: 30px;
    gap: 20px;
  }

  .hero-counter-box {
    width: calc(33.33% - 13.33px);
  }

  .hero-counter-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .hero-content-footer .btn-default.btn-highlighted {
    margin-top: 15px;
  }

  .hero-content-footer .btn-default {
    padding: 17px 25px 17px 65px;
    margin-right: 20px;
  }

  .hero-content-footer .btn-default.btn-highlighted {
    padding: 16px 25px 16px 55px;
  }

  .hero-image {
    padding-bottom: 80px;
  }

  .company-rating-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

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

  .process-step-box {
    width: 100%;
  }

  .process-step-box:nth-of-type(-n + 3) {
    border-top-width: 0;
  }

  .process-step-box:nth-child(3n + 1),
  .process-step-box:nth-child(3n + 2),
  .process-step-box:nth-child(3n + 3) {
    padding: 20px;
    border-right-width: 1px;
  }

  .process-step-box:nth-of-type(-n + 1) {
    border-top-width: 1px;
  }

  .process-step-box::before {
    right: 50%;
    transform: translate(50%, 50%) rotate(90deg);
    top: auto;
    bottom: 0;
    background-size: 14px auto;
    width: 30px;
    height: 30px;
  }

  .process-step-box:nth-of-type(3n + 3):before {
    display: block;
  }

  .process-step-box:last-child:before {
    display: none;
  }

  .process-step-box .icon-box {
    margin-bottom: 20px;
  }

  .process-step-box .icon-box img {
    max-width: 40px;
  }

  .process-step-footer p {
    font-size: 16px;
  }

  .our-partner-item img {
    max-width: 150px;
    max-height: 30px;
  }

  .pricing-box {
    padding: 20px;
  }

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

  .pricing-header p {
    margin-bottom: 10px;
  }

  .pricing-header h2 {
    font-size: 22px;
  }

  .pricing-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

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

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

  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding-right: 30px;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    margin-bottom: 5px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    width: 22px;
    height: 22px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding-right: 0;
  }

  .faq-accordion .accordion-item .accordion-body p {
    font-size: 14px;
  }

  .footer-logo,
  .about-footer-content {
    margin-bottom: 15px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

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

  .footer-copyright {
    padding: 15px 0;
    margin-top: 0;
    text-align: center;
  }

  .footer-menu {
    margin-top: 5px;
  }

  .footer-menu ul {
    text-align: center;
  }

  .page-header {
    background-size: auto 30%;
  }

  .page-header-box h1 {
    font-size: 30px;
  }

  .page-header-box ol li.breadcrumb-item {
    font-size: 14px;
  }

  .about-image {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .company-experience {
    bottom: 0;
    right: 35%;
    padding: 10px;
  }

  @keyframes experienceobject {
    50% {
      right: 25%;
    }
  }

  .company-experience h3 {
    font-size: 22px;
  }

  .company-experience p {
    font-size: 14px;
  }

  .satisfied-client-item {
    margin-bottom: 20px;
  }

  .about-result-box .icon-box {
    margin-right: 10px;
  }

  .about-result-content {
    width: calc(100% - 62px);
  }

  .about-result-content h3 {
    font-size: 18px;
  }

  .mission-vision-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .mission-vision-content h3 {
    font-size: 18px;
  }

  .our-approach-footer p {
    font-size: 14px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item .icon-box {
    margin-bottom: 15px;
    padding-right: 5px;
  }

  .service-item .icon-box:before {
    width: 20px;
    height: 20px;
  }

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

  .service-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-catagery-list h3 {
    font-size: 18px;
  }

  .service-catagery-list ul li {
    margin-bottom: 10px;
  }

  .service-catagery-list ul li a::before {
    width: 16px;
  }

  .sidebar-cta-box {
    background-position: center center;
  }

  .sidebar-cta-content h3 {
    font-size: 18px;
  }

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

  .service-featured-image img {
    aspect-ratio: 1 / 0.7;
  }

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

  .service-entry ul li {
    margin-bottom: 10px;
  }

  .service-support-item {
    align-items: start;
    margin-bottom: 20px;
  }

  .service-support-item .icon-box {
    display: block;
    padding-right: 5px;
  }

  .service-support-item .icon-box img {
    max-width: 40px;
  }

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

  .service-support-item-content h3 {
    font-size: 18px;
  }

  .service-support-item-content p {
    font-size: 14px;
  }

  .service-expertise-list {
    gap: 20px;
  }

  .service-expertise-item {
    width: 100%;
    padding: 20px;
  }

  .service-expertise-item .icon-box {
    margin-bottom: 15px;
  }

  .service-expertise-item-content h3 {
    font-size: 18px;
  }

  .service-expertise-item-content p {
    font-size: 14px;
  }

  .tag-links {
    font-size: 20px;
  }

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

  .contact-info-item:after {
    top: auto;
    right: 0;
    bottom: -15px;
    width: 100%;
    height: 1px;
  }

  .contact-info-item:nth-child(2n + 2):after {
    display: block;
  }

  .contact-info-item:last-child:after {
    display: none;
  }

  .contact-info-item .icon-box img {
    max-width: 40px;
  }

  .contact-info-item .icon-box:before {
    width: 30px;
    height: 30px;
  }

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

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }
}
