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

:root {
  --primary-color: #121820;
  --secondary-color: #12182080;
  --text-color: #575757;
  --accent-color: #0b3b74;
  --default-color: #f97426;
  --bg-color: #eff6f9;
  --white-color: #ffffff;
  --divider-color: #1218201a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Plus Jakarta Sans", sans-serif;
  --accent-font: "Plus Jakarta Sans", sans-serif;
}

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

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

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

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--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;
  /* font-size: 18px; */
}

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

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

section {
  padding: 60px 0;
}

.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;
  background: var(--accent-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25em;
  text-transform: capitalize;
  color: var(--white-color);
  padding: 15px 52px 15px 30px;
  overflow: hidden;
  border: none;
  transition: all 0.4s ease-in-out;
  z-index: 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

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

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

.btn-default::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 102%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.5s ease-in-out;
  z-index: -1;
  transform: skewY(9.3deg) scaleY(0);
}

.btn-default:hover::after {
  transform: skewY(0deg) scaleY(2);
}

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

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

.btn-default.btn-highlighted:hover::before {
  filter: brightness(0) invert(0);
}

.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: 25px;
  transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../images/blog/arrow-accent.png") no-repeat;
  background-position: right center;
  background-size: cover;
  width: 12px;
  height: 12px;
  transition: all 0.4s ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-title.section-title-center {
  width: 100%;
  max-width: 860px;
  text-align: center;
  margin: 0 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: 40px;
}

.section-title h3 {
  display: inline-block;
  color: var(--accent-color);
  font-family: var(--accent-font);
  background-color: var(--bg-color);
  padding: 10px 18px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.section-title h1 {
  font-size: 46px;
  margin-bottom: 0;
}

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

.section-title h1 span,
.section-title h2 span {
  font-family: var(--accent-font);
  font-weight: 400;
  font-style: italic;
}

.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-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1 {
  color: var(--white-color);
}

.dark-section .section-title h3 {
  background-image: url("../images/icon-sparkle-white.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		 ****/
/************************************/

header.main-header {
  position: relative;
  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);
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
  background-color: var(--white-color);
  border-top: none;
  /* border-radius: 0 0 20px 20px; */
}

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

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

.navbar-brand img {
  max-width: 240px;
}

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

.main-menu ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1em;
  padding: 15px 10px !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: 235px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

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

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

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

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

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

.main-menu ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

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

.header-social-links {
  text-align: right;
  margin-right: 20px;
}

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

.header-social-links ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  transition: all 0.3s ease-in-out;
}

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

.header-social-links ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--divider-color);
  color: var(--accent-color);
  padding: 0 !important;
  transition: all 0.3s ease-in-out;
}

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

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

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

.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: 500;
  text-transform: capitalize;
  padding: 7px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--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);
}

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

.hero {
  background: transparent;
  border-radius: 0;
}

.hero .container-fluid {
  padding: 0;
}

.hero.hero-bg-image .hero-box {
  position: relative;
  display: block;
  background: url("../images/hero/hero-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  /* border-radius: 20px; */
  padding: 220px 15px;
  overflow: hidden;
}

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

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

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

.hero.hero-bg-image .hero-box .hero-content {
  position: relative;
  background: transparent;
  width: 100%;
  max-width: 950px;
  padding: 0px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  /* margin-bottom: 30px; */
}

.hero-content,
.hero-image-box {
  width: calc(50% - 15px);
  border-radius: 20px;
}

.hero-content {
  padding: 5.208vw;
  align-content: center;
}

.hero-content .section-title h1 {
  font-weight: 700;
}

.hero-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 40px;
}

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

.hero-image {
  height: 100%;
}

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

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

.hero-counter {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 310px;
  background: var(--bg-color);
  border: 20px solid var(--bg-color);
  border-right: none;
  border-bottom: none;
  border-radius: 20px 0 0 0;
  z-index: 1;
}

.hero-counter::before,
.hero-counter::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  mask: url("../images/hero-image-corner-shape.svg");
  -webkit-mask: url("../images/hero-image-corner-shape.svg");
  background-color: var(--bg-color);
  mask-repeat: no-repeat;
  mask-size: cover;
}

.hero-counter::before {
  top: -40px;
  right: 0;
}

.hero-counter::after {
  bottom: 0;
  left: -40px;
}

.hero-counter-box {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
}

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

.hero-counter-content h2 {
  font-family: var(--accent-font);
  font-size: 46px;
  margin-bottom: 50px;
}

.hero-counter-content p {
  margin-bottom: 0;
}

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

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

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

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

.page-header-box h1 {
  display: inline-block;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1em;
  color: var(--white-color);
  margin-bottom: 10px;
}

.page-header-box h1 span {
  font-family: var(--accent-font);
  font-weight: 400;
  font-style: italic;
}

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

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  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;
}

/************************************/
/*** 	   About Us css 	  ***/
/************************************/

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

.about-us-counter-area {
  background-image: url("../images/counter/counter-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.about-us-counter-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 20px;
}

.about-us-counter-item .icon-box {
  margin-right: 20px;
}

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

.about-us-counter-content h3 {
  font-size: 30px;
  margin-bottom: 5px;
}

.about-us-counter-content p {
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/*** 	 Our Services css	  ***/
/************************************/

.our-services .section-title h3 {
  background-color: var(--white-color);
}

.our-services-item {
  background-color: var(--white-color);
  padding: 15px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.our-services-image img {
  width: 100%;
  aspect-ratio: 1/0.9;
  object-fit: cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.our-services-content h3 {
  margin: 20px 0 10px 0;
}

.our-services-content h3 a {
  color: var(--accent-color);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-services-content p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/************************************/
/*** Our Mission and Vision css ***/
/************************************/
.mission-vision {
  background-color: transparent;
}

.mission-vision-box {
  height: 100%;
  background-color: var(--bg-color);
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.mission-vision-box img {
  max-width: 60px;
  margin-bottom: 20px;
}

.mission-vision-box h3 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

.mission-vision-box p {
  margin: 0;
}

/************************************/
/*** 	   Why Choose Us css 	  ***/
/************************************/
.why-choose-item {
  position: relative;
  display: flex;
  margin-bottom: 60px;
}

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

.why-choose-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(30px, 60px);
  border-left: 1px dashed var(--divider-color);
  width: 1px;
  height: 100%;
  z-index: -1;
}

.why-choose-item:last-child:after {
  display: none;
}

.why-choose-item-no {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
}

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

.excellence-item:hover .why-choose-item-no:before {
  transform: scale(1) rotate(0deg);
}

.why-choose-item-no h3 {
  position: relative;
  font-size: 20px;
  color: var(--white-color);
  z-index: 1;
}

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

.why-choose-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.why-choose-item-content p {
  margin: 0;
}

.why-choose-images img {
  width: 100%;
  aspect-ratio: 1/1.1;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

/************************************/
/*** 	   Our Blog css 	  ***/
/************************************/

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

.our-blog .section-title h3 {
  background-color: var(--white-color);
}

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

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

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

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

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

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

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

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

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

/************************************/
/*** 	 Blog Single css	  ***/
/************************************/

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

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

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

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

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

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

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

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

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

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

.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 {
  font-weight: 500;
  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;
}

/************************************/
/***   Our Testimonials css   ***/
/************************************/

.our-testimonial {
}

.testimonial-item {
  position: relative;
  border: 1px solid var(--text-color);
  padding: 30px;
  border-radius: 20px;
  background-color: var(--accent-color);
}

/* .testimonial-item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: -30px;
  bottom: 0;
  left: auto;
  background: var(--divider-color);
} */

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

.testimonial-rating i {
  font-size: 18px;
  color: var(--default-color);
  margin-right: 2px;
}

.testimonial-rating i:last-child {
  margin-right: 0;
}

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

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

.testimonial-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.author-content h3 {
  color: var(--white-color);
  font-size: 20px;
  text-transform: capitalize;
}

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

.testimonial-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
}

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

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

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

.testimonial-slider
  .testimonial-pagination
  .swiper-pagination-bullet-active:before {
  border: 1px solid var(--accent-color);
  height: 14px;
  width: 14px;
}

.project-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
}

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

.project-slider .project-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

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

.project-slider .project-pagination .swiper-pagination-bullet-active:before {
  border: 1px solid var(--accent-color);
  height: 14px;
  width: 14px;
}

.testimonial-counter-box {
  position: relative;
  background: url("../images/testimonial-counter-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 12px;
  padding: 30px;
  overflow: hidden;
}

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

.testimonial-counter-item {
  position: relative;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
  z-index: 1;
}

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

.testimonial-counter-item h2 {
  font-size: 46px;
  line-height: 1em;
  color: var(--white-color);
  margin-bottom: 8px;
}

.testimonial-counter-item p {
  text-transform: capitalize;
  color: var(--white-color);
  margin: 0;
}

/************************************/
/*** 	Service Single css	  ***/
/************************************/

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

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

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

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

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

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

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

.service-entry h2 span {
  font-family: var(--accent-font);
  font-weight: 400;
  font-style: italic;
}

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

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

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

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

/************************************/
/*** 	 Our Project Css	  ***/
/************************************/
.our-Project-nav {
  text-align: center;
  margin-bottom: 60px;
  overflow: hidden;
}

.our-Project-nav ul {
  list-style: none;
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 40px;
  padding: 0;
  margin: 0;
}

.our-Project-nav ul li a {
  position: relative;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

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

.our-Project-nav ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: -23px;
  transform: translateY(-50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--divider-color);
}

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

.our-project .section-title h3 {
  background-color: var(--white-color);
}

.project-gallery {
  position: relative;
  margin-bottom: 30px;
}

.project-gallery a {
}

.project-gallery figure {
  display: block;
  border-radius: 20px;
}

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

.project-gallery-image {
  position: relative;
}

.project-gallery-content {
  padding: 20px;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background-color: var(--white-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.project-gallery-content h5 {
  color: var(--default-color);
}
.project-gallery-content h4 {
  margin: 10px 0;
}
.project-gallery-content p {
  margin-bottom: 0;
}

/******************************************/
/****   	 07. Our Process css  	   ****/
/******************************************/

.step-item {
  text-align: center;
  padding: 20px 40px 0;
  position: relative;
}

.step-header {
  margin-bottom: 30px;
  position: relative;
}

.step-item.step-1 .step-header:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 212px;
  height: 46px;
  background: url(../images/process/icon-step1.svg) no-repeat center center;
  background-size: 100% auto;
  transform: translate(156px, -50%);
}

.step-item.step-2 .step-header:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 212px;
  height: 46px;
  background: url(../images/process/icon-step2.svg) no-repeat center center;
  background-size: 100% auto;
  transform: translate(156px, -50%);
}

.step-header .step-icon {
  width: 130px;
  height: 130px;
  position: relative;
  background: var(--accent-color);
  margin: 0 auto;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-header .step-icon figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.step-header .step-icon figure img {
  position: relative;
  width: 55px;
  z-index: 1;
}

.step-header .step-icon figure:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 30px;
  transform: translate(-100%, 100%);
  transition: all 0.3s ease-out;
}

.step-item:hover .step-icon figure:before {
  transform: translate(0);
}

.step-header .step-no {
  display: block;
  height: 48px;
  width: 48px;
  background: var(--accent-color);
  border-radius: 30px;
  font-family: var(--accent-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 40px;
  position: absolute;
  top: -20px;
  right: -20px;
  border: 4px solid var(--white-color);
}

.step-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

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

.our-process-layout2 {
  background: var(--secondary-color);
  padding: 100px 0;
}

.process-item2 {
  background: var(--white-color);
  max-width: 310px;
  margin: 20px auto 0;
  aspect-ratio: 1/1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.process-item2 .process-step {
  width: 100px;
  height: 100px;
  position: relative;
  background: var(--accent-color);
  border: 4px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--white-color);
  font-family: var(--accent-font);
  font-weight: 700;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  right: -20px;
  overflow: hidden;
}

.process-item2 .process-step:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease-out;
}

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

.process-item2:hover .process-step:before {
  top: 0;
  left: 0;
}

.process-item2 .process-content {
  text-align: center;
  padding: 0 30px;
}

.process-item2 .process-content .icon-box {
  margin-bottom: 25px;
}

.process-item2 .process-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.process-item2 .process-content p {
  margin: 0;
}

.our-process-layout2 .process-item2:after {
  content: "";
  display: block;
  width: 84px;
  height: 84px;
  background: url(../images/icon-step-right.svg) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}

.our-process-layout2 .row .col-lg-4:last-child .process-item2:after {
  display: none;
}

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

.footer-main {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  background-color: var(--accent-color);
}

.footer-main::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url("../images/section-bg-leaf-1.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  width: 194px;
  height: 224px;
  transition: all 0.5s ease-in-out;
  animation: leafimg-1 3s infinite alternate;
  z-index: 0;
}

.footer-main::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  background: url("../images/section-bg-leaf-8.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  width: 148px;
  height: 160px;
  transition: all 0.5s ease-in-out;
  animation: leafimg-2 3s infinite alternate;
  z-index: 0;
}

.about-footer {
  margin-right: 80px;
}

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

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

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

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

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

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

.footer-links p a {
  color: inherit;
  color: var(--white-color);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

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

.footer-contact-item .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  margin-right: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

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

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

.footer-contact-content h3 {
  text-transform: initial;
  margin-bottom: 5px;
}

.footer-contact-info-item {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-links span {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--white-color);
}

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

.footer-social-links ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

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

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

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

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

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

.page-contact-us {
  background-color: var(--white-color);
}

.contact-info-list {
  background-color: var(--bg-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  padding: 30px;
  margin-bottom: 30px;
}

/* .contact-info-item {
  position: relative;
  width: calc(50% - 25px);
} */

/* .contact-info-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  height: 100%;
  width: 1px;
  background-color: var(--divider-color);
} */

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

.contact-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info-header .icon-box {
  margin-right: 10px;
}

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

.contact-info-title {
  width: calc(100% - 34px);
}

.contact-info-title h3 {
  font-size: 20px;
  text-transform: capitalize;
}

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

.contact-info-body p a {
  color: inherit;
  transition: all 0.3s;
}

.contact-info-body p a:hover {
  color: var(--primary-color);
}

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

.location-info-list .contact-info-item {
  width: calc(50% - 15px);
  background-color: var(--bg-color);
  border-radius: 20px;
  padding: 30px;
}

.location-info-list .contact-info-item::after {
  display: none;
}

.contact-us-form {
  background-color: var(--bg-color);
  border-radius: 20px;
  /* margin-left: 15px; */
  padding: 40px;
}

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

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

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

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 600px;
  /* border-radius: 20px; */
}

/************************************/
/***      31. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1760px) {
  header.main-header .header-sticky.active {
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .header-social-links {
    display: none;
  }
}

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

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

  .hero-content,
  .hero-image-box {
    width: 100%;
  }

  .hero-content {
    padding: 30px;
  }

  .hero-image,
  .hero-image figure,
  .hero-image img {
    height: auto;
  }

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

@media only screen and (max-width: 991px) {
  body {
    width: 100%;
    margin: 0;
  }

  .btn-default {
    padding: 12px 40px 12px 20px;
  }

  .btn-default::before {
    right: 20px;
    width: 10px;
    height: 10px;
  }

  header.main-header {
    margin: 0;
  }

  .navbar {
    padding: 15px;
    border-radius: 0;
  }

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

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

  .header-btn {
    display: none;
  }

  .bg-section {
    margin: 30px auto 0;
    border-radius: 0px;
  }

  section {
    padding: 40px 0;
  }

  .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-title h1 {
    font-size: 36px;
  }

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

  .section-title h3 {
    font-size: 16px;
  }

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

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

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

  .hero {
    margin: 30px auto;
  }

  .hero .container-fluid {
    /* padding: 0 15px; */
  }

  .hero.hero-bg-image .hero-box {
    padding: 80px 15px;
  }

  .hero-body {
    gap: 20px 30px;
    margin-top: 30px;
  }

  /* Page Header */
  .page-header {
    padding: 80px 0;
  }

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

  .about-us-counter-item .icon-box {
    margin: 0 0 10px 0;
  }

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

  .about-us-counter-content h3 {
    font-size: 26px;
  }

  .about-us-counter-content p {
    font-size: 14px;
  }

  .about-us-counter-item .icon-box {
    margin-right: 10px;
  }

  /* Work Process */

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

  .step-item {
    padding-left: 0;
    padding-right: 0;
  }

  .step-item.step-1 .step-header:after,
  .step-item.step-2 .step-header:after {
    display: none;
  }

  .step-header .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

  .step-header .step-icon figure,
  .step-header .step-icon figure:before {
    border-radius: 20px;
  }

  .step-header .step-icon img {
    max-width: 50%;
  }

  .step-header .step-no {
    width: 38px;
    height: 38px;
    font-size: 18px;
    line-height: 30px;
  }

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

  .process-item2 {
    margin-bottom: 30px;
  }

  /* Why Choose Us */
  .why-choose-item {
    margin-bottom: 30px;
  }
  .why-choose-item:after {
    transform: translate(25px, 50px);
  }
  .why-choose-item-no {
    width: 50px;
    height: 50px;
  }
  .why-choose-item-content {
    width: calc(100% - 65px);
  }

  /* Contact Us */
  .location-info-list .contact-info-item {
    padding: 20px;
  }

  .contact-info-list {
    padding: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  /* Fotter */
  .about-footer {
    margin: 0 0 0 0;
  }

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

  .footer-newsletters-form .form-group .form-control {
    padding: 8px 10px;
  }

  .footer-contact-item {
    margin-bottom: 20px;
  }

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

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

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

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

  .footer-social-links ul li {
    margin-right: 8px;
  }
}

@media only screen and (max-width: 767px) {
  section {
    padding: 30px 0;
  }
  .section-row {
    margin-bottom: 30px;
  }

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

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

  .hero-content {
    padding: 30px 20px;
  }

  .navbar-brand img {
    width: 170px;
  }

  .hero-body {
    gap: 20px;
    margin-top: 30px;
  }

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

  .hero-counter {
    max-width: 180px;
    border-width: 10px;
  }

  .hero-counter::before {
    top: -30px;
    right: 0;
  }

  .hero-counter::after {
    bottom: 0;
    left: -30px;
  }

  .hero-counter-box {
    padding: 15px;
  }

  .hero-counter-content {
    margin-bottom: 10px;
  }

  .hero-counter-content h2 {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .hero-counter-content p {
    font-size: 12px;
  }

  .about-us-counter-item {
    padding: 15px;
  }

  /* Page Header */
  .page-header-box h1 {
    font-size: 26px;
  }

  /* Mission & Vision */

  .mission-vision-box {
    padding: 25px 15px;
  }
  /* Why Choose Us */
  .why-choose-item:after {
    transform: translate(20px, 40px);
  }

  .why-choose-item-no {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .why-choose-item-no h3 {
    font-size: 18px;
  }

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

  /* Contact Us */
  .contact-us-form {
    padding: 20px;
  }

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

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

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

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

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

  .footer-copyright {
    flex-direction: column;
    margin-top: 0;
    padding: 15px 0;
  }

  .footer-social-links span {
    font-size: 18px;
  }
}

.sticky-icon {
  z-index: 9999;
  position: fixed;
  bottom: 15%;
  right: 0%;
  width: 220px;
  display: flex;
  flex-direction: column;
}
.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 22px;
  /* font-family: "Oswald", sans-serif; */
  transition: all 0.8s;
}
.sticky-icon a:hover {
  color: #fff;
  transform: translate(0px, 0px);
}
.sticky-icon a:hover i {
  transform: rotate(360deg);
}
/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.sticky-icon .Facebook {
  background-color: #2c80d3;
  color: #fff;
}

.sticky-icon .Phone {
  background-color: #2196f3;
  color: #fff;
}

.sticky-icon .Twitter {
  background-color: #53c5ff;
  color: #fff;
}

.sticky-icon .Instagram {
  background-color: #fd1d1d;
  color: #fff;
}

.sticky-icon .Google {
  background-color: #d34836;
  color: #fff;
}
.sticky-icon a i {
  background-color: #fff;
  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}
.sticky-icon a i.fa-facebook-f {
  background-color: #fff;
  color: #2c80d3;
}

.sticky-icon a i.fa-google-plus-g {
  background-color: #fff;
  color: #d34836;
}

.sticky-icon a i.fa-instagram {
  background-color: #fff;
  color: #fd1d1d;
}

.sticky-icon a i.fa-phone {
  background-color: #fff;
  color: #2196f3;
}

.sticky-icon a i.fa-youtube {
  background-color: #fff;
  color: #fa0910;
}

.sticky-icon a i.fa-twitter {
  background-color: #fff;
  color: #53c5ff;
}
.sticky-icon .fas fa-shopping-cart {
  background-color: #fff;
}
.sticky-icon #myBtn {
  height: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align: center;
  padding: 10px;
  text-align: center;
  line-height: 40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.sticky-icon .fa-arrow-circle-up {
  font-size: 30px;
}

.sticky-icon #myBtn:hover {
  background-color: #555;
}

@media (max-width: 767px) {
  .sticky-icon a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .sticky-icon a {
    padding: 8px;
    font-size: 15px;
    transform: translate(175px, 0px);
  }
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 9999;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 40px;
  left: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .btn-whatsapp-pulse-border {
    bottom: 20px;
  }

  .btn-whatsapp-pulse {
    font-size: 30px;
    padding: 30px;
  }
}
