
/************ TABLE OF CONTENTS ***************
01 Default CSS
02 Preloader CSS
03 Button CSS
04 Header CSS
05 OffCanvas CSS
06 Footer CSS
07 Topbar CSS
08 Breadcrumb CSS
09 Hero CSS
10 Camping CSS
11 Contact CSS
12 Blog CSS
13 Event CSS
14 Partners CSS
15 Contact Us CSS
16 Testimonial CSS
17 Completed Project CSS
18 What We Do CSS
19 Volunteer CSS
20 Why Us CSS
21 Service CSS
22 Dust Recycling CSS
23 Faq CSS
24 About Us CSS
25 Latest Work CSS
26 News Letter CSS
27 Company Achievements CSS
28 Services We Offer CSS
29 Work Process CSS
30 Make Donate CSS
31 Donate Us CSS
32 We Are Friends CSS
33 Details Content CSS
34 Details Sidebar CSS
35 Camping Donation CSS
36 Donations CSS
37 Blog Standard CSS
************ TABLE OF CONTENTS ***************/
:root {
 --theme-color: #204078;
  --theme-shade-color: #99EF68;
  --theme-color-2: #f47b20;
  --theme-color-3: #f47b20;
  --title-color: #15161C;
  --body-color: #868681;
  --gray-color: #383838;
  --warning-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --light-color: #f5f5f5;
  --dark-color: #15161C;
  --white-color: #fff;
  --black-color: #000;
  --hr-color: #000;
  --outfit-font: "Outfit", sans-serif;
  --dm-sans-font: "DM Sans", sans-serif;
  --albert-sans-font: "Albert Sans", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --body-fz: 16px;
}

/* 01 Default CSS */
html, body {
  scroll-behavior: smooth !important;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: var(--theme-color-2);
}

body {
  color: var(--body-color);
  font-size: var(--body-fz);
  font-family: var(--outfit-font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: var(--title-color);
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--outfit-font);
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: var(--hr-color);
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: var(--gray-color);
  cursor: pointer;
  font-size: var(--body-fz);
  font-weight: 400;
}

*::-moz-selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: var(--theme-color);
  background: var(--theme-color);
}
.btn-theme:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: var(--gray-color);
}

.bg-white {
  background: #fff;
}

.bg-cream {
  background: #f8f7f0;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: var(--theme-color);
}
.bg-theme-3 {
  background: var(--theme-color-3);
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: var(--gray-color);
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: var(--theme-color);
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

.overflow-x-clip {
  overflow-x: clip;
}

.overflow-y-clip {
  overflow-y: clip;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: inherit;
  line-height: inherit;
}

.common-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .common-subtitle {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 14px;
  }
}
.common-subtitle.style-color-white {
  color: var(--white-color);
}
.common-subtitle.style-color-2 {
  color: var(--theme-color-2);
}
.common-subtitle.style-color-3 {
  color: var(--theme-color-3);
}
.common-subtitle.m-b-0 {
  margin-bottom: 0;
}

.common-title {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .common-title {
    margin-bottom: 20px;
  }
}
.common-title h2 {
  font-weight: 600;
  font-size: 52px;
  line-height: 60px;
  color: var(--title-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .common-title h2 {
    font-size: 44px;
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .common-title h2 {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-title h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .common-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.common-title.style-color-white h2 {
  color: var(--white-color);
}
.common-title.style-color-light h2 {
  color: var(--light-color);
}
.common-title.style-color-2 h2 {
  color: var(--theme-color-2);
}
.common-title.style-color-3 h2 {
  color: var(--theme-color-3);
}
.common-title.m-b-0 {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1392px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}

/*====================================================================
    Components
====================================================================*/
/* 02 Preloader CSS */
.dark #preloader {
  background-color: #232323;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: 999999;
}

.preloader {
  width: 200px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader img {
  width: 100%;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background: var(--theme-color-3);
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/* 03 Button CSS */
.e-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  color: var(--white-color);
  padding: 16px 25px;
  background: var(--theme-color);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn {
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    padding: 5px 5px 5px 20px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn {
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    padding: 5px 5px 5px 20px;
  }
}
.e-primary-btn:before {
  content: "";
  position: absolute;
  left: -110%;
  top: 50%;
  width: 200%;
  height: 200%;
  background: var(--theme-color-3);
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 200px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.e-primary-btn.has-icon {
  padding: 5px 5px 5px 25px;
  gap: 15px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn.has-icon {
    gap: 10px;
  }
}
.e-primary-btn .icon-wrap {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: var(--theme-color-3);
  color: var(--white-color);
  border-radius: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
/* @media (max-width: 1399px) {
  .e-primary-btn .icon-wrap {
    width: 40px;
    height: 40px;
  }
} */
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn .icon-wrap {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn .icon-wrap {
    font-size: 15px;
  }
}
.e-primary-btn .icon-wrap .icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 15px;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn .icon-wrap .icon {
    width: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .e-primary-btn .icon-wrap .icon {
    width: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn .icon-wrap .icon {
    width: 10px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn .icon-wrap .icon {
    width: 10px;
  }
}
.e-primary-btn .icon-wrap .icon i {
  flex: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.e-primary-btn.is-hover-white:before {
  background: var(--white-color);
}
.e-primary-btn.is-hover-white:hover {
  color: var(--theme-color-3);
}
.e-primary-btn.is-hover-white:hover .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.e-primary-btn:hover {
  color: var(--white-color);
}
.e-primary-btn:hover:before {
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.e-primary-btn:hover .icon-wrap {
  background: var(--white-color);
  color: var(--theme-color-3);
}
.e-primary-btn:hover .icon-wrap .icon i {
  transform: translateX(100%);
}
.e-primary-btn.has-small .icon-wrap {
  width: 34px;
  height: 34px;
}
@media (max-width: 991px) {
  .e-primary-btn.has-small .icon-wrap {
    width: 40px;
    height: 40px;
  }
}

/* 04 Header Css */
.logo-wrap img {
  width: 100%;
  max-width: 165px;
}

.logo-wrap-2 {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 16px 0;
  padding: 20px 52px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1399px) {
  .logo-wrap-2 {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .logo-wrap-2 {
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .logo-wrap-2 {
    padding: 15px 20px;
  }
}
.logo-wrap-2 img {
  max-width: 165px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .logo-wrap-2 img {
    max-width: 125px;
  }
}

.header-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-bottom {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-bottom {
    padding: 10px 0;
  }
}

.header-bottom-2 {
  padding-left: 85px;
  padding-right: 85px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-bottom-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bottom-2 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}

.header-bottom-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom-layout-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left {
    gap: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left {
    gap: 10px;
  }
}

.header-left-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left-2 {
    gap: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-2 {
    gap: 20px;
  }
}

.header-left-4 {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left-4 {
    gap: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-4 {
    gap: 10px;
  }
}

.header-left-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 69%;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-3 {
    width: 66%;
  }
}

.header-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 16px 16px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-middle {
    padding: 10px 12px;
  }
}
.header-middle .header-info-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-right {
    gap: 10px;
  }
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  display: inline-block;
}
.main-menu ul li:hover a {
  /* background: rgba(0, 69, 64, 0.1); */
  border-color: var(--theme-color-2);
}
.main-menu ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--black-color);
  border-radius: 0;
  border-bottom: 1px solid #fff;
  gap: 5px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu ul li a {
    padding: 5px 8px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li a {
    padding: 4px 7px;
    font-size: 15px;
  }
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 1300px;
  }
}
.main-menu ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu ul .has-dropdown > a:after {
  content: "\f107";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
  content: "\f068";
}
.main-menu ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 150%;
}
.main-menu ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 250px;
  background: #fff;
  /* border-radius: 10px; */
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu ul .has-dropdown .sub-menu li:before {
  display: none;
}
.main-menu ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 15px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
}
.main-menu ul .has-dropdown .sub-menu li:last-child a{
    border-bottom: 0;
}
.main-menu ul .has-dropdown .sub-menu li a:hover {
  color: #fff;
  background: var(--theme-color-2);
}

.main-menu-2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-2 ul li {
  display: inline-block;
}
.main-menu-2 ul li:hover a {
  color: var(--theme-color-2);
  background: rgba(217, 217, 217, 0.16);
}
.main-menu-2 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--white-color);
  border-radius: 100px;
  gap: 5px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu-2 ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-2 ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu-2 ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu-2 ul .has-dropdown > a:after {
  content: "\f0d7";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-2 ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
}
.main-menu-2 ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu-2 ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-2 ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu-2 ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu-2 ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--theme-color-2);
}

.main-menu-3 {
  padding: 3px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}
.main-menu-3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-3 ul li {
  display: inline-flex;
  align-items: center;
}
.main-menu-3 ul li:hover a {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}
.main-menu-3 ul li:first-child:before {
  width: 0;
  margin: 0;
}
.main-menu-3 ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin-right: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
.main-menu-3 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--white-color);
  border-radius: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu-3 ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-3 ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu-3 ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu-3 ul .has-dropdown > a:after {
  content: "+";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-3 ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
  content: "\f068";
}
.main-menu-3 ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu-3 ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-3 ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu-3 ul .has-dropdown .sub-menu li:before {
  display: none;
}
.main-menu-3 ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu-3 ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--theme-color-2);
}

.header-info {
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info {
    gap: 5px;
  }
}
.header-info .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(0, 69, 64, 0.1);
  backdrop-filter: blur(4.1px);
  color: var(--theme-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-icon {
    font-size: 16px;
    /* width: 40px;
    height: 40px; */
  }
}
.header-info .header-info-icon-2 {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #204078, #007de9);
    box-shadow: 0 10px 25px rgb(34 108 237 / 58%);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    gap: 10px;
}
.header-info .header-info-icon-2 .header-info-content{
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #204078, #007de9);
    height: 40px;
    border-radius: 50px;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.header-info .header-info-icon-2:hover .header-info-content{
  right: 100%;
  opacity: 1;
  visibility: visible;
}
/* .header-info .header-info-icon-2:hover{
  transform:translateY(-3px);
    background:linear-gradient(135deg,#007de9,#204078);
    box-shadow:0 18px 35px rgb(34 108 237 / 58%);
} */
.header-info .header-info-icon-2 i{
  animation: ring 1.2s infinite;
}
@keyframes ring{
    0%,100%{transform:rotate(0deg);}
    10%{transform:rotate(25deg);}
    20%{transform:rotate(-20deg);}
    30%{transform:rotate(20deg);}
    40%{transform:rotate(-15deg);}
    50%{transform:rotate(10deg);}
    60%{transform:rotate(0deg);}
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-icon-2 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-icon-2 {
    font-size: 16px;
    /* width: 40px;
    height: 40px; */
  }
}
.header-info .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(56, 56, 56, 0.8);
  font-weight: 700;
}
.header-info .header-info-content p {
    font-family: var(--outfit-font);
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
}


.header-info .header-info-content p a {
  color: var(--theme-color-3);
}
.header-info .header-info-content p a:hover {
  color: var(--theme-color);
}

.header-info-2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 {
    gap: 10px;
  }
}
.header-info-2 .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  color: #f8f7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-2 .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info-2 .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.header-info-2 .header-info-content p {
  font-family: var(--outfit-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--white-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-2 .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 .header-info-content p {
    font-size: 16px;
  }
}
.header-info-2 .header-info-content p a {
  color: var(--white-color);
}
.header-info-2 .header-info-content p a:hover {
  color: var(--theme-color-2);
}

.header-info-3 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 {
    gap: 10px;
  }
}
.header-info-3 .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  color: var(--theme-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-3 .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info-3 .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.header-info-3 .header-info-content p {
  font-family: var(--outfit-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--white-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-3 .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 .header-info-content p {
    font-size: 16px;
  }
}
.header-info-3 .header-info-content p a {
  color: var(--white-color);
}
.header-info-3 .header-info-content p a:hover {
  color: var(--theme-color-2);
}

.header-bar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(0, 69, 64, 0.1);
  backdrop-filter: blur(4.1px);
  /*border-radius: 100%;*/
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar {
    width: 45px;
    height: 45px;
  }
}
.header-bar .bar {
  background: var(--theme-color-3);
  width: 20px;
  height: 1.6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar .bar {
    width: 18px;
  }
}
.header-bar .bar-1 {
  margin-top: -6px;
}
.header-bar .bar-3 {
  margin-top: 6px;
}
.header-bar.active {
  background: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.header-bar.active .bar {
  background: var(--white-color);
}
.header-bar.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar.active .bar-2 {
  left: 200%;
}
.header-bar.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-bar-2 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  border-radius: 100%;
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2 {
    width: 45px;
    height: 45px;
  }
}
.header-bar-2 .bar {
  background: var(--white-color);
  width: 20px;
  height: 1.6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2 .bar {
    width: 18px;
  }
}
.header-bar-2 .bar-1 {
  margin-top: -6px;
}
.header-bar-2 .bar-3 {
  margin-top: 6px;
}
.header-bar-2.active {
  background: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.header-bar-2.active .bar {
  background: var(--white-color);
}
.header-bar-2.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar-2.active .bar-2 {
  left: 200%;
}
.header-bar-2.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-bar-3 {
  width: 81px;
  height: 81px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 0 16px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
@media (max-width: 767px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
.header-bar-3 .bar {
  background: var(--white-color);
  width: 22px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3 .bar {
    width: 18px;
  }
}
.header-bar-3 .bar-1 {
  margin-top: -6px;
}
.header-bar-3 .bar-3 {
  margin-top: 6px;
}
.header-bar-3.active {
  background: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.header-bar-3.active .bar {
  background: var(--white-color);
}
.header-bar-3.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar-3.active .bar-2 {
  left: 200%;
}
.header-bar-3.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-divider-bar {
  width: 30px;
  height: 1.6px;
  opacity: 0.15;
  border: 1px solid #004540;
  transform: rotate(90deg);
}

.header-section {
  position: relative;
  z-index: 99;
}

.header-section-1 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.header-section-3 {
  position: relative;
  z-index: 10;
}
.header-section-3 .e-primary-btn {
  background: var(--theme-color-3);
  border: none;
  color: var(--theme-color-2);
}
.header-section-3 .e-primary-btn:before {
  background: var(--theme-color-2);
}
.header-section-3 .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.header-section-3 .e-primary-btn:hover {
  color: var(--theme-color-3);
}
.header-section-3 .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}


.header-section-4 .e-primary-btn .icon-wrap {
  color: var(--theme-color-2);
}
.header-section-4 .e-primary-btn:hover .icon-wrap {
  color: var(--theme-color-3);
}

.header-area{
position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    transition: all 0.5s;
}
.sticky-header {    
    box-shadow: -1px 1px 20px 0px #0a0a0a;
    top:0;
}


.header-section-5 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-section-5 .e-primary-btn .icon-wrap {
  color: var(--theme-color-2);
}
.header-section-5 .e-primary-btn:hover .icon-wrap {
  color: var(--theme-color-3);
}

/* 05 OffCanvas Css */
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar.active {
  visibility: visible;
  opacity: 1;
}
.off-canvas-sidebar .off-canvas-sidebar-close {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--theme-color-3);
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  border-radius: 0 0 4px 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar .off-canvas-sidebar-close i {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar .off-canvas-sidebar-close:hover {
  background: var(--error-color);
}
.off-canvas-sidebar .off-canvas-sidebar-close:hover i {
  transform: rotate(180deg);
}
.off-canvas-sidebar .off-canvas-logo img {
  width: 100%;
  max-width: 165px;
}

.off-canvas-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: pointer;
}

.off-canvas-sidebar-body {
  position: fixed;
  right: -100%;
  top: 0;
  width: 400px;
  background: #fff;
  z-index: 30;
  padding: 24px;
  padding-top: 70px;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .off-canvas-sidebar-body {
    max-width: 100%;
  }
}
.off-canvas-sidebar-body.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.off-canvas-sidebar-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.off-canvas-sidebar-body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.off-canvas-sidebar-body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.off-canvas-sidebar-body::-webkit-scrollbar-thumb:active {
  background: var(--theme-color-2);
}

.off-canvas-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-color);
}

.off-canvas-thumb img {
  width: 100%;
  border-radius: 10px;
}

.off-canvas-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.off-canvas-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.off-canvas-contact-item:hover .icon {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}
.off-canvas-contact-item .icon {
  width: 50px;
  height: 50px;
  background: var(--theme-color-3);
  color: var(--white-color);
  font-size: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-contact-item .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--title-color);
  margin-bottom: 4px;
}
.off-canvas-contact-item .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
}

.off-canvas-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.off-canvas-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white-color);
  background: var(--theme-color-3);
  border-radius: 50px;
}
.off-canvas-social-links a:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}

.off-canvas-menubar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar.active {
  visibility: visible;
  opacity: 1;
}
.off-canvas-menubar .off-canvas-head {
  padding: 0 0 0 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
}
.off-canvas-menubar .off-canvas-menubar-close {
  padding: 20px 30px 20px 30px;
  border-left: 1px solid #E5E5E5;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar .off-canvas-menubar-close i {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar .off-canvas-menubar-close:hover {
  color: var(--white-color);
  background: var(--error-color);
}
.off-canvas-menubar .off-canvas-menubar-close:hover i {
  transform: rotate(180deg);
}
.off-canvas-menubar .off-canvas-logo img {
  width: 100%;
  max-width: 165px;
}

.off-canvas-menubar-body {
  position: fixed;
  left: -100%;
  top: 0;
  width: 400px;
  background: #fff;
  z-index: 30;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .off-canvas-menubar-body {
    max-width: 100%;
  }
}
.off-canvas-menubar-body.active {
  left: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.off-canvas-menubar-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.off-canvas-menubar-body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.off-canvas-menubar-body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.off-canvas-menubar-body::-webkit-scrollbar-thumb:active {
  background: var(--theme-color-2);
}

.off-canvas-menu {
  overflow-y: scroll;
  /*max-height: calc(100vh - 200px);*/
  text-align: left;
  padding: 20px 30px 40px;
}
.off-canvas-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.off-canvas-menu ul li {
  display: block;
  border-bottom: 1px solid #fdedf1;
}
.off-canvas-menu ul li:hover > a {
  color: var(--theme-color-3);
}
.off-canvas-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  padding-left: 0px;
}
.off-canvas-menu ul .has-dropdown > a:after {
  content: "\f078";
  font-family: var(--icon-font);
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menu ul .has-dropdown.active > a {
  color: var(--theme-color-3);
}
.off-canvas-menu ul .has-dropdown.active > a:after {
  transform: translateY(-50%) rotate(180deg);
}
.off-canvas-menu ul .has-dropdown li {
  padding-left: 20px;
}
.off-canvas-menu ul .has-dropdown li:first-child {
  border-top: 1px solid #fdedf1;
}
.off-canvas-menu ul .has-dropdown li:last-child {
  border-bottom: 0;
}
.off-canvas-menu ul .has-dropdown li a {
  font-size: 14px;
  padding: 10px 0;
}
.off-canvas-menu ul .has-dropdown .sub-menu {
  display: none;
}

.off-canvas-menubar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: pointer;
}

/* 06 Footer Css */
.footer-section {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    position: relative;
    padding: 40px 0 150px;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(2 2 2) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}
.white-footer.footer-section::after{
  background: linear-gradient(to bottom, #ffffff 1%, rgba(255, 255, 255, 0.87) 18%, rgba(255, 255, 255, 0.64) 37%, rgba(255, 255, 255, 0) 94%);
}

.footer-bottom-layout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 24px 3px 3px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}
.footer-bottom-layout .top-btn {
  border-radius: 100px;
  gap: 5px;
  padding: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .top-btn {
    padding: 8px 14px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .top-btn {
    position: absolute;
    padding: 8px 14px;
    bottom: -60px;
  }
}
.footer-bottom-layout .footer-copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
}
.footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-layout .footer-bottom-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--theme-color-2);
}

.footer-widget .w-title {
    font-family: var(--outfit-font);
    font-weight: 400;
    font-size: 21px;
    line-height: 36px;
    color: var(--white-color);
    margin-bottom: 12px;
}
.white-footer .footer-widget .w-title{
  color: var(--title-color);
}
@media (max-width: 1399px) {
  .footer-widget .w-title {
    font-size: 20px;
  }
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li {
  display: block;
  margin-bottom: 10px;
}
.footer-widget ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
}
.white-footer .footer-widget ul li a{
  color: rgba(0, 0, 0, 0.9);
}
@media (max-width: 1399px) {
  .footer-widget ul li a {
    font-size: 16px;
  }
}
.footer-widget ul li a:after {
  content: "\e09f";
  font-family: var(--icon-font);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-left: 5px;
  line-height: 1;
}
.footer-widget ul li a:hover {
  color: var(--theme-color-2);
}
.footer-widget ul li a:hover:after {
  margin-left: 0;
  opacity: 1;
}

.about-widget .footer-logo {
  margin-bottom: 25px;
}
.about-widget .footer-logo img {
  max-width: 165px;
}
.about-widget .text p {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--white-color);
  margin-bottom: 15px;
}
.white-footer .about-widget .text p{
     color: var(--title-color);
}

@media (max-width: 1399px) {
  .about-widget .text p {
    font-size: 16px;
  }
}
.about-widget .info p {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 4px;
}
@media (max-width: 1399px) {
  .about-widget .info p {
    font-size: 16px;
  }
}
.about-widget .info p span {
  color: var(--theme-color-2);
}
.about-widget .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.about-widget .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255,1);
    background: rgb(253,165,2,0.8);
    border-radius: 50px;
}
.about-widget .social-links a:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}

.subscribe-form .input-wrap {
  margin-bottom: 15px;
}
.subscribe-form .input-wrap input {
    width: 100%;
    height: 55px;
    background: rgb(0 0 0 / 50%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    border-radius: 50px;
    padding: 10px 20px;
    font-family: var(--albert-sans-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--white-color);
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.subscribe-form .input-wrap input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:focus {
  border-color: var(--theme-color-2);
}
.subscribe-form .input-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus:-moz-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}
.subscribe-form .input-button button {
  border: 0;
}
.subscribe-form .input-checkbox {
  margin-top: 20px;
}
.subscribe-form .input-checkbox input {
  display: none;
}
.subscribe-form .input-checkbox input:checked + label .check-mark {
  background: var(--theme-color-2);
}
.subscribe-form .input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.subscribe-form .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-form .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--theme-color-2);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.subscribe-form .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-3);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.subscribe-form-2 .input-wrap {
  margin-bottom: 15px;
}
.subscribe-form-2 .input-wrap input {
  width: 100%;
  height: 66px;
  background: rgba(0, 69, 64, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  border-radius: 53px;
  padding: 10px 24px;
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  color: var(--white-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.subscribe-form-2 .input-wrap input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:focus {
  border-color: var(--theme-color-2);
}
.subscribe-form-2 .input-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus:-moz-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}
.subscribe-form-2 .policy-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.subscribe-form-2 .policy-wrap .input-button button {
  border: 0;
}
.subscribe-form-2 .policy-wrap .input-checkbox {
  margin-bottom: 0;
}
.subscribe-form-2 .policy-wrap .input-checkbox input {
  display: none;
}
.subscribe-form-2 .policy-wrap .input-checkbox input:checked + label .check-mark {
  background: var(--theme-color-2);
}
.subscribe-form-2 .policy-wrap .input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.subscribe-form-2 .policy-wrap .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-form-2 .policy-wrap .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--theme-color-2);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.subscribe-form-2 .policy-wrap .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-3);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.footer-section-2 .footer-widget .w-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 0;
}
.footer-section-2 .footer-bottom {
  border-radius: 12px;
  background-color: var(--theme-color-2);
  margin: 0 50px;
  padding: 18px 0;
}
@media (max-width: 1700px) {
  .footer-section-2 .footer-bottom {
    margin: 0 20px;
  }
}
.footer-section-2 .footer-bottom .footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-copyright {
  color: var(--theme-color-3);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li a {
  color: var(--theme-color-3);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--white-color);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li:before {
  width: 0;
  margin: 0;
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li:last-child:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: inline-flex;
  margin: 0 20px;
  background: var(--theme-color-3);
  opacity: 0.5;
}

.get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
    gap: 8px;
  }
}
.get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.white-footer .get-in-touch .footer-address .icon,
.white-footer .get-in-touch .email .icon,
.white-footer  .get-in-touch .phone .icon{
  background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
    width: 40px;
    height: 40px;
  }
}
.get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
  color: var(--theme-color-2);
  font-size: 20px;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
    font-size: 16px;
  }
}
.get-in-touch .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
  margin-bottom: 4px;
}
.white-footer .get-in-touch .text h6{
  color: var(--title-color);
}
.get-in-touch .text p {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}
.get-in-touch .text p a{
  color: inherit;
}
.white-footer .get-in-touch .text p{
  color: rgba(0, 0, 0, 0.9);
}

.footer-section-3 {
  padding: 80px 70px 86px 80px;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .footer-section-3 {
    padding: 40px 20px;
  }
}

.footer-bottom-2 {
  border-radius: 0;
  background-color: transparent;
  margin: 0;
  padding: 40px 0;
}
.footer-bottom-2 .footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .footer-bottom-2 .footer-bottom-layout {
    flex-direction: column;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-copyright {
  color: var(--theme-color-3);
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a {
  color: var(--theme-color-3);
}
@media (max-width: 767px) {
  .footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a {
    font-size: 14px;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--theme-color-2);
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
  width: 0;
  margin: 0;
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li i {
  color: var(--theme-color-3);
  margin-left: 10px;
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: inline-flex;
  margin: 0 20px;
  background: var(--theme-color-3);
  opacity: 0.5;
}
@media (max-width: 767px) {
  .footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  width: 0;
  margin: 0;
}
.footer-bottom-3 {
    padding: 20px 40px;
    background: linear-gradient(360deg, rgb(2 2 2)0%, rgba(255, 255, 255, 0) 100%);
}
.white-footer .footer-bottom-3{
  background: linear-gradient(360deg, rgb(255, 255, 255)0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 767px) {
  .footer-bottom-3 {
    padding: 20px 0;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 {
  align-items: center;
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
  display: flex;
  background: transparent;
  padding: 0;
  border: none;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-3 .footer-bottom-layout-2 {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-3 .footer-bottom-layout-2 {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-copyright {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: var(--light-color);
}
.white-footer .footer-bottom-3 .footer-bottom-layout-2 .footer-copyright{
  color: var(--title-color);
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
  width: 0;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
  content: "";
  display: inline-flex;
  margin: 0 20px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  width: 2px;
  height: 14px;
}
.white-footer .footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before{
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--white-color);
}
.white-footer .footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li a{
  color: var(--title-color);
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li a:hover {
  color: var(--body-color);
}

.footer-section-5 {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-section-5::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 69, 64, 0.9) 0%, rgba(0, 51, 47, 0.95) 86.79%, rgba(0, 47, 43, 0.9) 107.82%);
}
.footer-section-5 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1700px) {
  .footer-section-5 .shape-1 {
    width: 80%;
  }
}
.footer-section-5 .shape-2 {
  position: absolute;
  bottom: 23%;
  right: 8%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .footer-section-5 .shape-2 {
    right: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section-5 .shape-2 {
    right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 10%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 10%;
  }
}
@media (max-width: 767px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 11%;
  }
}
@media (max-width: 1700px) {
  .footer-section-5 .shape-2 img {
    width: 80%;
  }
}
.footer-section-5 .footer-widget .w-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 0;
}
.footer-section-5 .footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .footer-section-5 .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer-section-5 .footer-top {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.footer-section-5 .footer-top .left {
  max-width: 712px;
  width: 100%;
}
.footer-section-5 .footer-top .left .common-title {
  margin-bottom: 0;
}
.footer-section-5 .footer-top .left .common-title h2 {
  color: var(--light-color);
  margin-bottom: 0;
}
.footer-section-5 .footer-top .right {
  max-width: 460px;
  width: 100%;
}

.adjusted-width {
  width: 20%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .adjusted-width {
    width: 33.33333333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .adjusted-width {
    width: 41.66666667%;
  }
}
@media (max-width: 767px) {
  .adjusted-width {
    width: 100%;
  }
}

/*====================================================================
    Template
====================================================================*/
/* 07 Topbar Css */
.top-bar {
  background: var(--theme-color-2);
  padding-top: 6px;
  padding-bottom: 6px;
}

.top-bar-content {
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.top-bar-content .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .top-bar-content .text-wrap {
    align-items: flex-start;
  }
}

.top-btn {
  padding: 7px 10px;
  border-radius: 6px;
}

.top-btn-2 {
  background: var(--theme-color);
  color: var(--white-color);
}

/* 08 Breadcrumb Css */
/* .breadcrumb-section {
  padding-left: 85px;
  padding-right: 85px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .breadcrumb-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .breadcrumb-section {
    padding-left: 0;
    padding-right: 0;
  }
} */

.breadcrumb-thumb {
  overflow: hidden;
  /* clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%); */
  /* margin-left: -15px; */
  /* border-radius: 0 10px 10px 0; */
  position: relative;
}

.breadcrumb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.breadcrumb-thumb .video-play-btn {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  animation: animate-pulse 3s linear infinite;
}
.breadcrumb-thumb .video-play-btn:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}

.breadcrumb-content {
    background-color: var(--theme-color);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 180px;
    position: relative;
    z-index: 0;
    border-radius: 0;
    overflow: hidden;
    /* margin-right: -15px; */
    /* clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%); */
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .breadcrumb-content {
    /* margin-right: -10px; */
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-content {
    /* margin-right: -10px; */
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-content {
    /* margin-right: -8px; */
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-content {
    /* margin-right: 0; */
    padding: 60px 20px;
    clip-path: none;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-content {
    /* margin-right: 0; */
    padding: 60px 20px;
    clip-path: none;
    border-radius: 10px;
  }
}
.breadcrumb-content .shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.breadcrumb-content:before {
  /* content: ""; */
  height: 100%;
  width: 40px;
  background: var(--theme-color-2);
  position: absolute;
  right: 0;
  top: 0;
  transform: skewX(-5deg);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .breadcrumb-content:before {
    width: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-content:before {
    width: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-content:before {
    width: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-content:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .breadcrumb-content:before {
    display: none;
  }
}

.breadcrumb-nav ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-nav ul {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-nav ul {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-nav ul {
    margin-bottom: 10px;
  }
}
.breadcrumb-nav ul li {
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #F8F7F0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-nav ul li {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-nav ul li {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .breadcrumb-nav ul li {
    font-size: 16px;
    line-height: 1.2;
  }
}
.breadcrumb-nav ul li:after {
  content: "\f178";
  font-family: var(--icon-font);
  font-weight: 400;
  margin-right: 8px;
  margin-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-nav ul li:after {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-nav ul li:after {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-nav ul li:after {
    font-size: 14px;
  }
}
.breadcrumb-nav ul li:last-child:after {
  display: none;
}
.breadcrumb-nav ul li a {
  color: #F8F7F0;
}
.breadcrumb-nav ul li a:hover {
  color: var(--theme-color-2);
}


.title-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.title-divider span{
    width:180px;
    height:1px;
    background:var(--theme-color-3);
}

.title-divider i{
    color:var(--theme-color-3);
    font-size:14px;
}
.breadcrumb-title h2 {
    font-weight: 500;
    font-size: 42px;
    line-height: 60px;
    color: #FFFFFF;
    margin-bottom: 0;
    text-align: center;
}




/*  */
/*  */
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-title h2 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-title h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .breadcrumb-title h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}

/* 09 Hero Css */
.hero-side {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 344px;
  padding-bottom: 244px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-side {
    padding-top: 230px;
    padding-bottom: 170px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-side {
    padding-top: 230px;
    padding-bottom: 170px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-side {
    padding-top: 260px;
    padding-bottom: 200px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-side {
    padding-top: 260px;
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .hero-side {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.hero-side .group-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-side .group-shape-1 img {
  width: 100%;
  height: 100%;
}
.hero-side .s-shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero-side .s-shape-1 {
    height: 20px;
  }
}
.hero-side .s-shape-1 img {
  width: 100%;
}

.hero-content-1 .subtitle {
  padding: 9px 15px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .subtitle {
    margin-bottom: 10px;
  }
}
.hero-content-1 .subtitle span {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: var(--light-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .subtitle span {
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .subtitle span {
    line-height: 20px;
  }
}
.hero-content-1 .title {
  max-width: 774px;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .title {
    max-width: 674px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .title {
    max-width: 474px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .title {
    max-width: 324px;
  }
}
.hero-content-1 .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 82px;
  color: var(--light-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-1 .title h1 {
    font-size: 74px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .title h1 {
    font-size: 68px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .title h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .title h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
.hero-content-1 .title span {
  color: var(--theme-color-2);
}
.hero-content-1 .text {
  max-width: 550px;
  width: 100%;
  margin-bottom: 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .text {
    max-width: 520px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .text {
    max-width: 420px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.hero-content-1 .text p {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .text p {
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .text p {
    font-size: 16px;
    line-height: 1.3;
  }
}
.hero-content-1 .join-us {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}
.hero-content-1 .join-us .e-primary-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(248, 247, 240, 0.6);
  backdrop-filter: blur(9.2px);
  color: var(--white-color);
}
.hero-content-1 .join-us .e-primary-btn:before {
  background: var(--theme-color-2);
}
.hero-content-1 .join-us .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.hero-content-1 .join-us .e-primary-btn:hover {
  border: 1.5px solid var(--theme-color-2);
  color: var(--theme-color-3);
}
.hero-content-1 .join-us .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--white-color);
}
.hero-content-1 .join-us .author-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap {
    gap: 10px;
  }
}
.hero-content-1 .join-us .author-wrap img {
  max-width: 118px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap img {
    max-width: 90px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap img {
    max-width: 90px;
  }
}
.hero-content-1 .join-us .author-wrap .author-info h5 {
  font-weight: 600;
  font-size: 20px;
  color: var(--light-color);
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap .author-info h5 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap .author-info h5 {
    font-size: 18px;
  }
}
.hero-content-1 .join-us .author-wrap .author-info p {
  line-height: 22px;
  color: var(--light-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap .author-info p {
    font-weight: 300;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap .author-info p {
    font-weight: 300;
    line-height: 1;
  }
}

.hero-slider-active-1 {
  position: relative;
  z-index: 1;
}
.hero-slider-active-1 .hero-slider-pagination-1 {
  position: absolute;
  left: auto;
  right: 90px;
  bottom: 50px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    left: 20px;
    right: auto;
    bottom: 20px;
  }
}
.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
}
.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.47);
  border: 1px solid #F8F7F0;
  backdrop-filter: blur(4.75px);
}
.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}
.hero-slider-active-1 .hero-slider-social {
  position: absolute;
  right: 90px;
  bottom: 50%;
  z-index: 99;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transform: translateY(50%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-1 .hero-slider-social {
    display: none;
  }
}
.hero-slider-active-1 .hero-slider-social .text {
  transform: rotate(-180deg);
  width: auto;
  font-size: 18px;
  line-height: 167%;
  color: #FFFFFF;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-slider-active-1 .hero-slider-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-1 .hero-slider-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  color: var(--theme-color-3);
  background: rgba(255, 255, 255, 0.33);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.5px);
}
.hero-slider-active-1 .hero-slider-social .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

.hero-slide-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  /* padding-bottom: 120px; */
  overflow: hidden;
  height: auto;
  /* display: flex; */
  /* align-items: center; */
}
.hero-slide-2 .container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    z-index: 1;
    max-width: 50%;
    min-width: 50%;
}
.hero-slide-2 img{
    width:100%;
}
.hero-slide-2 .s-shape-1 {
  position: absolute;
  right: 17%;
  bottom: 15%;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 {
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}
.hero-slide-2 .s-shape-2 {
  position: absolute;
  left: 13%;
  top: 30%;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
    top: 35%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
.hero-slide-2 .blur-circle {
    position: absolute;
    left: 0;
    top: 0;
    transform: initial;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.2); */
    background: linear-gradient(90deg, rgb(0 16 45) 0%, rgba(255, 255, 255, 0) 100%);
    /* border-radius: 50%; */
    z-index: 0;
}
/* @media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 .blur-circle {
    width: 76%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .blur-circle {
    width: 88%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
    transform: translate(-50%, -55%);
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .blur-circle {
    width: 0;
  }
} */

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-content-2 .title {
  max-width: 700px;
  width: 100%;
  /* margin: 0 auto; */
  /* text-align: center; */
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title {
    max-width: 480px;
  }
}
.hero-content-2 .title h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 70px;
  line-height: 82px;
  color: var(--light-color);
  margin-bottom: 30px;
}
.hero-content-2 .title h1 span{
  color: var(--theme-color-2);
  font-weight: 600;
  /* color: transparent; */
  /* -webkit-text-stroke: 2px var(--theme-color-2); */
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title h1 {
    font-size: 50px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title h1 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .hero-content-2 .title h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
}
.hero-content-2 .title span {
  color: var(--theme-color-2);
}
.hero-content-2 .join-us {
  display: flex;
  /* justify-content: center; */
}
.hero-content-2 .join-us .e-primary-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(248, 247, 240, 0.6);
  backdrop-filter: blur(9.2px);
  color: var(--white-color);
}
.hero-content-2 .join-us .e-primary-btn:before {
  background: var(--theme-color-3);
}
.hero-content-2 .join-us .e-primary-btn .icon-wrap {
  background: var(--theme-color-3);
  color: var(--white-color);
}
.hero-content-2 .join-us .e-primary-btn:hover {
  border: 1.5px solid var(--theme-color-3);
  color: var(--white-color);
}
.hero-content-2 .join-us .e-primary-btn:hover .icon-wrap {
  background: var(--white-color);
  color: var(--theme-color-3);
}

.services-2 {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .services-2 {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .services-2 {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 70%;
    margin: 0 auto 40px;
  }
}
.services-2 .service {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-2 .service i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
@media (max-width: 767px) {
  .services-2 .service i {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}
.services-2 .service p {
  color: var(--light-color);
}

.hero-slider-active-2 {
  position: relative;
  z-index: 0;
}
.hero-slider-active-2 .hero-slider-pagination-2 {
  position: absolute;
  right: 50px;
  left: auto;
  bottom: 50px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #868681;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #F8F7F0;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #FFE175;
}

.hero-slide-3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 219px;
  padding-bottom: 219px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-3 {
    padding-top: 145px;
    padding-bottom: 145px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-3 {
    padding-top: 116px;
    padding-bottom: 175px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-3 {
    padding-top: 80px;
    padding-bottom: 175px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-3 {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .hero-slide-3 {
    padding-top: 60px;
    padding-bottom: 140px;
  }
}
.hero-slide-3 .banner-thumb {
  position: absolute;
  top: -12%;
  right: 0;
  z-index: -1;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-3 .banner-thumb {
    width: 1088px;
    height: 100%;
    top: 0;
    right: -4%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-3 .banner-thumb {
    width: 900px;
    height: 100%;
    top: auto;
    right: -3%;
    bottom: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-3 .banner-thumb {
    width: 600px;
    height: 100%;
    top: auto;
    right: -3%;
    bottom: 0;
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-3 .banner-thumb {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-slide-3 .banner-thumb {
    display: none;
  }
}
.hero-slide-3 .shape-1 {
  height: 100%;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: -2;
  pointer-events: none;
}
.hero-slide-3 .shape-1 img {
  height: 100%;
}
.hero-slide-3 .shape-2 {
  position: absolute;
  top: 0;
  right: 80px;
  z-index: -2;
  pointer-events: none;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-3 {
    width: 52%;
    margin-left: 5%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-3 {
    width: 58%;
    margin-left: 2%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 {
    width: 80%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .hero-content-3 {
    width: 90%;
  }
}
.hero-content-3 .subtitle {
  padding: 0;
  background: transparent;
  gap: 10px;
  backdrop-filter: blur(2px);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .subtitle {
    margin-bottom: 10px;
  }
}
.hero-content-3 .subtitle span {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: var(--light-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .subtitle span {
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .subtitle span {
    line-height: 20px;
  }
}
.hero-content-3 .title {
  max-width: 774px;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 .title {
    max-width: 674px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .title {
    max-width: 474px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .title {
    max-width: 324px;
  }
}
.hero-content-3 .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 82px;
  color: var(--light-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-3 .title h1 {
    font-size: 74px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 .title h1 {
    font-size: 68px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .title h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .title h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .title img {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .title img {
    width: 40px;
  }
}
.hero-content-3 .text {
  max-width: 550px;
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 .text {
    max-width: 520px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .text {
    max-width: 420px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.hero-content-3 .text p {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 .text p {
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .text p {
    font-size: 16px;
    line-height: 1.3;
  }
}

.services-3 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .services-3 {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.services-3 .service {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-3 .service i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: var(--theme-color);
  color: var(--white-color);
}
.services-3 .service p {
  color: var(--light-color);
}

.hero-slider-active-3 {
  position: relative;
  z-index: 1;
  margin: 0 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slider-active-3 {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .hero-slider-active-3 {
    margin: 0 15px;
  }
}
.hero-slider-active-3 .swiper {
  overflow: visible;
  overflow-x: clip;
}
.hero-slider-active-3 .hero-slider-pagination-3 {
  position: absolute;
  left: 6%;
  top: 219px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  width: auto;
  bottom: auto;
  transform: translate(0);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    left: 20px;
    top: 176px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    left: 20px;
    top: 116px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    display: none;
  }
}
.hero-slider-active-3 .hero-slider-pagination-3 .swiper-pagination-bullet {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
  opacity: 0.6;
  background: none;
  width: auto;
  height: auto;
}
.hero-slider-active-3 .hero-slider-pagination-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #fff;
  opacity: 1;
}
.hero-slider-active-3 .hero-slider-social {
  position: absolute;
  right: 50px;
  bottom: 50%;
  z-index: 99;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transform: translateY(50%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-3 .hero-slider-social {
    right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-3 .hero-slider-social {
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-3 .hero-slider-social {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-3 .hero-slider-social {
    display: none;
  }
}
.hero-slider-active-3 .hero-slider-social .text {
  transform: rotate(-180deg);
  width: auto;
  font-size: 18px;
  line-height: 167%;
  color: #FFFFFF;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-slider-active-3 .hero-slider-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-3 .hero-slider-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  color: var(--theme-color-3);
  background: rgba(255, 255, 255, 0.33);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.5px);
}
.hero-slider-active-3 .hero-slider-social .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.hero-slider-active-3 .hero-slider-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 99;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
    bottom: 40px;
  }
}
.hero-slider-active-3 .hero-slider-navigation .hero-slider-button-prev-3,
.hero-slider-active-3 .hero-slider-navigation .hero-slider-button-next-3 {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2.35px);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-3 .hero-slider-navigation .hero-slider-button-prev-3:hover,
.hero-slider-active-3 .hero-slider-navigation .hero-slider-button-next-3:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}

.hero-section-4 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  position: relative;
}
.hero-section-4 .thumb {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-section-4 .thumb {
    width: 48%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-4 .thumb {
    width: 48%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section-4 .thumb {
    width: 48%;
  }
}
@media (max-width: 991px) {
  .hero-section-4 .thumb {
    position: static;
  }
}
.hero-section-4 .thumb img {
  width: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  height: 100%;
}
.hero-section-4 .hero-slider-social {
  position: absolute;
  left: 90px;
  bottom: 50%;
  z-index: 999;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transform: translateY(50%);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-section-4 .hero-slider-social {
    left: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1500px) {
  .hero-section-4 .hero-slider-social {
    left: 0px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-4 .hero-slider-social {
    left: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section-4 .hero-slider-social {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section-4 .hero-slider-social {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-section-4 .hero-slider-social {
    display: none;
  }
}
.hero-section-4 .hero-slider-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-section-4 .hero-slider-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  color: var(--theme-color-3);
  background: rgba(0, 69, 64, 0.1);
  border: 1.5px solid rgba(0, 69, 64, 0.05);
  backdrop-filter: blur(8.5px);
}
@media (min-width: 1400px) and (max-width: 1500px) {
  .hero-section-4 .hero-slider-social .social-links a {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-4 .hero-slider-social .social-links a {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}
.hero-section-4 .hero-slider-social .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

.hero-content-4 {
  padding: 170px 0;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-4 {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-4 {
    padding: 80px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-4 {
    padding: 100px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 {
    padding: 80px 0 40px;
  }
}
@media (max-width: 767px) {
  .hero-content-4 {
    padding: 60px 0 30px;
  }
}
.hero-content-4 .subtitle {
  padding: 9px 15px;
  gap: 10px;
  background: rgba(0, 69, 64, 0.06);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  backdrop-filter: blur(4.2px);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 .subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .hero-content-4 .subtitle {
    margin-bottom: 10px;
  }
}
.hero-content-4 .subtitle span {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: var(--theme-color-3);
}
.hero-content-4 .common-title {
  margin-bottom: 30px;
}
.hero-content-4 .common-title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 74px;
  line-height: 82px;
  color: var(--theme-color-3);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-4 .common-title h1 {
    font-size: 70px;
    line-height: 1.1;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-4 .common-title h1 {
    font-size: 56px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-4 .common-title h1 {
    font-size: 46px;
    line-height: 1.1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 .common-title h1 {
    font-size: 42px;
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  .hero-content-4 .common-title h1 {
    font-size: 38px;
    line-height: 1.1;
  }
}
.hero-content-4 .text {
  max-width: 500px;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-4 .text {
    max-width: 420px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 .text {
    max-width: 95%;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .hero-content-4 .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.hero-content-4 .text p {
  font-size: 18px;
  line-height: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-4 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .hero-content-4 .text p {
    font-size: 16px;
    line-height: 1.3;
  }
}

.hero-rating-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero-rating-wrap {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}
.hero-rating-wrap .annual-donation {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-rating-wrap .annual-donation p {
  margin-bottom: 5px;
}
.hero-rating-wrap .annual-donation h5 {
  margin-bottom: 0;
}
.hero-rating-wrap .annual-donation img {
  padding: 17px 15px;
  border-radius: 100%;
  border: 2px solid rgba(0, 69, 64, 0.1);
}

.hero-section-5 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 300px;
  padding-bottom: 210px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-section-5 {
    padding-top: 280px;
    padding-bottom: 160px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-5 {
    padding-top: 280px;
    padding-bottom: 160px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section-5 {
    padding-top: 250px;
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section-5 {
    padding-top: 240px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .hero-section-5 {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}
.hero-section-5::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 51, 47, 0.1) 0%, #00332f 107.37%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-section-5 .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.hero-section-5 .shape img {
  height: 100%;
  width: 100%;
}

.hero-content-5 {
  max-width: 940px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.hero-content-5 .title {
  margin-bottom: 12px;
}
.hero-content-5 .title h1 {
  font-family: "Philosopher";
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 90%;
  color: var(--white-color);
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-5 .title h1 {
    font-size: 80px;
    line-height: 1.1;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-5 .title h1 {
    width: 70%;
    margin: 0 auto;
    font-size: 60px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-5 .title h1 {
    font-size: 54px;
    margin: 0 auto;
    line-height: 1.1;
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-5 .title h1 {
    width: 70%;
    margin: 0 auto;
    font-size: 48px;
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  .hero-content-5 .title h1 {
    width: 100%;
    margin: 0 auto;
    font-size: 36px;
    line-height: 1.1;
  }
}
.hero-content-5 .text {
  max-width: 480px;
  width: 100%;
  margin-bottom: 36px;
  text-align: center;
  color: #f8f7f0;
}
.hero-content-5 .icon-1 {
  position: absolute;
  left: -16%;
  bottom: 16%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-5 .icon-1 {
    left: -4%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-5 .icon-1 {
    left: 10%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-5 .icon-1 {
    left: 15%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-5 .icon-1 {
    left: 7%;
  }
}
@media (max-width: 767px) {
  .hero-content-5 .icon-1 {
    left: 6%;
    bottom: 88%;
  }
}
@media (max-width: 1399px) {
  .hero-content-5 .icon-1 img {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .hero-content-5 .icon-1 img {
    width: 60%;
  }
}
.hero-content-5 .icon-2 {
  position: absolute;
  right: -25%;
  bottom: 8%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-5 .icon-2 {
    right: -10%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-5 .icon-2 {
    right: 2%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-5 .icon-2 {
    right: 7%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-5 .icon-2 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .hero-content-5 .icon-2 {
    right: -2%;
    bottom: -20%;
  }
}
@media (max-width: 1399px) {
  .hero-content-5 .icon-2 img {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .hero-content-5 .icon-2 img {
    width: 60%;
  }
}

/* 10 Camping Css */
.our-camping-section {
    background: var(--theme-color);
    position: relative;
    z-index: 0;
    
}
.our-camping-section .shape-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* opacity: 0.3; */
}
.our-camping-section .shape-2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.latest-blog-section-2{
    background: linear-gradient(90deg, rgb(0 0 38) 0%, rgba(9, 9, 121, 1) 35%, rgb(244 123 32) 100%);
}
.latest-blog-section-2.our-camping-section .shape-2 img{
  opacity: 1;
}
.our-camping-section .shape-2 video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-camping-section .shape-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}
.our-camping-section-3 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.our-camping-section-3 .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1700px) {
  .our-camping-section-3 .shape img {
    width: 80%;
  }
}
.our-camping-section-3 .icon-1 {
  position: absolute;
  top: 18%;
  right: 6%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .our-camping-section-3 .icon-1 {
    top: 10%;
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-camping-section-3 .icon-1 {
    top: 10%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .our-camping-section-3 .icon-1 {
    top: 8%;
    right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .our-camping-section-3 .icon-1 img {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-camping-section-3 .icon-1 img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .our-camping-section-3 .icon-1 img {
    width: 60%;
  }
}

.camping-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  padding: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card.active .thumb a img, .camping-card:hover .thumb a img {
  transform: scale(1.1);
}
.camping-card.active .content .donation-wrap, .camping-card:hover .content .donation-wrap {
  background: var(--theme-color-3);
}
.camping-card.active .content .donation-wrap .d-top p, .camping-card:hover .content .donation-wrap .d-top p {
  color: var(--theme-color-2);
}
.camping-card.active .content .donation-wrap .progress, .camping-card:hover .content .donation-wrap .progress {
  background: rgba(255, 225, 117, 0.1);
}
.camping-card.active .content .donation-wrap .progress .progress-bar, .camping-card:hover .content .donation-wrap .progress .progress-bar {
  background: var(--theme-color-2);
}
.camping-card.active .content .donation-wrap .fund p, .camping-card:hover .content .donation-wrap .fund p {
  color: var(--white-color);
}
.camping-card.active .content .donation-wrap .fund p span, .camping-card:hover .content .donation-wrap .fund p span {
  color: var(--theme-color-2);
}
.camping-card.active .content .donation-wrap .d-bottom .d-btn, .camping-card:hover .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-3);
}
.camping-card.active .content .donation-wrap .d-bottom .d-btn:before, .camping-card:hover .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.camping-card.active .content .donation-wrap .d-bottom .d-btn .icon-wrap, .camping-card:hover .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.camping-card.active .content .donation-wrap .d-bottom .d-wishlist, .camping-card:hover .content .donation-wrap .d-bottom .d-wishlist {
  color: var(--theme-color-2);
  border-color: rgba(255, 225, 117, 0.1);
}
.camping-card .thumb {
  position: relative;
  overflow: hidden;
  
}
.camping-card .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}
.camping-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  border-radius: 10px;
}
.camping-card .thumb .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.camping-card .thumb .category a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.camping-card .thumb .category a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.camping-card .content .content-top {
  padding: 20px;
}
.camping-card .content .date {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  gap: 10px;
  background: #f8f7f0;
  border: 2px solid var(--white-color);
  box-shadow: 0px 6px 30px rgba(0, 69, 64, 0.09);
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  color: #868681;
}
.camping-card .content .date img {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .camping-card .content .date span {
    font-size: 16px;
  }
}
.camping-card .content .title h3 {
    font-weight: 600;
    font-size: 21px;
    line-height: 30px;
    color: var(--theme-color-3);
    margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-card .content .title h3 {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .camping-card .content .title h3 {
    line-height: 1.4;
    font-size: 20px;
  }
}
.camping-card .content .title h3 a {
  color: var(--theme-color-3);
}
.camping-card .content .text p {
  font-size: 17px;
  line-height: 28px;
}
.camping-card .content .donation-wrap {
  padding: 16px 20px 25px;
  background-color: #f8f7f0;
  border-radius: 8px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .d-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.camping-card .content .donation-wrap .d-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .progress {
  background: rgba(0, 69, 64, 0.1);
  height: 8px;
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .progress .progress-bar {
  background: var(--theme-color-3);
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .fund {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 24px;
  gap: 20px;
}
.camping-card .content .donation-wrap .fund p {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #868681;
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .fund p span {
  color: var(--theme-color-3);
  font-weight: 600;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .d-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.camping-card .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-2);
  background: var(--theme-color-3);
}
.camping-card .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-3);
}
.camping-card .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.camping-card .content .donation-wrap .d-bottom .d-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid rgba(0, 24, 25, 0.1);
  border-radius: 10px;
  padding: 10px;
  background: none;
  color: var(--theme-color-3);
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.01em;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.camping-card-2 {
  background-color: #f8f7f0;
  border-radius: 10px;
  padding: 10px;
}
.camping-card-2.widget-style {
  padding: 0;
  background: none !important;
  box-shadow: none !important;
}
.camping-card-2.widget-style .content .donation-wrap {
  padding-bottom: 0;
}
.camping-card-2.active, .camping-card-2:hover {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.camping-card-2.active .thumb a img, .camping-card-2:hover .thumb a img {
  transform: scale(1.1);
}
.camping-card-2.active .content .donation-wrap .d-bottom .d-btn, .camping-card-2:hover .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-2);
}
.camping-card-2.active .content .donation-wrap .d-bottom .d-btn:before, .camping-card-2:hover .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-3);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.camping-card-2.active .content .donation-wrap .d-bottom .d-btn .icon-wrap, .camping-card-2:hover .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.camping-card-2 .thumb {
  position: relative;
  overflow: hidden;
}
.camping-card-2 .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.camping-card-2 .thumb img {
  width: 100%;
  border-radius: 10px;
}
.camping-card-2 .thumb .date {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.camping-card-2 .thumb .date:hover {
  background: var(--white-color);
  color: var(--theme-color-3);
}
.camping-card-2 .thumb .date span {
  line-height: 0;
}
@media (max-width: 767px) {
  .camping-card-2 .thumb .date span {
    font-size: 16px;
  }
}
.camping-card-2 .content .title {
  margin-bottom: 15px;
}
.camping-card-2 .content .title h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-card-2 .content .title h3 {
    font-size: 22px;
    line-height: 1.5;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-card-2 .content .title h3 {
    font-size: 21px;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-card-2 .content .title h3 {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .camping-card-2 .content .title h3 {
    line-height: 1.4;
    font-size: 20px;
  }
}
.camping-card-2 .content .title h3 a {
  color: var(--theme-color-3);
}
.camping-card-2 .content .text p {
  font-size: 17px;
  line-height: 28px;
}
.camping-card-2 .content .donation-wrap {
  padding: 16px 20px 25px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .d-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.camping-card-2 .content .donation-wrap .d-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .progress {
  background: rgba(0, 69, 64, 0.1);
  height: 8px;
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .progress .progress-bar {
  background: var(--theme-color-3);
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .fund {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 24px;
  gap: 20px;
}
.camping-card-2 .content .donation-wrap .fund p {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #868681;
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .fund p span {
  color: var(--theme-color-3);
  font-weight: 600;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .d-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.camping-card-2 .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}
.camping-card-2 .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-3);
}
.camping-card-2 .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-3);
  color: var(--light-color);
}

.recent-course-slider-active {
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .recent-course-slider-active {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.recent-course-slider-active .recent-course-pagination {
  position: absolute;
  right: 24px;
  left: auto;
  top: -70px;
  bottom: auto;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  width: auto;
  padding: 0;
}
@media (max-width: 767px) {
  .recent-course-slider-active .recent-course-pagination {
    right: 10px;
  }
}
.recent-course-slider-active .recent-course-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.recent-course-slider-active .recent-course-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.recent-course-slider-active .recent-course-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--theme-color-3);
}
.recent-course-slider-active .recent-course-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}

.camping-slider-active-3 {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-3 {
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-3 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .camping-slider-active-3 {
    padding-bottom: 80px;
  }
}
.camping-slider-active-3 .camping-button-prev-3 {
  position: absolute;
  left: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFFFFF;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active-3 .camping-button-prev-3:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.camping-slider-active-3 .camping-button-next-3 {
  position: absolute;
  right: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFFFFF;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active-3 .camping-button-next-3:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

.section-top-7 {
  text-align: center;
}
.section-top-7 .common-subtitle span {
  color: var(--theme-color-2);
}
.section-top-7 .common-title h2 {
  color: var(--white-color);
}

.camping-slider-active,
.blogs-slider-active {
  position: relative;
  z-index: 1;
}
.camping-slider-active .camping-button-prev,
.blogs-slider-active .blogs-button-prev {
  position: absolute;
  left: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--theme-color-3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: -80px;
}
.blogs-slider-active .blogs-button-prev{
  background: var(--theme-color-3);
  color: #fff;
  top: 55%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active .camping-button-prev,
  .blogs-slider-active .blogs-button-prev {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active .camping-button-prev,
  .blogs-slider-active .blogs-button-prev {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active .camping-button-prev,
  .blogs-slider-active .blogs-button-prev {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active .camping-button-prev,
  .blogs-slider-active .blogs-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active .camping-button-prev,
  .blogs-slider-active .blogs-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .camping-slider-active .camping-button-prev,
  .blogs-slider-active .blogs-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active .camping-button-prev:hover,
.blogs-slider-active .blogs-button-prev:hover {
  background: var(--theme-color-3);
  color: var(--white-color);
}
.camping-slider-active .camping-button-next,
.blogs-slider-active .blogs-button-next {
  position: absolute;
  right: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--theme-color-3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: -80px;
}
.blogs-slider-active .blogs-button-next{
  background: var(--theme-color-3);
  color: #fff;
  top: 55%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active .camping-button-next,
  .blogs-slider-active .blogs-button-next {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active .camping-button-next,
  .blogs-slider-active .blogs-button-next {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active .camping-button-next,
  .blogs-slider-active .blogs-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active .camping-button-next,
  .blogs-slider-active .blogs-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .camping-slider-active .camping-button-next,
  .blogs-slider-active .blogs-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active .camping-button-next:hover,
.blogs-slider-active .blogs-button-next:hover {
  background: var(--theme-color-3);
  color: var(--white-color);
}
.camping-slider-active .camping-pagination-wrap,
.blogs-slider-active .blogs-pagination-wrap {
  display: flex;
  justify-content: center;
}
.camping-slider-active .camping-pagination-wrap .camping-pagination,
.blogs-slider-active .blogs-pagination-wrap .blogs-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
  margin-top: 50px;
}
.blogs-slider-active .blogs-pagination-wrap .blogs-pagination{
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}
.camping-slider-active .camping-pagination-wrap .camping-pagination .swiper-pagination-bullet,
.blogs-slider-active .blogs-pagination-wrap .blogs-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: none;
  border: 1px solid transparent;
  backdrop-filter: blur(4.75px);
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-slider-active .camping-pagination-wrap .camping-pagination .swiper-pagination-bullet:before,
.blogs-slider-active .blogs-pagination-wrap .blogs-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.camping-slider-active .camping-pagination-wrap .camping-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.blogs-slider-active .blogs-pagination-wrap .blogs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--theme-color-3);
}
.camping-slider-active .camping-pagination-wrap .camping-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before,
.blogs-slider-active .blogs-pagination-wrap .blogs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}

.camping-slider-active-2 {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .camping-slider-active-2 {
    padding-bottom: 80px;
  }
}
.camping-slider-active-2 .camping-button-prev-2 {
  position: absolute;
  left: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #F8F7F0;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blogs-slider-active .swiper{
  padding: 100px 0;
}
.blogs-slider-active .swiper-slide .blog-card-2{
  border-radius: 10px;
}
.blogs-slider-active .swiper-slide.swiper-slide-active{
position: relative;
  z-index: 1;
}

.blogs-slider-active .swiper-slide.swiper-slide-active .blog-card-2 {
    transform: scale(1.2);
    box-shadow: 0 0 30px 0 #00112e;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: -25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: -25px;
  }
}
@media (max-width: 767px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active-2 .camping-button-prev-2:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.camping-slider-active-2 .camping-button-next-2 {
  position: absolute;
  right: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #F8F7F0;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: -25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: -25px;
  }
}
@media (max-width: 767px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active-2 .camping-button-next-2:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.camping-slider-active-2 .camping-pagination-wrap-2 {
  display: flex;
  justify-content: center;
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
  margin-top: 50px;
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: none;
  border: 1px solid transparent;
  backdrop-filter: blur(4.75px);
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--theme-color-3);
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}
.camping-slider-active-2 .swiper {
  overflow: visible;
  overflow-x: clip;
}

.swiper-slide-active .camping-card .thumb a img {
  transform: scale(1.1);
}
.swiper-slide-active .camping-card .content .donation-wrap {
  background: var(--theme-color-3);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-top p {
  color: var(--theme-color-2);
}
.swiper-slide-active .camping-card .content .donation-wrap .progress {
  background: rgba(255, 225, 117, 0.1);
}
.swiper-slide-active .camping-card .content .donation-wrap .progress .progress-bar {
  background: var(--theme-color-2);
}
.swiper-slide-active .camping-card .content .donation-wrap .fund p {
  color: var(--white-color);
}
.swiper-slide-active .camping-card .content .donation-wrap .fund p span {
  color: var(--theme-color-2);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-3);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-bottom .d-wishlist {
  color: var(--theme-color-2);
  border-color: rgba(255, 225, 117, 0.1);
}
.swiper-slide-active .camping-card-2 {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.swiper-slide-active .camping-card-2 .thumb a img {
  transform: scale(1.1);
}
.swiper-slide-active .camping-card-2 .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-2);
}
.swiper-slide-active .camping-card-2 .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-3);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.swiper-slide-active .camping-card-2 .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

/* 11 Camping Css */
.contact-info-section {
  position: relative;
  z-index: 1;
}

.contact-info-layout {
  background: var(--theme-color-2);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: -45px;
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .contact-info-layout {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info-layout {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .contact-info-layout {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
}

.contact-info {
  padding: 30px;
  border-radius: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.contact-info .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-info .icon-wrap .icon-shape {
  flex: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 69, 64, 0) 0%, var(--theme-color-3) 100%);
}
.contact-info .icon-wrap .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--theme-color-3);
  background: rgba(0, 69, 64, 0.1);
  flex: none;
}
.contact-info h3 {
  font-family: var(--outfit-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-info h3 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .contact-info h3 {
    font-size: 18px;
  }
}
.contact-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--theme-color-3);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .contact-info p {
    font-size: 16px;
  }
}
.contact-info.active {
  background: var(--theme-color-3);
  transform: translateY(-20px);
  box-shadow: 0px 33px 50.3px -27px rgba(0, 69, 64, 0.3);
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info.active {
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .contact-info.active {
    transform: translateY(0);
  }
}
.contact-info.active .icon-wrap .icon-shape {
  background: linear-gradient(90deg, rgba(0, 69, 64, 0) 0%, var(--theme-color-2) 100%);
}
.contact-info.active .icon-wrap .icon {
  color: var(--theme-color-2);
  background: rgba(255, 225, 117, 0.1);
}
.contact-info.active h3 {
  color: var(--white-color);
}
.contact-info.active p {
  color: var(--white-color);
}

.contact-form-wrap {
  background: #f8f7f0;
  border-radius: 24px;
  padding: 40px 50px 50px;
  text-align: center;
}
.contact-form-wrap h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #010a15;
  margin-bottom: 7px;
}
.contact-form-wrap p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #868681;
  margin-bottom: 32px;
}
.contact-form-wrap .input-wrap input {
  background: #ffffff;
}
.contact-form-wrap .input-wrap input:focus {
  background: #ffffff;
}
.contact-form-wrap .input-wrap textarea {
  background: #ffffff;
}
.contact-form-wrap .input-wrap textarea:focus {
  background: #ffffff;
}
.contact-form-wrap .select-wrap select {
  background: #ffffff;
}
.contact-form-wrap .select-wrap select:focus {
  background: #ffffff;
}

.contact-section {
  position: relative;
  z-index: 1;
}
.contact-section .c-shape-1 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.contact-section .c-shape-2 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.contact-map {
  width: 100%;
  height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}

.map-section {
  /* margin-bottom: -165px; */
}

/* 12 Blog Css */
.latest-blog-section {
  position: relative;
  background-color: #f8f7f0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow-x: clip;
}
.latest-blog-section .blog-btn .e-primary-btn {
  background: var(--theme-color-3);
  border: none;
  color: var(--theme-color-2);
}
.latest-blog-section .blog-btn .e-primary-btn:before {
  background: var(--theme-color-2);
}
.latest-blog-section .blog-btn .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.latest-blog-section .blog-btn .e-primary-btn:hover {
  color: var(--theme-color-3);
}
.latest-blog-section .blog-btn .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.latest-blog-section .shape {
  position: absolute;
  bottom: -2%;
  width: 100%;
  height: 63px;
}
@media (max-width: 1199px) {
  .latest-blog-section .shape {
    height: 30px;
    bottom: -1%;
  }
}
.latest-blog-section .shape img {
  width: 100%;
  height: 100%;
}

.latest-blog-row-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(37.93deg, rgba(255, 225, 117, 0) 40.36%, rgba(255, 225, 117, 0.2) 97.89%), rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7.75px);
  border-radius: 14px;
  padding: 0 50px;
  height: 350px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .latest-blog-row-bottom {
    height: 320px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .latest-blog-row-bottom {
    height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-row-bottom {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .latest-blog-row-bottom {
    height: 280px;
    padding: 0 20px;
  }
}
.latest-blog-row-bottom .common-title {
  gap: 20px;
  margin-bottom: 10px;
}
.latest-blog-row-bottom .common-title span img {
  width: 42px;
  height: 42px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-row-bottom .common-title span img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .latest-blog-row-bottom .common-title span img {
    width: 20px;
    height: 20px;
    margin: 0 2px;
  }
}
.latest-blog-row-bottom .common-title i {
  font-size: 32px;
  font-weight: 300;
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-row-bottom .common-title i {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .latest-blog-row-bottom .common-title i {
    font-size: 18px;
  }
}
.latest-blog-row-bottom .row-bottom-thumb {
  max-width: 480px;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .latest-blog-row-bottom .row-bottom-thumb {
    width: 40%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .latest-blog-row-bottom .row-bottom-thumb {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-row-bottom .row-bottom-thumb {
    display: none;
  }
}
@media (max-width: 767px) {
  .latest-blog-row-bottom .row-bottom-thumb {
    display: none;
  }
}
.latest-blog-row-bottom .row-bottom-thumb .thumb {
  width: 100%;
}

.form-1 {
  margin-left: 50px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .form-1 {
    margin-left: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .form-1 {
    margin-left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .form-1 {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .form-1 {
    margin-left: 0;
  }
}
.form-1 input {
  width: 100%;
  background: var(--theme-color-3);
  border: 1px solid var(--theme-color-2);
  border-radius: 100px;
  padding: 5px 24px;
  color: var(--white-color);
  line-height: 1;
  font-size: 17px;
  height: 60px;
  font-family: var(--albert-sans-font);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.2), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
}
.form-1 input::-webkit-input-placeholder {
  color: var(--light-color);
  opacity: 0.8;
}
.form-1 input:-moz-placeholder {
  color: var(--light-color);
  opacity: 0.8;
}
.form-1 input::-moz-placeholder {
  color: var(--light-color);
  opacity: 0.8;
}
.form-1 input:-ms-input-placeholder {
  color: var(--light-color);
  opacity: 0.8;
}
.form-1 input:focus {
  border-color: var(--theme-color-3);
}
.form-1 input:focus::-webkit-input-placeholder {
  color: transparent;
}
.form-1 input:focus:-moz-placeholder {
  color: transparent;
}
.form-1 input:focus::-moz-placeholder {
  color: transparent;
}
.form-1 input:focus:-ms-input-placeholder {
  color: transparent;
}
.form-1 button {
  border: none;
}

@media (max-width: 767px) {
  .latest-blog-content {
    margin-bottom: 40px;
  }
}
.latest-blog-content .text {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-content .text {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .latest-blog-content .text {
    margin-bottom: 20px;
  }
}

.blog-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  z-index: 1;
  overflow: hidden;
}
.blog-card:hover .thumb a img {
  transform: scale(1.1);
}
.blog-card:hover .content .content-bottom .e-primary-btn:hover {
  border: 2px solid var(--theme-color-2);
}
.blog-card .thumb {
  position: relative;
}
.blog-card .thumb > a {
  display: block;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.blog-card .thumb img {
  border-radius: 10px 10px 0 0;
}
.blog-card .thumb .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-card .thumb .category a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.blog-card .thumb .category a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.blog-card .event-date {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 89px;
  position: absolute;
  right: 20px;
  bottom: -25px;
  z-index: 2;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  background-color: var(--theme-color-3);
}
.blog-card .event-date h2 {
  color: var(--theme-color-2);
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card .event-date h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .blog-card .event-date h2 {
    line-height: 1.2;
    font-size: 30px;
  }
}
.blog-card .event-date h5 {
  color: var(--light-color);
  line-height: 22px;
  margin-bottom: 4px;
  font-weight: 400;
}
.blog-card .event-date span {
  color: var(--theme-color-3);
  border-radius: 4px;
  background-color: var(--theme-color-2);
  padding: 4px 16px 4px 16px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.36em;
}
.blog-card .content {
  padding: 25px;
}
.blog-card .content .title h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .blog-card .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
.blog-card .content .title h3 a {
  color: var(--theme-color-3);
}
.blog-card .content .content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card .content .content-bottom {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .blog-card .content .content-bottom {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.blog-card .content .content-bottom .e-primary-btn {
  color: var(--theme-color-3);
  background-color: transparent;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
.blog-card .content .content-bottom .e-primary-btn:before {
  background-color: var(--theme-color-2);
}
.blog-card .content .content-bottom .e-primary-btn .icon-wrap {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
}
.blog-card .content .social-share {
  display: flex;
  align-items: center;
  position: relative;
}
.blog-card .content .social-share.active .social-links {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.blog-card .content .social-share.active .total-shared {
  visibility: hidden;
  opacity: 0;
}
.blog-card .content .social-share .total-shared {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid rgba(0, 24, 25, 0.1);
  border-radius: 10px;
  padding: 10px;
  background: none;
  color: var(--theme-color-3);
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.01em;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card .content .social-share .social-links {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  right: 0;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card .content .social-share .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: rgba(0, 69, 64, 0.1);
  color: var(--body-color);
}
.blog-card .content .social-share .social-links a:hover {
  color: var(--theme-color-2);
  background: var(--theme-color-3);
}

/* .latest-blog-section-2{
  background-color: var(--theme-color);
} */
.latest-blog-section-2 .common-subtitle span{
  color: #ffe175;
}
.latest-blog-section-2 .common-title h2{
      color: var(--light-color);
}
.latest-blog-section-2 .contact-details{
    background-color: #fff;
}
.blog-card-2 {
  background-color: #fbfbfb;
  border-radius: 0 0 10px 10px;
  /* box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06); */
  z-index: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card-2:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}

.blog-card-2:hover .content .content-bottom .read-more-btn {
  border: 2px solid var(--theme-color-2);
}
.blog-card-2:hover .content .content-bottom .read-more-btn::before {
  background-color: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.blog-card-2 .thumb {
  position: relative;
}
.blog-card-2 .thumb > a {
    display: block;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    /* border: 1px solid #eee; */
}
.blog-card-2 .thumb > a img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 300px;
    object-fit: cover;
    object-position: top;
}
.blog-card-2 .thumb .event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    padding: 4px 10px;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    text-align: center;
    border-radius: 4px;
    background-color: var(--theme-color-3);
}
.blog-card-2 .thumb .event-date h2 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-2 .thumb .event-date h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .blog-card-2 .thumb .event-date h2 {
    line-height: 1.2;
    font-size: 30px;
  }
}
.blog-card-2 .thumb .event-date h5 {
  color: var(--light-color);
  line-height: 22px;
  margin-bottom: 4px;
}
.blog-card-2 .thumb .event-date span {
  color: var(--theme-color-3);
  border-radius: 4px;
  background-color: var(--theme-color-2);
  padding: 4px 16px 4px 16px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.36em;
}
.blog-card-2 .content {
  padding: 25px;
}
.blog-card-2 .content .content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* .blog-card-2 .content .content-bottom .read-more-btn {
  line-height: 102%;
  color: var(--theme-color-3);
  background-color: transparent;
  border: 2px solid rgba(0, 69, 64, 0.1);
} */
.blog-card-2 .content .content-bottom .read-more-btn::before {
  background-color: transparent;
}
/* .blog-card-2 .content .content-bottom .read-more-btn .icon-wrap {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
} */
.blog-card-2 .content .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.blog-card-2 .content .author .admin,
.blog-card-2 .content .author .solar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-2 .content .title h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 36px;
  color: var(--title-color);
  margin-bottom: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-card-2 .content .title h3 {
    font-size: 19px;
    line-height: 1.4;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-2 .content .title h3 {
    font-size: 19px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-2 .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .blog-card-2 .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
.blog-card-2 .content .title h3 a {
  color: inherit;
}

.blog-card-3 {
  background-color: var(--theme-color-3);
  padding: 10px;
  border-radius: 10px;
}
.blog-card-3:hover .thumb a img {
  transform: scale(1.1);
}
.blog-card-3:hover .content .content-bottom .read-more-btn {
  color: var(--theme-color-3);
  border-color: var(--theme-color-2);
}
.blog-card-3:hover .content .content-bottom .read-more-btn::before {
  background-color: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.blog-card-3:hover .content .content-bottom .read-more-btn .icon-wrap {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
}
.blog-card-3 .thumb {
  position: relative;
  overflow: hidden;
}
.blog-card-3 .thumb a {
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.blog-card-3 .thumb a img {
  border-radius: 10px;
}
.blog-card-3 .date {
  width: 70px;
  height: 70px;
  background: var(--theme-color-2);
  border: 2px solid var(--theme-color-3);
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-card-3 .date {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-3 .date {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  .blog-card-3 .date {
    width: 60px;
    height: 60px;
    top: 5px;
    right: 5px;
  }
}
.blog-card-3 .date h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .blog-card-3 .date h4 {
    font-size: 20px;
  }
}
.blog-card-3 .date p {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: var(--gray-color);
}
@media (max-width: 1399px) {
  .blog-card-3 .date p {
    font-size: 16px;
    line-height: 1;
  }
}
.blog-card-3 .content {
  padding: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-3 .content {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .blog-card-3 .content {
    padding: 10px;
  }
}
.blog-card-3 .content .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.blog-card-3 .content .author .admin,
.blog-card-3 .content .author .solar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-3 .content .author .admin i,
.blog-card-3 .content .author .solar i {
  color: var(--theme-color-2);
}
.blog-card-3 .content .author .admin span,
.blog-card-3 .content .author .solar span {
  color: var(--white-color);
}
.blog-card-3 .content .title h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .blog-card-3 .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
.blog-card-3 .content .content-bottom .read-more-btn {
  line-height: 102%;
  color: var(--theme-color-2);
  background-color: transparent;
  border: 2px solid rgba(248, 247, 240, 0.1);
}
.blog-card-3 .content .content-bottom .read-more-btn::before {
  background-color: transparent;
}
.blog-card-3 .content .content-bottom .read-more-btn .icon-wrap {
  background-color: var(--theme-color-2);
  color: var(--theme-color-3);
}

.blog-slider-active {
  margin-right: -280px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .blog-slider-active {
    margin-right: -180px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-slider-active {
    margin-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-slider-active {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-slider-active {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .blog-slider-active {
    margin-right: 0;
  }
}
.blog-slider-active .blog-pagination {
  height: 5px;
  border-radius: 10px;
  margin-top: 60px;
  background: rgba(0, 69, 64, 0.5);
  display: flex;
  width: calc(100% - 280px);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .blog-slider-active .blog-pagination {
    width: calc(100% - 180px);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-slider-active .blog-pagination {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-slider-active .blog-pagination {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-slider-active .blog-pagination {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .blog-slider-active .blog-pagination {
    margin-top: 30px;
    width: 100%;
  }
}
.blog-slider-active .blog-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  background: none;
  margin: 0;
}
.blog-slider-active .blog-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color-3);
}

/* 13 Event Css */
.event-card {
  background: #f8f7f0;
  padding: 10px;
  border-radius: 10px;
}
.event-card.active .thumb a img, .event-card:hover .thumb a img {
  transform: scale(1.1);
}
.event-card .card-content {
  padding: 20px;
}
.event-card .event-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .event-card .event-card-top {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}
.event-card .event-card-top .top-left {
  display: flex;
  gap: 20px;
  align-items: start;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card .event-card-top .top-left {
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .event-card .event-card-top .top-left {
    align-items: center;
    gap: 14px;
  }
}
.event-card .event-card-top .top-left .event-date {
  text-align: start;
}
.event-card .event-card-top .top-left .event-date h3 {
  color: var(--theme-color-3);
  font-weight: 500;
  font-size: 40px;
  line-height: 14px;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card .event-card-top .top-left .event-date h3 {
    font-size: 28px;
    line-height: 0.8;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card .event-card-top .top-left .event-date h3 {
    font-size: 24px;
    line-height: 0.8;
  }
}
@media (max-width: 767px) {
  .event-card .event-card-top .top-left .event-date h3 {
    font-size: 24px;
    line-height: 0.8;
  }
  .event-card .event-card-top .top-left .event-date h3 br {
    display: none;
  }
}
.event-card .event-card-top .top-left .event-date h3 span {
  color: var(--body-color);
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card .event-card-top .top-left .event-date h3 span {
    font-size: 16px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card .event-card-top .top-left .event-date h3 span {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .event-card .event-card-top .top-left .event-date h3 span {
    font-size: 16px;
    line-height: 1;
  }
}
.event-card .thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.event-card .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.event-card .thumb img {
  width: 100%;
  border-radius: 10px;
}
.event-card .thumb .category {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.event-card .thumb .category a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.event-card .thumb .category a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.event-card .thumb .shape-3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .top-right {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .top-right {
    gap: 10px;
  }
}
.top-right img {
  max-width: 118px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .top-right img {
    max-width: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .top-right img {
    max-width: 90px;
  }
}
@media (max-width: 767px) {
  .top-right img {
    max-width: 80px;
  }
}
.top-right .people-joined {
  text-align: start;
}
.top-right .people-joined h5 {
  font-weight: 600;
  font-size: 20px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  line-height: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .top-right .people-joined h5 {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .top-right .people-joined h5 {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .top-right .people-joined h5 {
    font-size: 18px;
    line-height: 1;
  }
}

.event-card-2 {
  display: flex;
  align-items: center;
  background: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .event-card-2 {
    flex-direction: column;
  }
}
.event-card-2 .event-thumb {
  width: 48%;
  flex: none;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 .event-thumb {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .event-card-2 .event-thumb {
    width: 100%;
  }
}
.event-card-2 .event-thumb a img {
  border-radius: 10px;
  width: 100%;
}
.event-card-2 .event-thumb .event-date {
  display: inline-flex;
  padding: 16px 24px;
  background: #f8f7f0;
  border: 1px solid var(--theme-color-2);
  box-shadow: 0 6px 15.9px -3px rgba(0, 69, 64, 0.11);
  border-radius: 0 100px 100px 0;
  position: absolute;
  left: 100%;
  top: 40px;
  width: auto;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .event-card-2 .event-thumb .event-date {
    top: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .event-card-2 .event-thumb .event-date {
    padding: 10px 20px;
    top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-2 .event-thumb .event-date {
    padding: 10px 20px;
    top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 .event-thumb .event-date {
    left: 0;
    top: 30px;
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .event-card-2 .event-thumb .event-date {
    left: 0;
    top: 30px;
    padding: 10px 20px;
  }
}
.event-card-2 .event-thumb .event-date h5 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--theme-color-3);
  white-space: nowrap;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-2 .event-thumb .event-date h5 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .event-card-2 .event-thumb .event-date h5 {
    font-size: 14px;
  }
}
.event-card-2 .card-content {
  width: 52%;
  padding: 60px 50px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-2 .card-content {
    padding: 50px 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 .card-content {
    width: 100%;
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .event-card-2 .card-content {
    width: 100%;
    padding: 30px 20px;
  }
}
.event-card-2 .card-content .event-card-title h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--theme-color-3);
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-2 .card-content .event-card-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 .card-content .event-card-title h2 {
    font-size: 24px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .event-card-2 .card-content .event-card-title h2 {
    font-size: 20px;
    line-height: 1;
  }
}
.event-card-2 .card-content .join-event {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 6px;
}
@media (max-width: 767px) {
  .event-card-2 .card-content .join-event {
    flex-direction: column;
    align-items: start;
  }
}

.event-card-3 {
  display: flex;
  align-items: center;
  background: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  position: sticky;
    top: 30px;
  overflow-y: clip;
}
.event-thumb img {
    border-radius: 7px;
    height: 370px;
    object-fit: cover;
    width: 100%;
}
.event-card-3:hover .event-thumb a img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .event-card-3 {
    margin: 0 0 30px;
  }
}
.event-card-3 .event-thumb a {
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.event-card-3 .event-thumb a img {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}
.event-card-3 .card-content {
  padding: 0 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-3 .card-content {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-3 .card-content {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {
  .event-card-3 .card-content {
    padding: 20px 10px;
  }
}
.event-card-3 .card-content .event-card-title h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--theme-color-3);
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-3 .card-content .event-card-title h2 {
    font-size: 28px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-3 .card-content .event-card-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .event-card-3 .card-content .event-card-title h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}
.event-card-3 .card-content .join-event {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 6px;
}
.event-card-3 .card-content .category p {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 12px;
}
.event-card-3 .card-content .event-card-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-3 .card-content .event-card-text p {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-3 .card-content .event-card-text p {
    margin-bottom: 30px;
  }
}

.card-number-3 {
  position: absolute;
  right: 60px;
  bottom: -20px;
  justify-content: end;
  display: inline-flex;
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-number-3 {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .card-number-3 {
    right: 20px;
  }
}
.card-number-3 h1 {
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 600;
  font-size: 120px;
  line-height: 82px;
  color: var(--theme-color-3);
  opacity: 0.06;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .card-number-3 h1 {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-number-3 h1 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .card-number-3 h1 {
    font-size: 80px;
  }
}

.event-card-middle h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--theme-color-3);
  margin: 20px 0 8px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-middle h2 {
    font-size: 28px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-middle h2 {
    font-size: 24px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .event-card-middle h2 {
    font-size: 20px;
    line-height: 1;
  }
}

.address {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .address {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .address {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .address {
    flex-direction: column;
    align-items: start;
    gap: 6px;
    margin-bottom: 20px;
  }
}
.address .location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.address .time {
  display: flex;
  align-items: center;
  gap: 8px;
}

.our-events-section-2 {
  position: relative;
  background: #f8f7f0;
}
.our-events-section-2 .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: fit-content;
}

.section-top-6 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-6 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .section-top-6 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.section-top-6 .left .common-subtitle span {
  color: var(--theme-color-3);
}
.section-top-6 .left .common-title {
  margin-bottom: 0;
}
.section-top-6 .left .common-title h2 {
  color: var(--theme-color-3);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-top-6 .left .common-title h2 {
    font-size: 38px;
  }
}
.section-top-6 .right a {
  color: var(--white-color);
  background-color: var(--theme-color-3);
  border: none;
}
.section-top-6 .right a::before {
  background-color: var(--theme-color-2);
}
.section-top-6 .right a .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.section-top-6 .right a:hover {
  color: var(--theme-color-3);
  background-color: var(--theme-color-2);
}
.section-top-6 .right a:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--white-color);
}

.our-events-section-3 {
  position: relative;
  overflow: hidden;
}
.our-events-section-3 .shape {
  position: absolute;
  right: 0;
  bottom: -56%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .our-events-section-3 .shape {
    bottom: -57%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .our-events-section-3 .shape {
    bottom: -43%;
    text-align: end;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-events-section-3 .shape {
    bottom: -23%;
    text-align: end;
  }
}
@media (max-width: 767px) {
  .our-events-section-3 .shape {
    text-align: end;
    bottom: -20%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .our-events-section-3 .shape img {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-events-section-3 .shape img {
    width: 61%;
  }
}
@media (max-width: 767px) {
  .our-events-section-3 .shape img {
    width: 50%;
  }
}

.adjusted-col-gap {
  padding: 0;
}

/* 14 Partners Css */
.partners-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
}

.partners-title span{
    flex:1;
    height:2px;
    background:#222;
}
.partners-title span:first-child{
  background:linear-gradient(
        to right,
        transparent 0%,
        var(--title-color) 100%
    );
}
.partners-title span:last-child{
  background:linear-gradient(
        to left,
        transparent 0%,
        var(--title-color) 100%
    );
}

.partners-title h3{
    margin:0;
    text-align:center;
}
.major-partners .partners-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.major-partners .partners-title h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--title-color);
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .major-partners .partners-title h3 {
    max-width: 220px;
    width: 100%;
    text-align: center;
    font-size: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .major-partners .partners-title h3 {
    max-width: 200px;
    width: 100%;
    text-align: center;
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .major-partners .partners-title h3 {
    width: 60%;
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .major-partners .partners-title h3 {
    width: 100%;
    text-align: center;
    font-size: 24px;
  }
}

.major-partners .partners-title-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.major-partners .partners-title-2 h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--white-color);
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .major-partners .partners-title-2 h3 {
    max-width: 220px;
    width: 100%;
    text-align: center;
    font-size: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .major-partners .partners-title-2 h3 {
    max-width: 200px;
    width: 100%;
    text-align: center;
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .major-partners .partners-title-2 h3 {
    width: 60%;
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .major-partners .partners-title-2 h3 {
    width: 100%;
    text-align: center;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .major-partners .partners-title-2 .line-right,
  .major-partners .partners-title-2 .line {
    width: 60%;
  }
}
.major-partners .partners-title-2 .line-right img,
.major-partners .partners-title-2 .line img {
  width: 100%;
}
.major-partners .partners-title-2 .line img {
  transform: rotate(180deg);
}
.major-partners.style-2 {
  margin-bottom: -80px;
}
.major-partners.style-3 {
  margin-bottom: -200px;
}

.partner-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    max-width: 202px;
    height: 119px;
    width: 100%;
    background-color: var(--white-color);
    border-radius: 8px;
    border: 2px solid var(--light-color);
    box-shadow: 6px 6px 10px 0 #f7f7f7;
}

.partner-2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 202px;
  height: 119px;
  width: 100%;
  background: #F8F7F0;
  border: 1px solid var(--theme-color-2);
  border-radius: 8px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.partner-2:hover {
  border: 1px solid var(--theme-color-3);
  background-color: var(--theme-color-3);
}
.partner-2:hover .logo-1 {
  visibility: visible;
  opacity: 1;
}
.partner-2:hover .logo-2 {
  visibility: hidden;
  opacity: 0;
}
.partner-2 .logo-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.partner-2 .logo-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.partner-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  max-width: 202px;
  height: 119px;
  width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.partner-3:hover {
  background-color: var(--theme-color-3);
}

.partner-marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 20px 0;
}
.partner-marquee .partner-marquee-layout {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-animation: partner-marquee 20s linear infinite;
  animation: partner-marquee 20s linear infinite;
}
.partner-marquee .partner-marquee-layout .partner-1 {
  width: 200px;
  flex: none;
  margin-right: 30px;
}
.partner-marquee .partner-marquee-layout .partner-2 {
  width: 200px;
  flex: none;
  margin-right: 30px;
}
.partner-marquee .partner-marquee-layout .partner-3 {
  width: 200px;
  flex: none;
  margin-right: 30px;
}

@-webkit-keyframes partner-marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes partner-marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* 15 Contact Us Css */
.contact-us {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  padding-top: 20px;
  overflow-x: clip;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-us {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .contact-us {
    padding: 40px 0;
  }
}
.contact-us .shape-6 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.contact-us .shape-7 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.contact-form {
  max-width: 580px;
  width: 100%;
  background-color: var(--theme-color-3);
  padding: 60px;
  border: 2px solid var(--light-color);
  border-radius: 10px;
  margin: -40px 0 0 auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form {
    margin: 0 auto 0;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .contact-form {
    margin: 0 auto 0;
    padding: 30px;
  }
}
.contact-form .form-content {
  position: relative;
  z-index: 1;
}
.contact-form .form-content-top h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--light-color);
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form .form-content-top h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form .form-content-top h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}
.contact-form .form-content-top h3 span {
  color: var(--theme-color-2);
}
.contact-form .form-content-top p {
  max-width: 357px;
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  color: var(--light-color);
  opacity: 0.9;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form .form-content-top p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form .form-content-top p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.contact-form input,
.contact-form textarea {
  background: rgba(248, 247, 240, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 20px;
  resize: none;
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  color: var(--white-color);
}
.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: #f8f7f0;
}
.contact-form input:-moz-placeholder,
.contact-form textarea:-moz-placeholder {
  color: #f8f7f0;
}
.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  color: #f8f7f0;
}
.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  color: #f8f7f0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid var(--theme-color-2);
}
.contact-form input:focus::-webkit-input-placeholder,
.contact-form textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-form input:focus:-moz-placeholder,
.contact-form textarea:focus:-moz-placeholder {
  color: transparent;
}
.contact-form input:focus::-moz-placeholder,
.contact-form textarea:focus::-moz-placeholder {
  color: transparent;
}
.contact-form input:focus:-ms-input-placeholder,
.contact-form textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-form textarea {
  height: 120px;
}
.contact-form button {
  border: none;
}
.contact-form .shape {
  position: absolute;
  top: -220px;
  right: -210px;
  z-index: -1;
  pointer-events: none;
}

.form-message.success {
  margin-bottom: 0;
  color: var(--white-color);
  margin-top: 10px;
}

.form-message.error {
  margin-bottom: 0;
  color: red;
  margin-top: 10px;
}

.contact-us-2 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  margin: 0 85px;
  padding: 120px 0;
  border-radius: 20px;
  background-attachment: fixed;
}
@media (max-width: 1700px) {
  .contact-us-2 {
    margin: 0 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-us-2 {
    padding: 100px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-us-2 {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .contact-us-2 {
    padding: 80px 0;
    margin: 0;
    border-radius: 0;
  }
}
.contact-us-2 .icon img {
  display: inline-block;
  position: absolute;
  top: 27%;
  right: 41.5%;
  transform: rotate(120deg);
  z-index: -1;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .contact-us-2 .icon img {
    right: 43.5%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-us-2 .icon img {
    right: 53%;
  }
}

.contact-form-2 {
  max-width: 550px;
  width: 100%;
  padding: 50px;
  border: 2px solid var(--light-color);
  border-radius: 10px;
  margin-left: auto;
  margin-top: 0;
  background: rgba(0, 69, 64, 0.2);
  box-shadow: 4px 4px 0 #ffe175;
  backdrop-filter: blur(10px);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .contact-form-2 {
    margin: 0 60px 0 auto;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-2 {
    margin: 0 60px 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-form-2 {
    margin: 0 40px 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-2 {
    padding: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact-form-2 {
    padding: 30px;
    margin: 0 auto;
  }
}
.contact-form-2 .form-content {
  position: relative;
  z-index: 1;
}
.contact-form-2 h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--light-color);
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-2 h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form-2 h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}
.contact-form-2 h3 span {
  color: var(--theme-color-2);
}
.contact-form-2 p {
  max-width: 357px;
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  color: var(--light-color);
  opacity: 0.9;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-2 p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form-2 p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.contact-form-2 input,
.contact-form-2 textarea {
  background: #f8f7f0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 20px;
  resize: none;
  font-size: 17px;
  line-height: 28px;
}
.contact-form-2 input::-webkit-input-placeholder,
.contact-form-2 textarea::-webkit-input-placeholder {
  color: var(--body-color);
}
@media (max-width: 991px) {
  .contact-form-2 input::-webkit-input-placeholder,
  .contact-form-2 textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
}
.contact-form-2 input:-moz-placeholder,
.contact-form-2 textarea:-moz-placeholder {
  color: var(--body-color);
}
@media (max-width: 991px) {
  .contact-form-2 input:-moz-placeholder,
  .contact-form-2 textarea:-moz-placeholder {
    font-size: 16px;
  }
}
.contact-form-2 input::-moz-placeholder,
.contact-form-2 textarea::-moz-placeholder {
  color: var(--body-color);
}
@media (max-width: 991px) {
  .contact-form-2 input::-moz-placeholder,
  .contact-form-2 textarea::-moz-placeholder {
    font-size: 16px;
  }
}
.contact-form-2 input:-ms-input-placeholder,
.contact-form-2 textarea:-ms-input-placeholder {
  color: var(--body-color);
}
@media (max-width: 991px) {
  .contact-form-2 input:-ms-input-placeholder,
  .contact-form-2 textarea:-ms-input-placeholder {
    font-size: 16px;
  }
}
.contact-form-2 input:focus,
.contact-form-2 textarea:focus {
  background: #f8f7f0;
  border-color: var(--theme-color-3);
}
.contact-form-2 input:focus::-webkit-input-placeholder,
.contact-form-2 textarea:focus::-webkit-input-placeholder {
  color: var(--theme-color-3);
}
.contact-form-2 input:focus:-moz-placeholder,
.contact-form-2 textarea:focus:-moz-placeholder {
  color: var(--theme-color-3);
}
.contact-form-2 input:focus::-moz-placeholder,
.contact-form-2 textarea:focus::-moz-placeholder {
  color: var(--theme-color-3);
}
.contact-form-2 input:focus:-ms-input-placeholder,
.contact-form-2 textarea:focus:-ms-input-placeholder {
  color: var(--theme-color-3);
}
.contact-form-2 button {
  border: none;
}

/* 16 Testimonial Css */
.testimonial .common-title h2 span i {
  color: var(--theme-color-2);
  padding: 5px 10px;
  background: var(--theme-color-3);
  border-radius: 100%;
}
.testimonial .reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .reviews {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial .reviews {
    margin-bottom: 20px;
  }
}
.testimonial .reviews h3 {
  font-weight: 600;
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1px var(--body-color);
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .reviews h3 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .testimonial .reviews h3 {
    font-size: 30px;
  }
}
.testimonial .reviews img {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .reviews img {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 767px) {
  .testimonial .reviews img {
    width: 30px;
    height: 30px;
  }
}
.testimonial .reviews h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .reviews h5 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .testimonial .reviews h5 {
    font-size: 18px;
  }
}
.testimonial .review-btn {
  max-width: 240px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 2px solid rgba(0, 69, 64, 0.1);
  border-radius: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .review-btn {
    max-width: 225px;
    gap: 8px;
    padding: 8px 16px;
  }
}
@media (max-width: 767px) {
  .testimonial .review-btn {
    max-width: 220px;
    gap: 8px;
    padding: 8px 16px;
  }
}
.testimonial .review-btn span {
  color: var(--theme-color-3);
  font-weight: 500;
  line-height: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .review-btn span {
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .testimonial .review-btn span {
    line-height: 1.3;
  }
}
.testimonial .review-btn img {
  width: 44px;
  height: 44px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .review-btn img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .testimonial .review-btn img {
    width: 34px;
    height: 34px;
  }
}

.testimonial-card {
  background-color: var(--theme-color-3);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card {
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-card {
    gap: 30px;
    flex-direction: column;
  }
}
.testimonial-card:hover .thumb .video-play-btn {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.testimonial-card .thumb {
  border-radius: 12px;
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.testimonial-card .thumb .thumb-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 100px 30px 30px;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(
0deg, rgb(0 16 45) 0%, rgba(255, 255, 255, 0) 100%);
}
.testimonial-card .thumb img {
  width: 100%;
}
.testimonial-card .thumb .video-play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: var(--light-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(2px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  animation: animate-pulse 3s linear infinite;
}
.testimonial-card .thumb .video-play-btn:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}
.testimonial-card .card-content {
  flex: 1;
}
.testimonial-card .card-content .rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 4px 11px #004540, inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  margin-bottom: 20px;
}
.testimonial-card .card-content .rating p {
  margin-bottom: 0;
  color: var(--light-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.testimonial-card .card-content .rating i {
  font-size: 12px;
  line-height: 20px;
  color: var(--theme-color-2);
}
.testimonial-card .card-content .rating span {
  color: var(--theme-color-2);
  font-weight: 500;
  line-height: 20px;
}
.testimonial-card .card-content .review {
  color: var(--light-color);
  margin-bottom: 40px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card .card-content .review {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card .card-content .review {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-card .card-content .review {
    margin-bottom: 20px;
  }
}
.testimonial-card .card-content .author-details h5 {
  color: var(--light-color);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}
.testimonial-card .card-content .author-details h5 span {
  font-weight: 400;
  font-size: 14px;
}
.testimonial-card .card-content .author-details h6 {
  font-size: 16px;
  font-weight: 200;
  color: var(--light-color);
  margin-bottom: 0;
}

.testimonial-content .text {
  margin-bottom: 30px;
}

.testimonial-slider-active .testimonial-button-prev, 
.testimonial-slider-active .testimonial-button-next {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--theme-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.testimonial-slider-active .testimonial-button-prev{
  left: -60px;
}
.testimonial-slider-active .testimonial-button-next{
  right: -60px;
}
.testimonial-slider-active .swiper-wrapper{
      padding-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-content .text {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-content .text {
    margin-bottom: 20px;
  }
}

.testimonial-slider-active {
  overflow: hidden;
  padding-left: 40px;
}
.testimonial-slider-active .swiper-slide {
  opacity: 0.3;
  overflow: visible;
}
.testimonial-slider-active .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.testimonial-slider-active .swiper-slide.swiper-slide-active .testimonial-card .thumb .video-play-btn {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.testimonial-slider-active .swiper-slide .btn-layer.startup-product-play{
  visibility: hidden;
  opacity: 0;
}
.testimonial-slider-active .swiper-slide.swiper-slide-active .btn-layer.startup-product-play{
  visibility: visible;
  opacity: 1;
}

.testimonial-card-2 {
  background-color: var(--white-color);
  padding: 10px;
  border: 2px solid var(--white-color);
  border-radius: 16px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-2 {
    gap: 20px;
    flex-direction: column;
  }
}
.testimonial-card-2:hover {
  border: 2px solid var(--theme-color-2);
}
.testimonial-card-2 .thumb {
  border-radius: 12px;
  position: relative;
  z-index: 1;
  flex: none;
}
@media (max-width: 767px) {
  .testimonial-card-2 .thumb {
    width: 100%;
  }
}
.testimonial-card-2 .thumb img {
  width: 100%;
  border-radius: 12px;
}
.testimonial-card-2 .thumb .video-play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(6px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  animation: animate-pulse 3s linear infinite;
}
.testimonial-card-2 .thumb .video-play-btn:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}
.testimonial-card-2 .card-content h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 16px;
}
.testimonial-card-2 .card-content .review {
  color: var(--light-color);
  margin-bottom: 80px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
.testimonial-card-2 .card-content .review p {
  color: var(--gray-color);
}
.testimonial-card-2 .card-content .author-details h5 {
  color: var(--theme-color-3);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}
.testimonial-card-2 .card-content .author-details h5 span {
  font-weight: 400;
  font-size: 14px;
}
.testimonial-card-2 .card-content .author-details h6 {
  font-size: 16px;
  font-weight: 200;
  color: var(--body-color);
  margin-bottom: 0;
}
.testimonial-card-2 .quote-icon {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: -1;
}

.section-top-4 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section-top-4 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.section-top-4 .left .common-subtitle span {
  color: var(--theme-color-3);
}
.section-top-4 .left .common-title {
  margin-bottom: 0;
}
.section-top-4 .left .common-title h2 {
  color: var(--theme-color-3);
}

.section-top-8 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section-top-8 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.section-top-8 .left .common-subtitle span {
  color: var(--white-color);
}
.section-top-8 .left .common-title {
  margin-bottom: 0;
}
.section-top-8 .left .common-title h2 {
  color: var(--white-color);
}

.testimonial-section-2 {
  background-color: #f8f7f0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.testimonial-section-2 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1700px) {
  .testimonial-section-2 .shape-1 {
    width: 80%;
  }
}
.testimonial-section-2 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 2%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .testimonial-section-2 .shape-2 {
    width: 14%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section-2 .shape-2 {
    width: 16%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section-2 .shape-2 {
    width: 20%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-section-2 .shape-2 {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .testimonial-section-2 .shape-2 {
    width: 30%;
  }
}
.testimonial-section-2 .e-primary-btn {
  color: var(--theme-color-2);
  background: var(--theme-color-3);
}
.testimonial-section-2 .e-primary-btn:before {
  background: var(--theme-color-3);
}
.testimonial-section-2 .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.testimonial-section-2 .e-primary-btn:hover {
  color: var(--theme-color-3);
}
.testimonial-section-2 .e-primary-btn:hover:before {
  background: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.testimonial-section-2 .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}

.testimonial-card-3 {
  background-color: var(--theme-color-3);
  border-radius: 10px;
}
.testimonial-card-3:hover .testimonial-card-thumb:before {
  opacity: 1;
}
.testimonial-card-3:hover .testimonial-card-thumb .circled-quote {
  background-color: var(--theme-color-2);
  border: 2px solid var(--theme-color-3);
  color: var(--theme-color-3);
}
.testimonial-card-3:hover .testimonial-card-thumb .author-info {
  border: 1px solid var(--theme-color-2);
}
.testimonial-card-3 .testimonial-card-content {
  padding: 30px;
  margin-bottom: 20px;
}
.testimonial-card-3 .testimonial-card-content h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-3 .testimonial-card-content h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-3 .testimonial-card-content h5 {
    font-size: 20px;
  }
}
.testimonial-card-3 .testimonial-card-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--white-color);
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-3 .testimonial-card-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .testimonial-card-3 .testimonial-card-content p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.testimonial-card-3 .testimonial-card-thumb {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 10px;
  border-radius: 10px;
}
.testimonial-card-3 .testimonial-card-thumb:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: -30px;
  z-index: -1;
  background: var(--theme-color-2);
  clip-path: url(#c-mask-shape);
  opacity: 0.08;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.testimonial-card-3 .testimonial-card-thumb .clippy {
  position: absolute;
  top: -999px;
  left: -999px;
  width: 0;
  height: 0;
  opacity: 0;
}
.testimonial-card-3 .testimonial-card-thumb img {
  border-bottom-left-radius: 10px;
  overflow: hidden;
  clip-path: url(#c-mask-image);
  margin-left: -20px;
}
.testimonial-card-3 .testimonial-card-thumb .circled-quote {
  width: 80px;
  height: 80px;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color-3);
  border-radius: 100%;
  border: 2px solid var(--theme-color-2);
  color: var(--theme-color-2);
  position: absolute;
  top: 0;
  right: 70px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card-3 .testimonial-card-thumb .circled-quote {
    width: 70px;
    height: 70px;
    font-size: 32px;
    top: 10px;
    right: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-3 .testimonial-card-thumb .circled-quote {
    width: 60px;
    height: 60px;
    font-size: 28px;
    top: 0;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-3 .testimonial-card-thumb .circled-quote {
    width: 60px;
    height: 60px;
    font-size: 24px;
    top: 10px;
    right: 50px;
  }
}
.testimonial-card-3 .testimonial-card-thumb .author-info {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 8px;
  padding: 20px;
  max-width: 280px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-3 .testimonial-card-thumb .author-info {
    max-width: 240px;
  }
}
.testimonial-card-3 .testimonial-card-thumb .author-info h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: var(--white-color);
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .testimonial-card-3 .testimonial-card-thumb .author-info h5 {
    font-size: 18px;
  }
}
.testimonial-card-3 .testimonial-card-thumb .author-info p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .testimonial-card-3 .testimonial-card-thumb .author-info p {
    font-size: 16px;
  }
}

.section-top-10 {
  text-align: center;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-10 .common-title h2 img {
    width: 32px;
  }
}
@media (max-width: 767px) {
  .section-top-10 .common-title h2 img {
    width: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-top-10 {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-10 {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .section-top-10 {
    margin-bottom: 40px;
    width: 80%;
  }
}

.testimonial-slider-active-2 .testimonial-pagination-wrap {
  display: flex;
  justify-content: center;
}
.testimonial-slider-active-2 .testimonial-pagination-wrap .testimonial-pagination-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
  margin-top: 50px;
}
.testimonial-slider-active-2 .testimonial-pagination-wrap .testimonial-pagination-2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: none;
  border: 1px solid transparent;
  backdrop-filter: blur(4.75px);
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.testimonial-slider-active-2 .testimonial-pagination-wrap .testimonial-pagination-2 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.testimonial-slider-active-2 .testimonial-pagination-wrap .testimonial-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--theme-color-3);
}
.testimonial-slider-active-2 .testimonial-pagination-wrap .testimonial-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}

/* 17 Completed project Css */
.completed-project-top {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  padding-bottom: 360px;
  padding-top: 120px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .completed-project-top {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .completed-project-top {
    padding-top: 80px;
    padding-bottom: 300px;
  }
}
.completed-project-top .shape-8 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.completed-project-top .shape-9 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.completed-project-bottom {
  margin-top: -360px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .completed-project-bottom {
    margin-top: -260px;
  }
}

.project-card {
  overflow: hidden;
  border-radius: 10px;
}
.project-card.active .thumb a img, .project-card:hover .thumb a img {
  transform: scale(1.1);
}
/* .project-card.active .thumb .content, .project-card:hover .thumb .content {
  padding-bottom: 100px;
} */
/* @media (max-width: 767px) {
  .project-card.active .thumb .content, .project-card:hover .thumb .content {
    padding-bottom: 80px;
  }
} */
.project-card.active .thumb .content h5, .project-card:hover .thumb .content h5 {
  color: var(--white-color);
}
.project-card.active .thumb .content .details-btn, .project-card:hover .thumb .content .details-btn {
  bottom: 20px;
}
.project-card:hover .thumb .content .arrow-btn{
  opacity: 1;
  visibility: visible;
}
.project-card .thumb {
  position: relative;
  overflow: hidden;
}
.project-card .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.project-card .thumb > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 24, 25, 0) 38.69%, rgba(0, 24, 25, 0.6) 66.87%, #001819 100%);
  z-index: 2;
}
.project-card .thumb img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.project-card .thumb .tag {
  position: absolute;
  top: 20px;
  left: 20px;
}
.project-card .thumb .tag p {
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
}
.project-card .thumb .number {
  position: absolute;
  top: 20px;
  right: 20px;
}
.project-card .thumb .number a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.project-card .thumb .number a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.project-card .thumb .content {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 90%;
    transform: translateX(5.5%);
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    height: auto;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
  .project-card .thumb .content {
    padding: 12px 10px;
  }
}
.project-card .thumb .content:hover {
  cursor: pointer;
}
.project-card .thumb .content h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: var(--light-color);
    margin-bottom: 0;
}
.project-card .thumb .content .arrow-btn {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    text-align: center;
    border-radius: 50%;
    color: var(--white-color);
    background: var(--theme-color-3);
    opacity: 0;
    visibility: hidden;
    transition:opacity 0.3s;
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-card .thumb .content h5 {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .project-card .thumb .content h5 {
    font-size: 20px;
    line-height: 1.2;
  }
}
.project-card .thumb .content p {
  color: var(--light-color);
  margin-bottom: 0;
}
.project-card .thumb .content .details-btn {
  position: absolute;
  bottom: -100px;
  transition: all 0.3s;
}
.project-card .thumb .content .join-us {
  margin-top: 15px;
}
.project-card .thumb .content .join-us a {
  padding: 5px 5px 5px 17px;
  gap: 10px;
}
.project-card .thumb .content .join-us a .icon-wrap {
  width: 34px;
  height: 34px;
}
.project-card.style-service .thumb .content {
  padding: 14px 23px 20px;
}
.project-card.style-service .thumb .content .join-us {
  position: absolute;
  bottom: -100px;
  margin-top: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.project-card.style-service:hover .thumb .content {
  padding-bottom: 82px;
}
@media (max-width: 767px) {
  .project-card.style-service:hover .thumb .content {
    padding-bottom: 80px;
  }
}
.project-card.style-service:hover .thumb .content .join-us {
  bottom: 20px;
}
.project-card.style-2 .thumb .tag {
  left: auto;
  right: 20px;
}
.project-card.style-2 .thumb .content {
  max-width: 414px;
}

.completed-project-slider-active .project-card .thumb > a {
  display: block;
  width: 100%;
  height: 500px;
}
@media (max-width: 767px) {
  .completed-project-slider-active .project-card .thumb > a {
    height: 400px;
  }
}
.completed-project-slider-active .project-card .thumb img {
  width: 100%;
  height: 100%;
}
.completed-project-slider-active .swiper-slide-active .project-card .thumb a img {
  transform: scale(1.1);
}
.completed-project-slider-active .swiper-slide-active .project-card .thumb .content {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .completed-project-slider-active .swiper-slide-active .project-card .thumb .content {
    padding-bottom: 80px;
  }
}
.completed-project-slider-active .swiper-slide-active .project-card .thumb .content h5 {
  color: var(--theme-color-2);
}
.completed-project-slider-active .swiper-slide-active .project-card .thumb .content .details-btn {
  bottom: 20px;
  transition: all 0.3s;
}
.completed-project-slider-active .completed-project-pagination {
  height: 5px;
  border-radius: 10px;
  margin-top: 60px;
  background: rgba(0, 69, 64, 0.5);
  display: flex;
}
@media (max-width: 767px) {
  .completed-project-slider-active .completed-project-pagination {
    margin-top: 30px;
  }
}
.completed-project-slider-active .completed-project-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  background: none;
  margin: 0;
}
.completed-project-slider-active .completed-project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color-3);
}

.project-card-2 {
  border-radius: 10px;
  margin-bottom: 30px;
}
.project-card-2.active .thumb a img, .project-card-2:hover .thumb a img {
  transform: scale(1.1);
}
.project-card-2.active .thumb .details-btn-2, .project-card-2:hover .thumb .details-btn-2 {
  right: 20px;
  transition: all 0.3s;
}
/* .project-card-2.active .thumb .content, .project-card-2:hover .thumb .content {
  padding-bottom: 20px;
} */
.project-card-2.active .thumb .content h5, .project-card-2:hover .thumb .content h5 {
  color: var(--theme-color-2);
}
.project-card-2.active .thumb .content .details-btn, .project-card-2:hover .thumb .content .details-btn {
  bottom: 20px;
  transition: all 0.3s;
}
.project-card-2 .thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.project-card-2 .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.project-card-2 .thumb > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 24, 25, 0) 38.69%, rgba(0, 24, 25, 0.6) 66.87%, #001819 100%);
  z-index: 2;
}
.project-card-2 .thumb img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.project-card-2 .thumb .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.project-card-2 .thumb .tag p {
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
}
.project-card-2 .thumb .number {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.project-card-2 .thumb .number a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.project-card-2 .thumb .number a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.project-card-2 .thumb .content {
    position: absolute;
    bottom: 20px;
    left: 8%;
    width: 84%;
    padding: 10px 10px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    height: auto;
    overflow: hidden;
    z-index: 10;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
  .project-card-2 .thumb .content {
    padding: 12px 10px;
  }
}
.project-card-2 .thumb .content:hover {
  cursor: pointer;
}
.project-card-2 .thumb .content h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--light-color);
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-card-2 .thumb .content h5 {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .project-card-2 .thumb .content h5 {
    font-size: 20px;
    line-height: 1.2;
  }
}
.project-card-2 .thumb .content p {
  color: var(--light-color);
  margin-bottom: 0;
}
.project-card-2 .thumb .content .details-btn {
  position: absolute;
  bottom: -100px;
  transition: all 0.3s;
}
.project-card-2 .thumb .content .join-us {
  margin-top: 15px;
}
.project-card-2 .thumb .content .join-us a {
  padding: 5px 5px 5px 17px;
  gap: 10px;
}
.project-card-2 .thumb .content .join-us a .icon-wrap {
  width: 34px;
  height: 34px;
}
.project-card-2.style-service .thumb .content {
  padding: 14px 23px 20px;
}
.project-card-2.style-service .thumb .content .join-us {
  display: none !important;
}
.project-card-2.style-service:hover .thumb .content .join-us {
  display: inline-block !important;
}
.project-card-2.style-2 .thumb .tag {
  left: auto;
  right: 20px;
}
.project-card-2.style-2 .thumb .content {
  max-width: 414px;
}

.completed-project-slider-active-2 .project-card-2 .thumb > a {
  display: block;
  width: 100%;
  height: 300px;
}
@media (max-width: 767px) {
  .completed-project-slider-active-2 .project-card-2 .thumb > a {
    height: 400px;
  }
}
.completed-project-slider-active-2 .project-card-2 .thumb .details-btn-2 {
  /* transition: all 0.3s linear 0.3s; */
    background-color: var(--white-color);
    color: var(--theme-color);
    border: 1.5px solid var(--white-color);
}
.completed-project-slider-active-2 .project-card-2 .thumb img {
  width: 100%;
  height: 100%;
}
.completed-project-slider-active-2 .swiper-slide-active .project-card-2 .thumb a img {
  transform: scale(1.1);
}
.completed-project-slider-active-2 .swiper-slide-active .project-card-2 .thumb .details-btn-2 {
  right: 20px;
}
.completed-project-slider-active-2 .swiper-slide-active .project-card-2 .thumb .content {
  padding-bottom: 20px;
}
.completed-project-slider-active-2 .swiper-slide-active .project-card-2 .thumb .content h5 {
  color: var(--theme-color-2);
}
.completed-project-slider-active-2 .completed-project-pagination-2 {
  height: 5px;
  border-radius: 10px;
  margin-top: 60px;
  background: rgba(0, 69, 64, 0.5);
  display: flex;
}
@media (max-width: 767px) {
  .completed-project-slider-active-2 .completed-project-pagination-2 {
    margin-top: 30px;
  }
}
.completed-project-slider-active-2 .completed-project-pagination-2 .swiper-pagination-bullet {
  flex: 1;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  background: none;
  margin: 0;
}
.completed-project-slider-active-2 .completed-project-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color-3);
}

.details-btn-2 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
  transform: rotate(-45deg);
  padding: 12px 20px;
  border: 1.5px solid var(--theme-color-2);
  border-radius: 53px;
  transition: all 0.3s;
  position: absolute;
  top: 20px;
  right: -60px;
}

.project-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.project-pagination ul li {
  display: inline-block;
  margin-right: 10px;
}
.project-pagination ul li:last-child {
  margin-right: 0;
}
.project-pagination ul li.active a {
  color: var(--white-color);
  background: var(--theme-color-3);
}
.project-pagination ul li:hover a {
  color: var(--white-color);
  background: var(--theme-color-3);
}
.project-pagination ul li.icon a {
  border: 2px solid rgba(0, 69, 64, 0.1);
  background: transparent;
}
.project-pagination ul li.icon a:hover {
  color: var(--white-color);
  background: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.project-pagination ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #868681;
  background: #f8f7f0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}

.completed-project-2 {
    position: relative;
    background-color: var(--theme-color);
    overflow: hidden;
}
.completed-project-2 .shape-1 {
  position: absolute;
  top: -60%;
  left: 0;
  width: fit-content;
  z-index: 1;
}
.completed-project-2 .shape-1,
.completed-project-2 .shape-2{
  filter: brightness(0) invert(1);
}
.completed-project-2 .shape-2 {
  position: absolute;
  top: 25%;
  width: fit-content;
  right: 0;
  z-index: 1;
}

/* 18 What we do Css */
.what-we-do-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.what-we-do-section .shape-10 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.what-we-do-section .shape-11 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.section-top-2 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-2 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .section-top-2 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.section-top-2 .left {
  max-width: 662px;
  width: 100%;
}
.section-top-2 .left .common-subtitle span {
  color: var(--body-colo);
}
.section-top-2 .left .common-title {
  margin-bottom: 0;
}
.section-top-2 .left .common-title h2 {
  color: var(--light-color);
  margin-bottom: 0;
}
.section-top-2 .right {
  max-width: 434px;
  width: 100%;
}
.section-top-2 .right p {
  color: var(--light-color);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-top-2 .right p {
    margin-bottom: 14px;
  }
}
.section-top-2 .right .service-btn {
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--theme-color-2);
}
.section-top-2 .right .service-btn:before {
  background: transparent;
}
.section-top-2 .right .service-btn:hover {
  text-decoration: underline;
}
.section-top-2 .right .service-btn .icon-wrap {
  width: auto;
  height: auto;
  color: var(--theme-color-2);
  background: transparent;
}
.section-top-2 .right .service-btn .icon-wrap:hover {
  background: transparent;
}

.section-top-3 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section-top-3 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.section-top-3 .left {
  max-width: 575px;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .section-top-3 .left {
    max-width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-top-3 .left {
    max-width: 500px;
  }
}
.section-top-3 .left .common-subtitle {
  margin-bottom: 20px;
}
.section-top-3 .left .common-subtitle span {
  color: var(--theme-color-2);
}
.section-top-3 .left .common-title {
  margin-bottom: 0;
}
.section-top-3 .left .common-title h2 {
  color: var(--light-color);
  margin-bottom: 0;
}
.section-top-3 .right {
  max-width: 402px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-3 .right {
    max-width: 300px;
  }
}
.section-top-3 .right p {
  color: var(--light-color);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
.section-top-3 .right .service-btn {
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--theme-color-2);
}
.section-top-3 .right .service-btn:before {
  background: transparent;
}
.section-top-3 .right .service-btn:hover {
  text-decoration: underline;
}
.section-top-3 .right .service-btn .icon-wrap {
  width: auto;
  height: auto;
  color: var(--theme-color-2);
  background: transparent;
}
.section-top-3 .right .service-btn .icon-wrap:hover {
  background: transparent;
}

.what-we-do-section-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin: 80px 85px 0;
  padding: 100px 0 120px 0;
  background-color: var(--theme-color);
  overflow: hidden;
}
@media (max-width: 1700px) {
  .what-we-do-section-2 {
    margin: 80px 20px 0;
  }
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .what-we-do-section-2 {
    padding: 100px 40px 120px 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .what-we-do-section-2 {
    padding: 80px 40px 100px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .what-we-do-section-2 {
    padding: 80px 20px 100px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .what-we-do-section-2 {
    padding: 80px 20px 100px 20px;
  }
}
@media (max-width: 767px) {
  .what-we-do-section-2 {
    padding: 80px 10px 80px 10px;
    margin: 80px 15px 0;
  }
}
.what-we-do-section-2 .shape {
  position: absolute;
  top: 0;
  right: 12%;
  z-index: -1;
}
.what-we-do-section-2 .we-do-card {
  overflow: hidden;
  background-color: var(--white-color);
  border-radius: 10px;
}
.what-we-do-section-2 .we-do-card:hover .card-content i {
  color: var(--theme-color-3);
}
.what-we-do-section-2 .we-do-card:hover .card-content i span {
  color: var(--theme-color-2);
}
.what-we-do-section-2 .we-do-card:hover .card-thumb img {
  overflow: hidden;
  transform: scale(1.1);
}
.what-we-do-section-2 .we-do-card .card-content {
  padding: 30px;
}
.what-we-do-section-2 .we-do-card .card-content i {
  color: var(--theme-color-2);
  font-size: 40px;
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.what-we-do-section-2 .we-do-card .card-content i span {
  font-size: 14px;
  color: var(--theme-color-3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.what-we-do-section-2 .we-do-card .card-content h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
  color: var(--title-color);
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .what-we-do-section-2 .we-do-card .card-content h5 {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .what-we-do-section-2 .we-do-card .card-content h5 {
    font-size: 18px;
  }
}
.what-we-do-section-2 .we-do-card .card-thumb {
  position: relative;
}
.what-we-do-section-2 .we-do-card .card-thumb .clippy{
    position: absolute;
    top: -999px;
    left: -999px;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}
.what-we-do-section-2 .we-do-card .card-thumb img {
  border-radius: 10px;
      clip-path: url(#w-mask-image);
}
.what-we-do-section-2 .we-do-card .card-thumb .circled-btn {
  line-height: 100%;
  text-align: center;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color-3);
  border-radius: 100%;
  position: absolute;
  top: -25px;
  right: 30px;
}

.what-we-do-section-2 .we-do-card .card-thumb .circled-btn .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--white-color);
  font-size: 16px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.what-we-do-section-2 .we-do-card .card-thumb .circled-btn:hover {
  background-color: var(--theme-color);
}


.whatwedo-slider-active {
  margin-right: -280px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .whatwedo-slider-active {
    margin-right: -75px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .whatwedo-slider-active {
    margin-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .whatwedo-slider-active {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .whatwedo-slider-active {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .whatwedo-slider-active {
    margin-right: 0;
  }
}
.whatwedo-slider-active .whatwedo-slider-bottom {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .whatwedo-slider-active .whatwedo-slider-bottom {
    margin-top: 40px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .whatwedo-slider-active .whatwedo-slider-bottom {
    margin-top: 40px;
    gap: 40px;
  }
}
.whatwedo-slider-active .whatwedo-slider-bottom .whatwedo-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatwedo-slider-active .whatwedo-slider-bottom .whatwedo-pagination-wrap {
  width: 100%;
}
@media (max-width: 767px) {
  .whatwedo-slider-active .whatwedo-slider-bottom .whatwedo-pagination-wrap {
    display: none;
  }
}
.whatwedo-slider-active .whatwedo-button-prev,
.whatwedo-slider-active .whatwedo-button-next {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2.35px);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.whatwedo-slider-active .whatwedo-button-prev:hover,
.whatwedo-slider-active .whatwedo-button-next:hover {
  color: var(--white-color);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}
.whatwedo-slider-active .whatwedo-pagination {
  height: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  width: calc(100% - 280px);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .whatwedo-slider-active .whatwedo-pagination {
    width: calc(100% - 75px);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .whatwedo-slider-active .whatwedo-pagination {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .whatwedo-slider-active .whatwedo-pagination {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .whatwedo-slider-active .whatwedo-pagination {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .whatwedo-slider-active .whatwedo-pagination {
    margin-top: 30px;
    width: 100%;
  }
}
.whatwedo-slider-active .whatwedo-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  background: none;
  margin: 0;
}
.whatwedo-slider-active .whatwedo-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color-2);
}

/* 19 Volunteer Css */
.contact-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px 30px;
  border: 2px solid rgba(0, 69, 64, 0.1);
  border-radius: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-details {
    padding: 20px 25px;
  }
}
@media (max-width: 767px) {
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    border: none;
  }
}
.contact-details .join-us-btn {
  display: flex;
  align-items: center;
  text-align: start;
  gap: 8px;
}
@media (max-width: 767px) {
  .contact-details .join-us-btn {
    padding: 5px 5px 5px 20px;
    border: 1.5px solid rgba(0, 69, 64, 0.1);
    border-radius: 100px;
  }
}
@media (max-width: 767px) {
  .contact-details .join-us-btn img {
    display: none;
  }
}
.contact-details .join-us-btn .review-btn {
  display: flex;
  align-items: center;
  text-align: start;
  gap: 8px;
}
.contact-details .join-us-btn .review-btn:hover i {
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
  color: var(--white-color);
}
.contact-details .join-us-btn .review-btn span {
  color: var(--theme-color-3);
  max-width: 94px;
  font-weight: 600;
  width: 100%;
  margin-left: 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-details .join-us-btn .review-btn span {
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .contact-details .join-us-btn .review-btn span {
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .contact-details .join-us-btn .review-btn span {
    margin-left: 0;
    max-width: 100%;
    line-height: 18px;
  }
}
.contact-details .join-us-btn .review-btn i {
  color: var(--theme-color-3);
  font-size: 17px;
  padding: 15px 16px;
  border: 2px solid rgba(0, 69, 64, 0.1);
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-details .join-us-btn .review-btn i {
    padding: 10px 11px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-details .join-us-btn .review-btn i {
    padding: 10px 11px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-details .join-us-btn .review-btn i {
    padding: 5px 6px;
  }
}
@media (max-width: 767px) {
  .contact-details .join-us-btn .review-btn i {
    padding: 5px 6px;
  }
}
.volunteer-section{
  background-image: linear-gradient(to right, #eee 1px, transparent 1px), linear-gradient(to bottom, #eee 1px, transparent 1px);
    background-size: 25px 25px;
}
.volunteer-card {
    background-color: #f8f7f0;
    padding: 150px 30px 30px 30px;
    border-radius: 10px;
    position: relative;
    margin-top: 170px;
    background: linear-gradient(180deg, #042a2d00 0, #ebebeb 100%);
}
.volunteer-card .thumb {
    border-radius: 10px;
    display: block;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    /* box-shadow: 5px 5px 10px 0 #c1c1c1; */
    width: 75%;
}
.volunteer-card .thumb:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #042a2d00 0, var(--theme-color-3) 100%);
    z-index: -1;
    transform: scale(1.1);
    border-radius: 15px 15px 0 0;
}

.volunteer-card:hover {
  background: linear-gradient(180deg, #042a2d00 0, var(--theme-color) 100%);
}
.volunteer-card:hover .author-info h5 {
  color: var(--white-color);
}
.volunteer-card:hover .author-info p {
  color: var(--light-color);
}
.volunteer-card:hover .socials .social-links {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.volunteer-card .thumb img {
  width: 100%;
  border-radius: 10px;
}
.volunteer-card .author-info {
    width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    text-align: center;
}
.volunteer-card .author-info h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
  .volunteer-card .author-info h5 {
    font-size: 20px;
  }
}
.volunteer-card .author-info p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 22px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.volunteer-card .socials {
    position: absolute;
    top: 20px;
    right: 25px;
}
.volunteer-card .socials .share-button {
    cursor: pointer;
    font-size: 24px;
}
.volunteer-card:hover .socials .share-button{
  color: var(--white-color);
}
/* .volunteer-card .socials .share-button:hover {
  background: var(--theme-color-3);
  border: 2px solid var(--theme-color-2);
  color: var(--theme-color-2);
} */
.volunteer-card .socials .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.volunteer-card .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--light-color);
  border: 2px solid var(--light-color);
  color: var(--body-color);
}
.volunteer-card .socials .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

.volunteer-card-2 {
  border-radius: 10px;
}
.volunteer-card-2:hover .thumb a img {
  transform: scale(1.1);
}
.volunteer-card-2:hover .thumb .socials .share-button {
  background: var(--theme-color-3);
  border: 2px solid var(--theme-color-2);
  color: var(--theme-color-2);
}
.volunteer-card-2:hover .thumb .socials .social-links {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.volunteer-card-2:hover .author-info h5 {
  color: var(--theme-color-2);
}
.volunteer-card-2:hover .author-info p {
  color: var(--light-color);
}
.volunteer-card-2 .thumb {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.volunteer-card-2 .thumb > a {
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.volunteer-card-2 .thumb > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 24, 25, 0) 38.69%, rgba(0, 24, 25, 0.6) 66.87%, #001819 100%);
  border-radius: 10px;
  z-index: 1;
}
.volunteer-card-2 .thumb > a img {
  width: 100%;
  border-radius: 10px;
}
.volunteer-card-2 .thumb .socials {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.volunteer-card-2 .thumb .socials .share-button {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--theme-color-2);
  border: 2px solid var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.volunteer-card-2 .thumb .socials .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.volunteer-card-2 .thumb .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--light-color);
  border: 2px solid var(--light-color);
  color: var(--body-color);
}
.volunteer-card-2 .thumb .socials .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.volunteer-card-2 .author-info {
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.6px);
}
.volunteer-card-2 .author-info:before {
  display: none;
}
.volunteer-card-2 .author-info h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .volunteer-card-2 .author-info h5 {
    font-size: 20px;
  }
}
.volunteer-card-2 .author-info p {
  color: var(--white-color);
  line-height: 22px;
}

.volunteer-card-3 {
  background-color: var(--theme-color-3);
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
.volunteer-card-3:hover a .thumb img {
  transform: scale(1.1);
}
.volunteer-card-3:hover a .author-info h5 {
  color: var(--theme-color-2);
}
.volunteer-card-3:hover a .author-info p {
  color: var(--light-color);
}
.volunteer-card-3:hover .socials .share-button {
  background: var(--theme-color-3);
  border: 2px solid var(--theme-color-2);
  color: var(--theme-color-2);
}
.volunteer-card-3:hover .socials .social-links {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.volunteer-card-3 a .thumb {
  overflow: hidden;
  display: block;
  border-radius: 10px;
}
.volunteer-card-3 a .thumb img {
  width: 100%;
  border-radius: 10px;
}
.volunteer-card-3 a .author-info {
  text-align: center;
  background-color: var(--theme-color-3);
  padding: 14px;
  border-radius: 10px;
  margin-top: 10px;
}
.volunteer-card-3 a .author-info h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--light-color);
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .volunteer-card-3 a .author-info h5 {
    font-size: 20px;
  }
}
.volunteer-card-3 a .author-info p {
  color: var(--light-color);
  line-height: 22px;
}
.volunteer-card-3 .socials {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .volunteer-card-3 .socials {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .volunteer-card-3 .socials {
    top: 20px;
    right: 10px;
  }
}
.volunteer-card-3 .socials .share-button {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--theme-color-2);
  border: 2px solid var(--theme-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.volunteer-card-3 .socials .share-button:hover {
  background: var(--theme-color-3);
  border: 2px solid var(--theme-color-2);
  color: var(--theme-color-2);
}
.volunteer-card-3 .socials .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
}
.volunteer-card-3 .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--light-color);
  border: 2px solid var(--light-color);
  color: var(--body-color);
}
.volunteer-card-3 .socials .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

.volunteer-section-3 {
  margin-top: 280px;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .volunteer-section-3 {
    margin-top: 340px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .volunteer-section-3 {
    margin-top: 300px;
  }
}
@media (max-width: 767px) {
  .volunteer-section-3 {
    margin-top: 280px;
  }
}
.volunteer-section-3 .shape {
  position: absolute;
  top: -7%;
  left: 36%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .volunteer-section-3 .shape img {
    width: 80%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .volunteer-section-3 .shape img {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .volunteer-section-3 .shape img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .volunteer-section-3 .shape img {
    width: 50%;
  }
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .volunteer-section-3 .shape {
    left: 32%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .volunteer-section-3 .shape {
    left: 31%;
    top: -9%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .volunteer-section-3 .shape {
    left: 30%;
    top: -10%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .volunteer-section-3 .shape {
    left: 26%;
    top: -9%;
  }
}
@media (max-width: 767px) {
  .volunteer-section-3 .shape {
    left: 10%;
    top: -4%;
  }
}

.section-top-11 {
  width: 75%;
}
@media (max-width: 767px) {
  .section-top-11 {
    width: 100%;
  }
}

.section-top-13 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-13 {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .section-top-13 {
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
}
.section-top-13 .left .common-title {
  margin-bottom: 0;
}
.section-top-13 .right .contact-details {
  padding: 0;
  border: none;
}
@media (max-width: 767px) {
  .section-top-13 .right .contact-details {
    align-items: start;
  }
}

.volunteer-card-4 {
  background-color: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
.volunteer-card-4:hover a .thumb img {
  transform: scale(1.1);
}
.volunteer-card-4:hover a .author-info {
  background: var(--theme-color-3);
}
.volunteer-card-4:hover a .author-info h5 {
  color: var(--theme-color-2);
}
.volunteer-card-4:hover a .author-info p {
  color: var(--light-color);
}
.volunteer-card-4:hover .socials .social-links {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.volunteer-card-4 a .thumb {
  overflow: hidden;
  border-radius: 10px;
  display: block;
}
.volunteer-card-4 a .thumb img {
  width: 100%;
  border-radius: 10px;
}
.volunteer-card-4 a .author-info {
  text-align: center;
  background: #f8f7f0;
  padding: 14px;
  border-radius: 10px;
  margin-top: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.volunteer-card-4 a .author-info h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 5px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
  .volunteer-card-4 a .author-info h5 {
    font-size: 20px;
  }
}
.volunteer-card-4 a .author-info p {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  color: var(--body-color);
  line-height: 22px;
}
.volunteer-card-4 .socials {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.volunteer-card-4 .socials .share-button {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--theme-color-2);
  border: 2px solid var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.volunteer-card-4 .socials .share-button:hover {
  background: var(--theme-color-3);
  border: 2px solid var(--theme-color-2);
  color: var(--theme-color-2);
}
.volunteer-card-4 .socials .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.volunteer-card-4 .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--light-color);
  border: 2px solid var(--light-color);
  color: var(--body-color);
}
.volunteer-card-4 .socials .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

@media (min-width: 1200px) {
  .form-row {
    --bs-gutter-x: 20px;
  }
}

.volunteer-form-content h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #004540;
  margin-bottom: 6px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .volunteer-form-content h3 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .volunteer-form-content h3 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .volunteer-form-content h3 {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .volunteer-form-content h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.volunteer-form-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #868681;
  margin-bottom: 34px;
}

.input-wrap {
  margin-bottom: 20px;
}
.input-wrap input {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--theme-color-3);
  padding: 15px 20px;
  background: #f8f7f0;
  border-radius: 12px;
  border: 2px solid transparent;
  outline: none;
  width: 100%;
}
.input-wrap input:focus {
  border: 2px solid var(--theme-color-3);
  background: transparent;
}
.input-wrap input::-webkit-input-placeholder {
  color: #868681;
}
.input-wrap input:-moz-placeholder {
  color: #868681;
}
.input-wrap input::-moz-placeholder {
  color: #868681;
}
.input-wrap input:-ms-input-placeholder {
  color: #868681;
}
.input-wrap textarea {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--theme-color-3);
  padding: 15px 20px;
  background: #f8f7f0;
  border-radius: 12px;
  border: 2px solid transparent;
  outline: none;
  width: 100%;
  height: 160px;
}
.input-wrap textarea:focus {
  border: 2px solid var(--theme-color-3);
  background: transparent;
}
.input-wrap textarea::-webkit-input-placeholder {
  color: #868681;
}
.input-wrap textarea:-moz-placeholder {
  color: #868681;
}
.input-wrap textarea::-moz-placeholder {
  color: #868681;
}
.input-wrap textarea:-ms-input-placeholder {
  color: #868681;
}

.select-wrap {
  position: relative;
}
.select-wrap select {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #868681;
  padding: 15px 20px;
  background: #f8f7f0;
  border-radius: 12px;
  border: 2px solid transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
.select-wrap select:focus {
  border: 2px solid var(--theme-color-3);
  background: transparent;
  color: var(--theme-color-3);
}
.select-wrap .select-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
}
.select-wrap .select-icon i {
  color: #868681;
}

.input-checkbox {
  margin-bottom: 25px;
}
.input-checkbox input {
  display: none;
}
.input-checkbox input:checked + label .check-mark {
  background: var(--theme-color-2);
}
.input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #868681;
}
.input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #868681;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-3);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.input-button button {
  border: none;
}

/* .v-summary-content {
  border-top: 1px solid rgba(0, 69, 64, 0.1);
  padding-top: 50px;
} */
.v-summary-content h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--title-color);
  margin-bottom: 15px;
}
.v-summary-content .content {
  display: flex;
  gap: 66px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .v-summary-content .content {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .v-summary-content .content {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .v-summary-content .content {
    flex-direction: column;
    gap: 20px;
  }
}
.v-summary-content .content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--title-color);
  max-width: 696px;
}
.v-summary-content .content .info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v-summary-content .content .info-wrapper .info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v-summary-content .content .info-wrapper .info .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: var(--theme-color-3);
  color: var(--white-color);
}
.v-summary-content .content .info-wrapper .info .icon i {
  font-size: 10px;
}
.v-summary-content .content .info-wrapper .info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--title-color);
}

.why-us-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.why-us-section.style-2 {
  margin-bottom: -155px;
}
.why-us-section .c-shape-1 {
  position: absolute;
  z-index: -1;
  right: -26%;
  bottom: -40%;
}

.volunteer-cta-wrap {
  position: relative;
  z-index: 1;
  background: #f8f7f0;
  border-radius: 10px;
  padding: 50px 50px 50px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 104px;
}
.volunteer-cta-wrap .content-wrap {
  max-width: 518px;
}
.volunteer-cta-wrap .content-wrap .common-title {
  margin-bottom: 10px;
}
.volunteer-cta-wrap .content-wrap .common-title h2 span {
  font-size: 35px;
}
.volunteer-cta-wrap .content-wrap .text {
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .volunteer-cta-wrap .content-wrap .text {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .volunteer-cta-wrap .content-wrap .text {
    margin-bottom: 20px;
  }
}
.volunteer-cta-wrap .c-shape-1 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.volunteer-detail-card {
  background: #f8f7f0;
  border-radius: 10px;
  padding: 20px;
}
.volunteer-detail-card:hover .thumb a img {
  transform: scale(1.1);
}
.volunteer-detail-card .thumb a {
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.volunteer-detail-card .thumb a img {
  border-radius: 10px;
}
.volunteer-detail-card .thumb .social-links {
  margin-top: 10px;
  padding: 22px;
  text-align: center;
  background: #004540;
  backdrop-filter: blur(11.2px);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.volunteer-detail-card .thumb .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.volunteer-detail-card .thumb .social-links a:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}

.volunteer-detail-content .content-wrap .subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #868681;
  margin-bottom: 8px;
}
.volunteer-detail-content .content-wrap .title {
  font-weight: 600;
  font-size: 42px;
  line-height: 52px;
  color: #004540;
  margin-bottom: 12px;
}
.volunteer-detail-content .content-wrap .title.style-2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
}
.volunteer-detail-content .content-wrap p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #868681;
}
.volunteer-detail-content .details-wrap {
  border-top: 1px solid rgba(0, 69, 64, 0.1);
  border-bottom: 1px solid rgba(0, 69, 64, 0.1);
  padding: 24px 0;
  margin: 24px 0;
}
.volunteer-detail-content .details-wrap .info {
  display: flex;
  align-items: center;
  gap: 67px;
}
.volunteer-detail-content .details-wrap .info p {
  font-family: var(--albert-sans-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #004540;
  min-width: 105px;
}
.volunteer-detail-content .details-wrap .info span {
  font-family: var(--dm-sans-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #868681;
}

/* 20 Why Us Css */
.why-us-section {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section {
    background-size: contain;
  }
}
.why-us-section .left {
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section .left {
    width: 76%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section .left {
    width: 96%;
  }
}
.why-us-section .thumb {
  height: auto;
  position: relative;
}
.why-us-section .thumb .thumb-1 {
  position: relative;
  margin-bottom: 250px;
  text-align: end;
  z-index: 1;
}
@media (max-width: 767px) {
  .why-us-section .thumb .thumb-1 {
    width: 50%;
    margin: 0 60px 120px auto;
  }
}
.why-us-section .thumb .thumb-1 > img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section .thumb .thumb-1 > img {
    width: 60%;
  }
}
.why-us-section .thumb .thumb-1 .s-shape-1 {
  position: absolute;
  top: 60px;
  right: -16px;
  z-index: -1;
}
@media (max-width: 767px) {
  .why-us-section .thumb .thumb-1 .s-shape-1 {
    width: 70%;
    top: 40px;
  }
}
.why-us-section .thumb .thumb-2 {
  position: absolute;
  top: 40%;
  left: -16px;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section .thumb .thumb-2 {
    left: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section .thumb .thumb-2 {
    left: 66px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section .thumb .thumb-2 {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .why-us-section .thumb .thumb-2 {
    width: 42%;
    left: 8px;
  }
}
.why-us-section .thumb .thumb-2 img {
  border-radius: 10px;
  border: 5px solid var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section .thumb .thumb-2 img {
    width: 70%;
  }
}
.why-us-section .thumb .thumb-3 {
  position: absolute;
  bottom: -225px;
  right: 10px;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section .thumb .thumb-3 {
    bottom: -168px;
    right: 20px;
    text-align: end;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section .thumb .thumb-3 {
    bottom: -225px;
    right: -30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section .thumb .thumb-3 {
    bottom: -225px;
    right: -30px;
  }
}
@media (max-width: 767px) {
  .why-us-section .thumb .thumb-3 {
    bottom: -122px;
    right: 38px;
    text-align: end;
    width: 44%;
  }
}
.why-us-section .thumb .thumb-3 img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section .thumb .thumb-3 img {
    width: 75%;
  }
}
.why-us-section .thumb .thumb-3 .shape-wrapped-thumb {
  position: relative;
}
.why-us-section .thumb .thumb-3 .shape-wrapped-thumb .s-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.why-us-section .thumb .thumb-3 .shape-wrapped-thumb .s-shape-2 {
  position: absolute;
  bottom: -25px;
  left: -35px;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section .thumb .thumb-3 .shape-wrapped-thumb .s-shape-2 {
    bottom: -24px;
    left: 34px;
  }
}

@media (min-width: 1400px) {
  .why-us-content {
    padding-left: 20px;
  }
}
.why-us-content .text {
  margin-bottom: 20px;
}
.why-us-content .annual-donation-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .why-us-content .annual-donation-wrap {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}
.why-us-content .annual-donation-wrap .annual-donation {
  display: flex;
  align-items: center;
  gap: 15px;
}
.why-us-content .annual-donation-wrap .annual-donation img {
  width: 60px;
  height: 60px;
  padding: 17px 15px;
  border-radius: 100%;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-content .annual-donation-wrap .annual-donation img {
    width: 50px;
    height: 50px;
    padding: 12px 10px;
  }
}
@media (max-width: 767px) {
  .why-us-content .annual-donation-wrap .annual-donation img {
    width: 40px;
    height: 40px;
    padding: 10px 8px;
  }
}
.why-us-content .annual-donation-wrap .annual-donation p {
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-content .annual-donation-wrap .annual-donation p {
    margin-bottom: 0;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .why-us-content .annual-donation-wrap .annual-donation p {
    line-height: 1;
    margin-bottom: 0;
  }
}
.why-us-content .annual-donation-wrap .annual-donation h5 {
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-content .annual-donation-wrap .annual-donation h5 {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .why-us-content .annual-donation-wrap .annual-donation h5 {
    line-height: 1.2;
    font-size: 18px;
  }
}
.why-us-content .annual-donation-wrap .video-btn {
  border: 1px solid rgba(0, 69, 64, 0.15);
  background: var(--white-color);
  max-height: 60px;
}
.why-us-content .annual-donation-wrap .video-btn .icon-wrap .icon {
  width: 12px;
  color: var(--theme-color-2);
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-content .annual-donation-wrap .video-btn .icon-wrap .icon {
    width: 8px;
  }
}
@media (max-width: 767px) {
  .why-us-content .annual-donation-wrap .video-btn .icon-wrap .icon {
    width: 7px;
  }
}
.why-us-content .annual-donation-wrap .video-btn:hover .icon-wrap .icon {
  color: var(--theme-color-3);
}

.services {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .services {
    flex-direction: column;
    align-items: start;
    margin-bottom: 30px;
    gap: 15px;
  }
}
.services .service-left,
.services .service-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.services .service {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services .service i {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: var(--theme-color-3);
    color: #ffffff;
    font-size: 13px;
}

.why-us-section-2 {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.why-us-section-2 .c-shape-1 {
  position: absolute;
  right: -30%;
  bottom: -50%;
  z-index: -1;
}
.why-us-section-2 .why-us-section-2-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 722px;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
  border-bottom: 1px solid #e9e9e9;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .why-us-section-2-bg {
    border-radius: 0 0 50px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .why-us-section-2-bg {
    border-radius: 0 0 50px 50px;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .why-us-section-2-bg {
    display: none;
  }
}
.why-us-section-2 .why-us-section-2-bg .left-img {
  width: 100%;
  max-width: 654px;
  height: 100%;
}
.why-us-section-2 .why-us-section-2-bg .left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.why-us-section-2 .why-us-section-2-bg .right-img {
  width: 100%;
  max-width: 654px;
  height: 100%;
}
.why-us-section-2 .why-us-section-2-bg .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.why-us-section-2 .thumb {
  height: auto;
  position: relative;
}
.why-us-section-2 .thumb .outer-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    /* filter: drop-shadow(1px 1px 6px #666); */
}
.why-us-section-2 .thumb .outer-image{
  animation: rotateCircle 25s linear infinite;
}
@keyframes rotateCircle{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(-360deg);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .thumb {
    margin: 0 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .thumb {
    margin: 0 14px;
  }
}
.why-us-section-2 .thumb .thumb-1 {
  position: relative;
  margin-bottom: 250px;
  text-align: end;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .thumb .thumb-1 {
    margin-bottom: 280px;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .thumb .thumb-1 {
    width: 50%;
    margin: 0 70px 140px auto;
  }
}
.why-us-section-2 .thumb .thumb-1 > img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .thumb .thumb-1 > img {
    width: 60%;
  }
}
.why-us-section-2 .thumb .thumb-1 .s-shape {
  position: absolute;
  top: 50px;
  left: 35%;
  z-index: -1;
}
.why-us-section-2 .thumb .thumb-2 {
    position: absolute;
    top: 78%;
    left: -20px;
    z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .thumb .thumb-2 {
    left: 42px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .thumb .thumb-2 {
    left: 66px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .thumb .thumb-2 {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .thumb .thumb-2 {
    width: 42%;
    left: 0;
  }
}
.why-us-section-2 .thumb .thumb-2 img {
  border-radius: 10px;
  border: 5px solid var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .thumb .thumb-2 img {
    width: 70%;
  }
}
.why-us-section-2 .thumb .thumb-2.style-2 {
  top: 60%;
  left: 45px;
}
.why-us-section-2 .thumb .thumb-2.style-2 .experience-shape {
  position: absolute;
  bottom: 80px;
  right: -160px;
  z-index: 3;
  transform: rotate(15deg);
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #ffffff;
  box-shadow: 0 21px 40px 13px rgba(133, 191, 24, 0.08);
  backdrop-filter: blur(7.7px);
}
.why-us-section-2 .thumb .thumb-3 {
    position: absolute;
    bottom: -210px;
    right: 29px;
    z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .thumb .thumb-3 {
    bottom: -170px;
    right: 10px;
    text-align: end;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .thumb .thumb-3 {
    bottom: -225px;
    right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .thumb .thumb-3 {
    bottom: -225px;
    right: -30px;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .thumb .thumb-3 {
    bottom: -128px;
    right: 38px;
    text-align: end;
    width: 44%;
  }
}
.why-us-section-2 .thumb .thumb-3 img {
    border-radius: 0 10px 10px 10px;
    
}

.why-us-section-2 .thumb .thumb-3 .experience-shape img{
animation: rotateCircle 25s linear infinite;
}
@keyframes rotateCircle{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .thumb .thumb-3 img {
    width: 75%;
  }
}
.why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb {
  position: relative;
}
.why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    border-radius: 50%;
    position: absolute;
    top: -80px;
    left: -80px;
    z-index: 3;
    width: 140px;
    height: 140px;
    padding: 14px;
    border-color: #f89a01;
    box-shadow: 1px 1px 10px #6d6d6d;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    gap: 10px;
    left: -70px;
    padding: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    gap: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    left: -100px;
    padding: 15px;
    gap: 10px;
  }
}
.why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape h3 {
  font-weight: 700;
  font-size: 62px;
  line-height: 86%;
  color: var(--white-color);
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape h3 {
    font-size: 52px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape h3 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape h3 {
    font-size: 40px;
  }
}
.why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape p {
  max-width: 92px;
  width: 100%;
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
  color: var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape p {
    font-size: 16px;
    line-height: 1.2;
  }
}
/* .why-us-section-2 .company-achievements {
  margin-bottom: -160px;
} */
@media (min-width: 992px) and (max-width: 1199px) {
  /* .why-us-section-2 .company-achievements {
    margin-bottom: -140px;
  } */
}
@media (min-width: 768px) and (max-width: 991px) {
  /* .why-us-section-2 .company-achievements {
    margin-bottom: -120px;
  } */
}
@media (max-width: 767px) {
  /* .why-us-section-2 .company-achievements {
    margin-bottom: 0px;
  } */
}

.experience-shape {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  border: 4px solid var(--white-color);
  background-color: var(--theme-color-2);
  border-radius: 12px;
}
.experience-shape h3 {
  font-weight: 700;
  font-size: 62px;
  line-height: 86%;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .experience-shape h3 {
    font-size: 52px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .experience-shape h3 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .experience-shape h3 {
    font-size: 40px;
  }
}
.experience-shape p {
  max-width: 92px;
  width: 100%;
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
  color: var(--theme-color-3);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .experience-shape p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .experience-shape p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .experience-shape p {
    font-size: 16px;
    line-height: 1.2;
  }
}

.shape-wrapped-thumb .experience-shape {
  position: absolute;
  top: -70px;
  left: -190px;
  z-index: 3;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shape-wrapped-thumb .experience-shape {
    gap: 10px;
    left: -70px;
    padding: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shape-wrapped-thumb .experience-shape {
    gap: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shape-wrapped-thumb .experience-shape {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb .experience-shape {
    gap: 10px;
  }
}

.why-us-section-3 {
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .why-us-section-3 {
    background-position: bottom right -15%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-3 {
    background-position: bottom right -35%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-3 {
    background-position: bottom right -35%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-3 {
    background-position: bottom right -110%;
  }
}
@media (max-width: 767px) {
  .why-us-section-3 {
    background-position: bottom right 80%;
  }
}
.why-us-section-3 .thumb-wrapper {
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-3 .thumb-wrapper {
    margin: 0 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-3 .thumb-wrapper {
    margin: 0 130px 140px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-3 .thumb-wrapper {
    margin: 0 10px 120px;
  }
}
@media (max-width: 767px) {
  .why-us-section-3 .thumb-wrapper {
    margin: 0 0 140px 180px;
  }
}
@media (max-width: 375px) {
  .why-us-section-3 .thumb-wrapper {
    margin: 0 0 120px 160px;
  }
}
.why-us-section-3 .thumb-wrapper .thumb-1 {
  text-align: end;
}
.why-us-section-3 .thumb-wrapper .thumb-1 img {
  border-radius: 10px;
  border: 4px solid var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-3 .thumb-wrapper .thumb-1 img {
    width: 60%;
  }
}
.why-us-section-3 .thumb-wrapper .thumb-1 .experience-shape {
  position: absolute;
  bottom: -50px;
  right: -30px;
  z-index: 3;
  transform: rotate(15deg);
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #ffffff;
  box-shadow: 0 21px 40px 13px rgba(133, 191, 24, 0.08);
  backdrop-filter: blur(7.7px);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-3 .thumb-wrapper .thumb-1 .experience-shape {
    bottom: -60px;
    right: -40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-3 .thumb-wrapper .thumb-1 .experience-shape {
    bottom: -55px;
    right: -25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-3 .thumb-wrapper .thumb-1 .experience-shape {
    bottom: -45px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .why-us-section-3 .thumb-wrapper .thumb-1 .experience-shape {
    bottom: -60px;
    transform: rotate(0deg);
    right: 0;
  }
}
@media (max-width: 375px) {
  .why-us-section-3 .thumb-wrapper .thumb-1 .experience-shape {
    bottom: -82px;
  }
}
.why-us-section-3 .thumb-wrapper .thumb-2 {
  position: absolute;
  top: 80px;
  left: 120px;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-3 .thumb-wrapper .thumb-2 {
    width: 60%;
    left: 10px;
  }
}
@media (max-width: 767px) {
  .why-us-section-3 .thumb-wrapper .thumb-2 {
    left: -62%;
    width: 100%;
  }
}
.why-us-section-3 .thumb-wrapper .thumb-2 > img:first-child {
  border-radius: 150px 150px 10px 10px;
  border: 4px solid var(--white-color);
}
.why-us-section-3 .thumb-wrapper .award-winner-shape {
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid #ffffff;
  box-shadow: 0 24px 47px 15px rgba(133, 191, 24, 0.08);
  backdrop-filter: blur(27.0874px);
  border-radius: 8px;
  padding: 20px 30px;
  max-width: 270px;
  width: 100%;
  position: absolute;
  top: 54%;
  left: -6%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-3 .thumb-wrapper .award-winner-shape {
    padding: 15px 20px;
    max-width: 222px;
    left: -26%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-3 .thumb-wrapper .award-winner-shape {
    padding: 15px 20px;
    max-width: 222px;
    left: -2%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-3 .thumb-wrapper .award-winner-shape {
    padding: 15px 20px;
    max-width: 222px;
    left: -2%;
  }
}
@media (max-width: 767px) {
  .why-us-section-3 .thumb-wrapper .award-winner-shape {
    padding: 15px;
    max-width: 222px;
    left: -90%;
    top: 44%;
  }
}
.why-us-section-3 .thumb-wrapper .award-winner-shape .top {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .why-us-section-3 .thumb-wrapper .award-winner-shape .top img {
    width: 30px;
  }
}
.why-us-section-3 .thumb-wrapper .award-winner-shape .top p {
  color: var(--theme-color-3);
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
}
@media (max-width: 1399px) {
  .why-us-section-3 .thumb-wrapper .award-winner-shape .top p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.why-us-section-3 .thumb-wrapper .award-winner-shape .authors img {
  width: 140px;
}
.why-us-section-3 .thumb-wrapper .shape-1 {
  width: 50%;
  position: absolute;
  bottom: -80px;
  right: -100px;
  z-index: -1;
}
.why-us-section-3 .thumb-wrapper .shape-2 {
  position: absolute;
  top: 9%;
  left: 30%;
}
@media (max-width: 767px) {
  .why-us-section-3 .thumb-wrapper .shape-2 {
    top: 20%;
    left: -40%;
    width: 20%;
  }
}

.why-us-content-3 .text {
  width: 80%;
}
@media (max-width: 767px) {
  .why-us-content-3 .text {
    width: 100%;
  }
}

.why-us-section-4 {
  position: relative;
  overflow: hidden;
}
.why-us-section-4 .shape {
  position: absolute;
  right: 0;
  bottom: -68%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-4 .shape {
    bottom: -77%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-4 .shape {
    bottom: -46%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-4 .shape {
    bottom: -37%;
    text-align: end;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .shape {
    text-align: end;
    bottom: -31%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-4 .shape img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .shape img {
    width: 60%;
  }
}
.why-us-section-4 .icon-1 {
  position: absolute;
  left: 16%;
  top: 22%;
  z-index: 5;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .why-us-section-4 .icon-1 {
    left: 4%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-4 .icon-1 {
    left: 9%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-4 .icon-1 {
    left: 14%;
    top: 17%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-4 .icon-1 {
    left: 12%;
    top: 17%;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .icon-1 {
    left: 8%;
    top: 11%;
  }
}
@media (max-width: 1399px) {
  .why-us-section-4 .icon-1 img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .icon-1 img {
    width: 60%;
  }
}
.why-us-section-4 .icon-2 {
  position: absolute;
  right: 21%;
  top: 10%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .why-us-section-4 .icon-2 {
    right: 11%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-4 .icon-2 {
    right: 11%;
    top: 12%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-4 .icon-2 {
    right: 19%;
    top: 3%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-4 .icon-2 {
    right: -1%;
    top: 3%;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .icon-2 {
    right: 1%;
    top: 2%;
  }
}
@media (max-width: 1399px) {
  .why-us-section-4 .icon-2 img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .icon-2 img {
    width: 60%;
  }
}
.why-us-section-4 .left {
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-4 .left {
    width: 76%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-4 .left {
    width: 96%;
  }
}
.why-us-section-4 .thumb {
  height: auto;
  position: relative;
}
.why-us-section-4 .thumb .thumb-1 {
  position: relative;
  margin-bottom: 250px;
  text-align: end;
  z-index: 1;
}
@media (max-width: 767px) {
  .why-us-section-4 .thumb .thumb-1 {
    width: 50%;
    margin: 0 60px 120px auto;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .thumb .thumb-1 {
    width: 50%;
    margin: 0 60px 120px auto;
  }
}
.why-us-section-4 .thumb .thumb-1 > img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-4 .thumb .thumb-1 > img {
    width: 60%;
  }
}
.why-us-section-4 .thumb .thumb-1 .s-shape-1 {
  position: absolute;
  top: 60px;
  right: -16px;
  z-index: -1;
}
@media (max-width: 767px) {
  .why-us-section-4 .thumb .thumb-1 .s-shape-1 {
    width: 70%;
    top: 40px;
  }
}
.why-us-section-4 .thumb .thumb-2 {
  position: absolute;
  top: 40%;
  left: -16px;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-4 .thumb .thumb-2 {
    left: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-4 .thumb .thumb-2 {
    left: 66px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-4 .thumb .thumb-2 {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .thumb .thumb-2 {
    width: 44%;
    left: 0;
  }
}
.why-us-section-4 .thumb .thumb-2 img {
  border-radius: 10px;
  border: 5px solid var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-4 .thumb .thumb-2 img {
    width: 70%;
  }
}
.why-us-section-4 .thumb .thumb-3 {
  position: absolute;
  bottom: -225px;
  right: 10px;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-4 .thumb .thumb-3 {
    bottom: -168px;
    right: 20px;
    text-align: end;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-4 .thumb .thumb-3 {
    bottom: -225px;
    right: -30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-4 .thumb .thumb-3 {
    bottom: -225px;
    right: -30px;
  }
}
@media (max-width: 767px) {
  .why-us-section-4 .thumb .thumb-3 {
    bottom: -122px;
    right: 38px;
    text-align: end;
    width: 44%;
  }
}
.why-us-section-4 .thumb .thumb-3 img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-4 .thumb .thumb-3 img {
    width: 75%;
  }
}

@media (min-width: 1400px) {
  .why-us-content-2 {
    padding-left: 40px;
  }
}
.why-us-content-2 .text {
  width: 86%;
  margin-bottom: 20px;
}
.why-us-content-2 .annual-donation-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .why-us-content-2 .annual-donation-wrap {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}
.why-us-content-2 .annual-donation-wrap .annual-donation {
  display: flex;
  align-items: center;
  gap: 15px;
}
.why-us-content-2 .annual-donation-wrap .annual-donation img {
  width: 60px;
  height: 60px;
  padding: 17px 15px;
  border-radius: 100%;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-content-2 .annual-donation-wrap .annual-donation img {
    width: 50px;
    height: 50px;
    padding: 12px 10px;
  }
}
@media (max-width: 767px) {
  .why-us-content-2 .annual-donation-wrap .annual-donation img {
    width: 40px;
    height: 40px;
    padding: 10px 8px;
  }
}
.why-us-content-2 .annual-donation-wrap .annual-donation p {
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-content-2 .annual-donation-wrap .annual-donation p {
    margin-bottom: 0;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .why-us-content-2 .annual-donation-wrap .annual-donation p {
    line-height: 1;
    margin-bottom: 0;
  }
}
.why-us-content-2 .annual-donation-wrap .annual-donation h5 {
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-content-2 .annual-donation-wrap .annual-donation h5 {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .why-us-content-2 .annual-donation-wrap .annual-donation h5 {
    line-height: 1.2;
    font-size: 18px;
  }
}
.why-us-content-2 .annual-donation-wrap .e-primary-btn {
  background: var(--theme-color-3);
  border: none;
  color: var(--theme-color-2);
}
.why-us-content-2 .annual-donation-wrap .e-primary-btn:before {
  background: var(--theme-color-2);
}
.why-us-content-2 .annual-donation-wrap .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.why-us-content-2 .annual-donation-wrap .e-primary-btn:hover {
  color: var(--theme-color-3);
}
.why-us-content-2 .annual-donation-wrap .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}

.why-us-section-5 {
  position: relative;
  overflow: hidden;
}
.why-us-section-5 .shape {
  position: absolute;
  left: 0;
  bottom: -67%;
  transform: scaleX(-1);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-5 .shape {
    bottom: -72%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-5 .shape {
    bottom: -46%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-5 .shape {
    bottom: -34%;
    text-align: end;
  }
}
@media (max-width: 767px) {
  .why-us-section-5 .shape {
    text-align: end;
    bottom: -29%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-5 .shape img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .why-us-section-5 .shape img {
    width: 60%;
  }
}
.why-us-section-5 .icon-1 {
  position: absolute;
  right: 46%;
  top: 28%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-5 .icon-1 {
    right: 37%;
    top: 29%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-5 .icon-1 {
    right: 78%;
    top: 55%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-5 .icon-1 {
    right: 81%;
    top: 54%;
  }
}
@media (max-width: 767px) {
  .why-us-section-5 .icon-1 {
    right: 82%;
    top: 65%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-5 .icon-1 img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .why-us-section-5 .icon-1 img {
    width: 60%;
  }
}
.why-us-section-5 .left {
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-5 .left {
    width: 76%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-5 .left {
    width: 96%;
  }
}
.why-us-section-5 .thumb {
  height: auto;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-5 .thumb {
    width: 80%;
  }
}
.why-us-section-5 .thumb .thumb-1 {
  position: relative;
  margin-bottom: 120px;
  text-align: end;
  z-index: 1;
}
@media (max-width: 767px) {
  .why-us-section-5 .thumb .thumb-1 {
    width: 60%;
    margin: 0 60px 120px auto;
  }
}
.why-us-section-5 .thumb .thumb-1 > img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-5 .thumb .thumb-1 > img {
    width: 60%;
  }
}
.why-us-section-5 .thumb .thumb-2 {
  position: absolute;
  bottom: -27%;
  right: 42%;
  z-index: 2;
  width: 52%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-5 .thumb .thumb-2 {
    width: 45%;
    bottom: -38%;
    right: 35%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-5 .thumb .thumb-2 {
    right: 27%;
    bottom: -30%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-5 .thumb .thumb-2 {
    right: 35%;
  }
}
@media (max-width: 767px) {
  .why-us-section-5 .thumb .thumb-2 {
    width: 50%;
    right: 47%;
    bottom: -30%;
  }
}
.why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb {
  position: relative;
}
.why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb img {
  border-radius: 10px;
  border: 5px solid var(--white-color);
}
.why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 110px;
  height: 110px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 {
    width: 80px;
    height: 80px;
  }
}
.why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 .play-btn {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-3);
  padding: 25px 20px;
  border-radius: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  background: var(--theme-color-2);
  border: 2px solid var(--theme-color-2);
  backdrop-filter: blur(6px);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 .play-btn {
    width: 65px;
    height: 65px;
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 .play-btn {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 .play-btn {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}
.why-us-section-5 .thumb .thumb-2 .btn-wrapped-thumb .btn-layer-3 .play-btn:hover {
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.1);
}
.why-us-section-5 .d-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.why-us-section-5 .d-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.why-us-section-5 .our-progress {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-us-section-5 .progress {
  background: rgba(0, 69, 64, 0.1);
  height: 8px;
}
.why-us-section-5 .progress .progress-bar {
  background: var(--theme-color-3);
}
.why-us-section-5 .services {
  margin-bottom: 24px;
}

.why-us-section-6 {
  background-position: right, left;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}
@media (max-width: 1199px) {
  .why-us-section-6 {
    background-size: cover;
  }
}
.why-us-section-6 .thumb {
  height: auto;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-6 .thumb {
    margin: 0 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-6 .thumb {
    margin: 0 14px;
  }
}
.why-us-section-6 .thumb .thumb-1 {
  position: relative;
  margin-bottom: 250px;
  text-align: end;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-6 .thumb .thumb-1 {
    margin-bottom: 280px;
  }
}
@media (max-width: 767px) {
  .why-us-section-6 .thumb .thumb-1 {
    width: 50%;
    margin: 0 70px 140px auto;
  }
}
.why-us-section-6 .thumb .thumb-1 > img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-6 .thumb .thumb-1 > img {
    width: 60%;
  }
}
.why-us-section-6 .thumb .thumb-1 .s-shape {
  position: absolute;
  top: 50px;
  left: 35%;
  z-index: -1;
}
.why-us-section-6 .thumb .thumb-2 {
  position: absolute;
  top: 48%;
  left: -20px;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-6 .thumb .thumb-2 {
    left: 42px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-6 .thumb .thumb-2 {
    left: 66px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-6 .thumb .thumb-2 {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .why-us-section-6 .thumb .thumb-2 {
    width: 42%;
    left: 0;
  }
}
.why-us-section-6 .thumb .thumb-2 img {
  border-radius: 10px;
  border: 5px solid var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-6 .thumb .thumb-2 img {
    width: 70%;
  }
}
.why-us-section-6 .thumb .thumb-2.style-2 {
  top: 60%;
  left: 45px;
}
.why-us-section-6 .thumb .thumb-2.style-2 .experience-shape {
  position: absolute;
  bottom: 80px;
  right: -160px;
  z-index: 3;
  transform: rotate(15deg);
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #ffffff;
  box-shadow: 0 21px 40px 13px rgba(133, 191, 24, 0.08);
  backdrop-filter: blur(7.7px);
}
.why-us-section-6 .thumb .thumb-3 {
  position: absolute;
  bottom: -235px;
  right: 4px;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-6 .thumb .thumb-3 {
    bottom: -170px;
    right: 10px;
    text-align: end;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-6 .thumb .thumb-3 {
    bottom: -225px;
    right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-6 .thumb .thumb-3 {
    bottom: -225px;
    right: -30px;
  }
}
@media (max-width: 767px) {
  .why-us-section-6 .thumb .thumb-3 {
    bottom: -128px;
    right: 38px;
    text-align: end;
    width: 44%;
  }
}
.why-us-section-6 .thumb .thumb-3 img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-6 .thumb .thumb-3 img {
    width: 75%;
  }
}
.why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb {
  position: relative;
}
.why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  border: 4px solid var(--white-color);
  background-color: var(--theme-color-2);
  border-radius: 12px;
  position: absolute;
  top: -70px;
  left: -190px;
  z-index: 3;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    gap: 10px;
    left: -70px;
    padding: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    gap: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape {
    left: -100px;
    padding: 15px;
    gap: 10px;
  }
}
.why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape h3 {
  font-weight: 700;
  font-size: 62px;
  line-height: 86%;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape h3 {
    font-size: 52px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape h3 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape h3 {
    font-size: 40px;
  }
}
.why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape p {
  max-width: 92px;
  width: 100%;
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
  color: var(--theme-color-3);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .why-us-section-6 .thumb .thumb-3 .shape-wrapped-thumb .experience-shape p {
    font-size: 16px;
    line-height: 1.2;
  }
}

/* 21 Service Css */
.service-card {
  width: 100%;
  background-color: #f8f7f0;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-card:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
  transition: all 0.3s;
}
.service-card:hover .service-top i,
.service-card:hover .service-top .circled-heading {
  background-color: var(--theme-color-3);
  border: 2px solid var(--theme-color-3);
  color: var(--theme-color-2);
  transition: all 0.3s;
}
.service-card:hover .number {
  background: #004540;
}
.service-card:hover .number span {
  color: #ffe175;
}
.service-card .service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.service-card .service-top h4 {
    max-width: 250px;
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    line-height: 36px;
    color: var(--theme-color-3);
    margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card .service-top h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media (max-width: 991px) {
  .service-card .service-top h4 {
    font-size: 22px;
    line-height: 1.3;
  }
}
.service-card .service-top .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #f8f7f0;
  border: 2px solid var(--theme-color-2);
  border-radius: 100%;
  box-shadow: 0px 15px 32.2px -9px rgba(0, 24, 25, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.service-card .service-top .number span {
  font-family: var(--outfit-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #868681;
}
.service-card .service-top i, .service-card .service-top .circled-heading {
    width: 60px;
    height: 60px;
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 15px;
    background-color: var(--white-color);
    border-radius: 100%;
    border: 2px solid var(--theme-color-2);
    box-shadow: 0px 15px 32.2px -9px rgba(0, 24, 25, 0.2);
    position: absolute;
    top: 20px;
    right: 30px;
}
.whychooseus-career .service-card .service-top .number {
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.025;
    display: block;
    width: auto;
    height: auto;
    border: none;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.whychooseus-career .service-card:hover .number {
  background: none;
  opacity: 1;
}
.whychooseus-career .service-card .service-top .number span{
      font-size: 54px;
    line-height: 36px;
}
.whychooseus-career .service-card:hover .number span {
  color: var(--theme-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card .service-top i,
  .service-card .service-top .circled-heading {
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 991px) {
  .service-card .service-top i,
  .service-card .service-top .circled-heading {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.service-card .service-content p {
  width: 80%;
  padding-bottom: 10px;
}
.service-card .service-content p a{
  color: inherit;
}
.service-card .i-shape {
  color: rgba(134, 134, 129, 0.05);
  font-size: 110px;
  position: absolute;
  z-index: -1;
  bottom: -70px;
  left: 55%;
}

.service-card-2 {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-card-2:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
  transition: all 0.3s;
}
.service-card-2:hover .service-top .circled-heading {
  background-color: var(--theme-color-3);
  border: 2px solid var(--theme-color-2);
  color: var(--theme-color-2);
  transition: all 0.3s;
}
.service-card-2 .service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.service-card-2 .service-top h4 {
  max-width: 118px;
  width: 100%;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card-2 .service-top h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media (max-width: 991px) {
  .service-card-2 .service-top h4 {
    font-size: 22px;
    line-height: 1.3;
  }
}
.service-card-2 .service-top .circled-heading {
  width: 70px;
  height: 70px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 15px;
  background-color: var(--white-color);
  color: var(--body-color);
  border-radius: 100%;
  border: 2px solid var(--theme-color-2);
  box-shadow: 0px 15px 32.2px -9px rgba(0, 24, 25, 0.2);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card-2 .service-top .circled-heading {
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 991px) {
  .service-card-2 .service-top .circled-heading {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.service-card-2 .service-content p {
  width: 80%;
  padding-bottom: 10px;
}

.service-card-3 {
  background-color: #f8f7f0;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-card-3:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
  transition: all 0.3s;
}
.service-card-3:hover .service-top i,
.service-card-3:hover .service-top .circled-heading {
  background-color: var(--theme-color-3);
  border: 2px solid var(--theme-color-3);
  color: var(--theme-color-2);
  transition: all 0.3s;
}
.service-card-3:hover .number {
  background: #004540 !important;
}
.service-card-3:hover .number span {
  color: #ffe175 !important;
}
.service-card-3 .service-top {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  margin-bottom: 15px;
  padding: 14px 14px 0;
}
.service-card-3 .service-top h4 {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card-3 .service-top h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media (max-width: 991px) {
  .service-card-3 .service-top h4 {
    font-size: 22px;
    line-height: 1.3;
  }
}
.service-card-3 .service-top i {
  width: 70px;
  height: 70px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 15px;
  background-color: var(--white-color);
  border-radius: 100%;
  border: 2px solid var(--theme-color-2);
  box-shadow: 0px 15px 32.2px -9px rgba(0, 24, 25, 0.2);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card-3 .service-top i {
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 991px) {
  .service-card-3 .service-top i {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.service-card-3 .service-content p {
  width: 80%;
  padding: 0 14px 14px;
}
@media (max-width: 1399px) {
  .service-card-3 .service-content p {
    width: 100%;
  }
}
.service-card-3 .i-shape {
  position: absolute;
  z-index: -1;
  top: 15%;
  left: 58%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .service-card-3 .i-shape {
    left: 62%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .service-card-3 .i-shape {
    left: 54%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card-3 .i-shape {
    left: 62%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-card-3 .i-shape {
    left: 66%;
  }
}
@media (max-width: 767px) {
  .service-card-3 .i-shape {
    left: 70%;
  }
}
.service-card-3 .i-shape h1 {
  margin-bottom: 0;
  font-family: var(--outfit-font);
  font-weight: 600;
  font-size: 100px;
  line-height: 82px;
  color: #004540;
  opacity: 0.06;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .service-card-3 .i-shape h1 {
    font-size: 90px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .service-card-3 .i-shape h1 {
    font-size: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card-3 .i-shape h1 {
    font-size: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-card-3 .i-shape h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .service-card-3 .i-shape h1 {
    font-size: 80px;
  }
}

.service-slider-active {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-slider-active {
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-slider-active {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .service-slider-active {
    padding-bottom: 80px;
  }
}
.service-slider-active .service-button-prev {
  position: absolute;
  left: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFFFFF;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: -50px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .service-slider-active .service-button-prev {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .service-slider-active .service-button-prev {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-slider-active .service-button-prev {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-slider-active .service-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-slider-active .service-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .service-slider-active .service-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.service-slider-active .service-button-prev:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.service-slider-active .service-button-next {
  position: absolute;
  right: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFFFFF;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: -50px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .service-slider-active .service-button-next {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .service-slider-active .service-button-next {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-slider-active .service-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-slider-active .service-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .service-slider-active .service-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.service-slider-active .service-button-next:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-slider-active .service-pagination-wrap {
    padding: 0 100px;
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-slider-active .service-pagination-wrap {
    padding: 0 100px;
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-slider-active .service-pagination-wrap {
    padding: 0 100px;
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 100%;
  }
}
.service-slider-active .service-pagination {
  height: 5px;
  border-radius: 10px;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
}
@media (max-width: 767px) {
  .service-slider-active .service-pagination {
    margin-top: 30px;
  }
}
.service-slider-active .service-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  background: none;
  margin: 0;
}
.service-slider-active .service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color-2);
}

.services-section-2 {
  background: #f8f7f0;
  position: relative;
  z-index: 1;
}
.services-section-2 .shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.services-section-2 .shape-2 {
  width: 100%;
  background: var(--white-color);
  height: 50px;
  border-radius: 10px 10px 0 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .services-section-2 .shape-2 {
    height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .services-section-2 .shape-2 {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .services-section-2 .shape-2 {
    height: 30px;
  }
}

.services-section {
  position: relative;
  z-index: 1;
}
.services-section .c-shape-1 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.services-section .c-shape-2 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.process-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.process-section .c-shape-1 {
  position: absolute;
  z-index: -1;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
}

.section-top-9 {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.section-top-9 .common-subtitle span {
  color: var(--body-color);
}
.section-top-9 .common-title {
  margin-bottom: 0;
}
.section-top-9 .common-title h2 {
  color: var(--theme-color-3);
}

.services-section-3 {
  position: relative;
}
.services-section-3 .icon {
  position: absolute;
  top: 25%;
  left: 10%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .services-section-3 .icon {
    top: 8%;
    left: 25%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .services-section-3 .icon {
    top: 10%;
    left: 23%;
  }
}
@media (max-width: 767px) {
  .services-section-3 .icon {
    top: 5%;
    left: 10%;
  }
}
@media (max-width: 1399px) {
  .services-section-3 .icon img {
    width: 80%;
  }
}
@media (max-width: 1199px) {
  .services-section-3 .icon img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .services-section-3 .icon img {
    width: 60%;
  }
}

/* 22 Dust Recycling Css */
.dust-recycling-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding: 250px 0 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .dust-recycling-section {
    padding: 80px 0 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dust-recycling-section {
    padding: 80px 0 80px;
  }
}
@media (max-width: 767px) {
  .dust-recycling-section {
    padding: 80px 0 80px;
  }
}

.btn-layer {
  margin-top: -50px;
  margin-left: -110%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.btn-layer.startup-product-play{
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}
.btn-layer.startup-product-play a {
    width: 90px;
    height: 90px;
    font-size: 28px;
    background: rgb(0,0,0,0.5);
    backdrop-filter: blur(5px);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .btn-layer {
    margin-left: -20%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .btn-layer {
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn-layer {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .btn-layer {
    margin: 0;
  }
}
.btn-layer .play-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    color: var(--light-color);
    padding: 25px 20px;
    border-radius: 100%;
    font-weight: 500;
    font-size: 34px;
    line-height: 36px;
    background: var(--theme-color);
    animation: animate-pulse 3s linear infinite;
}
.btn-layer .play-btn:hover {
  color: var(--white-color);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn-layer .play-btn {
    width: 80px;
    height: 80px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .btn-layer .play-btn {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
}

.btn-layer-2 {
  margin-top: -60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .btn-layer-2 {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn-layer-2 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .btn-layer-2 {
    margin-top: 0;
  }
}
.btn-layer-2 .play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  color: var(--theme-color-3);
  padding: 25px 20px;
  border-radius: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  background: var(--theme-color-2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  animation: animate-pulse 3s linear infinite;
}
.btn-layer-2 .play-btn:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn-layer-2 .play-btn {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .btn-layer-2 .play-btn {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}

.dust-recycle-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(46.2px);
  border-radius: 16px;
  padding: 50px;
  max-width: 716px;
  width: 100%;
  /* margin-bottom: -170px; */
}
@media (min-width: 992px) and (max-width: 1199px) {
  .dust-recycle-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dust-recycle-card {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .dust-recycle-card {
    padding: 30px;
    margin-bottom: 0;
  }
}
.dust-recycle-card .dust-recycle-top {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-color);
}
.dust-recycle-card .dust-recycle-top h5 {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: var(--light-color);
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .dust-recycle-card .dust-recycle-top h5 {
    font-size: 24px;
    line-height: 1.4;
  }
}
.dust-recycle-card .dust-recycle-top .services-4 {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 767px) {
  .dust-recycle-card .dust-recycle-top .services-4 {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.dust-recycle-card .dust-recycle-top .services-4 .service-2 {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 46%;
}
.dust-recycle-card .dust-recycle-top .services-4 .service-2 i {
  color: var(--theme-color-2);
  font-size: 18px;
}
@media (max-width: 767px) {
  .dust-recycle-card .dust-recycle-top .services-4 .service-2 i {
    font-size: 16px;
  }
}
.dust-recycle-card .dust-recycle-top .services-4 .service-2 p {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media (max-width: 767px) {
  .dust-recycle-card .dust-recycle-top .services-4 .service-2 p {
    font-size: 16px;
    line-height: 1.2;
  }
}
.dust-recycle-card .campaign-progress {
  padding: 30px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dust-recycle-card .campaign-progress .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.dust-recycle-card .campaign-progress .top p {
  margin-bottom: 0;
  color: var(--light-color);
}
.dust-recycle-card .campaign-progress .progress {
  height: 8px;
  background: rgba(255, 225, 117, 0.1);
}
.dust-recycle-card .campaign-progress .progress .progress-bar {
  background: var(--theme-color-2);
}

/* 23 Faq Css */
.faq-section {
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1199px) {
  .faq-section {
    background-size: cover;
  }
}
.faq-section.style-service {
  background-position: left;
  margin-bottom: -160px;
}
.faq-section .faq {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .faq-section .faq {
    flex-direction: column-reverse;
  }
}
.faq-section .common-subtitle {
  margin-bottom: 20px;
}
.faq-section .common-title {
  max-width: 430px;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .faq-section .common-title {
    max-width: 100%;
  }
}
.faq-section .common-title span {
  color: var(--theme-color-2);
}
.faq-section .text {
  max-width: 550px;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .faq-section .text {
    max-width: 100%;
  }
}
.faq-section .blog-btn {
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq-section .blog-btn {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .faq-section .blog-btn {
    margin-bottom: 30px;
  }
}

.faq-accordion .accordion-item {
  border: 0;
  margin-bottom: 20px;
  background-color: #f8f7f0;
  padding-bottom: 10px;
  border-radius: 40px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button {
  border: 0;
  box-shadow: none;
  padding: 22px 20px 12px 35px;
  border-radius: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--theme-color-3);
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    padding: 16px 16px 8px 28px;
  }
}
@media (max-width: 767px) {
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 16px 16px 8px 28px;
  }
}
.faq-accordion .accordion-item .accordion-header .accordion-button .accordion-title {
  color: var(--body-color);
  margin-right: 5px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  margin-left: auto;
  background-color: #f8f7f0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus,
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
  position: absolute;
  background-color: var(--body-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus {
  width: 12px;
  height: 2px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
  width: 2px;
  height: 12px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-plus {
  opacity: 1;
}
.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-minus {
  opacity: 1;
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
  background-color: var(--theme-color-3);
  transform: rotate(180deg);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-plus {
  opacity: 1;
  background-color: var(--white-color);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-minus {
  opacity: 0;
  background-color: var(--white-color);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.faq-accordion .accordion-item .accordion-body {
  padding: 0 75px 12px 35px;
}

/* 24 About Us Css */
.shape-wrapped-thumb-1 {
  position: relative;
  z-index: 1;
  margin-bottom: 140px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shape-wrapped-thumb-1 {
    margin: 0 200px 180px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shape-wrapped-thumb-1 {
    margin: 0 20px 180px;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-1 {
    margin: 0 0 240px;
  }
}
.shape-wrapped-thumb-1 > img {
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shape-wrapped-thumb-1 > img {
    width: 70%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shape-wrapped-thumb-1 > img {
    width: 80%;
  }
}
.shape-wrapped-thumb-1 .experience-shape-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background-color: var(--theme-color-2);
  border-radius: 12px;
  position: absolute;
  top: 84px;
  right: 50px;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shape-wrapped-thumb-1 .experience-shape-2 {
    gap: 10px;
    right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shape-wrapped-thumb-1 .experience-shape-2 {
    gap: 10px;
    right: -80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shape-wrapped-thumb-1 .experience-shape-2 {
    gap: 10px;
    right: 70px;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-1 .experience-shape-2 {
    gap: 10px;
    top: -8%;
    transform: translateX(50%);
    right: 50%;
  }
}
.shape-wrapped-thumb-1 .experience-shape-2 h3 {
  line-height: 86%;
  margin-bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-color-3);
  font-style: normal;
  font-weight: 600;
  font-size: 70px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shape-wrapped-thumb-1 .experience-shape-2 h3 {
    font-size: 52px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shape-wrapped-thumb-1 .experience-shape-2 h3 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-1 .experience-shape-2 h3 {
    font-size: 40px;
  }
}
.shape-wrapped-thumb-1 .experience-shape-2 p {
  max-width: 92px;
  width: 100%;
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
  color: var(--theme-color-3);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shape-wrapped-thumb-1 .experience-shape-2 p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shape-wrapped-thumb-1 .experience-shape-2 p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-1 .experience-shape-2 p {
    font-size: 16px;
    line-height: 1.2;
  }
}
.shape-wrapped-thumb-1 .award-shape {
  position: absolute;
  bottom: 140px;
  left: -60px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  border-radius: 6px;
  background-color: var(--theme-color-3);
  z-index: 2;
}
.shape-wrapped-thumb-1 .award-shape img {
  max-width: 36px;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shape-wrapped-thumb-1 .award-shape img {
    max-width: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shape-wrapped-thumb-1 .award-shape img {
    max-width: 28px;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-1 .award-shape img {
    max-width: 28px;
  }
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .shape-wrapped-thumb-1 .award-shape {
    left: -20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .shape-wrapped-thumb-1 .award-shape {
    gap: 12px;
    left: -40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shape-wrapped-thumb-1 .award-shape {
    gap: 12px;
    left: -40px;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-1 .award-shape {
    gap: 12px;
    left: 15%;
    bottom: -34%;
  }
}
.shape-wrapped-thumb-1 .award-shape p {
  color: var(--white-color);
  max-width: 140px;
  width: 100%;
}
.shape-wrapped-thumb-1 .box-shape {
  position: absolute;
  bottom: -32px;
  left: -16px;
  z-index: -1;
}

.positioned-shape {
  position: absolute;
  top: 45%;
  right: 70px;
  border-radius: 150px 150px 12px 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .positioned-shape {
    right: -20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .positioned-shape {
    right: -60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .positioned-shape {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .positioned-shape {
    right: 6%;
    width: 88%;
  }
}
.positioned-shape .shape-wrapped-thumb-2 {
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .positioned-shape .shape-wrapped-thumb-2 {
    width: 85%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .positioned-shape .shape-wrapped-thumb-2 {
    width: 100%;
  }
}
.positioned-shape .shape-wrapped-thumb-2 .video-thumb {
  position: relative;
  width: fit-content;
}
.positioned-shape .shape-wrapped-thumb-2 .video-thumb img {
  width: 100%;
  border-radius: 150px 150px 12px 12px;
  border: 4px solid var(--white-color);
}
.positioned-shape .shape-wrapped-thumb-2 .video-thumb .video-play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(13px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  animation: animate-pulse 3s linear infinite;
}
.positioned-shape .shape-wrapped-thumb-2 .video-thumb .video-play-btn:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}
.positioned-shape .shape-wrapped-thumb-2 .vector-shape {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.positioned-shape .shape-wrapped-thumb-2 .vector-shape img {
  width: 100%;
}

.about-us-content .text {
  margin-bottom: 20px;
}
.about-us-content .annual-donation-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .about-us-content .annual-donation-wrap {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}
.about-us-content .annual-donation-wrap .annual-donation {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-us-content .annual-donation-wrap .annual-donation p {
  margin-bottom: 5px;
}
.about-us-content .annual-donation-wrap .annual-donation h5 {
  margin-bottom: 0;
}
.about-us-content .annual-donation-wrap .annual-donation img {
  padding: 17px 15px;
  border-radius: 100%;
  border: 2px solid rgba(0, 69, 64, 0.1);
}

.c-tabs-wrapper .nav-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  border: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .c-tabs-wrapper .nav-tabs {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .c-tabs-wrapper .nav-tabs {
    margin-bottom: 20px;
  }
}
.c-tabs-wrapper .nav-tabs .nav-item .nav-link {
    background-color: var(--white-color);
    color: var(--body-color);
    border: 1.5px solid #eee;
    padding: 8px 20px;
    font-weight: 600;
    margin: 10px 0;
    border-radius: 53px;
    line-height: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
  .c-tabs-wrapper .nav-tabs .nav-item .nav-link {
    padding: 4px 8px;
  }
}
.c-tabs-wrapper .nav-tabs .nav-item .nav-link.active, .c-tabs-wrapper .nav-tabs .nav-item .nav-link:hover {
  background-color: #F8F7F0;
  color: var(--theme-color-3);
  border: 1.5px solid var(--theme-color-2);
  box-shadow: 0 6px 15.9px -3px rgba(0, 69, 64, 0.11);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.c-tabs-wrapper .tab-content {
  outline: none;
}

.c-tabs-wrapper .timeline-tabs {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.c-tabs-wrapper .timeline-tabs-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.c-tabs-wrapper .timeline-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.c-tabs-wrapper .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: max-content;
    min-width: 100%;
    border-bottom: 0;
    padding: 5px 20px;
}

.c-tabs-wrapper .nav-tabs .nav-item {
    flex: 0 0 auto;
}


/* .c-tabs-wrapper .nav-tabs .nav-link:hover,
.c-tabs-wrapper .nav-tabs .nav-link.active {
    background: #f47b20;
    border-color: #f47b20;
    color: #fff;
} */
/* Arrow */

.c-tabs-wrapper .timeline-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: var(--theme-color);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
    cursor: pointer;

    transition: all 0.3s ease;
}

.c-tabs-wrapper .timeline-arrow:hover {
    background: #f47b20;
    transform: translateY(-50%) scale(1.08);
}

.c-tabs-wrapper .timeline-arrow-left {
    left: -50px;
}

.c-tabs-wrapper .timeline-arrow-right {
    right: -50px;
}


/* Hidden arrow */

.c-tabs-wrapper .timeline-arrow.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 767px) {

    .c-tabs-wrapper .timeline-arrow {
        width: 36px;
        height: 36px;
    }

}

.benefits {
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .benefits {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .benefits {
    margin-bottom: 24px;
  }
}
.benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.benefits ul li {
  position: relative;
  padding-left: 36px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .benefits ul li {
    padding-left: 30px;
    line-height: 1.4;
  }
}
.benefits ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 6px 10px -3px rgba(0, 69, 64, 0.11);
}
.benefits ul li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #f47b20;
}

.rating-wrap .star-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .rating-wrap .star-rating {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .rating-wrap .star-rating {
    margin-bottom: 0;
  }
}
.rating-wrap .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.rating-wrap .stars i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-2);
  width: 20px;
  height: 20px;
  background-color: var(--theme-color-3);
}

.shape-wrapped-thumb-2 {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shape-wrapped-thumb-2 {
    margin: 0 90px 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .shape-wrapped-thumb-2 {
    margin: 0 60px 60px;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-2 {
    margin: 0 0 40px;
  }
}
.shape-wrapped-thumb-2 .thumb-wrapper {
  display: flex;
  align-items: center;
}
.shape-wrapped-thumb-2 .thumb-wrapper img:first-child {
  border: 4px solid var(--white-color);
  border-radius: 10px;
  width: 42%;
}
.shape-wrapped-thumb-2 .thumb-wrapper img:last-child {
  width: 58%;
}
.shape-wrapped-thumb-2 .positioned-thumb {
  margin: -50px 0 0 25px;
  width: 88%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shape-wrapped-thumb-2 .positioned-thumb {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-2 .positioned-thumb {
    margin: -40px 0 0 25px;
  }
}
.shape-wrapped-thumb-2 .positioned-thumb > img {
  border: 4px solid var(--white-color);
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .shape-wrapped-thumb-2 .positioned-thumb > img {
    width: 100%;
  }
}
.shape-wrapped-thumb-2 .shape-1 {
  position: absolute;
  left: -50px;
  top: 45%;
  z-index: -1;
}
@media (max-width: 767px) {
  .shape-wrapped-thumb-2 .shape-1 {
    left: 0;
    top: 58%;
  }
}
.shape-wrapped-thumb-2 .shape-2 {
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.section-top-5 {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-5 {
    flex-direction: column;
    margin-bottom: 50px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .section-top-5 {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
  }
}
.section-top-5 .left {
  max-width: 780px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-top-5 .left {
    max-width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-5 .left {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .section-top-5 .left {
    max-width: 100%;
  }
}
.section-top-5 .left .common-subtitle span {
  color: var(--theme-color-3);
}
.section-top-5 .left .common-title {
  margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-top-5 .left .common-title h2 {
    font-size: 32px;
  }
}
.section-top-5 .right {
  max-width: 440px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-5 .right {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .section-top-5 .right {
    max-width: 100%;
  }
}
.section-top-5 .right h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 16px;
}
.section-top-5 .right p {
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-5 .right p {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .section-top-5 .right p {
    margin-bottom: 30px;
  }
}

.about-us-section-2 {
  padding-bottom: 300px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-us-section-2 {
    padding-bottom: 460px;
  }
}
@media (max-width: 767px) {
  .about-us-section-2 {
    padding-bottom: 80px;
  }
}
.about-us-section-2 .thumb {
  position: relative;
  margin-top: -28px;
  border-radius: 12px;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-us-section-2 .thumb {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .about-us-section-2 .thumb {
    margin-top: 0;
  }
}
.about-us-section-2 .thumb img {
  border-radius: 12px;
}
@media (max-width: 767px) {
  .about-us-section-2 .thumb img {
    margin-bottom: 50px;
  }
}

.about-us-section-3 {
  background-position: bottom right, bottom left 30%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}
@media (max-width: 1399px) {
  .about-us-section-3 {
    background-position: bottom right, bottom left 0;
  }
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .about-us-section-3 {
    background-size: 60%;
  }
}
@media (max-width: 1399px) {
  .about-us-section-3 {
    background-size: 50%;
  }
}
@media (max-width: 767px) {
  .about-us-section-3 {
    background-size: 100%, 0;
  }
}
.about-us-section-3 .adjusted-margin {
  margin-left: 32%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .about-us-section-3 .adjusted-margin {
    margin-left: 26%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-us-section-3 .adjusted-margin {
    margin-left: 5%;
  }
}
@media (max-width: 1199px) {
  .about-us-section-3 .adjusted-margin {
    margin-left: 0;
  }
}
.about-us-section-3 .adjusted-margin .adjusted-padding {
  padding: 140px 50px 230px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-us-section-3 .adjusted-margin .adjusted-padding {
    padding: 140px 20px 180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-us-section-3 .adjusted-margin .adjusted-padding {
    padding: 100px 200px 160px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-us-section-3 .adjusted-margin .adjusted-padding {
    padding: 100px 80px 150px;
  }
}
@media (max-width: 767px) {
  .about-us-section-3 .adjusted-margin .adjusted-padding {
    padding: 80px 0 80px;
  }
}
.about-us-section-3 .tab-content .year {
  margin-bottom: 8px;
}
.about-us-section-3 .tab-content .year h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.about-us-section-3 .tab-content .reward {
  margin-bottom: 10px;
}
.about-us-section-3 .tab-content .reward h5 {
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.about-us-section-3 .tab-content .text {
  margin-bottom: 34px;
}

/* 25 Latest Work Css */
.work-card {
  background: var(--theme-color);
  display: flex;
  align-items: center;
  gap: 100px;
  border-radius: 10px;
  margin-bottom: 30px;
  position: sticky;
  top: 30px;
  overflow-y: clip;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .work-card {
    gap: 60px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work-card {
    gap: 30px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .work-card {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
}

.work-card-thumb {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 14px;
  margin-top: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .work-card-thumb {
    width: 75%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work-card-thumb {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .work-card-thumb {
    margin-top: 14px;
  }
}
.work-card-thumb:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -24px;
  z-index: -1;
  background: var(--theme-color-2);
  clip-path: url(#w-mask-shape);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border-radius: 10px;
  overflow: hidden;
}
.work-card-thumb img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  clip-path: url(#w-mask-image);
}
@media (max-width: 767px) {
  .work-card-thumb img {
    border-radius: 0;
  }
}
.work-card-thumb .clippy {
  position: absolute;
  top: -999px;
  left: -999px;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.work-card-content {
  max-width: 600px;
  width: 100%;
}
@media (max-width: 767px) {
  .work-card-content {
    padding: 20px;
  }
}
.work-card-content p {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  color: var(--white-color);
}
@media (max-width: 1199px) {
  .work-card-content p {
    font-size: 16px;
    line-height: 1.2;
  }
}
.work-card-content h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--white-color);
  margin-bottom: 80px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .work-card-content h3 {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .work-card-content h3 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work-card-content h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .work-card-content h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

.card-number {
  position: absolute;
  right: 60px;
  bottom: -30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-number {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .card-number {
    right: 20px;
  }
}
.card-number h1 {
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 600;
  font-size: 120px;
  line-height: 82px;
  color: #FFE175;
  opacity: 0.2;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .card-number h1 {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-number h1 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .card-number h1 {
    font-size: 80px;
  }
}

/* 26 News Letter Css */
.news-letter {
    margin: 0 0 0;
    padding: 50px 0 70px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
/* @media (max-width: 1399px) {
  .news-letter {
    margin: 0 0 -300px;
  }
} */

.news-letter-content {
    /* max-width: 560px; */
    margin: 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom:40px;
}
.news-letter-content .shape {
    position: absolute;
    bottom: -80px;
    left: 200px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .news-letter-content .shape {
    bottom: -73px;
    left: -170px;
    width: 30%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-letter-content .shape {
    bottom: -73px;
    left: -95px;
    width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-letter-content .shape {
    bottom: -73px;
    left: -40px;
    width: 20%;
  }
}
@media (max-width: 767px) {
  .news-letter-content .shape {
    bottom: -72px;
    left: 20px;
    width: 25%;
  }
}

.section-top-12 {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-12 .common-title h2 img {
    width: 32px;
  }
}
@media (max-width: 767px) {
  .section-top-12 .common-title h2 img {
    width: 22px;
  }
}

.form-2{
    width:75%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .form-2 {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .form-2 {
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .form-2 {
    width: 80%;
    margin: 0 auto;
  }
}
.form-2 input {
    background: var(--white-color);
    border: 1px solid rgba(0, 69, 64, 0.2);
    border-radius: 10px;
    resize: none;
    padding: 10px 20px;
    /* box-shadow: 6px 6px 16px 0 #d8d6d6; */
}
.form-2 input:focus {
  background: var(--white-color);
  border: 1px solid var(--theme-color-2);
}
.form-2 input::placeholder {
  font-size: 14px;
  line-height: 28px;
  color: var(--body-color);
  opacity: 0.8;
}
.form-2 textarea {
    background: var(--white-color);
    border: 1px solid rgba(0, 69, 64, 0.2);
    border-radius: 10px;
    resize: none;
    padding: 10px 20px;
    margin-top: 25px;
    /* box-shadow: 6px 6px 16px 0 #d8d6d6; */
}
.form-2 textarea:focus {
  background: var(--white-color);
  border: 1px solid var(--theme-color-2);
}
.form-2 textarea::placeholder {
  font-size: 14px;
  line-height: 28px;
  color: var(--body-color);
  opacity: 0.8;
}
.form-2 button {
  border: none;
}

/* 27 Company Achievements Css */
.company-achievements {
  width: 100%;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .company-achievements {
    grid-template-columns: repeat(2, 1fr);
  }
}
.company-achievements .achievement {
  text-align: center;
}
.company-achievements .achievement i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  background-color: #f8f7f0;
  width: 70px;
  height: 70px;
  padding: 10px;
  border: 2px solid var(--theme-color-2);
  border-radius: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .company-achievements .achievement i {
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .company-achievements .achievement i {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .company-achievements .achievement i {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.company-achievements .achievement h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: var(--theme-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .company-achievements .achievement h2 {
    font-size: 42px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .company-achievements .achievement h2 {
    font-size: 30px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .company-achievements .achievement h2 {
    font-size: 30px;
    line-height: 1;
  }
}
.company-achievements .achievement p {
  font-size: 18px;
  line-height: 26px;
  /* color: var(--light-color); */
}
@media (min-width: 992px) and (max-width: 1199px) {
  .company-achievements .achievement p {
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .company-achievements .achievement p {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .company-achievements .achievement p {
    font-size: 16px;
    line-height: 1;
  }
}
.company-achievements .achievement-2 i {
  box-shadow: 0 15px 32.2px -9px rgba(0, 24, 25, 0.2);
}

.company-achievements-2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  position: absolute;
  bottom: -210px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .company-achievements-2 {
    bottom: -160px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .company-achievements-2 {
    grid-template-columns: repeat(3, 1fr);
    bottom: -370px;
  }
}
@media (max-width: 767px) {
  .company-achievements-2 {
    grid-template-columns: repeat(2, 1fr);
    position: static;
  }
}
.company-achievements-2 .achievement {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 41.8px rgba(0, 69, 64, 0.06);
  backdrop-filter: blur(50.25px);
  border-radius: 8px;
  text-align: center;
  padding: 50px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .company-achievements-2 .achievement {
    padding: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .company-achievements-2 .achievement {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .company-achievements-2 .achievement {
    padding: 30px 0;
  }
}
.company-achievements-2 .achievement i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  background-color: #f8f7f0;
  width: 70px;
  height: 70px;
  padding: 10px;
  border: 2px solid var(--theme-color-2);
  border-radius: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .company-achievements-2 .achievement i {
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .company-achievements-2 .achievement i {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .company-achievements-2 .achievement i {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.company-achievements-2 .achievement h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: var(--theme-color-3);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .company-achievements-2 .achievement h2 {
    font-size: 42px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .company-achievements-2 .achievement h2 {
    font-size: 30px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .company-achievements-2 .achievement h2 {
    font-size: 30px;
    line-height: 1;
  }
}
.company-achievements-2 .achievement p {
  font-size: 18px;
  line-height: 26px;
  color: var(--theme-color-3);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .company-achievements-2 .achievement p {
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .company-achievements-2 .achievement p {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .company-achievements-2 .achievement p {
    font-size: 16px;
    line-height: 1;
  }
}

/* 28 Services We Offer Css */
.services-we-offer-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--theme-color-3);
}
.services-we-offer-section .common-title h2 {
  color: var(--white-color);
}
.services-we-offer-section .common-subtitle {
  color: #F8F7F0;
}

.service-card-3 {
  background-color: #F8F7F0;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}
.service-card-3.active, .service-card-3:hover {
  background-color: #F8F7F0;
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.service-card-3.active .thumb a img, .service-card-3:hover .thumb a img {
  transform: scale(1.1);
}
.service-card-3.active .content .d-btn, .service-card-3:hover .content .d-btn {
  border: 2px solid var(--theme-color-2);
  color: var(--theme-color-3);
}
.service-card-3.active .content .d-btn:before, .service-card-3:hover .content .d-btn:before {
  background: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.service-card-3.active .card-number-2 h1, .service-card-3:hover .card-number-2 h1 {
  color: var(--white-color);
  opacity: 1;
}
.service-card-3 .thumb {
  position: relative;
  overflow: hidden;
}
.service-card-3 .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.service-card-3 .thumb img {
  width: 100%;
  height: 265px;
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .service-card-3 .thumb img {
    height: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card-3 .thumb img {
    height: 275px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-card-3 .thumb img {
    height: 220px;
  }
}
@media (max-width: 767px) {
  .service-card-3 .thumb img {
    height: 240px;
  }
}
.service-card-3 .content {
  padding: 14px 20px 20px;
}
.service-card-3 .content .title {
  margin-bottom: 8px;
}
.service-card-3 .content .title h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .service-card-3 .content .title h3 {
    font-size: 20px;
  }
}
.service-card-3 .content .title h3 a {
  color: var(--theme-color-3);
}
.service-card-3 .content .text {
  width: 98%;
  margin-bottom: 24px;
}
.service-card-3 .content .text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
}
.service-card-3 .content .d-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color-3);
  background: transparent;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
.service-card-3 .content .d-btn:before {
  background: var(--theme-color-2);
}
.service-card-3 .content .d-btn .icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--theme-color-3);
  color: var(--light-color);
}
.service-card-3 .content .d-btn .icon-wrap .icon {
  width: 13px;
  font-size: 14px;
}

.card-number-2 {
  position: absolute;
  right: 50px;
  bottom: -20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .card-number-2 {
    right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .card-number-2 {
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-number-2 {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .card-number-2 {
    right: 20px;
  }
}
.card-number-2 h1 {
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 82px;
  color: var(--theme-color-3);
  opacity: 0.1;
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .card-number-2 h1 {
    font-size: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .card-number-2 h1 {
    font-size: 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-number-2 h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .card-number-2 h1 {
    font-size: 60px;
  }
}

/* 29 Work Process Css */
.work-process {
  overflow: hidden;
}
.work-process .common-title {
  width: 60%;
  margin: 0 auto 50px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .work-process .common-title {
    width: 65%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .work-process .common-title {
    width: 75%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work-process .common-title {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .work-process .common-title {
    width: 100%;
  }
}

.contact-form-3 {
  background-color: var(--theme-color);
  padding: 36px 54px 48px 36px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .contact-form-3 {
    padding: 36px 38px 48px 36px;
  }
}
.contact-form-3 .form-content {
  position: relative;
  z-index: 1;
}
.contact-form-3 .form-content .e-primary-btn{
  background-color: var(--theme-color-3);
}
.contact-form-3 h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--light-color);
  margin-bottom: 15px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-3 h3 {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-3 h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form-3 h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}
.contact-form-3 h3 span {
  color: var(--theme-color-2);
}
.contact-form-3 p {
  max-width: 357px;
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  color: var(--light-color);
  opacity: 0.9;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-form-3 p {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-3 p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form-3 p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.4;
  }
}
.contact-form-3 input,
.contact-form-3 textarea {
  background: rgba(248, 247, 240, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 20px;
  resize: none;
}
.contact-form-3 input:focus,
.contact-form-3 textarea:focus {
  border: 2px solid var(--theme-color-2);
}
.contact-form-3 input:focus::placeholder,
.contact-form-3 textarea:focus::placeholder {
  color: var(--light-color);
}
.contact-form-3 input::placeholder,
.contact-form-3 textarea::placeholder {
  font-size: 17px;
  line-height: 28px;
  color: #f8f7f0;
}
@media (max-width: 991px) {
  .contact-form-3 input::placeholder,
  .contact-form-3 textarea::placeholder {
    font-size: 16px;
  }
}
.contact-form-3 button {
  border: none;
}
.contact-form-3 img {
  position: absolute;
  top: -220px;
  right: -260px;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-3 img {
    top: -190px;
    right: -210px;
  }
}
@media (max-width: 767px) {
  .contact-form-3 img {
    top: -160px;
    right: -180px;
  }
}

.work-process-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .work-process-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.work-process-cards .work-process-card {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
  border-radius: 10px;
  padding: 25px 20px;
}
@media (max-width: 1399px) {
  .work-process-cards .work-process-card {
    padding: 30px;
  }
}
.work-process-cards .work-process-card:hover {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.work-process-cards .work-process-card:hover .card-top .number {
  background: var(--theme-color);
}
.work-process-cards .work-process-card:hover .card-top .number h4 {
  color: var(--body-color);
}
.work-process-cards .work-process-card .card-top {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .work-process-cards .work-process-card .card-top {
    justify-content: end;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .work-process-cards .work-process-card .card-top img {
    max-width: 65%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work-process-cards .work-process-card .card-top img {
    max-width: 68%;
  }
}
.work-process-cards .work-process-card .card-top .number {
  width: 70px;
  height: 70px;
  border: 2px solid var(--white-color);
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--theme-color-3);
  box-shadow: 0 15px 32.2px -9px rgba(0, 24, 25, 0.2);
}
@media (max-width: 1399px) {
  .work-process-cards .work-process-card .card-top .number {
    width: 60px;
    height: 60px;
  }
}
.work-process-cards .work-process-card .card-top .number h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
  margin-bottom: 0;
}
.work-process-cards .work-process-card .card-top .number i{
  font-size: 24px;
  color: var(--white-color);
}
.work-process-cards .work-process-card:hover .card-top .number i{
  color: var(--white-color);
}
@media (max-width: 991px) {
  .work-process-cards .work-process-card .card-top .number h4 {
    font-size: 20px;
  }
}
.work-process-cards .work-process-card .card-content h4 {
  max-width: 210px;
  width: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 20px;
  color: var(--title-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .work-process-cards .work-process-card .card-content h4 {
    font-size: 24px;
    line-height: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .work-process-cards .work-process-card .card-content h4 {
    font-size: 24px;
    line-height: 14px;
  }
}
@media (max-width: 991px) {
  .work-process-cards .work-process-card .card-content h4 {
    font-size: 20px;
    line-height: 8px;
  }
}
.work-process-cards .work-process-card .card-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
}

/* 30 Make Donate Css */
.make-donate-section {
  margin-top: -76px;
  z-index: 2;
  position: relative;
}

.make-donate-layout {
  background: var(--theme-color-3);
  border-radius: 8px;
  padding: 36px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .make-donate-layout {
    width: 82%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .make-donate-layout {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .make-donate-layout {
    width: 100%;
    padding: 20px;
  }
}

.donate-left {
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  border-right: 1px solid var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .donate-left {
    background-size: 30%;
  }
}
@media (max-width: 1199px) {
  .donate-left {
    background-size: 0;
    border: none;
    margin-bottom: 30px;
  }
}
.donate-left h4 {
  width: 70%;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--theme-color-2);
  margin-bottom: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .donate-left h4 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-left h4 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .donate-left h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .donate-left h4 {
    font-size: 22px;
    line-height: 1.4;
    width: 100%;
  }
}
.donate-left p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #f8f7f0;
}
@media (max-width: 1399px) {
  .donate-left p {
    font-size: 16px;
  }
}

.donate-right {
  width: 100%;
  max-width: 690px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .donate-right {
    margin-left: 0;
  }
}
.donate-right .choose-currency {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .donate-right .choose-currency {
    flex-wrap: wrap;
  }
}
.donate-right .choose-currency p {
  font-style: normal;
  font-weight: 500;
  color: #f8f7f0;
  margin-bottom: 0;
}
.donate-right .choose-currency .amount {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: rgba(248, 247, 240, 0.1);
  border-radius: 88px;
  font-style: normal;
  font-weight: 600;
  color: #f8f7f0;
  cursor: pointer;
  border: none;
}
.donate-right .choose-currency .amount:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.donate-right .choose-currency .custom-amount {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 88px;
  font-style: normal;
  font-weight: 600;
  color: var(--theme-color-2);
  cursor: pointer;
  background: transparent;
  font-size: 16px;
}
.donate-right .choose-currency .custom-amount i {
  color: var(--theme-color-2);
}
.donate-right .choose-currency .custom-amount p {
  color: var(--theme-color-2);
}
.donate-right .choose-currency .custom-amount:hover {
  border: 2px solid var(--theme-color-2);
}
.donate-right .progress {
  background: rgba(255, 225, 117, 0.1);
  height: 8px;
}
.donate-right .progress .progress-bar {
  background: var(--theme-color-2);
}
.donate-right .bottom {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .donate-right .bottom {
    flex-wrap: wrap;
  }
}
.donate-right .bottom .icon-wrap {
  max-width: 400px;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .donate-right .bottom .icon-wrap {
    max-width: 100%;
  }
}
.donate-right .bottom .icon-wrap input {
  width: 100%;
  border: none;
  padding: 10px 14px 10px 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: right;
  color: var(--theme-color-3);
  background: #ffffff;
  box-shadow: 0px 35px 41.5px -16px rgba(0, 69, 64, 0.12);
  border-radius: 50px;
}
@media (max-width: 767px) {
  .donate-right .bottom .icon-wrap input {
    padding: 6px 14px 6px 10px;
  }
}
.donate-right .bottom .icon-wrap i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: var(--theme-color-3);
  background: #f8f7f0;
  border: 2px solid var(--theme-color-2);
  box-shadow: 0px 15px 32.2px -9px rgba(0, 24, 25, 0.2);
}
@media (max-width: 767px) {
  .donate-right .bottom .icon-wrap i {
    top: 4px;
    left: 4px;
  }
}
.donate-right .bottom .donate-btn {
  padding: 22px 88px;
  background: var(--theme-color-2);
  border-radius: 100px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--theme-color-3);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .donate-right .bottom .donate-btn {
    padding: 16px 60px;
  }
}
.donate-right .bottom .donate-btn:before {
  content: "";
  position: absolute;
  left: -110%;
  top: 50%;
  width: 200%;
  height: 200%;
  background: var(--white-color);
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 200px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donate-right .bottom .donate-btn:hover {
  color: var(--theme-color-3);
}
.donate-right .bottom .donate-btn:hover:before {
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}

/* 31 Donate Us Css */
.donate-to-us-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 210px 0 20px;
}
@media (max-width: 767px) {
  .donate-to-us-section {
    padding: 260px 0 20px;
  }
}

.donate-to-us-layout {
  position: relative;
  z-index: 1;
}
.donate-to-us-layout .icon-shape-1 {
  position: absolute;
  top: -6%;
  left: -2%;
  z-index: -1;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .donate-to-us-layout .icon-shape-1 {
    left: -1.8%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .donate-to-us-layout .icon-shape-1 {
    left: -2.6%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .donate-to-us-layout .icon-shape-1 {
    left: -3%;
  }
}
@media (max-width: 1700px) {
  .donate-to-us-layout .icon-shape-1 img {
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .donate-to-us-layout .icon-shape-1 img {
    width: 70%;
  }
}
.donate-to-us-layout .icon-shape-2 {
  position: absolute;
  bottom: 52%;
  right: -4%;
  z-index: -1;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .donate-to-us-layout .icon-shape-2 {
    bottom: 46%;
    right: -18px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .donate-to-us-layout .icon-shape-2 {
    bottom: 55%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .donate-to-us-layout .icon-shape-2 {
    bottom: 53%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-to-us-layout .icon-shape-2 {
    bottom: 60%;
    right: -5%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .donate-to-us-layout .icon-shape-2 {
    bottom: 65%;
    right: -5%;
  }
}
@media (max-width: 767px) {
  .donate-to-us-layout .icon-shape-2 {
    bottom: 91%;
    right: -3%;
  }
}
@media (max-width: 1700px) {
  .donate-to-us-layout .icon-shape-2 img {
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .donate-to-us-layout .icon-shape-2 img {
    width: 70%;
  }
}

.become-volunteer-card, .donate-us-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 670px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(13px);
  border-radius: 8px;
  padding: 60px 72px 80px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .become-volunteer-card, .donate-us-card {
    max-width: 540px;
    padding: 50px 50px 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .become-volunteer-card, .donate-us-card {
    max-width: 450px;
    padding: 40px 40px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .become-volunteer-card, .donate-us-card {
    max-width: 340px;
    padding: 30px 20px 40px;
  }
}
@media (max-width: 767px) {
  .become-volunteer-card, .donate-us-card {
    max-width: 300px;
    padding: 30px 20px 30px;
  }
}
.become-volunteer-card .card-icon i, .donate-us-card .card-icon i {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--theme-color-2);
  background: linear-gradient(161.69deg, #004540 12.43%, #FFE175 251.81%);
  box-shadow: 0 15px 32.2px -9px rgba(0, 24, 25, 0.2);
  margin-bottom: 10px;
  border-radius: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .become-volunteer-card .card-icon i, .donate-us-card .card-icon i {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .become-volunteer-card .card-icon i, .donate-us-card .card-icon i {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .become-volunteer-card .card-icon i, .donate-us-card .card-icon i {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.become-volunteer-card h2, .donate-us-card h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 52px;
  line-height: 60px;
  color: #F8F7F0;
  text-align: center;
  margin-bottom: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .become-volunteer-card h2, .donate-us-card h2 {
    font-size: 34px;
    line-height: 1.5;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .become-volunteer-card h2, .donate-us-card h2 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .become-volunteer-card h2, .donate-us-card h2 {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .become-volunteer-card h2, .donate-us-card h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}
.become-volunteer-card p, .donate-us-card p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #F8F7F0;
  opacity: 0.8;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .become-volunteer-card p, .donate-us-card p {
    font-size: 16px;
  }
}

.become-volunteer-card {
  margin-bottom: -60px;
}

.donate-us-card {
  position: absolute;
  top: -250px;
  right: 0;
}
@media (max-width: 767px) {
  .donate-us-card {
    top: -300px;
  }
}

/* 32 We Are Friends Css */
.we-are-friends-section .common-subtitle {
  margin-bottom: 20px;
}
.we-are-friends-section .common-title {
  margin-bottom: 20px;
}
.we-are-friends-section .text {
  max-width: 550px;
  width: 100%;
  margin-bottom: 30px;
}
.we-are-friends-section .blog-btn {
  margin-bottom: 50px;
}

.friends-left {
  position: sticky;
  top: 20px;
}
.friends-left .shape {
  position: absolute;
  bottom: -30%;
  left: 40%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .friends-left .shape {
    bottom: 10%;
    width: 5%;
    left: 30%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .friends-left .shape {
    bottom: 10%;
    width: 6%;
    left: 40%;
  }
}
@media (max-width: 767px) {
  .friends-left .shape {
    bottom: 10%;
    width: 10%;
    left: 70%;
  }
}

.friends-card {
  background: #F8F7F0;
  border-radius: 10px;
  padding: 10px;
  position: sticky;
  top: 20px;
}
.friends-card:hover .details-btn-3 {
  right: 10px;
  transition: all 0.3s;
}
.friends-card .author-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  width: 100%;
  height: 100%;
}
.friends-card .author-details .author-info h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .friends-card .author-details .author-info h5 {
    font-size: 20px;
  }
}
.friends-card .author-details .author-info p {
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 16px;
}
.friends-card .author-details .author-info .description p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--body-color);
}
.friends-card .author-details .socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.friends-card .author-details .socials .social-links {
  display: flex;
  gap: 10px;
  transition: all 0.3s;
}
.friends-card .author-details .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--white-color);
  color: var(--body-color);
}
.friends-card .author-details .socials .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.friends-card .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}
.friends-card .thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(109.34deg, rgba(255, 225, 117, 0) 64.88%, #FFE175 100%);
}
.friends-card .thumb .category {
  position: absolute;
  right: 0;
  bottom: 0;
}
.friends-card .thumb img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  width: 100%;
}

.details-btn-3 {
  box-shadow: -7px 9px 31.3px #FFE175;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color-2);
  color: var(--theme-color-3);
  transform: rotate(-45deg);
  padding: 12px 20px;
  border-radius: 53px;
  transition: all 0.3s;
  position: absolute;
  top: 10px;
  right: -60px;
}

/* 33 Details Content Css */
.services-details-section {
  position: relative;
  z-index: 1;
  margin-bottom: -169px;
}
.services-details-section .d-shape-1 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.details-content .thumb-wrap {
  border-radius: 10px;
}
.details-content .thumb-wrap img {
  border-radius: 10px;
}

.detail-info-wrap {
  background: #f8f7f0;
  border-radius: 10px;
}

.detail-info-contents {
  padding: 30px;
}

.thumb-wrap {
  border-radius: 10px;
}
.count-down-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 19px;
  background: #f8f7f0;
  border: 1px solid rgba(0, 69, 64, 0.15);
  box-shadow: 0 6px 30px rgba(0, 69, 64, 0.09);
  border-radius: 10px;
}
.count-down-date i {
  font-size: 18px;
  color: var(--body-color);
}
.count-down-date p {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 0;
}

.details-title h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #004540;
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .details-title h2 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .details-title h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .details-title h2 {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .details-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

.details-subtitle h4 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.details-subtitle h4 span img {
  width: 40px;
}

.details-title-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .details-title-2 {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.details-title-2 h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #004540;
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .details-title-2 h2 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .details-title-2 h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .details-title-2 h2 {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .details-title-2 h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

.donator-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .donator-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .donator-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.donator-cards .donator-card {
  background: #f8f7f0;
  border-radius: 10px;
  padding: 20px;
}
.donator-cards .donator-card:hover {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.12);
}
.donator-cards .donator-card .thumb {
  margin: 0 auto 15px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.donator-cards .donator-card .thumb img {
  width: 100%;
  border-radius: 100%;
}
.donator-cards .donator-card .donator-name {
  margin-bottom: 2px;
}
.donator-cards .donator-card .donator-name h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.donator-cards .donator-card .date-of-donate {
  margin-bottom: 10px;
}
.donator-cards .donator-card .date-of-donate p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--body-color);
  margin-bottom: 0;
}
.donator-cards .donator-card .donation-amount {
  padding: 3px 24px;
  background: var(--white-color);
  border-radius: 6px;
}
.donator-cards .donator-card .donation-amount p {
  display: flex;
  gap: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 0;
}
.donator-cards .donator-card .donation-amount p span {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 28px;
  color: var(--theme-color-3);
}

.detail-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #868681;
}
.detail-text p b {
  font-family: var(--albert-sans-font);
  font-weight: 600;
}

.donation-card {
  background: #f8f7f0;
  border-radius: 10px;
  padding: 20px 24px 30px 30px;
}
@media (max-width: 767px) {
  .donation-card {
    padding: 20px;
  }
}
.donation-card h4 {
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #004540;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .donation-card h4 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .donation-card h4 {
    font-size: 22px;
  }
}
.donation-card p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--body-color);
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .donation-card p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .donation-card p {
    font-size: 16px;
  }
}
.donation-card .donation-wrap-2 {
  background: var(--white-color);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 40px;
  border-radius: 34px;
}
@media (max-width: 767px) {
  .donation-card .donation-wrap-2 {
    flex-direction: column;
    padding: 20px;
  }
}
.donation-card .donation-wrap-2:hover {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background: var(--theme-color-3);
}
.donation-card .donation-wrap-2:hover .left .d-top p {
  color: var(--theme-color-2);
}
.donation-card .donation-wrap-2:hover .left .progress {
  background: rgba(255, 225, 117, 0.1);
}
.donation-card .donation-wrap-2:hover .left .progress .progress-bar {
  background: var(--theme-color-2);
}
.donation-card .donation-wrap-2:hover .left .d-bottom .fund p {
  color: var(--white-color);
}
.donation-card .donation-wrap-2:hover .left .d-bottom .fund p span {
  color: var(--theme-color-2);
}
.donation-card .donation-wrap-2:hover .left .d-bottom .d-wishlist {
  color: var(--theme-color-2);
  border-color: rgba(255, 225, 117, 0.1);
}
.donation-card .donation-wrap-2:hover .right {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}
.donation-card .donation-wrap-2 .left {
  width: 100%;
}
.donation-card .donation-wrap-2 .left .d-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.donation-card .donation-wrap-2 .left .d-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-card .donation-wrap-2 .left .progress {
  margin-bottom: 15px;
  background: rgba(0, 69, 64, 0.1);
  height: 8px;
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-card .donation-wrap-2 .left .progress .progress-bar {
  background: var(--theme-color-3);
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-card .donation-wrap-2 .left .d-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.donation-card .donation-wrap-2 .left .d-bottom .fund {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.donation-card .donation-wrap-2 .left .d-bottom .fund p {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #868681;
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-card .donation-wrap-2 .left .d-bottom .fund p span {
  color: var(--theme-color-3);
  font-weight: 600;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-card .donation-wrap-2 .left .d-bottom .d-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid rgba(0, 24, 25, 0.1);
  border-radius: 10px;
  padding: 10px;
  background: none;
  color: var(--theme-color-3);
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.01em;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-card .donation-wrap-2 .right {
  width: 110px;
  height: 110px;
  padding: 25px 30px;
  border-radius: 100%;
  color: var(--theme-color-2);
  background: var(--theme-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-weight: 500;
}
.donation-card .donation-wrap-2 .right .icon i {
  font-size: 20px;
}

.donation-wrap-3 {
  background: var(--white-color);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 40px;
  border-radius: 34px;
}
.donation-wrap-3:hover {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background: var(--theme-color-3);
}
.donation-wrap-3:hover .left .d-top p {
  color: var(--theme-color-2);
}
.donation-wrap-3:hover .left .progress {
  background: rgba(255, 225, 117, 0.1);
}
.donation-wrap-3:hover .left .progress .progress-bar {
  background: var(--theme-color-2);
}
.donation-wrap-3:hover .left .d-bottom .fund p {
  color: var(--white-color);
}
.donation-wrap-3:hover .left .d-bottom .fund p span {
  color: var(--theme-color-2);
}
.donation-wrap-3:hover .left .d-bottom .d-wishlist {
  color: var(--theme-color-2);
  border-color: rgba(255, 225, 117, 0.1);
}
.donation-wrap-3:hover .right {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}
.donation-wrap-3 .left {
  width: 100%;
}
.donation-wrap-3 .left .d-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.donation-wrap-3 .left .d-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-wrap-3 .left .progress {
  margin-bottom: 15px;
  background: rgba(0, 69, 64, 0.1);
  height: 8px;
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-wrap-3 .left .progress .progress-bar {
  background: var(--theme-color-3);
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-wrap-3 .left .d-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.donation-wrap-3 .left .d-bottom .fund {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.donation-wrap-3 .left .d-bottom .fund p {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #868681;
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-wrap-3 .left .d-bottom .fund p span {
  color: var(--theme-color-3);
  font-weight: 600;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-wrap-3 .left .d-bottom .d-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid rgba(0, 24, 25, 0.1);
  border-radius: 10px;
  padding: 10px;
  background: none;
  color: var(--theme-color-3);
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.01em;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.donation-wrap-3 .right {
  width: 110px;
  height: 110px;
  padding: 25px 30px;
  border-radius: 100%;
  color: var(--theme-color-2);
  background: var(--theme-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-weight: 500;
}
.donation-wrap-3 .right .icon i {
  font-size: 20px;
}

.list-wrapper {
  display: flex;
  align-items: center;
  gap: 90px;
}
@media (max-width: 767px) {
  .list-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.list-wrapper .list-wrap {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-wrapper .list-wrap li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.list-wrapper .list-wrap li:last-child {
  margin-bottom: 0;
}
.list-wrapper .list-wrap li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--white-color);
  width: 18px;
  height: 18px;
  background: var(--theme-color-3);
  border-radius: 50%;
}
.list-wrapper .list-wrap li p {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #868681;
}

.banner-slide-wrap {
  display: block;
}
.banner-slide-wrap .thumb {
  position: relative;
  width: 100%;
}
.banner-slide-wrap .thumb img {
  width: 100%;
  border-radius: 12px;
}
.banner-slide-wrap .thumb .play-btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  color: var(--white-color);
  padding: 25px 20px;
  border-radius: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  animation: animate-pulse 3s linear infinite;
}
.banner-slide-wrap .thumb .play-btn:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-slide-wrap .thumb .play-btn {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .banner-slide-wrap .thumb .play-btn {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}

.gallery-slider-active {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.gallery-slider-active .gallery-pagination {
  height: 5px;
  border-radius: 10px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  z-index: 10;
}
.gallery-slider-active .gallery-pagination .swiper-pagination-bullet {
  width: 100px;
  max-width: 100px;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  background: #F8F7F0;
  margin: 0;
}
.gallery-slider-active .gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color-2);
}

.testimonial-wrap {
  text-align: center;
}
.testimonial-wrap .icon {
  width: 80px;
  height: 80px;
  background: #ffe175;
  border: 2px solid rgba(0, 69, 64, 0.1);
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.testimonial-wrap .review {
  font-family: var(--outfit-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #868681;
  margin-bottom: 16px;
}
.testimonial-wrap .author h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #004540;
  margin-bottom: 5px;
}
.testimonial-wrap .author p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #868681;
}

.d-cta-wrap {
  position: relative;
  z-index: 1;
  padding: 19px 50px 19px 60px;
  background: #f8f7f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.d-cta-wrap .content-wrap {
  max-width: 427px;
}
.d-cta-wrap .content-wrap .common-title h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: #004540;
  margin-bottom: 30px !important;
}
.d-cta-wrap .thumb-wrap {
  width: 100%;
}
.d-cta-wrap .d-shape-1 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}

.view-project-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.previous-project,
.next-project {
  max-width: 446px;
  width: 100%;
  background: #f8f7f0;
  border-radius: 87px;
  padding: 10px 50px 10px 10px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.previous-project .project-thumb-wrap,
.next-project .project-thumb-wrap {
  width: 140px;
  height: 140px;
  background: #383838;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 100px;
}
.previous-project .project-thumb-wrap img,
.next-project .project-thumb-wrap img {
  border-radius: 100px;
  width: 100%;
}
.previous-project .project-content-wrap .view-project-btn,
.next-project .project-content-wrap .view-project-btn {
  margin-bottom: 15px;
}
.previous-project .project-content-wrap .view-project-btn a,
.next-project .project-content-wrap .view-project-btn a {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--body-color);
}
.previous-project .project-content-wrap .view-project-btn a .icon-1,
.next-project .project-content-wrap .view-project-btn a .icon-1 {
  transform: rotate(225deg);
}
.previous-project .project-content-wrap .view-project-btn a .icon-2,
.next-project .project-content-wrap .view-project-btn a .icon-2 {
  transform: rotate(315deg);
}
.previous-project .project-content-wrap .project-title,
.next-project .project-content-wrap .project-title {
  margin-bottom: 5px;
}
.previous-project .project-content-wrap .project-title h5,
.next-project .project-content-wrap .project-title h5 {
  font-family: var(--outfit-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #020231;
  margin-bottom: 0;
}
.previous-project .project-content-wrap .published-date p,
.next-project .project-content-wrap .published-date p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--body-color);
  margin-bottom: 0;
}

.comment-section .comments {
  padding: 50px 0;
  border-top: 1px solid rgba(0, 69, 64, 0.1);
  border-bottom: 1px solid rgba(0, 69, 64, 0.1);
}
.comment-section .comments .comment-wrap {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .comment-section .comments .comment-wrap {
    flex-direction: column;
  }
}
.comment-section .comments .comment-wrap .thumb {
  max-width: 100px;
  width: 100%;
  height: 100px;
  border-radius: 100%;
}
.comment-section .comments .comment-wrap .thumb img {
  width: 100%;
  border-radius: 100%;
}
.comment-section .comments .comment-wrap .info .name {
  margin-bottom: 6px;
}
.comment-section .comments .comment-wrap .info .name p {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #15161c;
  margin-bottom: 0;
}
.comment-section .comments .comment-wrap .info .date {
  margin-bottom: 14px;
}
.comment-section .comments .comment-wrap .info .date p {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #737373;
  margin-bottom: 0;
}
.comment-section .comments .comment-wrap .info .text {
  margin-bottom: 14px;
}
.comment-section .comments .comment-wrap .info .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #737373;
  margin-bottom: 0;
}
.comment-section .comments .comment-wrap .info .reply-btn {
  padding: 6px 14px;
  background: #f8f7f0;
  color: var(--theme-color-3);
  border-radius: 88px;
  cursor: pointer;
}
.comment-section .comments .comment-wrap .info .reply-btn:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.comment-section .leave-comment form .info-input {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .comment-section .leave-comment form .info-input {
    flex-direction: column;
  }
}
.comment-section .leave-comment form input,
.comment-section .leave-comment form textarea {
  background: #f8f7f0;
  border: 2px solid #f8f7f0;
  border-radius: 10px;
  padding: 14px 20px;
  resize: none;
}
.comment-section .leave-comment form input:focus,
.comment-section .leave-comment form textarea:focus {
  border: 2px solid rgba(0, 69, 64, 0.8);
}
.comment-section .leave-comment form input:focus::placeholder,
.comment-section .leave-comment form textarea:focus::placeholder {
  color: var(--theme-color-3);
}
.comment-section .leave-comment form input::placeholder,
.comment-section .leave-comment form textarea::placeholder {
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
}
@media (max-width: 991px) {
  .comment-section .leave-comment form input::placeholder,
  .comment-section .leave-comment form textarea::placeholder {
    font-size: 16px;
  }
}
.comment-section .leave-comment form button {
  border: none;
}

.make-donate .icon-wrap {
  width: 100%;
  position: relative;
  border-radius: 10px;
}
.make-donate .icon-wrap input {
  width: 100%;
  border: none;
  padding: 26px 40px 26px 26px;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  text-align: right;
  color: var(--theme-color-3);
  background: #ffffff;
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.12);
  border-radius: 10px;
}
.make-donate .icon-wrap i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  font-size: 32px;
  color: var(--theme-color-3);
  background: #f8f7f0;
  border: 2px solid var(--theme-color-2);
  box-shadow: 0px 15px 32.2px -9px rgba(0, 24, 25, 0.2);
}
@media (max-width: 767px) {
  .make-donate .icon-wrap i {
    top: 4px;
    left: 4px;
  }
}
.make-donate .icon-wrap:hover {
  background: var(--theme-color-2);
}
.make-donate .icon-wrap:hover i {
  border: 2px solid var(--white-color);
}

/* 34 Details Sidebar Css */
.details-layout-wrap {
  display: flex;
  gap: 60px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
.details-layout-wrap .details-content {
  flex: 1;
  width: 100%;
  max-width: 922px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .details-layout-wrap .details-content {
    max-width: 670px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}

.detail-sidebar {
  flex: none;
  max-width: 380px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .detail-sidebar {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .detail-sidebar {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .detail-sidebar {
    max-width: 100%;
  }
}
.detail-sidebar .detail-sidebar-inner {
  position: sticky;
  top: 20px;
}
.detail-sidebar .s-widget-wrap {
  background: #f8f7f0;
  border-radius: 10px;
  padding: 30px 40px;
}
@media (max-width: 767px) {
  .detail-sidebar .s-widget-wrap {
    padding: 20px;
  }
}
.detail-sidebar .s-widget-wrap .w-title h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #004540;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-sidebar .s-widget-wrap .w-title .bar-wrap {
  position: relative;
  z-index: 1;
  margin: 10px 0 30px;
}
.detail-sidebar .s-widget-wrap .w-title .bar-wrap .bar-1 {
  border-bottom: 2px solid rgba(0, 69, 64, 0.1);
}
.detail-sidebar .s-widget-wrap .w-title .bar-wrap .bar-2 {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 23%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 69, 64, 0) 0%, #004540 100%);
}
.detail-sidebar .s-widget-wrap .socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-sidebar .s-widget-wrap .socials .social-links {
  display: flex;
  gap: 10px;
  transition: all 0.3s;
}
.detail-sidebar .s-widget-wrap .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--white-color);
  color: var(--body-color);
}
.detail-sidebar .s-widget-wrap .socials .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.detail-sidebar .s-widget-wrap .project-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-text {
  margin-bottom: 24px;
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--body-color);
  margin-bottom: 0;
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-info {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 69, 64, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-info:hover {
  cursor: pointer;
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-info:hover .icon {
  color: var(--theme-color-2);
  background: var(--theme-color-3);
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-info .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  font-size: 26px;
  color: var(--theme-color-3);
  background: var(--white-color);
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-info .key-value .key {
  margin-bottom: 6px;
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-info .key-value .key p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--body-color);
  margin-bottom: 0;
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-info .key-value .value h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #004540;
  margin-bottom: 0;
}
.detail-sidebar .s-widget-wrap .project-info-wrap .project-info-last {
  padding: 0;
  border: none;
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .thumb {
  max-width: 100px;
  width: 100%;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 100%;
  border: 6px solid var(--white-color);
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .thumb img {
  width: 100%;
  border-radius: 100%;
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .name h3 {
  text-align: center;
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .text {
  margin-bottom: 24px;
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .text p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .divider {
  width: 100%;
  margin-bottom: 24px;
  height: 2px;
  background: rgba(0, 69, 64, 0.1);
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .date,
.detail-sidebar .s-widget-wrap .organizer-info-wrap .location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .date i,
.detail-sidebar .s-widget-wrap .organizer-info-wrap .location i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  padding: 7px;
  background: var(--white-color);
  border: 1px solid rgba(0, 69, 64, 0.15);
}
.detail-sidebar .s-widget-wrap .organizer-info-wrap .date p,
.detail-sidebar .s-widget-wrap .organizer-info-wrap .location p {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 0;
}
.detail-sidebar .s-widget-wrap .recent-campaigns .campaign {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(0, 69, 64, 0.1);
}
.detail-sidebar .s-widget-wrap .recent-campaigns .campaign .thumb {
  max-width: 77px;
  height: 77px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.detail-sidebar .s-widget-wrap .recent-campaigns .campaign .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.detail-sidebar .s-widget-wrap .recent-campaigns .campaign .date {
  margin-bottom: 4px;
}
.detail-sidebar .s-widget-wrap .recent-campaigns .campaign .date p {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #6f7174;
  margin-bottom: 0;
}
.detail-sidebar .s-widget-wrap .recent-campaigns .campaign .name h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #121213;
  margin-bottom: 0;
}
.detail-sidebar .s-widget-wrap .recent-campaigns .campaign-last {
  padding: 0;
  margin: 0;
  border: none;
}

.detail-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.detail-list ul li {
  margin-bottom: 10px;
}
.detail-list ul li:last-child {
  margin-bottom: 0;
}
.detail-list ul li a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  font-family: var(--albert-sans-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #868681;
  background: #ffffff;
  border-radius: 4px;
  padding: 10px 5px 10px 20px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.detail-list ul li a:hover {
  color: var(--white-color);
  background: var(--theme-color-3);
}
.detail-list ul li a:hover .icon {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.detail-list ul li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--body-color);
  width: 30px;
  height: 30px;
  background: #f8f7f0;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.detail-contact .icon-info-wrap {
  margin-top: -20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 10px;
}
.detail-contact .icon-info-wrap .icon-wrap {
  position: relative;
  z-index: 1;
  height: 30px;
  margin-bottom: 10px;
  display: inline-block;
}
.detail-contact .icon-info-wrap .icon-wrap .icon {
  margin-top: -30px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.21);
  border: 1.5px solid #ffe175;
  backdrop-filter: blur(4.7px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.detail-contact .icon-info-wrap .icon-wrap .bar-wrap .bar-1 {
  position: absolute;
  left: 40px;
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 117, 0) 0%, #ffe175 100%);
  margin-left: -20px;
}
@media (max-width: 767px) {
  .detail-contact .icon-info-wrap .icon-wrap .bar-wrap .bar-1 {
    width: 60px;
  }
}
.detail-contact .icon-info-wrap .icon-wrap .bar-wrap .bar-2 {
  position: absolute;
  right: 40px;
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, #ffe175 0%, rgba(255, 255, 117, 0) 100%);
  margin-right: -20px;
}
@media (max-width: 767px) {
  .detail-contact .icon-info-wrap .icon-wrap .bar-wrap .bar-2 {
    width: 60px;
  }
}
.detail-contact .icon-info-wrap .info {
  text-align: center;
}
.detail-contact .icon-info-wrap .info h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 0;
}
.detail-contact .icon-info-wrap .info h3 a {
  color: #004540;
}
.detail-contact .icon-info-wrap .info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #868681;
}

/* 35 Camping Donation Css */
.choose-currency-2 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .choose-currency-2 {
    flex-wrap: wrap;
  }
}
.choose-currency-2 p {
  font-style: normal;
  font-weight: 500;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.choose-currency-2 .amount {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: rgba(248, 247, 240, 0.1);
  border-radius: 88px;
  font-style: normal;
  font-weight: 600;
  color: var(--theme-color-3);
  cursor: pointer;
  border: none;
}
.choose-currency-2 .amount.active, .choose-currency-2 .amount:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.choose-currency-2 .custom-amount {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 2px solid rgba(0, 69, 64, 0.1);
  border-radius: 88px;
  font-style: normal;
  font-weight: 600;
  color: var(--theme-color-3);
  cursor: pointer;
  background: transparent;
}
.choose-currency-2 .custom-amount i {
  color: var(--theme-color-3);
}
.choose-currency-2 .custom-amount p {
  color: var(--theme-color-2);
}
.choose-currency-2 .custom-amount:hover {
  border: 2px solid var(--theme-color-3);
}

.thank-you-text p {
  font-family: var(--dm-sans-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 0;
}

.payment-method-form {
  padding-top: 40px;
  border-top: 1px solid rgba(0, 69, 64, 0.1);
}
.payment-method-form .payment-title {
  margin-bottom: 20px;
}
.payment-method-form .payment-title h3 {
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.payment-method-form .select-payment-method {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.payment-method-form .select-payment-method .method {
  display: flex;
  align-items: center;
  gap: 4px;
}
.payment-method-form .select-payment-method .method input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background-color: var(--theme-color-3);
  position: relative;
  cursor: pointer;
  vertical-align: middle;
}
.payment-method-form .select-payment-method .method input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid var(--theme-color-2);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.payment-method-form .select-payment-method .method label {
  font-family: var(--dm-sans-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
}
.payment-method-form form h5 {
  margin-bottom: 24px;
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
}
.payment-method-form form .info-input {
  display: flex;
  gap: 20px;
}
.payment-method-form form input,
.payment-method-form form textarea {
  background: var(--white-color);
  border: 2px solid var(--white-color);
  border-radius: 10px;
  padding: 14px 20px;
  resize: none;
}
.payment-method-form form input:focus,
.payment-method-form form textarea:focus {
  background: var(--white-color);
  border: 2px solid rgba(0, 69, 64, 0.8);
}
.payment-method-form form input:focus::placeholder,
.payment-method-form form textarea:focus::placeholder {
  color: var(--theme-color-3);
}
.payment-method-form form input::placeholder,
.payment-method-form form textarea::placeholder {
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
}
@media (max-width: 991px) {
  .payment-method-form form input::placeholder,
  .payment-method-form form textarea::placeholder {
    font-size: 16px;
  }
}
.payment-method-form form button {
  border: none;
}
.payment-method-form form .form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.payment-method-form form .form-bottom p {
  font-family: var(--albert-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--body-color);
  margin-bottom: 0;
}
.payment-method-form form .impact-text p {
  font-family: var(--albert-sans-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--body-color);
  margin-bottom: 0;
}
.payment-method-form form .impact-text p span {
  font-weight: 600;
}

.divider-2 {
  width: 100%;
  background: rgba(0, 69, 64, 0.1);
  height: 1px;
}

.sponsor-info-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sponsor-info-wrap .thumb {
  max-width: 100px;
  width: 100%;
  height: 100px;
  border-radius: 100%;
  border: 6px solid var(--white-color);
}
.sponsor-info-wrap .thumb img {
  width: 100%;
  border-radius: 100%;
}
.sponsor-info-wrap .name h3 {
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.sponsor-info-wrap .designation {
  margin-bottom: 10px;
}
.sponsor-info-wrap .designation p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--body-color);
  margin-bottom: 0;
}
.sponsor-info-wrap .view-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--albert-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: var(--body-color);
  background: var(--white-color);
  border-radius: 6px;
  padding: 4px 12px;
  border: 1px solid var(--theme-color-2);
}
.sponsor-info-wrap .view-profile-btn:hover {
  background-color: var(--theme-color-2);
  color: var(--theme-color-3);
}

.sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sidebar-gallery .thumb {
  border-radius: 6px;
}
.sidebar-gallery .thumb img {
  border-radius: 6px;
}

/* 36 Donations Css */
.notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #f8f7f0;
  border: 1px solid rgba(0, 69, 64, 0.15);
  box-shadow: 0px 6px 30px rgba(0, 69, 64, 0.09);
  border-radius: 10px;
}
.notice p {
  font-family: var(--dm-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--body-color);
}
.notice p span {
  color: var(--theme-color-3);
}

.services-details-section-2 {
  position: relative;
  z-index: 1;
  margin-bottom: -160px;
}
.services-details-section-2 .d-shape-1 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.services-details-section .details-content .content h1 {
  font-size: 38px;
  line-height: 1.3;
}

.services-details-section .details-content .content h2 {
  font-size: 34px;
  line-height: 1.35;
}

.services-details-section .details-content .content h3 {
  font-size: 30px;
  line-height: 1.4;
}

.services-details-section .details-content .content h4 {
  font-size: 26px;
  line-height: 1.4;
}

.services-details-section .details-content .content h5 {
  font-size: 22px;
  line-height: 1.45;
}

.services-details-section .details-content .content h6 {
  font-size: 18px;
  line-height: 1.5;
}

/* 37 Blog Standard Css */
.search-bar {
  position: relative;
  margin-bottom: 10px;
}
.search-bar input {
  width: 100%;
  height: 50px;
  padding: 14px;
  border: 0;
  border-radius: 4px;
}
.search-bar input::-webkit-input-placeholder {
  font-weight: 500;
  color: var(--body-color);
}
.search-bar input:-moz-placeholder {
  font-weight: 500;
  color: var(--body-color);
}
.search-bar input::-moz-placeholder {
  font-weight: 500;
  color: var(--body-color);
}
.search-bar input:-ms-input-placeholder {
  font-weight: 500;
  color: var(--body-color);
}
.search-bar i {
  position: absolute;
  top: 7px;
  right: 7px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  background: #f8f7f0;
  padding: 11px;
}

.categories button {
  padding: 0px 12px;
  border: 1px solid rgba(0, 69, 64, 0.1);
  border-radius: 88px;
  background: transparent;
  font-family: var(--dm-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 28px;
  color: var(--body-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.categories button:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
  border-color: var(--theme-color-2);
}

.blog-card-4 {
  background-color: #f8f7f0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  z-index: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card-4:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.blog-card-4:hover .content .content-bottom .read-more-btn {
  border: 2px solid var(--theme-color-2);
}
.blog-card-4:hover .content .content-bottom .read-more-btn::before {
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.blog-card-4 .thumb {
  position: relative;
}
.blog-card-4 .thumb > a {
  display: block;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.blog-card-4 .thumb > a img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.blog-card-4 .thumb .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-card-4 .thumb .category a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.blog-card-4 .thumb .category a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.blog-card-4 .content {
  padding: 24px 102px 26px 30px;
}
.blog-card-4 .content .blog-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.blog-card-4 .content .blog-info p {
  font-family: var(--albert-sans-font);
  color: var(--body-color);
  margin-bottom: 0;
}
.blog-card-4 .content .blog-info .publisher-info,
.blog-card-4 .content .blog-info .date,
.blog-card-4 .content .blog-info .comment,
.blog-card-4 .content .blog-info .view {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-4 .content .blog-info .publisher-info img,
.blog-card-4 .content .blog-info .date img,
.blog-card-4 .content .blog-info .comment img,
.blog-card-4 .content .blog-info .view img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.blog-card-4 .content .title h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: var(--theme-color-3);
  margin-bottom: 12px;
}
.blog-card-4 .content .title h3 a {
  color: var(--theme-color-3);
}
.blog-card-4 .content .text p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 24px;
}
.blog-card-4 .content .read-more-btn {
  color: var(--theme-color-3);
  background-color: transparent;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
.blog-card-4 .content .read-more-btn:hover {
  color: var(--white-color);
}

.blog-card-5 .thumb {
  margin-bottom: 24px;
}
.blog-card-5 .thumb > a {
  border-radius: 10px;
}
.blog-card-5 .thumb > a img {
  width: 100%;
  border-radius: 10px;
}
.blog-card-5 .content .blog-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.blog-card-5 .content p{
    margin-bottom:20px;
}
.blog-card-5 .content .blog-info p {
  font-family: var(--albert-sans-font);
  color: var(--body-color);
  margin-bottom: 0;
}
.blog-card-5 .content .blog-info .publisher-info,
.blog-card-5 .content .blog-info .date,
.blog-card-5 .content .blog-info .comment,
.blog-card-5 .content .blog-info .view {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-5 .content .blog-info .publisher-info img,
.blog-card-5 .content .blog-info .date img,
.blog-card-5 .content .blog-info .comment img,
.blog-card-5 .content .blog-info .view img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.blog-card-5 .content .title h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: var(--theme-color-3);
  margin-bottom: 24px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-card-5 .content .title h3 {
    font-size: 19px;
    line-height: 1.4;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-5 .content .title h3 {
    font-size: 19px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-5 .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .blog-card-5 .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
.blog-card-5 .content .title h3 a {
  color: var(--theme-color-3);
}
.blog-card-5 .content .text p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 24px;
}

.detail-thumb-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 24px;
}
.detail-thumb-wrap img {
  border-radius: 10px;
}

.blog-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
.blog-tags .tag-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-tags .tag-wrap p {
  font-family: var(--dm-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
.blog-tags .tag-wrap .tags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-tags .tag-wrap .tags button {
  font-family: var(--dm-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: var(--body-color);
  padding: 7px 12px;
  background: #f8f7f0;
  border: 1px solid var(--white-color);
  box-shadow: 0px 6px 30px rgba(0, 69, 64, 0.09);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-tags .tag-wrap .tags button:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
  border-color: var(--theme-color-3);
}
.blog-tags .socials {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.blog-tags .socials .social-links {
  display: flex;
  gap: 10px;
  transition: all 0.3s;
}
.blog-tags .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #f8f7f0;
  color: var(--body-color);
}
.blog-tags .socials .social-links a:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}

.other-partners h6{
  font-size: 14px;
}

.how-it-work-fourteen .section-work-head span {
    font-size: 18px;
    color: #012047;
    margin-bottom: 10px;
    display: inline-block;
}
.how-it-work-fourteen .section-work-head h2 {
    font-size: 30px;
    color: #012047;
    margin-bottom: 0;
    font-weight: 600;
}
.how-it-work-fourteen .section-work-head h2 span {
    font-size: 30px;
    color: #0E82FD;
}
.how-it-work-fourteen .work-flow-chart{
   display: flex;
   align-items: center;
   justify-content: center;
}
.how-it-work-fourteen .work-flow-chart li {
    position: relative;
    list-style: none;
}
.how-it-work-fourteen .work-flow-chart li .flow-chart-list {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    flex-direction: column;
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-it-work-fourteen .work-flow-chart li .flow-chart-list .chart-icon {
    margin-bottom: 0;
    font-size: 35px;
    color: var(--theme-color);
}
.how-it-work-fourteen .work-flow-chart li .flow-chart-list h6 {
    color: var(--title-color);
    font-size: 15px;
    margin-bottom: 0;
}
.how-it-work-fourteen .work-flow-chart li .flow-chart-list .chart-count {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--theme-color);
    border: 2px solid #FFF;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1490196078);
    display: none;
    align-items: center;
    justify-content: center;
}


/* Rainbow */
.gradient-fill {
    display: inline-block!important;
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #fda501, #0000ff, #4b0082, #8f00ff, #ff0000);
    background-size: 200% auto;
    color: transparent!important;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientFlow 3s linear infinite;
    font-size: 16px!important;
    font-weight: 700!important;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.csr-program .service-card {
    box-shadow: 5px 5px 20px 0px #f7f7f7;
    background-color: rgb(255, 255, 255, 1);
    border: 1px solid #eee;
    display: block;
}
.csr-program .service-card .csr-partner img{
  width: 50%;
  margin: auto;
}
.csr-program .service-card .csr-partner {
    background-color: #fff;
    border: 1px solid var(--theme-color-3);
    border-radius: 5px;
    padding: 30px 10px 10px 10px;
    position: relative;
    margin-top: 30px;
}
.csr-program .service-card .csr-partner span.text {
    display: inline-table;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--theme-color-3);
    border-radius: 50px;
    width: 130px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    transition: all 0.5s;
}
.csr-program .service-card .csr-partner span.arrow {
    position: absolute;
    top: -25px;
    right: 0;
    left: 200px;
    margin: auto;
    background-color: var(--theme-color-3);
    color: #fff;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    padding: 0;
    transform: rotate(-35deg);
    visibility: hidden;
}

.csr-program .service-card:hover .csr-partner span.text {
    opacity: 0;
    visibility: hidden;
    left: 200px;
}
.csr-program .service-card:hover .csr-partner span.arrow {
    visibility: visible;
    opacity: 1;
    left: 0;
}


.flagship-event .letter-space {
    letter-spacing: 2px;
    font-size: 12px;
}

.flagship-event .event-title{
    font-size:24px;
    line-height:1.1;
    color:var(--title-color);
  }

.flagship-event .event-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 18px;
    background: var(--theme-color-3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}

.flagship-event .event-image{
    overflow:hidden;
    border-radius:24px;
    margin:25px;
    height: 450px;
}

.flagship-event .event-image img{
    transition:.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    object-position: top;
}

.flagship-event .event-image:hover img{
    transform:scale(1.03);
}


/* .flagship-event .card{
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.08)!important;
} */

.flagship-event .badge{
    font-size:14px;
    z-index:10;
}

@media(max-width:992px){

  .flagship-event .event-title{
    font-size:28px;
  }

  .flagship-event .event-image{
    margin:20px;  
  }

}


.event-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Blue Bottom Circle */

.workshop-program .event-card>* {
    position: relative;
    z-index: 2;
}

/* Heading */
.workshop-program .event-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: #102542;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* Info */
.workshop-program .event-card .info {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 22px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.workshop-program .event-card .info i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 15px;
    background: #eef4ff;
    color: #0d6efd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.workshop-program .event-card .info b {
    color: #0f172a;
    display: block;
    margin-bottom: 0;
    line-height: 1;
}

/* Button */


.workshop-program .event-card .icon-wrap {
    display: flex;
    align-items: center;
}

.workshop-program .event-card .icon {
    display: flex;
    gap: 4px;
    font-size: 15px;
}

/* Image */
.workshop-program .event-card .event-img {
    overflow: hidden;
    border-radius: 22px;
    margin-top: 35px;
}

.workshop-program .event-card .event-img img {
    width: 100%;
    display: block;
    border-radius: 22px;
    transition: .5s;
}

.workshop-program .event-card:hover .event-img img {
    transform: scale(1.05);
}

/* Responsive */

@media (max-width:991px) {

    .workshop-program .event-card {
        padding: 25px;
    }

    .workshop-program .event-card h2 {
        font-size: 28px;
    }

}

@media (max-width:767px) {

    .workshop-program .event-card h2 {
        font-size: 24px;
    }

    .workshop-program .event-card .info {
        font-size: 15px;
    }

    .workshop-program .event-card .info i {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

}

.single-about img{
  width: 100%;
  height: 450px;
  object-fit: cover;
  -webkit-object-fit: cover;
  object-position: top;
  -webkit-mask-image: linear-gradient(to bottom, #fff 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #fff 70%, transparent 100%);
}
.single-about{
  margin-bottom: 50px;
}

/* story */
.story-slider-active {
    border-radius: 20px;
    overflow: hidden;
}
.success-story {
    margin-top: -150px;
    position: relative;
    z-index: 2;
}

.success-story .story-box {
    position: relative;
    background: var(--theme-color-3);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    padding: 60px 60px 60px 60px;
}
.success-story .story-box::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle,rgba(255, 122, 0, 1) 0%, rgba(0, 212, 255, 0) 100%);
  z-index: 0;
}
.success-story .story-content {
    padding-right: 50px;
}

.success-story .section-tag{

    display:inline-block;
    color:#ff7a00;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:18px;
    position:relative;
    padding-left:55px;
}

.success-story .section-tag::before{

    content:"";
    position:absolute;
    width:40px;
    height:2px;
    background:#ff7a00;
    left:0;
    top:50%;
}

.success-story .story-content h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:35px;
    color:#0b1f4d;
    line-height:1.2;
}
.success-story .story-box h2.title{
    border-bottom: 2px solid #0000;
    border-image: linear-gradient(90deg, #02002400 0%, #ffffff 50%, #00d4ff00 100%) 1;
    display: inline-block;
    padding-bottom: 9px;
}

.success-story .story-content h2 span{

    color:#ff7a00;
}

.success-story .quote-card{
    height: 100%;
    background:#fff8ef;
    border-radius:22px;
    padding:35px;
    position:relative;
}

.success-story .quote-icon {
    border-radius: 50%;
    color: #ff7a00;
    display: flex;
    align-items: center;
    font-size: 50px;
    margin-bottom: 25px;
}

.success-story .quote-card p{

    font-size:18px;
    line-height:1.3;
    color:#555;
    margin-bottom:25px;
}

.success-story .quote-card h5{
    font-weight:700;
    color:#0b1f4d;
    margin:0;
}
.success-story .quote-card span{
  font-size: 14px;
}
.success-story .story-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
}

.success-story .story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    -webkit-object-fit: cover;
    transition: .5s;
}

.success-story .story-box:hover img{

    transform:scale(1.05);
}

.success-story .image-shape{

    position:absolute;
    inset:20px;
    border:3px solid rgba(255,255,255,.5);
    border-radius:22px;
    pointer-events:none;
}
.success-story .story-pagination {
    bottom: 20px;
    right: 20px;
    left: auto;
    position: absolute;
    z-index: 1;
    text-align: right;
}
.success-story .swiper-pagination-bullet {
    width: 30px;
    border-radius: 2px;
    height: 4px;
    background: #fff;
    opacity: 0.2;
}
.success-story .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}
/* story */

.startup-journey{
  background: #fdfdfd;
}
/* ================================
   WHY CHOOSE US
================================ */

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(90deg, rgb(0 0 38) 0%, rgba(9, 9, 121, 1) 35%, rgb(244 123 32) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px 70px;
    max-width: 1200px;
    margin: 0 auto;
}


/* ================================
   ITEM
================================ */

.why-item {
    position: relative;
    text-align: center;
    padding: 10px 20px 20px;
}


/* ================================
   CIRCULAR ICON
================================ */

.why-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;

    position: relative;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Inner circle */

.why-icon::before {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
}


/* Icon */

.why-icon i {
    position: relative;
    z-index: 2;
}


/* ================================
   COLORS
================================ */

.icon-orange {
    background: #ffca9e;
    color: #f58220;
}

.icon-green {
    background: #cdffdf;
    color: #35a853;
}

.icon-pink {
    background: #ffd5e8;
    color: #e85d9e;
}

.icon-blue {
    background: #d0e5fb;
    color: #3485d6;
}

.icon-purple {
    background: #e9e1ff;
    color: #7956d8;
}

.icon-teal {
    background: #d0f9f6;
    color: #20a39e;
}


/* ================================
   HEADING
================================ */

.why-item h4 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;
    color: #fff;
}


/* ================================
   DESCRIPTION
================================ */

.why-item p {
    max-width: 270px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.65;
    color: #c7c7c7;
}


/* ================================
   NUMBER
================================ */

.why-number {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    color: #1e293b;
    opacity: 0.035;
    pointer-events: none;
    transition:
        color 0.35s ease,
        opacity 0.35s ease;
}


/* ================================
   HOVER
================================ */

.why-item:hover .why-icon {
    transform: translateY(-6px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-item:hover .why-number {
    color: #f58220;
    opacity: 0.10;
}

.why-item:hover h4 {
    color: #f58220;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 55px 30px;
    }
}


@media (max-width: 575px) {
    .why-choose-section {
        padding: 60px 15px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .why-item {
        padding-left: 15px;
        padding-right: 15px;
    }
    .why-number {
        right: 15px;
    }

}

/* .bharat-conent-section{
  background: linear-gradient(87deg, rgba(248, 249, 250, 1) 0%, rgb(255 255 255) 100%) ;
} */

.bharat-safety-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin: auto;
    right: 0;
}
.bharat-safety-logo > img {
    width: 20%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}
.bharat-safety-logo .honda-logo {
    text-align: center;
    background: #fff;
    width: 15%;
    padding: 20px;
    border-radius: 5px;
}
.bharat-safety-logo .honda-logo p{
  margin-bottom: 0;
  line-height: 1;
}

.bharat-content {
    background: var(--theme-color-3);
    padding: 30px 30px;
    border-radius: 20px;
    outline: 2px solid #f47b20;
    outline-offset: 6px;
    box-shadow: inset 0px 3px 10px 0 #934003;
}
.bharat-content p{
  font-size: 21px;
  color:#fff;
}


/* key support */
.startup-support-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgb(255 255 255 / 8%), transparent 28%), radial-gradient(circle at 85% 75%, rgb(255 255 255 / 8%), #ffffff00 25%), #322e2a;
    font-family: "Manrope", sans-serif;
}


/* =====================================
   BACKGROUND GLOWS
===================================== */

.startup-support-section .startup-support-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    pointer-events: none;
}

.startup-support-section .startup-support-glow-1 {
    top: -220px;
    left: -180px;
    background: #ff7a00;
}

.startup-support-section .startup-support-glow-2 {
    right: -180px;
    bottom: -250px;
    background: #ff9b4a;
}


/* =====================================
   DOT PATTERNS
===================================== */

.startup-support-section .startup-support-bg-dots {
    position: absolute;
    width: 180px;
    height: 150px;
    opacity: 0.55;
    background-image: radial-gradient(
        circle,
        rgba(255, 119, 28, 0.45) 2px,
        transparent 2.5px
    );
    background-size: 20px 20px;
    pointer-events: none;
}

.startup-support-section .startup-support-dots-top {
    top: 70px;
    right: 30px;
}

.startup-support-section .startup-support-dots-bottom {
    bottom: 10px;
    left: 30px;
}


/* =====================================
   SECTION HEADING
===================================== */

.startup-support-section .startup-support-heading {
    margin-bottom: 70px;
    position: relative;
}

.startup-support-section .startup-support-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 3.5vw, 64px);
    line-height: 1.15;
}

.startup-support-section .startup-support-heading h2 span {
    background: linear-gradient(
        90deg,
        #ff8a2a,
        #ff5a00,
        #e94b00
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =====================================
   HEADING LINE
===================================== */

.startup-support-section .startup-support-heading-line {
    width: 150px;
    height: 3px;
    background: rgba(255, 115, 25, 0.35);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.startup-support-section .startup-support-heading-line span {
    position: absolute;
    top: 0;
    left: 35px;
    width: 65px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #ff8b2b,
        #ff5700
    );
    animation: startup-support-line-move 3s ease-in-out infinite;
}

@keyframes startup-support-line-move {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/* =====================================
   CARD
===================================== */

.startup-support-section .startup-support-card {
    position: relative;
    height: 100%;
    padding: 38px 32px;
    overflow: hidden;
    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(247, 249, 252, 0.92)
        );

    border: 1px solid rgba(28, 43, 65, 0.09);

    box-shadow:
        0 15px 40px rgba(29, 42, 65, 0.06);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* CARD TOP GLOW */

.startup-support-section .startup-support-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 113, 0, 0.13),
            transparent 68%
        );

    opacity: 0;
    transition: opacity 0.4s ease;
}


/* CARD HOVER */

.startup-support-section .startup-support-card:hover {
    transform: translateY(-10px);

    border-color: rgba(255, 106, 0, 0.5);

    box-shadow:
        0 25px 60px rgba(28, 42, 64, 0.12),
        0 8px 25px rgba(255, 106, 0, 0.08);
}

.startup-support-section .startup-support-card:hover::before {
    opacity: 1;
}


/* =====================================
   ACTIVE CARD
===================================== */

.startup-support-section .startup-support-active {
    border-color: rgba(255, 106, 0, 0.7);

    box-shadow:
        0 20px 55px rgba(255, 110, 15, 0.10),
        0 15px 40px rgba(29, 42, 65, 0.06);
}


/* =====================================
   LARGE NUMBER
===================================== */

.startup-support-section .startup-support-number {
    position: absolute;
    top: 28px;
    left: 32px;

    color: rgba(30, 42, 61, 0.10);

    font-size: 52px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: -2px;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.startup-support-section .startup-support-card:hover .startup-support-number {
    color: rgba(255, 99, 0, 0.15);
    transform: translateX(5px);
}


/* =====================================
   SMALL DOTS
===================================== */

.startup-support-section .startup-support-dots {
    position: absolute;

    top: 90px;
    left: 36px;

    display: flex;
    gap: 7px;
}

.startup-support-section .startup-support-dots span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #f46c13;

    animation:
        startup-support-dot-pulse 1.8s infinite ease-in-out;
}

.startup-support-section .startup-support-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.startup-support-section .startup-support-dots span:nth-child(3) {
    animation-delay: 0.4s;
}


@keyframes startup-support-dot-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}


/* =====================================
   CARD CONTENT
===================================== */

.startup-support-section .startup-support-content {
    position: relative;
    z-index: 2;
    padding-right: 115px;
}

.startup-support-section .startup-support-content h3 {
    margin: 0;
    color: #1f2b3d;
    font-size: 22px;
    line-height: 1.35;
}


/* =====================================
   SMALL ORANGE LINE
===================================== */

.startup-support-section .startup-support-small-line {
    width: 50px;
    height: 2px;

    margin: 16px 0 22px;

    background: linear-gradient(
        90deg,
        #ff9b4a,
        #f15b00
    );

    transition:
        width 0.4s ease;
}

.startup-support-section .startup-support-card:hover
.startup-support-small-line {
    width: 80px;
}


/* =====================================
   DESCRIPTION
===================================== */

.startup-support-section .startup-support-content p {
    margin: 0;

    color: #667181;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 500;
}


/* =====================================
   ICON WRAPPER
===================================== */

.startup-support-section .startup-support-icon-wrap {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px dashed rgba(255, 104, 0, 0.45);
}


/* STOP OUTER ROTATION ON HOVER */

.startup-support-section .startup-support-card:hover
.startup-support-icon-wrap {
    animation-play-state: paused;
}


/* =====================================
   ICON
===================================== */

.startup-support-section .startup-support-icon {
    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 31px;

    background:
        linear-gradient(
            135deg,
            #ff9a36,
            #ff5d00 55%,
            #ff3d00
        );

    box-shadow:
        0 15px 30px rgba(255, 90, 0, 0.25);

    /* animation: startup-support-counter-rotate 18s linear infinite; */

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.startup-support-section .startup-support-card:hover
.startup-support-icon {
    transform: scale(1.12) rotate(-8deg);

    box-shadow:
        0 20px 40px rgba(255, 90, 0, 0.38);
}


/* =====================================
   CONNECTOR LINE
===================================== */

.startup-support-section .startup-support-connector {
    position: absolute;
    width: 42px;
    height: 2px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(
            90deg,
            #ff8b2b,
            #ff6200
        );
    z-index: -1;
}

.startup-support-section .startup-support-connector::after {
    content: "";

    position: absolute;

    right: -5px;
    top: 50%;

    width: 11px;
    height: 11px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 0 4px rgba(255, 101, 0, 0.08);
}




/* =====================================
   SCROLL REVEAL
===================================== */

.startup-support-section .startup-support-card {
    opacity: 0;
    transform: translateY(40px);

    animation:
        startup-support-reveal 0.8s forwards ease-out;
}

.startup-support-section .col-lg-4:nth-child(1)
.startup-support-card {
    animation-delay: 0.1s;
}

.startup-support-section .col-lg-4:nth-child(2)
.startup-support-card {
    animation-delay: 0.2s;
}

.startup-support-section .col-lg-4:nth-child(3)
.startup-support-card {
    animation-delay: 0.3s;
}

.startup-support-section .col-lg-4:nth-child(4)
.startup-support-card {
    animation-delay: 0.4s;
}

.startup-support-section .col-lg-4:nth-child(5)
.startup-support-card {
    animation-delay: 0.5s;
}

.startup-support-section .col-lg-4:nth-child(6)
.startup-support-card {
    animation-delay: 0.6s;
}


@keyframes startup-support-reveal {

    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1199px) {



    .startup-support-section .startup-support-content {
        padding-right: 95px;
    }

    .startup-support-section .startup-support-icon-wrap {
        right: 22px;
        width: 100px;
        height: 100px;
    }

    .startup-support-section .startup-support-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}


@media (max-width: 991px) {

    .startup-support-section {
        padding: 75px 0;
    }

    .startup-support-section .startup-support-heading {
        margin-bottom: 50px;
    }

}


@media (max-width: 767px) {

    .startup-support-section {
        padding: 60px 0;
    }

    .startup-support-section .startup-support-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .startup-support-section .startup-support-heading {
        margin-bottom: 40px;
    }

    .startup-support-section .startup-support-card {
        min-height: auto;
        padding: 30px 25px 35px;
    }

    .startup-support-section .startup-support-number {
        left: 25px;
        top: 25px;

        font-size: 44px;
    }

    .startup-support-section .startup-support-dots {
        left: 28px;
        top: 78px;
    }

    .startup-support-section .startup-support-content {
        padding-top: 80px;
        padding-right: 95px;
    }

    .startup-support-section .startup-support-content h3 {
        font-size: 22px;
    }

    .startup-support-section .startup-support-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .startup-support-section .startup-support-icon-wrap {
        top: 100px;
        right: 18px;

        width: 90px;
        height: 90px;
    }

    .startup-support-section .startup-support-icon {
        width: 65px;
        height: 65px;

        font-size: 25px;
    }

    .startup-support-section .startup-support-connector {
        display: none;
    }
}


@media (max-width: 480px) {

    .startup-support-section .startup-support-heading h2 {
        font-size: 32px;
    }

    .startup-support-section .startup-support-content {
        padding-right: 80px;
    }

    .startup-support-section .startup-support-content h3 {
        font-size: 20px;
    }

    .startup-support-section .startup-support-icon-wrap {
        width: 80px;
        height: 80px;
    }

    .startup-support-section .startup-support-icon {
        width: 58px;
        height: 58px;

        font-size: 22px;
    }
}
/* key support */

/* ==========================================
   IMPACT SECTION
========================================== */

.impact-section {
    padding: 80px 0;
    background:
        linear-gradient(
            120deg,
            #f15a24 0%,
            #ff7a18 35%,
            #ff9f1c 70%,
            #ffc107 100%
        );
}


/* ==========================================
   HEADING NUMBER
========================================== */

.impact-heading {
    margin-bottom: 30px;
}

.impact-heading span {
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #12295b;
}


/* ==========================================
   MAIN STATS WRAPPER
========================================== */

/* .impact-main {
    position: relative;

    background: #07111f;

    border-radius: 24px;

    overflow: visible;

    box-shadow:
        0 20px 50px rgba(7, 17, 31, 0.16);
} */


/* ==========================================
   MAIN CARD
========================================== */

.impact-card {
    position: relative;

    padding: 22px 24px;

    display: flex;
    align-items: center;

    gap: 24px;

    border: 2px solid #fff;

    border-radius: 24px;

    /* background: #0b1525; */

    overflow: visible;

    transition: all 0.35s ease;
}


/* ==========================================
   COLORS
========================================== */

/* .impact-teal {
    border-color: #00d4c7;
}

.impact-blue {
    border-color: #1769ff;
}

.impact-purple {
    border-color: #963cff;
}

.impact-orange {
    border-color: #ff7a00;
} */


/* ==========================================
   ICON
========================================== */

.impact-icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    background: #ffffff;
    /* border: 2px solid currentColor; */
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
}


/* Individual icon colors */



/* ==========================================
   CONTENT
========================================== */

.impact-info {
    position: relative;
    z-index: 2;
}

.impact-number {
    display: block;

    font-size: 15px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.impact-card h3 {
    margin: 3px 0 10px;

    font-size: 21px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;

    text-transform: uppercase;
}

.impact-card p {
    margin: 0;

    max-width: 190px;

    color: rgba(255, 255, 255, 1);

    font-size: 13px;

    line-height: 1.6;
}




/* ==========================================
   CONNECTOR
========================================== */

.impact-connector {
    position: absolute;

    right: -19px;
    top: 50%;

    width: 36px;
    height: 36px;

    transform: translateY(-50%) rotate(45deg);

    /* background: #0b1525; */

    border-top: 2px solid #fff;
    border-right: 2px solid #fff;

    z-index: 5;
}


/* Connector colors */

.impact-teal .impact-connector {
    color: #00d4c7;
}

.impact-blue .impact-connector {
    color: #1769ff;
}

.impact-purple .impact-connector {
    color: #963cff;
}


/* ==========================================
   HOVER
========================================== */

.impact-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);
}

.impact-card:hover .impact-icon {
    transform: scale(1.08);

    /* background: #ffffff; */
}


/* ==========================================
   DETAILS SECTION
========================================== */

.impact-details {
    border-radius: 18px;
    background: #ffffff;
}


/* ==========================================
   DETAIL
========================================== */

.impact-detail {
    padding: 30px;
    border-right: 1px solid #f5f6fb;
}

.impact-details .col-lg-3:last-child .impact-detail{
    border-right: 0;
}


/* ==========================================
   DETAIL ICON
========================================== */

.detail-icon {
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    border-radius: 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;
}


/* Detail colors */

.detail-teal {
    color: #008f89;
    background: #e8fbfa;
}

.detail-blue {
    color: #1769ff;
    background: #edf3ff;
}

.detail-purple {
    color: #7c35d4;
    background: #f3ecff;
}

.detail-orange {
    color: #f26b00;
    background: #fff0e5;
}


/* ==========================================
   DETAIL CONTENT
========================================== */

.impact-detail h4 {
    margin: 2px 0 10px;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 700;

    text-transform: uppercase;
}

.impact-detail p {
    margin: 0;

    font-size: 13px;

    line-height: 1.7;

    color: #6c7480;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {

    .impact-main {
        background: transparent;

        box-shadow: none;

        gap: 20px;
    }

    .impact-card {
        margin-bottom: 20px;

        border-radius: 20px;
    }

    .impact-connector {
        display: none;
    }

    .impact-details {
        box-shadow: none;

        gap: 20px;
    }

    .impact-detail {
        border: 1px solid #e6e8ed;

        border-radius: 16px;

        margin-bottom: 20px;

        background: #ffffff;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 767px) {

    .impact-section {
        padding: 60px 0;
    }

    .impact-heading span {
        font-size: 38px;
    }

    .impact-card {
        min-height: auto;

        padding: 28px 25px;

        gap: 20px;
    }

    .impact-icon {
        flex: 0 0 68px;

        width: 68px;
        height: 68px;

        font-size: 28px;
    }

    .impact-card h3 {
        font-size: 18px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .impact-section {
        padding: 45px 15px;
    }

    .impact-heading {
        margin-bottom: 20px;
    }

    .impact-heading span {
        font-size: 32px;
    }

    .impact-card {
        padding: 24px 20px;

        align-items: flex-start;
    }

    .impact-icon {
        flex: 0 0 58px;

        width: 58px;
        height: 58px;

        font-size: 23px;
    }

    .impact-card h3 {
        font-size: 16px;
    }

    .impact-card p {
        font-size: 12px;
    }

    .impact-detail {
        padding: 24px 20px;

        min-height: auto;
    }

    .detail-icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        font-size: 23px;
    }

}

.flowchart-section {
    background: #fefefe;
}

/* =========================================
   VALUES SECTION
========================================= */

.values-section {
    position: relative;
    padding: 100px 0;
    /* min-height: 600px; */
    background-image: url("../img/bg/aic-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* =========================================
   DARK IMAGE OVERLAY
========================================= */

.values-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 15, 27, 0.94) 0%,
            rgba(5, 22, 37, 0.78) 45%,
            rgba(4, 12, 24, 0.86) 100%
        );
    z-index: 0;
}


/* =========================================
   HEADING
========================================= */

.values-heading {
    position: relative;

    z-index: 2;

    margin-bottom: 45px;

    color: #fff;
}

.values-heading span {
    display: block;

    margin-bottom: 8px;

    color: #f58220;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.values-heading h2 {
    margin: 0;

    color: #fff;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 700;
}


/* =========================================
   CARD
========================================= */

.value-card {
    position: relative;
    width: 100%;
    z-index: 2;
    min-height: auto;
    padding: 40px 30px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.15),
            rgba(255,255,255,0.06)
        );

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 24px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.22);

    overflow: hidden;

    transition:
        transform .4s ease,
        background .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


/* =========================================
   TOP LIGHT EFFECT
========================================= */

.value-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    filter: blur(35px);

    pointer-events: none;
}


/* =========================================
   ICON
========================================= */

.value-icon {
    position: relative;
    width: 88px;
    height: 88px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    font-size: 34px;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.22);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


/* =========================================
   ICON COLORS
========================================= */

.value-purple .value-icon {
    color: #793cff;
}

.value-blue .value-icon {
    color: #287cff;
}

.value-green .value-icon {
    color: #00b879;
}

.value-orange .value-icon {
    color: #ff7818;
}

.value-pink .value-icon {
    color: #ff397c;
}


/* =========================================
   TITLE
========================================= */

.value-card h4 {
    position: relative;
    margin: 0 0 18px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================
   PARAGRAPH
========================================= */

.value-card p {
    position: relative;
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}


/* =========================================
   BOTTOM ACCENT LINE
========================================= */

.value-line {
    width: 105px;
    height: 5px;

    margin-top: auto;

    border-radius: 10px;

    transition:
        width .4s ease,
        box-shadow .4s ease;
}


/* Individual colors */

.value-purple .value-line {
    background: #793cff;
    box-shadow: 0 0 15px rgba(121,60,255,.6);
}

.value-blue .value-line {
    background: #287cff;
    box-shadow: 0 0 15px rgba(40,124,255,.6);
}

.value-green .value-line {
    background: #00b879;
    box-shadow: 0 0 15px rgba(0,184,121,.6);
}

.value-orange .value-line {
    background: #ff7818;
    box-shadow: 0 0 15px rgba(255,120,24,.6);
}

.value-pink .value-line {
    background: #ff397c;
    box-shadow: 0 0 15px rgba(255,57,124,.6);
}


/* =========================================
   HOVER
========================================= */

.value-card:hover {
    transform: translateY(-12px);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.20),
            rgba(255,255,255,0.08)
        );

    border-color: rgba(255,255,255,0.45);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.35);
}

.value-card:hover .value-icon {
    transform: translateY(-6px) scale(1.06);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.3);
}

.value-card:hover .value-line {
    width: 140px;
}


/* =========================================
   TABLET
========================================= */



/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .values-section {
        padding: 70px 15px;
    }

    .values-heading {
        margin-bottom: 30px;
    }

    .values-heading h2 {
        font-size: 32px;
    }

    .value-card {
        padding: 35px 25px 30px;
    }

    .value-icon {
        width: 90px;
        height: 90px;

        font-size: 35px;

        margin-bottom: 25px;
    }

    .value-card h4 {
        font-size: 20px;
    }

}


/* =========================================================
   STARTUP PROFILE SECTION
========================================================= */

.startup-profile-section {
}


/* =========================================================
   MAIN CARD
========================================================= */

.startup-details.startup-profile-section .startup-profile-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    border: none;
    background: linear-gradient(rgb(163 79 17), rgb(62 62 62 / 60%)), url(../img/bg/video.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .35s ease, box-shadow .35s ease;
}
.startup-profile-section .startup-profile-card {
    position: relative;
    overflow: hidden;
    background: #fffcfa;
    border: 1px solid #f47b20;
    border-radius: 20px;    
    transition: transform .35s ease, box-shadow .35s ease;
    margin-bottom: 30px;
}
.startup-profile-section .col-lg-6:last-child .startup-profile-card{
  margin-bottom: 0;
}

.startup-profile-section .startup-profile-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 45px rgba(30, 65, 25, 0.08);
}

#about1.offcanvas{
  height: auto;
}


/* =========================================================
   LEFT DETAILS
========================================================= */

.startup-profile-section .startup-details {
    position: relative;
    padding: 25px;
}


/* =========================================================
   TITLE
========================================================= */

.startup-details.startup-profile-section .startup-title {
    color: #fff;
}

.startup-profile-section .startup-title {
    position: relative;
    margin: 0 0 35px;
    padding-left: 18px;
    color: #000000;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    /* letter-spacing: -0.4px; */
    width: 72%;
}


/* Green vertical title line */

.startup-profile-section .startup-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    border-radius: 5px;
    background: linear-gradient(to bottom, #f47b20, #fffcfa);
}


/* =========================================================
   INFO GRID
========================================================= */

.startup-profile-section .startup-info {
    row-gap: 10px;
}
.detail-page.startup-profile-section .startup-info {
    width: 70%;
}


/* =========================================================
   INFO ITEM
========================================================= */

.startup-profile-section .info-item {
    display: flex;

    align-items: center;

    gap: 14px;
}


/* =========================================================
   INFO ICON
========================================================= */

.startup-details.startup-profile-section .info-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    border: none;
    justify-content: center;
    border-radius: 14px;
    color: #f47b20;
    background: #ffffff;
    font-size: 14px;
    transition: transform .3s ease,
        background .3s ease;
}
.startup-profile-section .info-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #f47b20;
    background: #ffffff;
    border: 1px solid #f47b20;
    font-size: 14px;
    transition: transform .3s ease,
        background .3s ease;
}


.startup-profile-section .info-item:hover .info-icon {
    transform: translateY(-3px);
    background: linear-gradient(145deg, #f47b20, #fdae73);
    color: #fff;
}

/* =====================================
   ABOUT SECTION
===================================== */

.about-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* =====================================
   MAIN WRAPPER
===================================== */

.about-section .about-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 80px;
}


/* =====================================
   LEFT CONTENT
===================================== */

.about-section .about-content {
    position: relative;
    z-index: 5;
}


/* =====================================
   BADGE
===================================== */

.about-section .about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 18px 9px 10px;

    background: #eaf3ff;
    color: #1264d9;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;

    margin-bottom: 28px;
}


.about-section .badge-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: #1264d9;

    font-size: 15px;

    box-shadow: 0 4px 12px rgba(18, 100, 217, 0.10);
}


/* =====================================
   TITLE
===================================== */

.about-section .about-title {
    margin: 0;
    font-size: clamp(42px, 3.5vw, 68px);
    line-height: 1.08;
}


.about-section .about-title span {
    color: var(--theme-color-3);
}


/* =====================================
   ORANGE / BLUE LINE
===================================== */

.about-section .about-line {
    position: relative;
    width: 84px;
    height: 3px;
    margin: 28px 0 28px;
    border-radius: 10px;
    background: #1b4b8c;
}


.about-section .about-line::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 42px;
    height: 100%;

    background: #f47b20;

    border-radius: 10px;
}


/* =====================================
   DESCRIPTION
===================================== */

.about-section .about-description {
    max-width: 620px;

    margin: 0 0 30px;

    color: #536174;

    font-size: 17px;
    line-height: 1.85;

    font-weight: 400;
}


/* =====================================
   BUTTON
===================================== */

.about-section .about-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 14px 16px 14px 24px;

    color: #ffffff;

    background: #1264d9;

    border-radius: 8px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 12px 30px rgba(18, 100, 217, 0.20);

    transition: all 0.35s ease;
}


.about-section .about-btn span {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #1264d9;

    border-radius: 6px;

    transition: all 0.35s ease;
}


.about-section .about-btn:hover {
    color: #ffffff;

    background: #0b4fac;

    transform: translateY(-3px);

    box-shadow: 0 18px 35px rgba(18, 100, 217, 0.28);
}


.about-section .about-btn:hover span {
    transform: translateX(4px);
}


/* =====================================
   FEATURES
===================================== */

.about-section .about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;

    max-width: 720px;
}


.about-section .about-feature {
    position: relative;

    padding: 0 22px;

    text-align: center;
}


.about-section .about-feature:first-child {
    padding-left: 0;
}


.about-section .about-feature:last-child {
    padding-right: 0;
}


/* Vertical divider */

.about-section .about-feature:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 5px;

    width: 1px;
    height: 90px;

    background: #dce4ef;
}


/* =====================================
   FEATURE ICON
===================================== */

.about-section .feature-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #1264d9;

    background: #edf5ff;

    font-size: 22px;

    transition: all 0.35s ease;
}


.about-section .about-feature:hover .feature-icon {
    color: #ffffff;

    background: #1264d9;

    transform: translateY(-5px);

    box-shadow: 0 12px 25px rgba(18, 100, 217, 0.22);
}


.about-section .about-feature h4 {
    margin: 0 0 6px;

    color: #101d35;

    font-size: 15px;
    font-weight: 700;
}


.about-section .about-feature p {
    margin: 0;

    color: #758195;

    font-size: 12px;
    line-height: 1.5;
}


/* =====================================
   RIGHT IMAGE AREA
===================================== */

.about-section .about-image-wrapper {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Large soft shape */

.about-section .about-image-shape {
    position: absolute;
    width: 570px;
    height: 570px;
    right: -30px;
    top: 20px;
    background: #fff3eb;
    border-radius: 50%;
    transform: rotate(-12deg);
    z-index: 0;
}


/* =====================================
   IMAGE RING
===================================== */

.about-section .about-image-ring {
    position: absolute;
    width: 560px;
    height: 560px;
    border: 2px solid rgba(244, 123, 32, 0.25);
    border-radius: 50%;
    z-index: 1;
}


/* =====================================
   IMAGE
===================================== */

.about-section .about-image {
    position: relative;

    width: 475px;
    height: 475px;

    border-radius: 50%;

    padding: 12px;

    background: #ffffff;

    box-shadow:
        0 25px 60px rgba(16, 29, 53, 0.12);

    z-index: 3;
}


.about-section .about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}


/* =====================================
   DOT GRID
===================================== */

.about-section .about-dot-grid {
    position: absolute;

    right: 20px;
    top: 30px;

    display: grid;

    grid-template-columns: repeat(3, 8px);

    gap: 10px;

    z-index: 4;
}


.about-section .about-dot-grid span {
    width: 8px;
    height: 8px;
    background: var(--theme-color-3);
    border-radius: 50%;
}


/* =====================================
   DECORATIVE CIRCLES
===================================== */

.about-section .about-circle {
    position: absolute;

    border-radius: 50%;

    z-index: 4;
}


.about-section .circle-one {
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: 80px;
    background: rgb(244 123 32);
    box-shadow: 0 12px 25px rgba(244, 123, 32, 0.25);
}

.about-section .circle-two {
    width: 35px;
    height: 35px;
    left: 40px;
    bottom: 70px;
    background: #ffebdb;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1199px) {

    .about-section .about-wrapper {
        grid-template-columns: 1fr 0.9fr;
        gap: 40px;
    }

    .about-section .about-image-wrapper {
        min-height: 500px;
    }

    .about-section .about-image {
        width: 390px;
        height: 390px;
    }

    .about-section .about-image-ring {
        width: 470px;
        height: 470px;
    }

    .about-section .about-image-shape {
        width: 470px;
        height: 470px;
    }

    .about-section .about-title {
        font-size: 50px;
    }

}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .about-section .about-section {
        padding: 80px 0;
    }

    .about-section .about-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .about-section .about-content {
        text-align: center;
    }

    .about-section .about-title {
        margin: auto;
    }

    .about-section .about-line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-section .about-description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-section .about-features {
        margin-left: auto;
        margin-right: auto;
    }

    .about-section .about-image-wrapper {
        min-height: 550px;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

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

    .about-section .about-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .about-section .about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-section .about-features {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 30px;

        margin-top: 40px;
    }

    .about-section .about-feature {
        padding: 0 15px;
    }

    .about-section .about-feature:nth-child(2)::after {
        display: none;
    }

    .about-section .about-feature:nth-child(4)::after {
        display: none;
    }

    .about-section .about-feature:not(:last-child)::after {
        height: 70px;
    }

    .about-section .about-image-wrapper {
        min-height: 430px;
    }

    .about-section .about-image {
        width: 320px;
        height: 320px;
    }

    .about-section .about-image-ring {
        width: 390px;
        height: 390px;
    }

    .about-section .about-image-shape {
        width: 390px;
        height: 390px;
    }

}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .about-section .about-title {
        font-size: 34px;
    }

    .about-section .about-badge {
        font-size: 12px;
    }

    .about-section .about-image-wrapper {
        min-height: 350px;
    }

    .about-section .about-image {
        width: 260px;
        height: 260px;
    }

    .about-section .about-image-ring {
        width: 320px;
        height: 320px;
    }

    .about-section .about-image-shape {
        width: 320px;
        height: 320px;
    }

    .about-section .about-dot-grid {
        right: 5px;
    }

    .about-section .circle-one {
        right: 0;
        bottom: 30px;
    }

}


/* =========================================================
   INFO CONTENT
========================================================= */

.startup-profile-section .info-content {
    display: flex;

    flex-wrap: wrap;

    align-items: baseline;

    column-gap: 5px;

    row-gap: 2px;

    font-size: 14px;

    line-height: 1.5;
}


.startup-profile-section .info-content strong {
    color: #333;
    font-weight: 600;
}
.startup-details.startup-profile-section .info-content strong {
    color: #fff;
    font-weight: 600;
}


.startup-profile-section .info-content span {
    color: #333;
    font-weight: 400;
}
.startup-details.startup-profile-section .info-content span{
  color: #fff;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.startup-profile-section .startup-btn {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    margin-top: 35px;

    padding: 6px 7px 6px 22px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #376f25,
            #5b942d
        );

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(55, 111, 37, 0.22);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.startup-profile-section .startup-btn i {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    background: #f58220;

    border-radius: 50%;

    font-size: 16px;

    transition:
        transform .3s ease;
}


.startup-profile-section .startup-btn:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(55, 111, 37, 0.28);
}


.startup-profile-section .startup-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   RIGHT LOGO AREA
========================================================= */
.startup-profile-section .startup-logo-area {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    box-shadow: 3px 3px 10px 0 #ffdec2;
    margin-bottom: 20px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}
.detail-page.startup-profile-section .startup-logo-area {
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    width: 15%;
    box-shadow: 1px 0px 20px 0 #c9ae9b;
}

.startup-profile-section .startup-logo-area a {
    display: table;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    border-bottom: 1px solid var(--theme-color-3);
    font-size: 14px;
    /* transition: letter-spacing 0.5s; */
}
.startup-profile-section .startup-logo-area a:hover{
  letter-spacing: 1px;
}
.startup-profile-section .startup-logo-area a i{
  padding-left: 5px;
}


/* =========================================================
   LOGO
========================================================= */

.startup-profile-section .startup-logo {
    position: relative;

    z-index: 3;

    width: 300px;
    height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 15px;

    background: rgba(255,255,255,0.85);

    border-radius: 50%;

    box-shadow:
        0 20px 45px rgba(43, 78, 35, 0.10);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.startup-profile-section .startup-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


.startup-profile-section .startup-profile-card:hover .startup-logo {
    transform: scale(1.035);

    box-shadow:
        0 25px 55px rgba(43, 78, 35, 0.15);
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.startup-profile-section .logo-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.startup-profile-section .logo-decoration-one {
    width: 220px;
    height: 220px;

    right: -100px;
    top: -100px;

    border: 35px solid rgba(83, 137, 49, 0.06);
}


.startup-profile-section .logo-decoration-two {
    width: 160px;
    height: 160px;

    left: -80px;
    bottom: -80px;

    border: 25px solid rgba(245, 130, 32, 0.07);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .startup-profile-section .startup-title {
        font-size: 27px;
    }

    .startup-profile-section .startup-details {
        padding: 40px;
    }

    .startup-profile-section .startup-logo {
        width: 250px;
        height: 250px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .startup-profile-section .startup-profile-section {
        padding: 50px 15px;
    }

    .startup-profile-section .startup-logo-area {
        min-height: 320px;

        border-left: 0;

        border-top: 1px solid #dce5d5;
    }

    .startup-profile-section .startup-logo {
        width: 220px;
        height: 220px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .startup-profile-section .startup-profile-section {
        padding: 35px 15px;
    }

    .startup-profile-section .startup-details {
        padding: 30px 25px;
    }

    .startup-profile-section .startup-title {
        font-size: 23px;

        margin-bottom: 28px;
    }

    .startup-profile-section .startup-info {
        row-gap: 10px;
    }

    .startup-profile-section .info-icon {
        flex: 0 0 43px;

        width: 43px;
        height: 43px;

        font-size: 17px;

        border-radius: 12px;
    }

    .startup-profile-section .info-content {
        font-size: 13px;
    }

    .startup-profile-section .startup-logo-area {
        min-height: 280px;

        padding: 30px;
    }

    .startup-profile-section .startup-logo {
        width: 190px;
        height: 190px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .startup-profile-section .startup-title {
        font-size: 20px;
    }

    .startup-profile-section .startup-details {
        padding: 25px 20px;
    }

    .startup-profile-section .info-item {
        gap: 10px;
    }

    .startup-profile-section .info-content {
        font-size: 12px;
    }

    .startup-profile-section .startup-btn {
        margin-top: 25px;
    }

}

.incubated-highlight .highlight-wrap ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.incubated-highlight .highlight-wrap ul li {
    background-color: var(--theme-color-3);
    border-radius: 50px;
    padding: 7px 15px 7px 7px;
    list-style: none;
    margin: 8px;
    color: #fff;
    display: flex;
    align-items: center;
}
.incubated-highlight .highlight-wrap ul li i {
    background-color: #fff;
    border-radius: 50px;
    color: var(--theme-color-3);
    width: 23px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    font-size: 12px;
    margin-right: 7px;
}

/* Careers Css */
.career-positions .col-lg-4:nth-last-child(-n+3) .position-card{
    margin-bottom: 0;
}
.position-card {
  background-color: var(--white-color);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 3px 3px 10px 0 #f9f9f9;
}
.position-card:hover{
  border: 1px solid var(--theme-color-3);
}
.position-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 50px;
}
.position-card span{
  background: rgb(244, 123, 32, 0.1);
  border-radius: 50px;
  padding: 3px 10px;
  color: var(--theme-color-3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.position-card .applynow{
    display: table;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    border-bottom: 1px solid var(--theme-color-3);
    font-size: 14px;
}
.position-card:hover .applynow{
  letter-spacing: 1px;
}
.position-card .applynow i{
  padding-left: 5px;
}
.career-positions{
  position: relative;
}
.career-positions .shape-1{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    animation: 5s linear infinite updown;
}
@keyframes updown {
    0%,100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
}

.career-details .breadcrumb-content{
  background: linear-gradient(90deg, rgb(0 0 38) 0%, rgba(9, 9, 121, 1) 35%, rgb(244 123 32) 100%);
  padding: 80px 50px;
  height: auto;
  justify-content: flex-start;
}

.hightlight-text {
    background: linear-gradient(
270deg, rgb(0 0 38) 0%, rgba(9, 9, 121, 1) 35%, rgb(244 123 32) 100%);
    padding: 40px 0;
    text-align: center;
}
.hightlight-text p{
  color: #fff;
  font-size: 20px;
}
.hightlight-text p a {
    color: var(--theme-color-3);
    font-weight: 700;
}

.career-details .breadcrumb-content p {
    background: rgb(243,122,32,1);
    border-radius: 50px;
    padding: 3px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.about-team{
  background: linear-gradient(90deg, rgb(0 0 38) 0%, rgba(9, 9, 121, 1) 35%, rgb(244 123 32) 100%);
}

/* Careers Css */
.pre-incubation-breadcrumb{
  position: relative;
}
.pre-incubation-breadcrumb .breadcrumb-content {
    padding: 60px 0 40px;
    height: auto;
    display: block;
}

.pre-incubation-breadcrumb .support-logo {
    padding: 6px 140px 0;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    width: 40%;
    margin: auto;
    margin-top: 40px;
}

.pre-incubation-breadcrumb .support-logo span{
  display: block;
  color: #333;
  font-size: 12px;
}

.phase-section {
    background: #222;
    /* border-bottom: 13px dotted #fff; */
}

.phase-card {
    position: relative;
    z-index: 0;
}
.phase-card > div {
    border-radius: 20px;
    padding: 50px;
    background-color: rgb(34,34,34,0.9);
    backdrop-filter: blur(30px);
}
.phase-card > div span {
    background-color: var(--theme-color-3);
    padding: 5px 15px;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}
.phase-card > div h2{
  color:#fff;
  font-size: 26px;
}

.phase-card > div P{
  color: #ddd;
}

.phase-card::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    z-index: -1;
    background: conic-gradient(from var(--border-angle),
    transparent 0%,
    var(--c1,#00d4ff) 15%,
    var(--c2,#ff0080) 35%,
    var(--c3,#7c3aed) 55%,
    transparent 70%
  );
    animation: borderSpin 4s linear infinite;
}
@property --border-angle{syntax:'<angle>';initial-value:0deg;inherits:false}

@keyframes borderSpin{to{--border-angle:360deg}}
.card-purple {
    --c1: #a855f7;
    --c2: #06b6d4;
    --c3: #a855f7;
    --glow: rgba(168, 85, 247, .2);
    --img-bg: linear-gradient(135deg, #0e0418, #1a0a2e);
}

/* who can apply css */
.al-step-area{
  background-image: linear-gradient(to right, #eee 1px, transparent 1px), linear-gradient(to bottom, #eee 1px, transparent 1px);
  background-size: 25px 25px;

}
.al-step-item {
    display: inline-block;
}
.al-step-arrow-shape-1 {
    position: absolute;
    top: 25%;
    right: -10%;
}
.al-step-arrow-shape-2 {
    position: absolute;
    top: 25%;
    left: -10%;
}
.al-step-icon {
    display: inline-block;
    margin-bottom: 25px;
}
.al-step-number {
    position: absolute;
    top: 3px;
    right: 1px;
    z-index: 3;
    height: 30px;
    width: 30px;
    line-height: 29px;
    border-radius: 50%;
    font-style: normal;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--theme-color-3);
}
.al-step-number::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 50%;
    border: 4px solid var(--white-color);
    transform: scale(1.2);
}
.al-step-icon > span {
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 95px;
    border-radius: 50%;
    display: inline-block;
    color: var(--theme-color-3);
    border: 2px solid var(--theme-color-3);
    transition: 0.3s;
    position: relative;
}
.al-step-icon > span::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    content: "";
    visibility: hidden;
    border-radius: 50%;
    transition: 0.3s;
    transform: scale(1.2);
    border: 2px dashed var(--theme-color-3);
    animation: slowRotate 15s linear infinite;
}
/* Slow Rotation */
@keyframes slowRotate {
    from {
        transform: scale(1.2) rotate(0deg);
    }

    to {
        transform: scale(1.2) rotate(360deg);
    }
}
.al-step-title-sm {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.33;
    text-align: center;
    letter-spacing: -0.02em;
    color: #222;
    width: 80%;
    margin: auto;
}
.al-step-item .al-step-icon > span {
    color: var(--white-color);
    border-color: var(--theme-color-3);
    background-color: var(--theme-color-3);
}
.al-step-item .al-step-icon > span::after {
    opacity: 1;
    visibility: visible;
}


.al-step-wrapper .col:nth-last-child(odd){
  margin-top: 30px;
}
.al-step-wrapper .col:nth-last-child(even){
  margin-top: -30px;
}
/* who can apply css */
.rbt-splash-slider {
    background-color: #001e52;
    position: relative;
    overflow: hidden;
}
.rbt-splash-slider .splash-service-main {
    margin-top: 80px;
    border-radius: 10px;
}
.rbt-splash-slider .service-wrapper {
    position: relative;
    z-index: 1;
    background: rgb(244,123,32);
    border-radius: 10px;
}
.service__style--1 {
    z-index: 2;
    text-align: left;
    padding: 50px 20px 50px 50px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1019607843);
    height: 100%;
    transition: 0.3s;
}
.service__style--1::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: -1;
    position: absolute;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s;
}


.service__style--1 .content {
    height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #f47b20 #f1f1f1;
    padding-right: 30px;
}

/* Chrome, Edge, Safari */
.service__style--1 .content::-webkit-scrollbar {
    width: 6px;
}

.service__style--1 .content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.service__style--1 .content::-webkit-scrollbar-thumb {
    background: #f47b20;
    border-radius: 10px;
}

.service__style--1 .content .title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}
.service__style--1.active .content .title{
  color: #222;
}
.service__style--1 .content ul li {
    color: rgba(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
}
.service__style--1.active .content ul li{
  color: #222;
}
.service.service__style--1::after {
    content: "";
    width: 80%;
    height: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #192335;
    bottom: 0;
    border-radius: 0;
    filter: blur(10px);
    z-index: -5;
    opacity: 0;
    transition: 0.3s;
}
.service__style--1.active {
    transform: translateY(-20px) scale(1.03);
    border-color: transparent;
}
.service__style--1.active::before {
    opacity: 1;
    transform: scale(1);
}
.service.service__style--1.active::after {
    opacity: 1;
}
.rbt-splash-slider .shape-image {
    position: absolute;
}
.rbt-splash-slider .shape-image.shape-1 {
    bottom: 0;
    left: -250px;
}

.rbt-splash-slider .shape-image.shape-3 {
    top: 0;
    left: 120px;
}

/* =========================================
   STARTUP STAGE SECTION
========================================= */

.startup-stage-section {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #fff0e2;
    background-image: url(../img/shapes/startup-stage.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}


/* =========================================
   MAIN CARD
========================================= */

.startup-stage-main {
    position: relative;
    overflow: hidden;

    border: 1px solid #e7eee2;
    border-radius: 28px;

    background: #fbfdf9;

    box-shadow:
        0 20px 60px rgba(35, 65, 30, 0.08);
}


/* =========================================
   LEFT CONTENT
========================================= */

.startup-stage-content {
    position: relative;

    min-height: 500px;

    padding: 80px 50px 80px 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================
   DOTS
========================================= */

.startup-dots {
    position: absolute;

    top: 45px;
    left: 35px;

    width: 80px;

    display: grid;
    grid-template-columns: repeat(4, 8px);

    gap: 10px;

    opacity: 0.65;
}

.startup-dots span {
    width: 8px;
    height: 8px;
    background: #ab8b74;
    border-radius: 50%;
}


/* =========================================
   TITLE
========================================= */
.startup-stage-title {
    position: relative;
    margin: 0;
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.1;
}


/* =========================================
   TITLE LINE
========================================= */

.startup-title-line {
    position: relative;
    width: 135px;
    height: 4px;
    margin-top: 25px;
    margin-bottom: 40px;
    background: var(--theme-color-3);
    border-radius: 20px;
}

.startup-title-line::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    background: var(--theme-color-3);
    border-radius: 50%;
}


/* =========================================
   HIGHLIGHT BOX
========================================= */

.startup-stage-highlight {
    position: relative;
    display: flex;
    align-items: center;
    padding: 25px 35px 25px 25px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(244, 123, 32, 0.12);
    border: 1px solid #edf2e9;
}


/* =========================================
   TARGET ICON
========================================= */

.startup-target-icon {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: #ffffff;
    background: var(--theme-color-3);
    border-radius: 50%;
    font-size: 36px;
    box-shadow: 0 10px 25px rgba(244, 123, 32, 0.25);
}


/* =========================================
   HIGHLIGHT TEXT
========================================= */

.startup-highlight-content {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.startup-highlight-content strong {
    color: var(--theme-color);
    font-size: clamp(25px, 1.8vw, 35px);
    line-height: 1.2;
}

.startup-highlight-content span {
    color: #263238;

    font-size: clamp(20px, 1.8vw, 28px);

    line-height: 1.3;

    font-weight: 600;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.startup-stage-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* =========================================
   BACKGROUND GREEN SHAPE
========================================= */

.target-bg {
    position: absolute;

    width: 500px;
    height: 400px;

    right: -70px;
    bottom: -50px;

    background:
        radial-gradient(
            circle,
            rgba(117, 161, 72, 0.30) 0%,
            rgba(117, 161, 72, 0.12) 40%,
            transparent 70%
        );

    filter: blur(4px);

    border-radius: 50%;

    transform: rotate(-10deg);
}


/* =========================================
   TARGET IMAGE
========================================= */

.target-image {
    position: relative;

    width: 400px;
    height: 400px;

    z-index: 2;

    border-radius: 50%;

    overflow: hidden;

    border: 8px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        0 25px 60px rgba(25, 55, 25, 0.15);
}

.target-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   STAGE STEPS
========================================= */

.startup-stage-steps {
    overflow: hidden;
    background: #ffffff;
    position: relative;
}


/* =========================================
   INDIVIDUAL STEP
========================================= */

.stage-step {
    position: relative;

    min-height: 250px;

    padding: 30px 25px;

    text-align: center;

    border-right: 1px solid #e7ebe4;

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.stage-step:last-child {
    border-right: 0;
}


/* =========================================
   STEP ICON
========================================= */

.stage-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    background: var(--theme-color-3);
    border-radius: 0 50% 50% 50%;
    font-size: 26px;
    transition: all 0.35s ease;
}


/* =========================================
   STEP TITLE
========================================= */

.stage-step h4 {
    margin: 0 0 10px;
    color: #222;
    font-size: 16px;
    transition: color 0.35s ease;
}


/* =========================================
   STEP DESCRIPTION
========================================= */

.stage-step p {
    max-width: 210px;

    margin: auto;

    color: #59636d;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================
   ACTIVE REVENUE
========================================= */

.stage-step.active {
    background: #fbfdf8;
}

.stage-step.active .stage-icon {
    color: #ffffff;

    background: #5d962d;

    transform: translateY(-5px);

    box-shadow:
        0 12px 25px rgba(93, 150, 45, 0.22);
}

.stage-step.active h4 {
    color: #4f8e26;
}


/* =========================================
   ACTIVE LINE
========================================= */

.active-line {
    width: 80px;
    height: 4px;

    margin: 18px auto 0;

    background: var(--theme-color-3);

    border-radius: 10px;
}


/* =========================================
   HOVER
========================================= */

.stage-step:hover {
    background: #f47b2008;
}

.stage-step:hover .stage-icon {
    transform: translateY(-5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .startup-stage-section {
        padding: 70px 0;
    }

    .startup-stage-content {
        min-height: auto;

        padding: 65px 45px;
    }

    .startup-stage-visual {
        min-height: 450px;
    }

    .startup-stage-highlight {
        max-width: 100%;
    }

    .target-image {
        width: 350px;
        height: 350px;
    }

    .target-bg {
        width: 430px;
        height: 350px;
    }

    .stage-step {
        min-height: 230px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .startup-stage-section {
        padding: 55px 0;
    }

    .startup-stage-main {
        border-radius: 22px;
    }

    .startup-stage-content {
        padding: 55px 25px 35px;

        text-align: center;
    }

    .startup-dots {
        left: 20px;
        top: 25px;
    }

    .startup-stage-title {
        font-size: 40px;

        letter-spacing: -1px;
    }

    .startup-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .startup-stage-highlight {
        padding: 20px;

        flex-direction: column;

        text-align: center;

        border-radius: 22px;
    }

    .startup-target-icon {
        width: 75px;
        height: 75px;

        margin-right: 0;
        margin-bottom: 18px;

        font-size: 30px;
    }

    .startup-highlight-content strong {
        font-size: 25px;
    }

    .startup-highlight-content span {
        font-size: 18px;
    }

    .startup-stage-visual {
        min-height: 370px;
    }

    .target-image {
        width: 280px;
        height: 280px;
    }

    .target-bg {
        width: 340px;
        height: 300px;
    }

    .startup-stage-steps {
        border-radius: 18px;
    }

    .stage-step {
        min-height: 210px;

        padding: 25px 15px;

        border-bottom: 1px solid #e7ebe4;
    }

    .stage-step:nth-child(2) {
        border-right: 0;
    }

    .stage-step:nth-child(3) {
        border-bottom: 0;
    }

    .stage-step:nth-child(4) {
        border-right: 0;
        border-bottom: 0;
    }

    .stage-icon {
        width: 60px;
        height: 60px;

        font-size: 22px;
    }

    .stage-step h4 {
        font-size: 18px;
    }

    .stage-step p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .startup-stage-title {
        font-size: 34px;
    }

    .startup-stage-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .startup-stage-highlight {
        padding: 20px 15px;
    }

    .startup-highlight-content strong {
        font-size: 22px;
    }

    .startup-highlight-content span {
        font-size: 16px;
    }

    .startup-stage-visual {
        min-height: 320px;
    }

    .target-image {
        width: 240px;
        height: 240px;
    }

    .target-bg {
        width: 300px;
        height: 250px;
    }

    .stage-step {
        min-height: 190px;

        padding: 20px 10px;
    }

    .stage-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 12px;

        font-size: 19px;
    }

}

.get-work-one__video-btn{
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 28%;
    height: 70%;
    border-radius: 50%;
    opacity: 0.2;
}

.get-work-one__video-btn-border {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background: var(--theme-color-3);
    z-index: -1;
    -webkit-animation: pulseanim 4s linear infinite;
    animation: pulseanim 4s linear infinite;
}
.get-work-one__video-btn-border:nth-child(2) {
    animation-delay: 1s;
}
.get-work-one__video-btn-border:nth-child(3) {
    animation-delay: 2s;
}
.get-work-one__video-btn-border:nth-child(4) {
    animation-delay: 3s;
}
@keyframes pulseanim {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

/* Our Team */
.team-height{
  position: relative;
  height: 800px;
}
.carousel-container {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
}

.carousel-container .carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
}

.carousel-container .card {
    position: absolute;
    width: 280px;
    height: 380px;
    background: none;
    border: 2px solid #000;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, filter, opacity;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.carousel-container .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Section */
.carousel-container .member-info {
    text-align: center;
    position: relative;
    bottom: -240px;
    /* will-change: opacity, transform; */
}

.carousel-container .member-name {
  color: #ffffff;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.carousel-container .member-linkedin {
    color: #f37a20;
    font-size: 2rem;
    font-weight: 500;
}

/* Navigation & Pagination */
.carousel-container .dots {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  z-index: 2;
}

.carousel-container .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-container .dot.active {
  background: #ffffff;
  transform: scale(1.5);
}

.carousel-container .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 3rem;
  border: none;
  cursor: pointer;
  z-index: 20;
  transition: color 0.3s ease;
}

.carousel-container .nav-arrow:hover {
  color: #ffffff;
}

.carousel-container .nav-arrow.left { left: 5%; }
.carousel-container .nav-arrow.right { right: 5%; }

/* Our Team */

.delhi-teams .team-card{
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 3px 3px 10px 0 #dbdada;
  transition: img 0.5s;
}
.delhi-teams .team-card:hover img{
  transform: scale(1.1);
}
.delhi-teams .team-card::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background-color: var(--theme-color-3);
    bottom: 24px;
    left: 15px;
    transition: all 0.5s;
}
.delhi-teams .team-card:hover::after{
    height: 150px;
}
.delhi-teams .team-card .author-info {
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, #042a2d00 0, #000000 100%);
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: end;
}
.delhi-teams .team-card .author-info h5 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
}
.delhi-teams .team-card .author-info p {
    color: var(--light-color);
    font-size: 14px;
}
.delhi-teams .team-card .linkedin-button {
    position: absolute;
    bottom: 30px;
    right: 20px;
    font-size: 26px;
    color: var(--theme-color-3);
}


/* Lab Facilities */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: "Plus Jakarta Sans", sans-serif; */
    overflow-x: hidden;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.lab-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 80%,
            rgba(50, 115, 255, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 80% 25%,
            rgba(48, 115, 220, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f9fbff 0%,
            #ffffff 45%,
            #f5f8fd 100%
        );
}

.lab-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/lab.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.4;
    pointer-events: none;
    z-index: 2;
}


/* =========================================================
   CONTAINER
========================================================= */

.lab-section .lab-container {
    width: min(1450px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.05fr 1fr;

    gap: 70px;
    align-items: center;

    position: relative;
    z-index: 5;
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.lab-section .lab-image-wrapper {
    position: relative;
}


.lab-section .lab-image {
    position: relative;

    height: 600px;

    overflow: hidden;

    border-radius: 32px;

    border: 2px solid rgba(255,255,255,0.9);

    box-shadow:
        0 30px 80px rgba(25, 70, 150, 0.20),
        0 0 0 1px rgba(52, 111, 211, 0.15),
        0 0 35px rgba(54, 130, 255, 0.30);

    background: #ddd;
}


.lab-section .lab-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.6s ease;
}


.lab-section .lab-image:hover img {
    transform: scale(1.03);
}


/* Image Overlay */

.lab-section .image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(20, 70, 150, 0.15),
            transparent 40%,
            rgba(255, 145, 0, 0.18)
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE GLOW
========================================================= */

.lab-section .image-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    left: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: #2676ff;

    filter: blur(100px);

    opacity: 0.28;

    z-index: -1;
}


/* =========================================================
   INNOVATION BADGE
========================================================= */

.lab-section .innovation-badge {
    position: absolute;

    left: 28px;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 24px;

    border-radius: 16px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            rgba(11, 43, 92, 0.95),
            rgba(20, 61, 125, 0.92)
        );

    backdrop-filter: blur(14px);

    border:
        1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.18);

    z-index: 5;
}


.lab-section .badge-icon {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: #2164c2;

    font-size: 26px;
}


.lab-section .badge-content {
    display: flex;
    flex-direction: column;
}


.lab-section .badge-content span {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
}


.lab-section .badge-content strong {
    font-size: 22px;
    line-height: 1.3;

    color: #ffbd42;
}


.lab-section .badge-content small {
    font-size: 14px;
    opacity: 0.85;
}


/* =========================================================
   CONTENT
========================================================= */

.lab-section .lab-content {
    position: relative;
}


/* =========================================================
   TOP LABEL
========================================================= */

.lab-section .lab-label {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    margin-bottom: 28px;
    border-radius: 50px;
    color: var(--theme-color-3);
    border: 1px solid rgba(244, 123, 32, 0.45);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}


.lab-section .lab-label i {
    font-size: 20px;
    color: var(--theme-color-3);
}


.lab-section .lab-label b {
    font-size: 12px;
    color: var(--theme-color);
}


/* =========================================================
   HEADING
========================================================= */

.lab-section .lab-content h1 {
    font-size: clamp(50px, 3vw, 90px);

    line-height: 1.02;


    color: #10213f;

    margin-bottom: 28px;
}


.lab-section .lab-content h1 span {
    color: #f47b20;
    padding-right: 5px;
    background: linear-gradient(135deg, #f47b20, #f7c199);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   ORANGE LINE
========================================================= */

.lab-section .heading-line {
    width: 76px;
    height: 3px;
    border-radius: 10px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #10213f, #ebf2ff);
    box-shadow: 0 3px 10px rgba(255, 165, 0, 0.25);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.lab-section .lab-description {
  margin-bottom: 0;
}


.lab-section .lab-description p {
    color: #5d6b7f;

    font-size: 16px;

    line-height: 1.75;

    margin-bottom: 12px;

    font-weight: 500;
}


/* =========================================================
   FEATURES
========================================================= */

.lab-section .lab-features {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 8px;

    align-items: start;
}


.lab-section .feature-item {
    position: relative;

    text-align: center;

    padding: 0 10px;
}


.lab-section .feature-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: -4px;
    top: 30px;

    width: 1px;
    height: 88px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(54, 91, 145, 0.35),
            transparent
        );
}


.lab-section .feature-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #2462b5;

    font-size: 27px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e8edf5
        );

    border:
        1px solid rgba(30, 86, 170, 0.08);

    box-shadow:
        0 10px 25px rgba(37, 67, 115, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);

    transition: 0.3s ease;
}


.lab-section .feature-item:hover .feature-icon {
    transform: translateY(-8px);

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2b65b5,
            #5d9cf0
        );

    box-shadow:
        0 18px 35px rgba(43, 101, 181, 0.30);
}


.lab-section .feature-item h3 {
    font-size: 30px;

    line-height: 1.45;    
    color: var(--theme-color-3);

    font-weight: 700;
}
.lab-section .feature-item h3 span{
  color: #000;
}


.lab-section .feature-line {
    width: 38px;
    height: 2px;

    display: block;

    margin: 12px auto 0;

    background:
        linear-gradient(
            90deg,
            var(--theme-color-3),
            #fff
        );

    transition: 0.3s ease;
}


.lab-section .feature-item:hover .feature-line {
    width: 55px;
}


/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.lab-section .bg-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}


.lab-section .glow-left {
    width: 400px;
    height: 400px;

    left: -180px;
    bottom: -180px;

    background: rgba(36, 104, 214, 0.22);
}


.lab-section .glow-right {
    width: 350px;
    height: 350px;

    right: -120px;
    top: 100px;

    background: rgba(70, 125, 230, 0.12);
}


/* =========================================================
   MOLECULAR / LAB BACKGROUND
========================================================= */

.lab-section .molecule {
    position: absolute;

    width: 260px;
    height: 260px;

    opacity: 0.16;

    pointer-events: none;

    background-image:
        radial-gradient(circle, #3c73bc 3px, transparent 4px),
        linear-gradient(
            30deg,
            transparent 48%,
            #5c8dcc 49%,
            #5c8dcc 51%,
            transparent 52%
        ),
        linear-gradient(
            -30deg,
            transparent 48%,
            #5c8dcc 49%,
            #5c8dcc 51%,
            transparent 52%
        );

    background-size:
        55px 55px,
        55px 55px,
        55px 55px;
}


.lab-section .molecule-1 {
    top: -50px;
    left: 5%;

    transform: rotate(12deg);
}


.lab-section .molecule-2 {
    top: 50px;
    right: -60px;

    transform: rotate(-20deg);

    opacity: 0.10;
}


.lab-section .molecule-3 {
    bottom: -80px;
    left: 18%;

    opacity: 0.12;
}


/* =========================================================
   DOT PATTERN
========================================================= */

.lab-section .dot-pattern {
    position: absolute;

    width: 220px;
    height: 150px;

    opacity: 0.25;

    background-image:
        radial-gradient(
            rgba(43, 98, 180, 0.7) 1px,
            transparent 1px
        );

    background-size: 10px 10px;

    pointer-events: none;
}


.lab-section .dots-1 {
    left: 0;
    bottom: 40px;
}


.lab-section .dots-2 {
    top: 30px;
    left: 80px;

    opacity: 0.12;
}


/* =========================================================
   IMAGE SCIENCE PATTERN
========================================================= */

.lab-section .image-science-pattern {
    position: absolute;

    top: 20px;
    left: 20px;

    width: 180px;
    height: 180px;

    opacity: 0.35;

    pointer-events: none;
}


.lab-section .image-science-pattern::before,
.lab-section .image-science-pattern::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 1px;

    top: 50%;

    background: rgba(255,255,255,0.7);

    transform: rotate(35deg);
}


.lab-section .image-science-pattern::after {
    transform: rotate(-35deg);
}


.lab-section .image-science-pattern span {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 10px rgba(255,255,255,0.8);
}


.lab-section .image-science-pattern span:nth-child(1) {
    top: 10px;
    left: 30px;
}

.lab-section .image-science-pattern span:nth-child(2) {
    top: 70px;
    left: 90px;
}

.lab-section .image-science-pattern span:nth-child(3) {
    top: 30px;
    right: 20px;
}

.lab-section .image-science-pattern span:nth-child(4) {
    bottom: 30px;
    left: 40px;
}

.lab-section .image-science-pattern span:nth-child(5) {
    bottom: 10px;
    right: 30px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1300px) {

    .lab-section .lab-container {
        gap: 45px;
    }

    .lab-section .lab-image {
        height: 600px;
    }

    .lab-section .lab-content h1 {
        font-size: 65px;
    }


    .lab-section .feature-item::after {
        display: none;
    }
}


@media (max-width: 992px) {

    .lab-section {
        padding: 80px 0;
    }

    .lab-section .lab-container {
        grid-template-columns: 1fr;
    }

    .lab-section .lab-image {
        height: 600px;
    }

    .lab-section .lab-content {
        text-align: center;
    }

    .lab-section .lab-label {
        margin-left: auto;
        margin-right: auto;
    }

    .lab-section .heading-line {
        margin-left: auto;
        margin-right: auto;
    }

    .lab-section .lab-description {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 600px) {

    .lab-section {
        padding: 60px 0;
    }

    .lab-section .lab-container {
        width: 90%;
    }

    .lab-section .lab-image {
        height: 430px;

        border-radius: 22px;
    }

    .lab-section .innovation-badge {
        left: 15px;
        bottom: 15px;

        padding: 14px 16px;

        gap: 12px;
    }

    .lab-section .badge-icon {
        width: 50px;
        height: 50px;

        font-size: 20px;
    }

    .lab-section .badge-content strong {
        font-size: 18px;
    }

    .lab-section .lab-label {
        font-size: 10px;

        gap: 7px;

        padding: 10px 15px;
    }

    .lab-section .lab-label i {
        font-size: 16px;
    }

    .lab-section .lab-content h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .lab-section .lab-description p {
        font-size: 14px;

        line-height: 1.7;
    }

    .lab-section .lab-features {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px 10px;
    }

    .lab-section .feature-icon {
        width: 60px;
        height: 60px;

        font-size: 23px;
    }

}


/*  */
/* =====================================================
   EQUIPMENT SECTION
===================================================== */

.equipment-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 70px;
    background:
        radial-gradient(circle at 15% 20%, rgba(174, 72, 255, 0.12), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 62, 181, 0.08), transparent 25%),
        radial-gradient(circle at 50% 100%, rgba(77, 42, 150, 0.12), transparent 35%),
        #050611;
    color: #ffffff;
}


/* =====================================================
   ANIMATED BACKGROUND
===================================================== */

.equipment-section .equipment-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(137, 50, 255, 0.03) 30%,
            rgba(255, 74, 181, 0.06) 50%,
            transparent 70%
        );
    background-size: 250% 250%;
    animation: backgroundMove 12s ease infinite;
}


@keyframes backgroundMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


/* =====================================================
   MOLECULAR BACKGROUND EFFECT
===================================================== */

.equipment-section .molecule {
    position: absolute;
    width: 350px;
    height: 350px;
    opacity: 0.18;
    pointer-events: none;
}


.equipment-section .molecule::before,
.equipment-section .molecule::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(192, 93, 255, 0.45);
    border-radius: 50%;
}


.equipment-section .molecule::before {
    width: 18px;
    height: 18px;

    box-shadow:
        70px 50px 0 rgba(192, 93, 255, 0.5),
        150px 100px 0 rgba(192, 93, 255, 0.5),
        220px 40px 0 rgba(192, 93, 255, 0.5),
        250px 160px 0 rgba(192, 93, 255, 0.5),
        100px 220px 0 rgba(192, 93, 255, 0.5);
}


.equipment-section .molecule::after {
    width: 250px;
    height: 250px;

    border-color: transparent;
    border-top-color: rgba(190, 80, 255, 0.4);
    border-left-color: rgba(190, 80, 255, 0.25);

    animation: moleculeRotate 20s linear infinite;
}


.equipment-section .molecule-1 {
    top: 5%;
    left: -80px;
}


.equipment-section .molecule-2 {
    right: -100px;
    top: 10%;
    transform: rotate(45deg);
}


@keyframes moleculeRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =====================================================
   PARTICLES
===================================================== */

.equipment-section .particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d663ff;
    box-shadow: 0 0 15px #d663ff;
    animation: particleFloat 8s infinite ease-in-out;
}


.equipment-section .particles span:nth-child(1) {
    left: 10%;
    top: 20%;
}


.equipment-section .particles span:nth-child(2) {
    left: 30%;
    top: 80%;
    animation-delay: 2s;
}


.equipment-section .particles span:nth-child(3) {
    left: 80%;
    top: 15%;
    animation-delay: 1s;
}


.equipment-section .particles span:nth-child(4) {
    left: 90%;
    top: 70%;
    animation-delay: 3s;
}


.equipment-section .particles span:nth-child(5) {
    left: 50%;
    top: 40%;
    animation-delay: 4s;
}


.equipment-section .particles span:nth-child(6) {
    left: 20%;
    top: 60%;
    animation-delay: 5s;
}


.equipment-section .particles span:nth-child(7) {
    left: 75%;
    top: 85%;
    animation-delay: 2.5s;
}


.equipment-section .particles span:nth-child(8) {
    left: 65%;
    top: 10%;
    animation-delay: 4.5s;
}


@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-40px);
        opacity: 1;
    }

}


/* =====================================================
   HEADING
===================================================== */

.equipment-section .equipment-heading {
    position: relative;
    max-width: 850px;
    margin: 0 auto 65px;
}


.equipment-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 22px;

    border-radius: 50px;

    color: #efb6ff;

    border: 1px solid rgba(218, 104, 255, 0.35);

    background:
        linear-gradient(
            135deg,
            rgba(143, 42, 196, 0.18),
            rgba(255, 80, 190, 0.08)
        );

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;

    margin-bottom: 20px;

    box-shadow:
        0 0 25px rgba(195, 72, 255, 0.12);
}


.equipment-section .section-badge i {
    color: #f28aff;
}


.equipment-section .equipment-heading h2 {
    font-size: clamp(42px, 3vw, 76px);
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}


.equipment-section .equipment-heading h2 span {
    background:
        linear-gradient(90deg, #fbb783, #ffaa6b, #ff994c);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.equipment-section .equipment-heading p {
    max-width: 700px;
    margin: auto;

    color: rgba(255, 255, 255, 0.65);

    font-size: 17px;
    line-height: 1.8;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.equipment-section .equipment-main {
    position: relative;
}


/* =====================================================
   LEFT EQUIPMENT LIST
===================================================== */

.equipment-section .equipment-list {
    position: relative;
    padding-left: 55px;
}


.equipment-section .timeline-line {
    position: absolute;

    left: 18px;
    top: 40px;
    bottom: 40px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            var(--theme-color-3),
            rgba(244, 123, 32, 0.25)
        );
}


/* =====================================================
   EQUIPMENT ITEM
===================================================== */

.equipment-section .equipment-item {

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 17px 20px;

    margin-bottom: 15px;

    border-radius: 14px;

    cursor: pointer;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.025);

    transition: all 0.4s ease;
}


.equipment-section .equipment-item:hover {
    border-color:
        rgba(226, 96, 255, 0.45);

    background:
        rgba(173, 62, 214, 0.08);
}


/* ACTIVE ITEM */

.equipment-section .equipment-item.active {
    background: linear-gradient(90deg,
    rgba(244, 123, 32, 0.6),            
    rgba(244, 123, 32, 0.3)        
    );
    border-color: rgba(244, 123, 32, 0.7);
    box-shadow: 0 0 35px rgba(244, 123, 32, 0.2);
}


/* =====================================================
   TIMELINE DOT
===================================================== */

.equipment-section .timeline-dot {
    position: absolute;
    left: 13px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--theme-color-3);
    transition: all 0.4s ease;
    z-index: 2;
}


.equipment-section .equipment-item.active .timeline-dot {

    background:var(--theme-color-3);

    box-shadow:
        0 0 0 6px rgba(244, 123, 32, 0.15),
        0 0 25px rgba(255, 100, 220, 0.9);

    animation: activePulse 2s infinite;
}


@keyframes activePulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(255, 100, 220, 0.5);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(255, 100, 220, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(255, 100, 220, 0);
    }

}


/* =====================================================
   EQUIPMENT ICON
===================================================== */

.equipment-section .equipment-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--theme-color-3);
    font-size: 20px;
    background: rgba(244, 123, 32, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.equipment-section .equipment-item.active .equipment-icon {
    background: linear-gradient(135deg, #ff8c35, #a35011);
    color: white;
    box-shadow: 0 0 20px rgba(244, 123, 32, 0.35);
}


/* =====================================================
   EQUIPMENT NAME
===================================================== */

.equipment-section .equipment-name {

    font-size: 17px;

    font-weight: 500;

    line-height: 1.4;

    color:
        rgba(255, 255, 255, 0.78);
}


.equipment-section .equipment-item.active .equipment-name {

    color: white;

    font-weight: 600;
}


/* =====================================================
   RIGHT IMAGE
===================================================== */

.equipment-section .equipment-visual {
    position: relative;
}


.equipment-section .image-frame {

    position: relative;

    min-height: 510px;

    overflow: hidden;

    border-radius: 24px;

    border:
        1px solid rgba(244, 123, 32, 0.75);

    background:
        #090a17;

    box-shadow:

        0 0 0 1px rgba(255, 255, 255, 0.05),

        0 0 40px rgba(244, 123, 32, 0.25),

        0 0 100px rgba(244, 123, 32, 0.1);
}


/* IMAGE OVERLAY */

.equipment-section .image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
            135deg,
            rgba(244, 123, 32, 0.2),
            transparent 35%,
            rgba(244, 123, 32, 0.1)
        );
}


.equipment-section .image-frame img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition:
        opacity 0.5s ease,
        transform 1.2s ease;

    animation:
        imageZoom 8s ease-in-out infinite alternate;
}


@keyframes imageZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}


/* =====================================================
   IMAGE GRADIENT
===================================================== */

.equipment-section .image-gradient {

    position: absolute;

    inset: 0;

    z-index: 3;

    background:

        linear-gradient(
            to top,
            rgba(4, 5, 15, 0.98) 0%,
            rgba(4, 5, 15, 0.5) 40%,
            transparent 70%
        );
}


/* =====================================================
   INFORMATION CARD
===================================================== */

.equipment-section .equipment-info-card {

    position: absolute;

    z-index: 5;

    left: 20px;
    bottom: 20px;

    max-width: 450px;

    display: flex;

    gap: 18px;

    padding: 22px;

    border-radius: 18px;

    background:
        rgba(10, 10, 25, 0.75);

    backdrop-filter:
        blur(15px);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.35);
}


/* =====================================================
   INFO ICON
===================================================== */

.equipment-section .info-icon {

    width: 60px;
    height: 60px;

    min-width: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 24px;

    color: #fff;

    background:
        linear-gradient(135deg, #ff8c35, #a35011);

    box-shadow:
        0 0 25px rgba(230, 88, 214, 0.35);
}


/* =====================================================
   INFORMATION TEXT
===================================================== */

.equipment-section .equipment-info-card h3 {

    margin: 0 0 8px;

    font-size: 21px;

    font-weight: 600;

    color: white;
}


.equipment-section .equipment-info-card p {

    margin: 0;

    color:
        rgba(255, 255, 255, 0.65);

    line-height: 1.6;

    font-size: 14px;
}


/* =====================================================
   VIEW DETAILS BUTTON
===================================================== */

.equipment-section .view-details-btn {

    position: absolute;

    z-index: 6;

    right: 22px;
    bottom: 22px;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 13px 25px;

    color: white;

    text-decoration: none;

    border-radius: 50px;

    border:
        1px solid rgba(255, 144, 236, 0.75);

    background:
        rgba(30, 14, 40, 0.55);

    backdrop-filter:
        blur(10px);

    transition:
        all 0.3s ease;
}


.equipment-section .view-details-btn:hover {

    color: white;

    background:
        linear-gradient(
            90deg,
            #b847c7,
            #e76dca
        );

    box-shadow:
        0 0 30px rgba(225, 94, 210, 0.5);

    transform:
        translateY(-3px);
}


/* =====================================================
   IMAGE ARROWS
===================================================== */

.equipment-section .equipment-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    background:
        rgba(19, 12, 31, 0.8);

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    transform:
        translateY(-50%);

    transition:
        all 0.3s ease;

    backdrop-filter:
        blur(10px);
}


.equipment-section .equipment-arrow:hover {

    background:
        linear-gradient(
            135deg,
            #a642b2,
            #e46fd2
        );

    box-shadow:
        0 0 25px rgba(225, 90, 220, 0.6);
}


.equipment-section .equipment-prev {
    left: -25px;
}


.equipment-section .equipment-next {
    right: -25px;
}


/* =====================================================
   PAGINATION
===================================================== */

.equipment-section .equipment-pagination {

    display: flex;

    justify-content: center;

    gap: 16px;

    margin-top: 35px;
}


.equipment-section .equipment-pagination span {

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.equipment-section .equipment-pagination span.active {

    background:
        #e979d9;

    transform:
        scale(1.35);

    box-shadow:
        0 0 15px #e979d9;
}


/* =====================================================
   BOTTOM FEATURES
===================================================== */

.equipment-section .equipment-features {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-radius: 18px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    background:
        rgba(255, 255, 255, 0.025);

    backdrop-filter:
        blur(12px);
}


.equipment-section .equipment-feature {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 22px 25px;

    border-right:
        1px solid rgba(255, 255, 255, 0.1);
}


.equipment-section .equipment-feature:last-child {

    border-right:
        none;
}


/* =====================================================
   FEATURE ICON
===================================================== */

.equipment-section .feature-icon {

    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        #d884ff;

    font-size: 21px;

    background:
        rgba(158, 69, 204, 0.13);
}


.equipment-section .equipment-feature h4 {

    font-size: 16px;

    margin: 0 0 5px;

    font-weight: 600;
}


.equipment-section .equipment-feature p {

    margin: 0;

    font-size: 13px;

    color:
        rgba(255, 255, 255, 0.55);
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 991px) {

    .equipment-section {
        padding: 80px 0 50px;
    }

    .equipment-section .equipment-list {
        margin-bottom: 50px;
    }

    .equipment-section .equipment-features {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .equipment-section .equipment-feature:nth-child(2) {

        border-right: none;
    }

}


/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 767px) {

    .equipment-section .equipment-heading {
        margin-bottom: 45px;
    }

    .equipment-section .equipment-heading h2 {
        font-size: 44px;
    }

    .equipment-section .equipment-heading p {
        font-size: 15px;
    }

    .equipment-section .equipment-list {
        padding-left: 35px;
    }

    .equipment-section .timeline-line {
        left: 12px;
    }

    .equipment-section .timeline-dot {
        left: -31px;
    }

    .equipment-section .equipment-item {

        padding: 13px 15px;

        gap: 12px;
    }

    .equipment-section .equipment-icon {

        width: 42px;
        height: 42px;

        flex: 0 0 42px;

        font-size: 16px;
    }

    .equipment-section .equipment-name {
        font-size: 14px;
    }

    .equipment-section .image-frame {
        min-height: 500px;
    }

    .equipment-section .equipment-info-card {

        left: 15px;
        right: 15px;
        bottom: 75px;

        max-width: none;

        padding: 16px;
    }

    .equipment-section .equipment-info-card h3 {
        font-size: 16px;
    }

    .equipment-section .equipment-info-card p {
        font-size: 12px;
    }

    .equipment-section .info-icon {

        width: 48px;
        height: 48px;

        min-width: 48px;
    }

    .equipment-section .view-details-btn {

        left: 15px;
        right: 15px;

        bottom: 15px;

        justify-content: center;
    }

    .equipment-section .equipment-prev {
        left: 10px;
    }

    .equipment-section .equipment-next {
        right: 10px;
    }

    .equipment-section .equipment-arrow {

        width: 42px;
        height: 42px;
    }

    .equipment-section .equipment-features {

        grid-template-columns:
            1fr;
    }

    .equipment-section .equipment-feature {

        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .equipment-section .equipment-feature:last-child {

        border-bottom: none;
    }

}
/*  */
/* Lab Facilities */

/* Use Case */
/* =========================================
   WORKSHOP USE CASE SECTION
========================================= */

.workshop-usecase-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 139, 61, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(17, 53, 99, 0.08),
            transparent 30%
        ),
        #f8fafc;
}


/* =========================================
   BACKGROUND GRID
========================================= */

.workshop-usecase-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(20, 45, 80, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20, 45, 80, 0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );

    pointer-events: none;
}


/* =========================================
   LAB BACKGROUND
========================================= */

.workshop-usecase-section .lab-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}


/* =========================================
   MOLECULES
========================================= */

.workshop-usecase-section .molecule {
    position: absolute;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(18, 53, 92, 0.12);
    border-radius: 50%;
    animation: moleculeFloat 10s ease-in-out infinite;
}

.workshop-usecase-section .molecule::before,
.workshop-usecase-section .molecule::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: rgba(255, 126, 51, 0.25);
}

.workshop-usecase-section .molecule::before {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.workshop-usecase-section .molecule::after {
    bottom: -8px;
    right: 20px;
}


/* Molecule positions */

.workshop-usecase-section .molecule-1 {
    top: 10%;
    left: -40px;
}

.workshop-usecase-section .molecule-2 {
    top: 50%;
    right: -30px;
    width: 180px;
    height: 180px;
    animation-delay: 2s;
}

.workshop-usecase-section .molecule-3 {
    bottom: 5%;
    left: 20%;
    width: 90px;
    height: 90px;
    animation-delay: 4s;
}

.workshop-usecase-section .molecule-4 {
    top: 15%;
    right: 25%;
    width: 70px;
    height: 70px;
    animation-delay: 1s;
}


/* =========================================
   PARTICLES
========================================= */

.workshop-usecase-section .particle {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff7a36;

    box-shadow:
        0 0 10px rgba(255, 122, 54, 0.45);

    animation: particleMove 7s linear infinite;
}

.workshop-usecase-section .particle-1 {
    left: 10%;
    top: 70%;
}

.workshop-usecase-section .particle-2 {
    left: 30%;
    top: 20%;
    animation-delay: 2s;
}

.workshop-usecase-section .particle-3 {
    right: 15%;
    top: 35%;
    animation-delay: 1s;
}

.workshop-usecase-section .particle-4 {
    right: 35%;
    bottom: 10%;
    animation-delay: 3s;
}

.workshop-usecase-section .particle-5 {
    left: 50%;
    top: 80%;
    animation-delay: 4s;
}

.workshop-usecase-section .particle-6 {
    left: 70%;
    top: 15%;
    animation-delay: 5s;
}


/* =========================================
   HEADING
========================================= */

.workshop-usecase-section .usecase-heading {
    margin-bottom: 65px;
}

.workshop-usecase-section .heading-line {
    display: inline-block;

    width: 55px;
    height: 3px;

    margin-bottom: 18px;

    background: linear-gradient(
        90deg,
        #ff7a36,
        #ffb36b
    );

    border-radius: 50px;
}

.workshop-usecase-section .usecase-heading h2 {
    margin: 0;
    font-size: clamp(42px, 3vw, 68px);
    color: #132b4f;
}

.workshop-usecase-section .usecase-heading h2 span {
    color: #ff7a36;
}

.workshop-usecase-section .usecase-heading p {
    max-width: 650px;

    margin: 18px auto 0;

    font-size: 16px;
    line-height: 1.8;

    color: #6c7685;
}


/* =========================================
   GRID
========================================= */

.workshop-usecase-section .usecase-grid {
    position: relative;
}


/* =========================================
   CARD
========================================= */

.workshop-usecase-section .usecase-card {
    position: relative;

    min-height: 270px;

    padding: 45px;

    overflow: hidden;

    display: flex;
    align-items: center;

    border: 1px solid rgba(20, 46, 80, 0.08);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.98),
            rgba(248,250,253,0.9)
        );

    box-shadow:
        0 15px 45px rgba(18, 43, 79, 0.06);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}


/* Hover */

.workshop-usecase-section .usecase-card:hover {
    transform: translateY(-10px);

    border-color: rgba(255, 122, 54, 0.4);

    box-shadow:
        0 25px 70px rgba(18, 43, 79, 0.14);
}


/* =========================================
   BIG NUMBER
========================================= */

.workshop-usecase-section .usecase-number {
    position: absolute;
    top: 15px;
    right: 28px;
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -7px;
    color: rgba(19, 43, 79, 0.045);

    transition:
        color 0.5s ease,
        transform 0.5s ease;
}


.workshop-usecase-section .usecase-card:hover .usecase-number {
    color: rgba(255, 122, 54, 0.10);

    transform: scale(1.08);
}


/* =========================================
   CONTENT
========================================= */

.workshop-usecase-section .usecase-content {
    position: relative;

    z-index: 2;

    max-width: 420px;
}


/* Small label */

.workshop-usecase-section .usecase-label {
    display: inline-flex;

    align-items: center;

    margin-bottom: 15px;

    padding: 7px 14px;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #ff7a36;

    background:
        rgba(255, 122, 54, 0.08);

    border:
        1px solid rgba(255, 122, 54, 0.12);
}


/* Title */

.workshop-usecase-section .usecase-content h3 {
    margin-bottom: 14px;
    font-size: 28px;
    font-weight: 700;

    color: #132b4f;

    transition: color 0.4s ease;
}

.workshop-usecase-section .usecase-card:hover h3 {
    color: #ff7a36;
}


/* Text */

.workshop-usecase-section .usecase-content p {
    margin: 0;

    max-width: 380px;

    font-size: 15px;

    line-height: 1.8;

    color: #6d7785;
}


/* =========================================
   CORNER DESIGN
========================================= */

.workshop-usecase-section .card-corner {
    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    bottom: -50px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 54, 0.12),
            rgba(255, 180, 110, 0.03)
        );

    transition:
        transform 0.6s ease;
}


.workshop-usecase-section .usecase-card:hover .card-corner {
    transform: scale(1.6);
}


/* =========================================
   CARD ENTRANCE ANIMATION
========================================= */

.workshop-usecase-section .usecase-card {
    animation: usecaseReveal 0.8s ease both;
}

.workshop-usecase-section .col-lg-6:nth-child(1) .usecase-card {
    animation-delay: 0.1s;
}

.workshop-usecase-section .col-lg-6:nth-child(2) .usecase-card {
    animation-delay: 0.2s;
}

.workshop-usecase-section .col-lg-6:nth-child(3) .usecase-card {
    animation-delay: 0.3s;
}

.workshop-usecase-section .col-lg-6:nth-child(4) .usecase-card {
    animation-delay: 0.4s;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes usecaseReveal {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes moleculeFloat {

    0% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-30px)
            rotate(180deg);
    }

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

}


@keyframes particleMove {

    0% {
        transform:
            translate(0, 0);

        opacity: 0.3;
    }

    50% {
        transform:
            translate(25px, -60px);

        opacity: 1;
    }

    100% {
        transform:
            translate(-10px, -120px);

        opacity: 0;
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .workshop-usecase-section {
        padding: 80px 0;
    }

    .workshop-usecase-section .usecase-card {
        min-height: 240px;
    }

}


@media (max-width: 767px) {

    .workshop-usecase-section {
        padding: 65px 0;
    }

    .workshop-usecase-section .usecase-heading {
        margin-bottom: 40px;
    }

    .workshop-usecase-section .usecase-card {
        min-height: 220px;

        padding: 30px;
    }

    .workshop-usecase-section .usecase-number {
        font-size: 85px;

        right: 15px;
        top: 15px;
    }

    .workshop-usecase-section .usecase-content h3 {
        font-size: 23px;
    }

    .workshop-usecase-section .usecase-content p {
        font-size: 14px;
    }

}


@media (max-width: 480px) {

    .workshop-usecase-section .usecase-heading h2 {
        font-size: 38px;
    }

    .workshop-usecase-section .usecase-card {
        padding: 25px;
    }

    .workshop-usecase-section .usecase-number {
        font-size: 72px;
    }

}
/* Use Case */

/* overview */
.overview-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(117, 83, 255, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(93, 150, 255, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8f9ff 0%,
            #f5f3ff 45%,
            #eef4ff 100%
        );
}

/* Main Container */

.overview-section .overview-section__inner {
    position: relative;
    overflow: hidden;
    padding: 75px 65px 45px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 25px 70px rgba(77, 70, 150, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* =========================
   BACKGROUND GRID
========================= */

.overview-section .overview-section__grid {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(103, 91, 180, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(103, 91, 180, 0.06) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 25%,
        black 75%,
        transparent
    );
}

/* =========================
   GLOW EFFECTS
========================= */

.overview-section .overview-section__glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

.overview-section .overview-section__glow--one {
    top: -220px;
    left: -180px;
    background: #b7a4ff;
    animation: overviewGlowOne 9s ease-in-out infinite alternate;
}

.overview-section .overview-section__glow--two {
    right: -180px;
    bottom: -250px;
    background: #8fb9ff;
    animation: overviewGlowTwo 12s ease-in-out infinite alternate;
}

/* =========================
   FLOATING ORBS
========================= */

.overview-section .overview-section__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(118, 95, 255, 0.2);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.overview-section .overview-section__orb--one {
    width: 18px;
    height: 18px;
    top: 16%;
    left: 48%;
    animation: overviewFloat 6s ease-in-out infinite;
}

.overview-section .overview-section__orb--two {
    width: 10px;
    height: 10px;
    top: 68%;
    left: 7%;
    animation: overviewFloat 8s ease-in-out infinite reverse;
}

.overview-section .overview-section__orb--three {
    width: 25px;
    height: 25px;
    top: 25%;
    right: 7%;
    animation: overviewFloat 7s ease-in-out infinite;
}

/* =========================
   CONTENT
========================= */

.overview-section .overview-section__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Eyebrow */

.overview-section .overview-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #7562df;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.overview-section .overview-section__eyebrow span {
    width: 42px;
    height: 1px;
    position: relative;
    background: linear-gradient(
        90deg,
        #775cff,
        #9d8cff
    );
}

.overview-section .overview-section__eyebrow span::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #775cff;
    box-shadow: 0 0 14px rgba(119, 92, 255, 0.7);
}

/* Heading */

.overview-section .overview-section__title {
    margin: 0;
    color: #1e2542;
    font-size: clamp(42px, 4vw, 76px);
    font-weight: 700;
    margin-bottom: 20px;
}

.overview-section .overview-section__title span {
    position: relative;
    display: inline-block;
    color: transparent;
    background: linear-gradient(90deg, #ff6d00, #6a7fd5, #ff6d00);
    background-clip: text;
    -webkit-background-clip: text;
}



/* Animated Line */

.overview-section .overview-section__title-line {
    width: 100px;
    height: 3px;
    margin: 28px auto;
    border-radius: 10px;
    background: linear-gradient(
            90deg,
            #775cff,
            #a981ff,
            transparent
        );
    animation: overviewLine 3s ease-in-out infinite;
}

/* Description */

.overview-section .overview-section__description {
    max-width: 80%;
    margin-bottom: 18px;
    color: #585858;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
    margin: auto;
    text-align: center;
}

.overview-section .overview-section__description--second {
    margin-bottom: 0;
}

/* =========================
   GLASS CARD
========================= */

.overview-section .overview-section__glass-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    padding: 42px;
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.72),
            rgba(237, 233, 255, 0.35)
        );
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 25px 60px rgba(81, 65, 168, 0.14),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform-style: preserve-3d;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.overview-section .overview-section__glass-card:hover {
    transform:
        translateY(-8px)
        rotateX(2deg)
        rotateY(-2deg);

    box-shadow:
        0 35px 80px rgba(81, 65, 168, 0.20),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

/* Moving Card Light */

.overview-section .overview-section__card-light {
    position: absolute;
    width: 260px;
    height: 260px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(20px);
    background:
        radial-gradient(
            circle,
            rgba(145, 112, 255, 0.30),
            transparent 70%
        );
    animation: overviewCardLight 7s ease-in-out infinite alternate;
}

/* Card Top */

.overview-section .overview-section__card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overview-section .overview-section__card-top span {
    color: #7b62e7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.overview-section .overview-section__card-top div {
    width: 60px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #8b78eb
        );
}

/* Card Content */

.overview-section .overview-section__card-content {
    position: relative;
    z-index: 2;
    margin-top: 75px;
}

.overview-section .overview-section__small-title {
    display: block;
    margin-bottom: 18px;
    color: #8874e9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.overview-section .overview-section__card-content h3 {
    margin: 0 0 24px;
    color: #202742;
    font-size: clamp(36px, 3vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.overview-section .overview-section__card-content h3 span {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #7558ea,
            #8e73f2
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.overview-section .overview-section__card-content p {
    max-width: 360px;
    margin: 0;
    color: #62697e;
    font-size: 15px;
    line-height: 1.75;
}

/* =========================
   CARD DECORATIVE LINES
========================= */

.overview-section .overview-section__line {
    position: absolute;
    z-index: 1;
    opacity: 0.55;
    border-radius: 50px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(121, 95, 234, 0.45),
            transparent
        );
}

.overview-section .overview-section__line--one {
    width: 300px;
    height: 1px;
    bottom: 115px;
    left: -40px;
    transform: rotate(-25deg);
}

.overview-section .overview-section__line--two {
    width: 270px;
    height: 1px;
    bottom: 75px;
    right: -50px;
    transform: rotate(30deg);
}

.overview-section .overview-section__line--three {
    width: 200px;
    height: 1px;
    bottom: 25px;
    left: 60px;
}

/* Card Number */

.overview-section .overview-section__card-number {
    position: absolute;
    right: 34px;
    bottom: 22px;
    z-index: 2;
    color: rgba(117, 88, 234, 0.12);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -4px;
}

/* =========================
   BOTTOM TEXT
========================= */

.overview-section .overview-section__bottom-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 55px;
    color: #737b94;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.overview-section .overview-section__bottom-text span {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.overview-section .overview-section__bottom-text span:hover {
    color: #7659ed;
    transform: translateY(-2px);
}

.overview-section .overview-section__bottom-text i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8a71ee;
    box-shadow: 0 0 12px rgba(138, 113, 238, 0.7);
}

/* =========================
   ANIMATED WAVE
========================= */

.overview-section .overview-section__wave {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -110px;
    height: 300px;
    pointer-events: none;
    opacity: 0.7;
    transform: rotate(-4deg);
}

.overview-section .overview-section__wave span {
    position: absolute;
    left: 0;
    width: 120%;
    height: 120px;
    border-top: 1px solid rgba(109, 91, 224, 0.18);
    border-radius: 50%;
    animation: overviewWave 7s ease-in-out infinite;
}

.overview-section .overview-section__wave span:nth-child(1) {
    top: 0;
    animation-delay: 0s;
}

.overview-section .overview-section__wave span:nth-child(2) {
    top: 24px;
    animation-delay: -1s;
}

.overview-section .overview-section__wave span:nth-child(3) {
    top: 48px;
    animation-delay: -2s;
}

.overview-section .overview-section__wave span:nth-child(4) {
    top: 72px;
    animation-delay: -3s;
}

.overview-section .overview-section__wave span:nth-child(5) {
    top: 96px;
    animation-delay: -4s;
}

.overview-section .overview-section__wave span:nth-child(6) {
    top: 120px;
    animation-delay: -5s;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes overviewGlowOne {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(90px, 60px) scale(1.2);
    }
}

@keyframes overviewGlowTwo {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-90px, -70px) scale(1.15);
    }
}

@keyframes overviewFloat {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-22px) translateX(8px);
    }
}

@keyframes overviewLine {
    0%,
    100% {
        width: 70px;
        opacity: 0.7;
    }

    50% {
        width: 150px;
        opacity: 1;
    }
}

@keyframes overviewCardLight {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-70px, 100px) scale(1.3);
    }
}

@keyframes overviewWave {
    0%,
    100% {
        transform: translateX(-3%) scaleY(1);
    }

    50% {
        transform: translateX(3%) scaleY(1.35);
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .overview-section {
        padding: 70px 0;
    }

    .overview-section .overview-section__inner {
        padding: 55px 35px 35px;
    }

    .overview-section .overview-section__content {
        max-width: 100%;
    }

    .overview-section .overview-section__glass-card {
        margin-top: 50px;
        min-height: 400px;
    }

    .overview-section .overview-section__bottom-text {
        margin-top: 45px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .overview-section {
        padding: 45px 0;
    }

    .overview-section .overview-section__inner {
        padding: 45px 22px 30px;
        border-radius: 22px;
    }

    .overview-section .overview-section__eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .overview-section .overview-section__title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .overview-section .overview-section__description {
        font-size: 15px;
        line-height: 1.75;
    }

    .overview-section .overview-section__glass-card {
        min-height: 360px;
        padding: 30px 25px;
        margin-top: 35px;
        border-radius: 22px;
    }

    .overview-section .overview-section__card-content {
        margin-top: 55px;
    }

    .overview-section .overview-section__card-content h3 {
        font-size: 38px;
    }

    .overview-section .overview-section__bottom-text {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 35px;
        font-size: 9px;
        letter-spacing: 2px;
    }

    .overview-section .overview-section__wave {
        bottom: -150px;
    }
}
/* overview */
.lab-counter{
  position: relative;
    overflow: hidden;
    background:none;
}
.lab-counter .common-title h2 span{
  background: linear-gradient(135deg, #f47b20, #f7c199);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lab-counter::before{
  content: "";
    position: absolute;
    width: 160%;
    height: 500px;
    left: -30%;
    bottom: -280px;
    background:
        repeating-radial-gradient(
            ellipse at center,
            transparent 0,
            transparent 22px,
            rgba(76, 163, 255, 0.12) 23px,
            rgba(76, 163, 255, 0.12) 25px,
            transparent 26px,
            transparent 50px
        );
    transform: rotate(-8deg);
    animation: overviewWaveMove 14s linear infinite;
    pointer-events: none;
    opacity: 0.3;
}
.lab-counter::after{
  content: "";
    position: absolute;
    width: 180%;
    height: 450px;
    left: -40%;
    top: -220px;
    opacity: 0.5;
    background:
        repeating-radial-gradient(
            ellipse at center,
            transparent 0,
            transparent 28px,
            rgba(255, 255, 255, 0.045) 29px,
            rgba(255, 255, 255, 0.045) 31px,
            transparent 32px,
            transparent 62px
        );
    transform: rotate(12deg);
    animation: overviewWaveMoveReverse 18s linear infinite;
    pointer-events: none;
}

/* Wave Animation */
@keyframes overviewWaveMove {
    0% {
        transform: translateX(0) rotate(-8deg);
    }

    50% {
        transform: translateX(8%) translateY(-25px) rotate(-6deg);
    }

    100% {
        transform: translateX(0) rotate(-8deg);
    }
}


@keyframes overviewWaveMoveReverse {
    0% {
        transform: translateX(0) rotate(12deg);
    }

    50% {
        transform: translateX(-8%) translateY(20px) rotate(14deg);
    }

    100% {
        transform: translateX(0) rotate(12deg);
    }
}
.tabmenu-sec {
    background: #000;
    padding: 13px 0;
    position: sticky;
    top: 80px;
    z-index: 99;
}
.tab-menu .nav-tabs{
  border-bottom: 0;
  justify-content: center;
}
.tab-menu .nav-tabs .nav-link {
    background: none;
    color: #fff;
    border: none;
    border-bottom: 2px solid #000000;
    padding: 4px 0;
    margin: 0 20px;
}
.tab-menu .nav-tabs .nav-link.active{
  border-color: var(--theme-color-3);
}

.tab-menu .nav-tabs .nav-link:hover{
  border-color: #434343;
}


/* Office Space */
/* =========================================
   WORKSPACE SECTION
========================================= */

.workspace-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: #f5f6f8;
    isolation: isolate;
}


/* Main Container */

.workspace-section .workspace-container {
    max-width: 1450px;
    position: relative;
    z-index: 2;
}


/* =========================================
   MAIN BOX
========================================= */

.workspace-section .workspace-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f7f8fb 48%,
        #eef1f5 100%
    );
    box-shadow: 0 20px 60px rgba(17, 36, 61, 0.08);
    padding: 40px 0;
}


/* =========================================
   LEFT IMAGE AREA
========================================= */

.workspace-section .workspace-image-wrap {
    position: relative;
    height: auto;
    padding-left: 28px;
    display: flex;
    align-items: center;
}


/* Orange Accent */

.workspace-section .workspace-orange-strip {
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #ff8a2a,
        #f16b24
    );
    z-index: 1;
}


/* Image */

.workspace-section .workspace-image {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 0 90px 90px 0;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}


.workspace-section .workspace-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}


/* Hover Effect */

.workspace-section .workspace-image:hover img {
    transform: scale(1.06);
}


/* Image Overlay */

.workspace-section .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 39, 78, 0.10),
        transparent 55%
    );
    pointer-events: none;
}


/* =========================================
   CONTENT AREA
========================================= */

.workspace-section .workspace-content {
    position: relative;
    padding: 50px 35px 45px 60px;
}


/* Small Orange Accent Line */

.workspace-section .workspace-title-line {
    position: absolute;
    top: 58px;
    left: 35px;
    width: 4px;
    height: 62px;
    background: linear-gradient(
        180deg,
        #ff8a2a,
        #f16b24
    );
    border-radius: 10px;
}


/* Heading */

.workspace-section .workspace-content h2 {
    margin: 0;
    color: #24344b;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -1.2px;
}


/* Orange Heading */

.workspace-section .workspace-content h2 span {
    color: #ef7d32;
}


/* Mini Line */

.workspace-section .workspace-mini-line {
    width: 55px;
    height: 3px;
    margin: 22px 0 22px;
    background: #253a54;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}


.workspace-section .workspace-mini-line span {
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 100%;
    background: #ef7d32;
}


/* Description */

.workspace-section .workspace-content p {
    max-width: 520px;
    margin: 0;
    color: #667085;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
}


/* =========================================
   STATISTICS
========================================= */

.workspace-section .workspace-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
    padding: 50px 35px 50px 15px;
}


/* Individual Stat */

.workspace-section .workspace-stat {
    position: relative;
    width: 80%;
    margin: auto;
    padding: 30px 15px 30px;
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.95),
        rgba(245, 247, 250, 0.85)
    );
    border: 1px solid rgba(25, 55, 90, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(25, 45, 70, 0.08);
    transition: transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Hover */

.workspace-section .workspace-stat:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 125, 50, 0.45);
    box-shadow: 0 20px 35px rgba(25, 45, 70, 0.14);
}


/* =========================================
   STAT ICON BASE
========================================= */

.workspace-section .stat-icon {
    position: relative;
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
}


/* =========================================
   BUILDING ICON
========================================= */

.workspace-section .stat-building {
    border: 2px solid #31465e;
    border-top: 0;
    width: 20px;
    height: 28px;
    margin-top: 3px;
}


.workspace-section .stat-building:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 3px;
    width: 10px;
    height: 6px;
    border: 2px solid #31465e;
    border-bottom: 0;
}


.workspace-section .stat-building:after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: 0;
    width: 4px;
    height: 8px;
    background: #31465e;
}


.workspace-section .stat-building span:before,
.workspace-section .stat-building span:after {
    content: "";
    position: absolute;
    top: 5px;
    width: 3px;
    height: 3px;
    background: #31465e;
    box-shadow:
        0 6px #31465e,
        0 12px #31465e;
}


.workspace-section .stat-building span:before {
    left: 4px;
}


.workspace-section .stat-building span:after {
    right: 4px;
}


/* =========================================
   CLOCK ICON
========================================= */

.workspace-section .stat-clock {
    width: 30px;
    height: 30px;
    border: 2px solid #31465e;
    border-radius: 50%;
}


.workspace-section .stat-clock:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 9px;
    background: #31465e;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
}


.workspace-section .stat-clock:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: #31465e;
    left: 50%;
    top: 14px;
    transform-origin: left center;
    transform: rotate(35deg);
}


/* =========================================
   LOCATION ICON
========================================= */

.workspace-section .stat-location {
    width: 24px;
    height: 31px;
    border: 2px solid #31465e;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}


.workspace-section .stat-location:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border: 2px solid #31465e;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


/* =========================================
   STAT TEXT
========================================= */

.workspace-section .workspace-stat h3 {
    margin: 0 0 5px;
    color: #ef7d32;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
}


.workspace-section .workspace-stat h3 span {
    font-size: 18px;
}


.workspace-section .workspace-stat p {
    margin: 0;
    color: #344054;
    font-size: 13px;
    font-weight: 500;
}


/* =========================================
   BACKGROUND BLUEPRINT EFFECT
========================================= */

.workspace-section .workspace-bg-lines {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.45;

    background-image:
        linear-gradient(
            90deg,
            rgba(37, 58, 84, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            0deg,
            rgba(37, 58, 84, 0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 30%,
        black 75%,
        transparent
    );
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.workspace-section .workspace-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;

    right: -200px;
    top: -220px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(239, 125, 50, 0.10),
        transparent 68%
    );

    z-index: -1;

    animation: workspaceGlow 7s ease-in-out infinite alternate;
}


@keyframes workspaceGlow {

    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(-30px, 30px);
    }

}


/* =========================================
   DOT PATTERN
========================================= */

.workspace-section .workspace-dots {
    position: absolute;
    width: 130px;
    height: 100px;

    background-image: radial-gradient(
        circle,
        rgba(239, 125, 50, 0.55) 1.5px,
        transparent 1.5px
    );

    background-size: 12px 12px;

    opacity: 0.5;
    z-index: -1;

    animation: dotsFloat 7s ease-in-out infinite;
}


.workspace-section .dots-1 {
    right: 25px;
    top: 30px;
}


.workspace-section .dots-2 {
    left: 38%;
    bottom: -30px;
    opacity: 0.25;
}


@keyframes dotsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {


    .workspace-section .workspace-content {
        padding: 40px 30px 35px 50px;
    }

    .workspace-section .workspace-content h2 {
        font-size: 35px;
    }

    .workspace-section .workspace-title-line {
        left: 25px;
        top: 45px;
    }

    .workspace-section .workspace-stats {
        padding: 20px 25px 40px;
    }

}


@media (max-width: 991px) {

    .workspace-section {
        padding: 55px 0;
    }

    .workspace-section .workspace-box {
        padding-bottom: 25px;
    }

    .workspace-section .workspace-image-wrap {
        padding: 30px 30px 0 55px;
    }

    .workspace-section .workspace-orange-strip {
        width: 30px;
    }

  

    .workspace-section .workspace-content {
        padding: 45px 45px 20px 60px;
    }

    .workspace-section .workspace-stats {
        padding: 30px 45px 25px;
    }

}


@media (max-width: 767px) {

    .workspace-section {
        padding: 40px 0;
    }

    .workspace-section .workspace-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .workspace-section .workspace-box {
        border-radius: 0;
    }

    .workspace-section .workspace-image-wrap {
        padding: 25px 15px 0 38px;
    }

    .workspace-section .workspace-orange-strip {
        width: 22px;
    }

    .workspace-section .workspace-image {
        border-radius: 60px 0 0 0;
    }

    .workspace-section .workspace-content {
        padding: 40px 25px 20px 45px;
    }

    .workspace-section .workspace-title-line {
        left: 22px;
        top: 43px;
        height: 55px;
    }

    .workspace-section .workspace-content h2 {
        font-size: 31px;
        letter-spacing: -0.6px;
    }

    .workspace-section .workspace-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .workspace-section .workspace-stats {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 15px;
    }

    .workspace-section .workspace-stat {
        min-height: auto;
        padding: 22px 15px;
    }

    .workspace-section .workspace-dots {
        display: none;
    }

}


@media (max-width: 480px) {


    .workspace-section .workspace-content h2 {
        font-size: 27px;
    }

    .workspace-section .workspace-mini-line {
        margin: 18px 0;
    }

}

/* =========================================================
   INNOVATION GROWTH SECTION
========================================================= */

.innovation-growth-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(255, 122, 24, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(25, 85, 170, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #06101f 0%,
            #0a1930 50%,
            #050b16 100%
        );
}


/* =========================================================
   BACKGROUND
========================================================= */

.innovation-growth-section .innovation-growth-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}


/* =========================================================
   GRID PATTERN
========================================================= */

.innovation-growth-section .innovation-growth-grid {
    position: absolute;
    width: 300px;
    height: 450px;

    right: 4%;
    top: 50%;

    transform: translateY(-50%);

    opacity: 0.13;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.8) 1px,
            transparent 1px
        );

    background-size: 18px 18px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 85%,
            transparent
        );
}


/* =========================================================
   GLOW EFFECTS
========================================================= */

.innovation-growth-section .innovation-growth-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}


/* Orange Glow */

.innovation-growth-section .innovation-growth-glow-1 {
    width: 380px;
    height: 380px;

    top: -180px;
    left: 35%;

    background: rgba(255, 104, 20, 0.35);

    animation:
        innovation-growth-glow-move-1
        9s ease-in-out infinite alternate;
}


/* Blue Glow */

.innovation-growth-section .innovation-growth-glow-2 {
    width: 320px;
    height: 320px;

    right: -100px;
    bottom: -120px;

    background: rgba(32, 90, 190, 0.30);

    animation:
        innovation-growth-glow-move-2
        10s ease-in-out infinite alternate;
}


@keyframes innovation-growth-glow-move-1 {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(70px, 40px) scale(1.25);
    }

}


@keyframes innovation-growth-glow-move-2 {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-60px, -40px) scale(1.2);
    }

}


/* =========================================================
   BACKGROUND ORBITS
========================================================= */

.innovation-growth-section .innovation-growth-orbit {
    position: absolute;

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-radius: 50%;

    pointer-events: none;
}


/* Orbit 01 */

.innovation-growth-section .innovation-growth-orbit-1 {
    width: 600px;
    height: 600px;

    left: -360px;
    top: -250px;

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.015),
        0 0 0 140px rgba(255, 255, 255, 0.01);

    animation:
        innovation-growth-orbit-rotate
        25s linear infinite;
}


/* Orbit 02 */

.innovation-growth-section .innovation-growth-orbit-2 {
    width: 450px;
    height: 450px;

    right: -280px;
    bottom: -260px;

    border-color:
        rgba(255, 122, 24, 0.08);

    animation:
        innovation-growth-orbit-rotate
        30s linear infinite reverse;
}


@keyframes innovation-growth-orbit-rotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   CONTAINER
========================================================= */

.innovation-growth-section .innovation-growth-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.innovation-growth-section .innovation-growth-wrapper {
    display: grid;

    grid-template-columns:
        minmax(360px, 0.9fr)
        minmax(500px, 1.2fr);

    align-items: center;

    gap: 80px;
}


/* =========================================================
   CONTENT
========================================================= */

.innovation-growth-section .innovation-growth-content {
    position: relative;
    z-index: 3;
}


/* =========================================================
   HEADING TOP
========================================================= */

.innovation-growth-section .innovation-growth-heading-top {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;
}


/* Orange Line */

.innovation-growth-section .innovation-growth-line {
    display: block;

    width: 45px;
    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #ff6d16,
            #ffb066
        );

    box-shadow:
        0 0 18px rgba(255, 109, 22, 0.7);
}


/* Small Label */

.innovation-growth-section .innovation-growth-label {
    color: #ff913e;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
}


/* =========================================================
   HEADING
========================================================= */

.innovation-growth-section .innovation-growth-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 4vw, 66px);
    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -2px;
}


.innovation-growth-section .innovation-growth-heading h2 span {
    display: block;

    color: #ff8430;

    position: relative;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.innovation-growth-section .innovation-growth-description {
    margin-top: 32px;

    max-width: 570px;
}


.innovation-growth-section .innovation-growth-description p {
    margin:
        0
        0
        20px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 16px;

    line-height: 1.9;
}


.innovation-growth-section .innovation-growth-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.innovation-growth-section .innovation-growth-bottom-line {
    position: relative;

    width: 150px;
    height: 1px;

    margin-top: 40px;

    background:
        rgba(255, 255, 255, 0.15);

    overflow: hidden;
}


.innovation-growth-section .innovation-growth-bottom-line span {
    position: absolute;

    left: 0;
    top: 0;

    width: 55px;
    height: 100%;

    background:
        #ff7a18;

    animation:
        innovation-growth-line-move
        3s ease-in-out infinite;
}


@keyframes innovation-growth-line-move {

    0% {
        left: -55px;
    }

    100% {
        left: 150px;
    }

}


/* =========================================================
   IMAGE GALLERY
========================================================= */

.innovation-growth-section .innovation-growth-gallery {
    position: relative;

    width: 100%;
    height: 470px;

    display: flex;

    align-items: stretch;

    gap: 10px;

    perspective: 1200px;
}


/* =========================================================
   INDIVIDUAL IMAGE
========================================================= */

.innovation-growth-section .innovation-growth-image {
    position: relative;

    flex: 1;

    height: 100%;

    overflow: hidden;

    background: #0e1726;

    cursor: pointer;

    transition:
        flex 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;

    animation:
        innovation-growth-image-float
        6s ease-in-out infinite;
}


/* =========================================================
   ANGLED IMAGE SHAPES
========================================================= */

.innovation-growth-section .innovation-growth-image-1 {
    clip-path:
        polygon(
            12% 0,
            100% 0,
            88% 100%,
            0 100%
        );
}


.innovation-growth-section .innovation-growth-image-2 {
    clip-path:
        polygon(
            12% 0,
            100% 0,
            88% 100%,
            0 100%
        );

    animation-delay: 0.8s;
}


.innovation-growth-section .innovation-growth-image-3 {
    clip-path:
       polygon( 12% 0, 100% 0, 88% 100%, 0 100%);

    animation-delay: 1.6s;
}


/* =========================================================
   IMAGE
========================================================= */

.innovation-growth-section .innovation-growth-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 0.9s ease,
        filter 0.5s ease;
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.innovation-growth-section .innovation-growth-image-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(5, 10, 20, 0.05),
            rgba(5, 10, 20, 0.50)
        );

    transition:
        background 0.5s ease;
}


/* =========================================================
   IMAGE NUMBER
========================================================= */

.innovation-growth-section .innovation-growth-image-number {
    position: absolute;

    left: 22px;
    bottom: 22px;

    z-index: 3;

    color:
        rgba(255, 255, 255, 0.9);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    opacity: 0;

    transform:
        translateY(15px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.innovation-growth-section .innovation-growth-image.active {
    flex: 2.1;

    filter:
        brightness(1.08);

    z-index: 5;

    animation-play-state: paused;
}


.innovation-growth-section .innovation-growth-image:hover img {
    transform: scale(1.1);
}


.innovation-growth-section .innovation-growth-image:hover
.innovation-growth-image-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(255, 122, 24, 0.08),
            rgba(5, 10, 20, 0.22)
        );
}


.innovation-growth-section .innovation-growth-image:hover
.innovation-growth-image-number {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   ORANGE BORDER GLOW
========================================================= */

.innovation-growth-section .innovation-growth-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 4;

    border:
        1px solid transparent;

    pointer-events: none;

    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.innovation-growth-section .innovation-growth-image:hover::after {
    border-color:
        rgba(255, 122, 24, 0.8);

    box-shadow:
        inset 0 0 25px rgba(255, 122, 24, 0.18),
        0 0 30px rgba(255, 122, 24, 0.22);
}


/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes innovation-growth-image-float {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .innovation-growth-section .innovation-growth-wrapper {
        grid-template-columns:
            1fr;

        gap: 60px;
    }


    .innovation-growth-section .innovation-growth-content {
        max-width: 700px;
    }


    .innovation-growth-section .innovation-growth-gallery {
        height: 450px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .innovation-growth-section {
        padding: 75px 0;
    }


    .innovation-growth-section .innovation-growth-heading h2 {
        font-size: 42px;

        letter-spacing: -1.2px;
    }


    .innovation-growth-section .innovation-growth-description p {
        font-size: 15px;

        line-height: 1.8;
    }


    .innovation-growth-section .innovation-growth-gallery {
        height: 350px;

        gap: 6px;
    }


    .innovation-growth-section .innovation-growth-image:hover {
        flex: 1.6;
    }


    .innovation-growth-section .innovation-growth-image-number {
        left: 12px;
        bottom: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .innovation-growth-section {
        padding: 60px 0;
    }


    .innovation-growth-section .innovation-growth-heading-top {
        margin-bottom: 16px;
    }


    .innovation-growth-section .innovation-growth-heading h2 {
        font-size: 34px;
    }


    .innovation-growth-section .innovation-growth-label {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .innovation-growth-section .innovation-growth-gallery {
        height: 280px;
    }


    .innovation-growth-section .innovation-growth-glow-1 {
        left: -100px;
    }

}


/* =========================================================
   FACILITIES AT A GLANCE
========================================================= */

.facilities-glance-section {
    position: relative;
    overflow: hidden;
    padding: 70px 35px 80px;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(242, 242, 242, 0.9) 0%,
            rgba(255, 255, 255, 1) 55%,
            #f7f8fa 100%
        );
    font-family: "Poppins", sans-serif;
}


/* =========================================================
   BACKGROUND CURVE SHAPES
========================================================= */

.facilities-glance-section .facilities-glance-bg-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(238, 115, 27, 0.25);
    border-radius: 50%;
    pointer-events: none;
}


.facilities-glance-section .shape-top-left {
    top: -150px;
    left: -80px;
}


.facilities-glance-section .shape-top-right {
    top: -180px;
    right: -80px;
}


.facilities-glance-section .shape-bottom-left {
    bottom: -170px;
    left: -100px;
}


.facilities-glance-section .shape-bottom-right {
    bottom: -180px;
    right: -70px;
    border-color: rgba(35, 87, 143, 0.3);
}


/* =========================================================
   DOT PATTERN
========================================================= */

.facilities-glance-section .facilities-glance-dots {
    position: absolute;
    width: 160px;
    height: 160px;
    opacity: 0.45;

    background-image:
        radial-gradient(
            rgba(45, 74, 110, 0.45) 1.5px,
            transparent 1.5px
        );

    background-size: 18px 18px;

    pointer-events: none;
}


.facilities-glance-section .facilities-glance-dots-left {
    top: 30px;
    left: 20px;
}


.facilities-glance-section .facilities-glance-dots-right {
    top: 25px;
    right: 20px;
}


.facilities-glance-section .facilities-glance-dots-bottom-left {
    bottom: 15px;
    left: 15px;
}


.facilities-glance-section .facilities-glance-dots-bottom-right {
    bottom: 10px;
    right: 20px;
}


/* =========================================================
   CONTAINER
========================================================= */

.facilities-glance-section .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1600px;
}


/* =========================================================
   HEADING
========================================================= */

.facilities-glance-section .facilities-glance-heading {
    position: relative;
    margin-bottom: 80px;
}

.facilities-glance-section .facilities-glance-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #e97821;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 7px;
    text-transform: uppercase;

    margin-bottom: 10px;
}


.facilities-glance-section .facilities-glance-eyebrow span {
    position: relative;

    width: 65px;
    height: 2px;

    background: #e97821;
}


.facilities-glance-section .facilities-glance-eyebrow span::after {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    top: 50%;

    background: #e97821;
    border-radius: 50%;

    transform: translateY(-50%);
}


.facilities-glance-section
.facilities-glance-eyebrow
span:first-child::after {
    left: 0;
}


.facilities-glance-section
.facilities-glance-eyebrow
span:last-child::after {
    right: 0;
}


.facilities-glance-section .facilities-glance-heading h2 {
    margin: 0;

    color: #16273c;

    font-size: clamp(42px, 5vw, 70px);
    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -2px;
}


.facilities-glance-section .facilities-glance-heading h2 strong {
    color: #ee741c;
    font-weight: 700;
}


.facilities-glance-section .facilities-glance-heading p {
    margin: 12px auto 0;

    max-width: 750px;

    color: #66717f;

    font-size: 17px;
    line-height: 1.8;
}


.facilities-glance-section .facilities-glance-heading-line {
    width: 105px;
    height: 3px;

    margin: 18px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f4771d,
            transparent
        );

    animation:
        facilities-glance-line-pulse
        2s ease-in-out infinite;
}


@keyframes facilities-glance-line-pulse {

    0%,
    100% {
        transform: scaleX(0.7);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1.2);
        opacity: 1;
    }

}


/* =========================================================
   MAIN ROW
========================================================= */

.facilities-glance-section .facilities-glance-main-row {
    position: relative;
    min-height: 610px;
}


/* =========================================================
   SIDE LIST
========================================================= */

.facilities-glance-section .facilities-glance-list {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 35px;

    height: 100%;
}


/* =========================================================
   FACILITY ITEM
========================================================= */

.facilities-glance-section .facilities-glance-item {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    min-height: 145px;

    transition: 0.4s ease;
}


/* LEFT ITEM */

.facilities-glance-section
.facilities-glance-list-left
.facilities-glance-item::after {
    content: "";

    position: absolute;

    bottom: -12px;
    left: 75px;

    width: calc(100% - 95px);
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(238, 116, 28, 0.3),
            rgba(238, 116, 28, 0.05)
        );
}


.facilities-glance-section
.facilities-glance-list-left
.facilities-glance-item::before {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    right: 4px;
    bottom: -16px;

    background: #f47b20;

    border-radius: 50%;

    box-shadow:
        0 0 12px rgba(244, 123, 32, 0.7);
}


/* RIGHT ITEM */

.facilities-glance-section
.facilities-glance-list-right
.facilities-glance-item {
    justify-content: flex-end;
}


.facilities-glance-section
.facilities-glance-list-right
.facilities-glance-item::after {
    content: "";

    position: absolute;

    bottom: -12px;
    right: 75px;

    width: calc(100% - 95px);
    height: 1px;

    background:
        linear-gradient(
            270deg,
            rgba(238, 116, 28, 0.3),
            rgba(238, 116, 28, 0.05)
        );
}


.facilities-glance-section
.facilities-glance-list-right
.facilities-glance-item::before {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    left: 4px;
    bottom: -16px;

    background: #f47b20;

    border-radius: 50%;

    box-shadow:
        0 0 12px rgba(244, 123, 32, 0.7);
}


/* =========================================================
   NUMBER
========================================================= */

.facilities-glance-section .facilities-glance-number {
    flex-shrink: 0;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ff9b47,
            #e75d00
        );

    clip-path:
        polygon(
            25% 0,
            75% 0,
            100% 50%,
            75% 100%,
            25% 100%,
            0 50%
        );

    color: #fff;

    font-size: 27px;
    font-weight: 700;

    box-shadow:
        0 12px 25px rgba(232, 103, 14, 0.22);

    transition: 0.4s ease;
}


.facilities-glance-section
.facilities-glance-item:hover
.facilities-glance-number {
    transform:
        rotate(45deg)
        scale(1.08);
}


.facilities-glance-section
.facilities-glance-item:hover
.facilities-glance-number span {
    transform: rotate(-45deg);
}


.facilities-glance-section .facilities-glance-number span {
    transition: 0.4s ease;
}


/* =========================================================
   ICON BOX
========================================================= */

.facilities-glance-section .facilities-glance-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(238, 116, 28, 0.22);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(30, 45, 65, 0.1);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}


.facilities-glance-section .facilities-glance-icon i {
    color: #ef741b;

    font-size: 22px;

    transition: 0.4s ease;
}


.facilities-glance-section
.facilities-glance-item:hover
.facilities-glance-icon {
    transform:
        translateY(-7px);

    background:
        linear-gradient(
            135deg,
            #ff8c31,
            #e85f00
        );

    box-shadow:
        0 18px 35px rgba(232, 103, 14, 0.25);
}


.facilities-glance-section
.facilities-glance-item:hover
.facilities-glance-icon i {
    color: #fff;

    transform: scale(1.12);
}


/* =========================================================
   CONTENT
========================================================= */

.facilities-glance-section .facilities-glance-content {
    flex: 1;
}


.facilities-glance-section .facilities-glance-content h3 {
    margin: 0 0 9px;

    color: #253548;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.45;
}


.facilities-glance-section .facilities-glance-content p {
    margin: 0;

    color: #687382;

    font-size: 15px;

    line-height: 1.75;
}


/* RIGHT TEXT */

.facilities-glance-section
.facilities-glance-list-right
.facilities-glance-content {
    text-align: left;
}


/* =========================================================
   CENTER VISUAL
========================================================= */

.facilities-glance-section .facilities-glance-visual {
    position: relative;

    width: 100%;
    max-width: 620px;
    height: 610px;

    margin: auto;
}


/* =========================================================
   ORBIT LINES
========================================================= */

.facilities-glance-section .facilities-glance-orbit {
    position: absolute;

    border:
        1px dashed
        rgba(238, 116, 28, 0.55);

    border-radius: 30px;

    transform: rotate(45deg);
}


.facilities-glance-section .orbit-one {
    width: 390px;
    height: 390px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(45deg);

    animation:
        facilities-glance-orbit-one
        12s linear infinite;
}


.facilities-glance-section .orbit-two {
    width: 470px;
    height: 470px;

    left: 50%;
    top: 50%;

    border-color:
        rgba(37, 70, 107, 0.22);

    transform:
        translate(-50%, -50%)
        rotate(45deg);

    animation:
        facilities-glance-orbit-two
        16s linear infinite reverse;
}


@keyframes facilities-glance-orbit-one {

    from {
        transform:
            translate(-50%, -50%)
            rotate(45deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(405deg);
    }

}


@keyframes facilities-glance-orbit-two {

    from {
        transform:
            translate(-50%, -50%)
            rotate(45deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(-315deg);
    }

}


/* =========================================================
   SMALL DECORATIVE DIAMONDS
========================================================= */

.facilities-glance-section .facilities-glance-small-diamond {
    position: absolute;

    width: 38px;
    height: 38px;

    background:
        linear-gradient(
            135deg,
            #ff922f,
            #e86400
        );

    transform: rotate(45deg);

    z-index: 8;

    animation:
        facilities-glance-float
        3s ease-in-out infinite;
}


.facilities-glance-section .diamond-one {
    top: 145px;
    right: 30px;
}


.facilities-glance-section .diamond-two {
    bottom: 115px;
    left: 35px;

    animation-delay: 1.2s;
}


@keyframes facilities-glance-float {

    0%,
    100% {
        transform:
            rotate(45deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(45deg)
            translateY(-12px);
    }

}


/* =========================================================
   IMAGE DIAMONDS
========================================================= */

.facilities-glance-section .facilities-glance-image {
    position: absolute;

    overflow: hidden;

    width: 250px;
    height: 250px;

    background: #fff;

    border: 8px solid rgba(255, 255, 255, 0.96);

    border-radius: 28px;

    box-shadow:
        0 20px 45px rgba(23, 38, 56, 0.18);

    transform: rotate(45deg);

    transition: 0.5s ease;
}


.facilities-glance-section .facilities-glance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg)
        scale(1.4);
    transform-origin: center;
    transition: 0.7s ease;
}



/* .facilities-glance-section
.facilities-glance-image:hover img {
    transform:
        rotate(-45deg)
        scale(1.18);

    filter:
        saturate(1.15)
        contrast(1.08);
} */


/* TOP */

.facilities-glance-section .image-top {
    top: 5px;
    left: 50%;

    margin-left: -125px;
}


/* LEFT */

.facilities-glance-section .image-left {
    left: 35px;
    top: 180px;
}


/* RIGHT */

.facilities-glance-section .image-right {
    right: 35px;
    top: 180px;
}


/* BOTTOM */

.facilities-glance-section .image-bottom {
    bottom: 5px;
    left: 50%;

    margin-left: -125px;
}


/* =========================================================
   CENTER DIAMOND
========================================================= */

.facilities-glance-section .facilities-glance-center {
    position: absolute;

    width: 175px;
    height: 175px;

    top: 50%;
    left: 50%;

    z-index: 15;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.98),
            rgba(242,245,248,0.95)
        );

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 25px;

    box-shadow:
        0 22px 50px rgba(25, 42, 61, 0.2);

    transform:
        translate(-50%, -50%);

    backdrop-filter: blur(15px);
}


.facilities-glance-section .facilities-glance-center-icon {
    margin-bottom: 12px;
}


.facilities-glance-section
.facilities-glance-center-icon i {
    color: #ee741c;

    font-size: 35px;
}


.facilities-glance-section .facilities-glance-center h3 {
    margin: 0;
    color: #243346;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 2px;/* 
    transform: rotate(-45deg); */
}


.facilities-glance-section
.facilities-glance-center h3 span {
    display: block;
}


/* =========================================================
   HOVER CONTENT EFFECT
========================================================= */

.facilities-glance-section
.facilities-glance-item:hover
.facilities-glance-content {
    transform: translateY(-4px);
}


.facilities-glance-section .facilities-glance-content {
    transition: 0.35s ease;
}


.facilities-glance-section
.facilities-glance-item:hover
.facilities-glance-content h3 {
    color: #ec6d16;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399px) {

    .facilities-glance-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .facilities-glance-section
    .facilities-glance-content h3 {
        font-size: 17px;
    }

    .facilities-glance-section
    .facilities-glance-content p {
        font-size: 14px;
    }

    .facilities-glance-section
    .facilities-glance-icon {
        width: 75px;
        height: 75px;
    }

    .facilities-glance-section
    .facilities-glance-icon i {
        font-size: 30px;
    }

    .facilities-glance-section
    .facilities-glance-number {
        width: 58px;
        height: 58px;

        font-size: 22px;
    }

}


/* TABLET */

@media (max-width: 991px) {

    .facilities-glance-section {
        padding: 60px 20px;
    }

    .facilities-glance-section
    .facilities-glance-main-row {
        min-height: auto;
    }

    .facilities-glance-section
    .facilities-glance-list {
        height: auto;
    }

    .facilities-glance-section
    .facilities-glance-visual {
        margin: 50px auto;
    }

    .facilities-glance-section
    .facilities-glance-list-right
    .facilities-glance-item {
        justify-content: flex-start;
    }

    .facilities-glance-section
    .facilities-glance-list-right {
        margin-top: 20px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .facilities-glance-section {
        padding: 50px 15px;
    }

    .facilities-glance-section
    .facilities-glance-heading h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }

    .facilities-glance-section
    .facilities-glance-eyebrow {
        font-size: 10px;

        letter-spacing: 3px;

        gap: 10px;
    }

    .facilities-glance-section
    .facilities-glance-eyebrow span {
        width: 35px;
    }

    .facilities-glance-section
    .facilities-glance-heading p {
        font-size: 14px;
    }


    /* CENTER VISUAL MOBILE */

    .facilities-glance-section
    .facilities-glance-visual {
        width: 100%;
        height: 390px;

        transform: scale(0.7);

        margin:
            -50px auto
            -40px;
    }


    /* FACILITY ITEMS */

    .facilities-glance-section
    .facilities-glance-item {
        gap: 15px;

        min-height: 110px;
    }

    .facilities-glance-section
    .facilities-glance-list {
        gap: 25px;
    }

    .facilities-glance-section
    .facilities-glance-number {
        width: 52px;
        height: 52px;

        font-size: 19px;
    }

    .facilities-glance-section
    .facilities-glance-icon {
        width: 65px;
        height: 65px;

        border-radius: 16px;
    }

    .facilities-glance-section
    .facilities-glance-icon i {
        font-size: 26px;
    }

    .facilities-glance-section
    .facilities-glance-content h3 {
        font-size: 16px;
    }

    .facilities-glance-section
    .facilities-glance-content p {
        font-size: 13px;
        line-height: 1.6;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .facilities-glance-section
    .facilities-glance-heading h2 {
        font-size: 35px;
    }

    .facilities-glance-section
    .facilities-glance-item {
        align-items: flex-start;
    }

    .facilities-glance-section
    .facilities-glance-number {
        display: none;
    }

    .facilities-glance-section
    .facilities-glance-list-left
    .facilities-glance-item::after,
    .facilities-glance-section
    .facilities-glance-list-right
    .facilities-glance-item::after {
        width: 100%;
        left: 0;
        right: auto;
    }

    .facilities-glance-section
    .facilities-glance-list-left
    .facilities-glance-item::before,
    .facilities-glance-section
    .facilities-glance-list-right
    .facilities-glance-item::before {
        display: none;
    }

}
/* Office Space */



/* =========================================================
   CSR MOBILITY SECTION
========================================================= */

.csr-mobility-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
   
}


/* Main Container */

.csr-mobility-section .csr-mobility-content {
    position: relative;
    /* overflow: hidden; */
    /* min-height: 460px; */
    /* padding: 40px 0 40px 90px; */
    /* background: rgba(255, 255, 255, 0.78); */
    /* border: 1px solid rgba(24, 42, 67, 0.09); */
    /* border-radius: 6px; */
    /* box-shadow: 0 20px 70px rgba(22, 39, 63, 0.06); */
}


/* =========================================================
   HUGE MOBILITY WATERMARK
========================================================= */

.csr-mobility-section .csr-mobility-watermark {
    position: absolute;
    right: -230px;
    bottom: 0;
    font-size: clamp(90px, 8vw, 250px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -8px;
    color: #eef4ff45;
    /* white-space: nowrap; */
    pointer-events: none;
    user-select: none;
    z-index: 0;
    animation: csrMobilityWatermarkMove 14s ease-in-out infinite alternate;
    text-transform: uppercase;
    width: 50%;
}


/* =========================================================
   TOP ACCENT LINE
========================================================= */

.csr-mobility-section .csr-mobility-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #ff8a32,
        #f26b21,
        transparent
    );
}


/* =========================================================
   CONTENT
========================================================= */

.csr-mobility-section .csr-mobility-text {
    position: relative;
    z-index: 3;
    padding: 40px 0;
    padding-left: 40px;
}


/* =========================================================
   LABEL
========================================================= */

.csr-mobility-section .csr-mobility-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f27b2a;
}

.csr-mobility-section .csr-mobility-label span {
    width: 42px;
    height: 2px;
    background: #f27b2a;
    position: relative;
    overflow: hidden;
}

.csr-mobility-section .csr-mobility-label span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 100%;
    left: -20px;
    top: 0;
    background: #182b44;
    animation: csrMobilityLineMove 2s linear infinite;
}


/* =========================================================
   HEADING
========================================================= */

.csr-mobility-section .csr-mobility-text h2 {
    max-width: 900px;
    margin: 0 0 50px;
    color: #202b3b;
    font-size: clamp(40px, 3.3vw, 72px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;
}

.csr-mobility-section .csr-mobility-text h2 span {
    display: inline-block;
    position: relative;
    font-weight: 700;
    color: #f27b2a;
}
.csr-mobility-section .csr-mobility-text h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        #f27b2a,
        rgba(242, 123, 42, 0)
    );
    transform-origin: left;
    animation: csrMobilityUnderline 3s ease-in-out infinite;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.csr-mobility-section .csr-mobility-text p {
    max-width: 850px;
    margin: 0;
    font-size: 18px;
    line-height: 1.9;
    color: #647080;
    font-weight: 400;
}

.csr-mobility-section .csr-mobility-text p strong {
    color: #1d2c42;
    font-weight: 700;
}


/* =========================================================
   SUPPORT FLOW
========================================================= */

.csr-mobility-section .csr-mobility-support {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.csr-mobility-section .csr-mobility-support span {
    position: relative;
    padding: 8px 0;
    color: #24344a;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.csr-mobility-section .csr-mobility-support span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #f27b2a;
    transition: width 0.4s ease;
}

.csr-mobility-section .csr-mobility-support span:hover {
    color: #f27b2a;
}

.csr-mobility-section .csr-mobility-support span:hover::after {
    width: 100%;
}


/* Connector */

.csr-mobility-section .csr-mobility-support i {
    width: auto;
    height: 1px;
    display: block;
    position: relative;
}

.csr-mobility-section .csr-mobility-support i::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 5px;
    height: 5px;
    background: #f27b2a;
    border-radius: 50%;
    transform: translateY(-50%);
}


/* =========================================================
   BOTTOM WORDS
========================================================= */

.csr-mobility-section .csr-mobility-bottom-text {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(28, 48, 73, 0.09);
}

.csr-mobility-section .csr-mobility-bottom-text span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(29, 44, 66, 0.55);
    transition: all 0.3s ease;
}

.csr-mobility-section .csr-mobility-bottom-text span:hover {
    color: #f27b2a;
    transform: translateY(-3px);
}


/* =========================================================
   DOT PATTERN
========================================================= */

.csr-mobility-section .csr-mobility-dots {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image:
        radial-gradient(
            rgba(242, 123, 42, 0.35) 1.2px,
            transparent 1.2px
        );
    background-size: 14px 14px;
    opacity: 0.35;
    z-index: 1;
}

.csr-mobility-section .csr-mobility-dots-1 {
    right: 40px;
    bottom: 25px;
    animation: csrMobilityDotsFloat 8s ease-in-out infinite;
}

.csr-mobility-section .csr-mobility-dots-2 {
    top: 20px;
    right: 18%;
    transform: scale(0.7);
    opacity: 0.2;
    animation: csrMobilityDotsFloat 10s ease-in-out infinite reverse;
}


/* =========================================================
   GLOW EFFECTS
========================================================= */

.csr-mobility-section .csr-mobility-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.csr-mobility-section .csr-mobility-glow-1 {
    top: -180px;
    right: 10%;
    background: rgba(255, 143, 61, 0.08);
}

.csr-mobility-section .csr-mobility-glow-2 {
    bottom: -220px;
    left: 15%;
    background: rgba(43, 74, 116, 0.08);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes csrMobilityWatermarkMove {

    0% {
        transform: translateY(-50%) translateX(0);
    }

    100% {
        transform: translateY(-50%) translateX(-40px);
    }

}


@keyframes csrMobilityLineMove {

    0% {
        left: -20px;
    }

    100% {
        left: 50px;
    }

}


@keyframes csrMobilityUnderline {

    0%,
    100% {
        transform: scaleX(0.4);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

}


@keyframes csrMobilityDotsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .csr-mobility-section {
        padding: 70px 0;
    }

    .csr-mobility-section .csr-mobility-content {
        padding: 65px 45px;
        min-height: auto;
    }

    .csr-mobility-section .csr-mobility-watermark {
        right: -30px;
        top: 30%;
        font-size: 130px;
        letter-spacing: -5px;
    }

}


@media (max-width: 767px) {

    .csr-mobility-section {
        padding: 55px 0;
    }

    .csr-mobility-section .csr-mobility-content {
        padding: 55px 28px;
    }

    .csr-mobility-section .csr-mobility-text h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .csr-mobility-section .csr-mobility-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .csr-mobility-section .csr-mobility-watermark {
        top: 18%;
        right: -20px;
        font-size: 82px;
        letter-spacing: -3px;
    }

    .csr-mobility-section .csr-mobility-support {
        gap: 8px 12px;
    }

    .csr-mobility-section .csr-mobility-support i {
        width: 18px;
    }

    .csr-mobility-section .csr-mobility-bottom-text {
        gap: 12px 18px;
    }

    .csr-mobility-section .csr-mobility-dots-2 {
        display: none;
    }

}


@media (max-width: 480px) {

    .csr-mobility-section .csr-mobility-content {
        padding: 48px 22px;
    }

    .csr-mobility-section .csr-mobility-text h2 {
        font-size: 31px;
    }

    .csr-mobility-section .csr-mobility-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .csr-mobility-section .csr-mobility-support {
        flex-direction: column;
        align-items: flex-start;
    }

    .csr-mobility-section .csr-mobility-support i {
        width: 1px;
        height: 18px;
        margin-left: 8px;
    }

    .csr-mobility-section .csr-mobility-support i::after {
        top: auto;
        bottom: -2px;
        right: -2px;
    }

}

/* =========================================
   RIGHT VISUAL AREA
========================================= */

.csr-mobility-section .csr-mobility-visual {
    position: relative;

    width: 100%;
    height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}


/* =========================================
   MAIN DIAMOND
========================================= */

.csr-mobility-section .csr-mobility-main-diamond {
    position: relative;

    z-index: 3;

    width: 390px;
    height: 390px;

    overflow: hidden;

    border-radius: 32px;

    transform: rotate(45deg);

    box-shadow:
        0 30px 60px rgba(30, 45, 65, 0.2);

    transition:
        transform 0.8s cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        ),
        box-shadow 0.8s ease;
}


/* =========================================
   MAIN IMAGE
========================================= */

.csr-mobility-section .csr-mobility-main-diamond img {
    display: block;

    width: 100%;
    height: 100%;
    object-fit: cover;
    transform:
        rotate(-45deg)
        scale(1.4);

    transition:
        transform 1s cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        );
}


/* =========================================
   MAIN DIAMOND OVERLAY
========================================= */

.csr-mobility-section .csr-mobility-main-diamond::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            transparent 45%,
            rgba(0, 0, 0, 0.1)
        );
}


/* =========================================
   MAIN IMAGE HOVER
========================================= */

.csr-mobility-section .csr-mobility-visual:hover
.csr-mobility-main-diamond {
    transform:
        rotate(45deg)
        translateY(-10px);

    box-shadow:
        0 40px 75px rgba(30, 45, 65, 0.28);
}



/* =========================================
   FLOATING SHAPE BASE
========================================= */

.csr-mobility-section .csr-mobility-floating-shape {
    position: absolute;

    z-index: 2;

    width: 92px;
    height: 92px;

    border-radius: 18px;

    transform: rotate(45deg);

    transition:
        transform 0.7s ease;

    animation:
        csrMobilityFloat 6s ease-in-out infinite;
}


/* =========================================
   SHAPE 01 - DARK BLUE
========================================= */

.csr-mobility-section .csr-mobility-shape-1 {
    top: 65px;
    left: 15px;

    background:
        linear-gradient(
            135deg,
            #142d4b,
            #263b55
        );

    animation-delay: 0s;
}


/* =========================================
   SHAPE 02 - OUTLINE
========================================= */

.csr-mobility-section .csr-mobility-shape-2 {
    top: 40px;
    right: 60px;

    width: 82px;
    height: 82px;

    background: transparent;

    border: 2px solid #344154;

    animation-delay: 1s;
}


/* =========================================
   SHAPE 03 - ORANGE
========================================= */

.csr-mobility-section .csr-mobility-shape-3 {
    top: 165px;
    right: 0;

    width: 105px;
    height: 105px;

    background:
        linear-gradient(
            135deg,
            #ff8c32,
            #f47b20
        );

    box-shadow:
        0 15px 30px rgba(244, 123, 32, 0.2);

    animation-delay: 2s;
}


/* =========================================
   SHAPE 04 - DARK GRAY
========================================= */

.csr-mobility-section .csr-mobility-shape-4 {
    bottom: 60px;
    right: 55px;

    width: 105px;
    height: 105px;

    background:
        linear-gradient(
            135deg,
            #526476,
            #344154
        );

    animation-delay: 3s;
}


/* =========================================
   DOT PATTERN
========================================= */

.csr-mobility-section .csr-mobility-dot-pattern {
    position: absolute;

    top: 25px;
    right: 0;

    z-index: 1;

    width: 150px;
    height: 170px;

    opacity: 0.45;

    background-image:
        radial-gradient(
            circle,
            #7b8794 2px,
            transparent 2px
        );

    background-size: 22px 22px;
}


/* =========================================
   OUTLINE DIAMOND BOTTOM LEFT
========================================= */

.csr-mobility-section .csr-mobility-visual::after {
    content: "";

    position: absolute;

    bottom: 80px;
    left: 25px;

    z-index: 1;

    width: 82px;
    height: 82px;

    border: 2px solid #f47b20;

    border-radius: 16px;

    transform: rotate(45deg);

    animation:
        csrMobilityFloatOutline 7s ease-in-out infinite;
}


/* =========================================
   FLOAT ANIMATION
========================================= */

@keyframes csrMobilityFloat {

    0%,
    100% {
        transform:
            rotate(45deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(45deg)
            translateY(-12px);
    }

}


/* =========================================
   OUTLINE FLOAT ANIMATION
========================================= */

@keyframes csrMobilityFloatOutline {

    0%,
    100% {
        transform:
            rotate(45deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(45deg)
            translateY(-14px);
    }

}
/*CSR Program Progress  */
#progress{
  height: 50vh;
}
/* =========================================
   HEXAGON NETWORK PROGRESS SECTION
========================================= */
.progress-stage-wrapper {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(6, 1fr);
    align-items: start;
    gap: 0;
    z-index: 2;
}

/* =========================================
   CONNECTING LINE
========================================= */

.progress-stage-wrapper::before {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;

    top: 48px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--theme-color) 0%,
            var(--theme-color) 45%,
            var(--theme-color) 45%,
            var(--theme-color) 100%
        );

    z-index: 0;
}


/* Animated Energy Line */

.progress-stage-wrapper::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 3px;
    top: 48px;
    left: 30%;
    background: linear-gradient(90deg, transparent, #ffffff, #ff6d00, transparent);
    filter: blur(1px);
    animation: progress-stage-energy 3s linear infinite;
    z-index: 1;
}


/* =========================================
   STAGE ITEM
========================================= */

.progress-stage-wrapper .progress-stage-item {
    position: relative;

    text-align: center;

    z-index: 3;

    transition:
        transform 0.35s ease;
}


.progress-stage-wrapper .progress-stage-item:hover {
    transform: translateY(-8px);
}


/* =========================================
   HEXAGON NODE
========================================= */

.progress-stage-node {
    position: relative;

    width: 96px;
    height: 96px;

    margin:
        0 auto 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #6d7586;

    font-size: 18px;
    font-weight: 700;

    background: #ffffff;

    border: 2px solid #d9deea;

    clip-path:
        polygon(
            25% 6.7%,
            75% 6.7%,
            100% 50%,
            75% 93.3%,
            25% 93.3%,
            0% 50%
        );

    transition:
        all 0.4s ease;

    box-shadow:
        0 10px 25px
        rgba(20, 30, 60, 0.08);
}


/* =========================================
   COMPLETED STAGE
========================================= */

.progress-stage-wrapper .progress-stage-item.completed
.progress-stage-node {
    color: #ffffff;
    background: var(--theme-color);
    border-color: var(--theme-color);
    box-shadow: 0 10px 30px
        rgba(244, 123, 32, 0.28);
}


.progress-stage-wrapper .progress-stage-check {
    font-size: 32px;
    font-weight: 600;
}


/* =========================================
   ACTIVE STAGE
========================================= */

.progress-stage-wrapper .progress-stage-item.active
.progress-stage-node {
    color: #ffffff;

    background:
        var(--theme-color);

    border-color:var(--theme-color);

    transform: scale(1.18);

    box-shadow:
        0 0 0 8px
        rgba(113, 82, 255, 0.08),

        0 0 0 16px
        rgba(113, 82, 255, 0.05),

        0 20px 50px
        rgba(87, 52, 255, 0.40);

    animation:
        progress-stage-pulse
        2s infinite ease-in-out;
}


/* Rotating Glow */

.progress-stage-wrapper .progress-stage-item.active
.progress-stage-node::before {
    content: "";

    position: absolute;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    border:
        2px dashed
        rgba(113, 82, 255, 0.45);

    animation:
        progress-stage-rotate
        10s linear infinite;
}


/* Inner Light */

.progress-stage-wrapper .progress-stage-item.active
.progress-stage-node::after {
    content: "";

    position: absolute;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.25),
            transparent
        );

    filter: blur(8px);

    animation:
        progress-stage-light
        2s ease-in-out infinite;
}


/* =========================================
   CONTENT
========================================= */

.progress-stage-wrapper .progress-stage-wrapper .progress-stage-content {
    position: relative;

    max-width: 210px;

    margin: auto;
}


.progress-stage-wrapper .progress-stage-number {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #9aa2b2;
}


.progress-stage-wrapper .progress-stage-content h4 {
    margin-bottom: 10px;

    font-size: 14px;

    font-weight: 700;

    color: #252b38;
}


.progress-stage-wrapper .progress-stage-content p {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: #7a8393;
}


/* Active Content */

.progress-stage-wrapper .progress-stage-item.active
.progress-stage-number {
    color: #6d4cff;
}


.progress-stage-wrapper .progress-stage-item.active
.progress-stage-wrapper .progress-stage-content h4 {
    color: #5936db;
}


/* =========================================
   STATUS BADGE
========================================= */

.progress-stage-wrapper .progress-stage-status {
    display: inline-flex;

    align-items: center;

    margin-top: 14px;

    padding:
        7px 15px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #ff8b2c,
            #ff6a3d
        );

    box-shadow:
        0 8px 20px
        rgba(255, 116, 48, 0.25);

    animation:
        progress-stage-badge
        1.8s ease-in-out infinite;
}


/* =========================================
   PENDING
========================================= */

.progress-stage-wrapper .progress-stage-item.pending
.progress-stage-node {
    background: #f8f9fc;

    color: #a9b0bd;

    border-color: #dce1ea;
}


.progress-stage-wrapper .progress-stage-item.pending {
    opacity: 0.72;
}


.progress-stage-wrapper .progress-stage-item.pending:hover {
    opacity: 1;
}


/* =========================================
   HOVER EFFECT
========================================= */

.progress-stage-wrapper .progress-stage-item:hover
.progress-stage-node {
    border: none;

    box-shadow:
        0 15px 35px
        rgba(91, 61, 245, 0.18);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes progress-stage-pulse {

    0% {
        transform: scale(1.12);
    }

    50% {
        transform: scale(1.24);
    }

    100% {
        transform: scale(1.12);
    }

}


@keyframes progress-stage-rotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes progress-stage-light {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }

}


@keyframes progress-stage-energy {

    0% {
        transform: translateX(-150px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(350px);
        opacity: 0;
    }

}


@keyframes progress-stage-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

}


@keyframes progress-stage-bgMove {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


@keyframes progress-stage-float {

    0%,
    100% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(-40px, -30px);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .progress-stage-wrapper {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 70px;
    }

    .progress-stage-wrapper::before,
    .progress-stage-wrapper::after {
        display: none;
    }

}


@media (max-width: 767px) {

    .progress-stage-section {
        padding: 70px 0;
    }

    .progress-stage-wrapper {
        grid-template-columns:
            repeat(1, 1fr);

        gap: 50px;
    }

    .progress-stage-wrapper .progress-stage-item {
        display: flex;

        align-items: center;

        text-align: left;

        gap: 25px;
    }

    .progress-stage-wrapper .progress-stage-node {
        flex-shrink: 0;

        width: 75px;
        height: 75px;

        margin: 0;
    }

    .progress-stage-wrapper .progress-stage-content {
        max-width: 100%;
        margin: 0;
    }

    .progress-stage-wrapper .progress-stage-item.active
    .progress-stage-node {
        transform: scale(1.05);
    }

    .progress-stage-wrapper .progress-stage-item:hover {
        transform:
            translateX(5px);
    }

}
/*CSR Program Progress  */

/* Gallery */
/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(255, 126, 31, 0.08),
            transparent 28%
        ),
        #f7f8fa;
}


/* Decorative Background Circle */

.gallery-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(27, 71, 119, 0.06);
    border-radius: 50%;
    top: -300px;
    right: -150px;
    pointer-events: none;
}


.gallery-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(231, 120, 45, 0.08);
    border-radius: 50%;
    bottom: -450px;
    left: -250px;
    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.gallery-section .gallery-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}


.gallery-section .gallery-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #e7782d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.gallery-section .gallery-subtitle::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #e7782d;
}


.gallery-section .gallery-heading h2 {
    margin: 0;
    color: #172536;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}


.gallery-section .gallery-heading h2 span {
    color: #e7782d;
    font-weight: 400;
    font-style: italic;
}


.gallery-section .gallery-heading p {
    max-width: 620px;
    margin: 22px 0 0;
    color: #687382;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-section .gallery-grid {
    position: relative;
    z-index: 2;
}


.gallery-section .gallery-item {
    position: relative;
    display: block;
    width: 100%;
    min-height: 290px;
    overflow: hidden;
    border-radius: 6px;
    background: #e5e8eb;
    text-decoration: none;
}


.gallery-section .gallery-item-large {
    min-height: 600px;
}


/* =========================================
   IMAGE
========================================= */

.gallery-section .gallery-item img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1),
        filter 0.5s ease;
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.gallery-section .gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    opacity: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(16, 31, 48, 0.02) 20%,
            rgba(16, 31, 48, 0.88) 100%
        );

    transition: opacity 0.4s ease;
}


.gallery-section .gallery-content {
    transform: translateY(25px);

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1);
}


.gallery-section .gallery-content h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 600;
}


.gallery-section .gallery-content span {
    color: rgba(255, 255, 255, 0.75);

    font-size: 13px;

    letter-spacing: 0.4px;
}


/* =========================================
   HOVER EFFECT
========================================= */

.gallery-section .gallery-item:hover img {
    transform: scale(1.08);

    filter: brightness(0.85);
}


.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.gallery-section .gallery-item:hover .gallery-content {
    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gallery-section {
        padding: 80px 0;
    }


    .gallery-section .gallery-heading {
        margin-bottom: 45px;
    }


    .gallery-section .gallery-item-large {
        min-height: 450px;
    }

}


@media (max-width: 767px) {

    .gallery-section {
        padding: 65px 0;
    }


    .gallery-section .gallery-heading h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }


    .gallery-section .gallery-item,
    .gallery-section .gallery-item-large {
        min-height: 320px;
    }


    .gallery-section .gallery-overlay {
        padding: 22px;
    }


    .gallery-section .gallery-content h3 {
        font-size: 20px;
    }

}
/* Gallery */

/* Mentor Network */
/* ========================================
   MENTORS SECTION
======================================== */

.mentors-section {
    position: relative;
    padding: 80px 0;

    overflow: hidden;
}


/* Grid */

.mentors-section .mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* ========================================
   CARD
======================================== */

.mentors-section .mentor-card {
    position: relative;
    min-height: 330px;
    padding: 34px 20px 26px;
   background: radial-gradient(circle at 85% 15%, rgba(83, 96, 113, 0.9) 0%, rgba(43, 53, 66, 0.5) 30%, transparent 55%), radial-gradient(circle at 15% 100%, rgba(40, 55, 70, 0.6) 0%, transparent 50%), #111820;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    isolation: isolate;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Hover */

.mentors-section .mentor-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.28);
}


/* ========================================
   GEOMETRIC ACCENT
======================================== */

.mentors-section .mentor-accent {
    position: absolute;
    top: 0;
    left: 0;

    width: 72px;
    height: 100%;

    clip-path: polygon(
        0 0,
        100% 24%,
        55% 50%,
        100% 76%,
        0 100%
    );

    z-index: -1;

    opacity: 0.9;

    transition:
        width 0.5s ease,
        opacity 0.4s ease;
}


.mentors-section .mentor-card:hover .mentor-accent {
    width: 105px;
    opacity: 1;
}


/* ========================================
   BLUE
======================================== */

.mentors-section .mentor-blue .mentor-accent {
    background:
        linear-gradient(
            180deg,
            #3578ff 0%,
            #1547b8 100%
        );

    box-shadow:
        20px 0 45px rgba(53, 120, 255, 0.35);
}


/* ========================================
   ORANGE
======================================== */

.mentors-section .mentor-orange .mentor-accent {
    background:
        linear-gradient(
            180deg,
            #ffad28 0%,
            #f06b00 100%
        );

    box-shadow:
        20px 0 45px rgba(255, 145, 20, 0.35);
}


/* ========================================
   CYAN
======================================== */

.mentors-section .mentor-cyan .mentor-accent {
    background:
        linear-gradient(
            180deg,
            #23d9df 0%,
            #007f9a 100%
        );

    box-shadow:
        20px 0 45px rgba(35, 217, 223, 0.35);
}


/* ========================================
   PINK
======================================== */

.mentors-section .mentor-pink .mentor-accent {
    background: linear-gradient(180deg, #ff4b4b 0%, #c30000 100%);
    box-shadow: 20px 0 45px rgb(255 75 75 / 35%);
}


/* ========================================
   MENTOR IMAGE
======================================== */

.mentors-section .mentor-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;

    border: 4px solid rgba(255, 255, 255, 0.95);

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


.mentors-section .mentor-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.mentors-section .mentor-card:hover .mentor-image {
    transform: scale(1.06);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.45);
}


.mentors-section .mentor-card:hover .mentor-image img {
    transform: scale(1.08);
}


/* ========================================
   CONTENT
======================================== */

.mentors-section .mentor-content {
    position: relative;
    z-index: 2;
}


.mentors-section .mentor-content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;

    letter-spacing: 0.2px;
}


.mentors-section .mentor-content p {
    max-width: 180px;
    min-height: 45px;
    margin: 0 auto 18px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.6;
}


/* ========================================
   LINKEDIN BUTTON
======================================== */

.mentors-section .mentor-linkedin {
    width: 36px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.18);

    text-decoration: none;

    backdrop-filter: blur(8px);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.mentors-section .mentor-linkedin i {
    font-size: 18px;
}


.mentors-section .mentor-linkedin:hover {
    color: #ffffff;
    background: #0a66c2;

    transform: translateY(-4px) scale(1.08);
}


/* ========================================
   SUBTLE BACKGROUND EFFECT
======================================== */

.mentors-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    border: 1px solid rgb(40 70 110 / 18%);
    box-shadow: 0 0 0 60px rgb(40 70 110 / 15%), 0 0 0 120px rgb(40 70 110 / 10%), 0 0 0 180px rgb(40 70 110 / 5%);
    pointer-events: none;
    z-index: -1;
}
.mentors-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -150px;
    border-radius: 50%;
    border: 1px solid rgb(40 70 110 / 18%);
    box-shadow: 0 0 0 60px rgb(40 70 110 / 15%), 0 0 0 120px rgb(40 70 110 / 10%), 0 0 0 180px rgb(40 70 110 / 5%);
    pointer-events: none;
    z-index: -1;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1199px) {

    .mentors-section .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .mentors-section {
        padding: 60px 0;
    }

    .mentors-section .mentors-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mentors-section .mentor-card {
        min-height: 300px;
        padding: 30px 20px 25px;
    }

}
/* Mentor Network */

/* Flagship Event */
/* =========================================================
   SUMMIT ABOUT SECTION
========================================================= */

.summit-about-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 119, 31, 0.07) 0%,
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(99, 102, 241, 0.08) 0%,
            transparent 32%
        ),
        #f8f9fc;
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.summit-about-section .summit-about-content {
    position: relative;
    z-index: 3;
    margin: auto;
    text-align: center;
}

/* =========================================================
   LABEL
========================================================= */

.summit-about-section .summit-about-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 18px;

    color: #e96f1f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.summit-about-section .summit-about-label span {
    width: 55px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #f47c2c
    );
}

.summit-about-section
.summit-about-label span:last-child {
    background: linear-gradient(
        90deg,
        #f47c2c,
        transparent
    );
}

/* =========================================================
   HEADING
========================================================= */

.summit-about-section h2 {
    margin: 0 auto 30px;

    color: #1f2a44;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.summit-about-section
.summit-about-orange {
    color: #f47b20;
    position: relative;
}

.summit-about-section
.summit-about-orange::after {
    content: "";
    position: absolute;

    left: 4px;
    right: 4px;
    bottom: -3px;

    height: 5px;

    background: rgba(244, 123, 32, 0.15);

    border-radius: 20px;

    z-index: -1;

    transform: scaleX(0);

    transform-origin: left;

    animation:
        summitAboutUnderline 1.2s ease forwards 0.8s;
}

.summit-about-section .summit-about-purple {
    display: inline-block;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #7c3aed
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    animation:
        summitAboutPulse 1.2s ease-in-out infinite;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.summit-about-section
.summit-about-description {
    max-width: 1040px;
    margin: auto;
}

.summit-about-section
.summit-about-description p {
    margin: 0 auto 22px;

    color: #596273;

    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
}

.summit-about-section
.summit-about-description p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   TEXT HIGHLIGHTS
========================================================= */

.summit-about-section
.summit-about-description strong {
    color: #253047;
    font-weight: 700;
}

.summit-about-section
.summit-about-highlight {
    color: #e96f1f !important;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(244, 123, 32, 0.08),
            rgba(124, 58, 237, 0.05)
        );

    padding: 1px 5px;

    border-radius: 4px;
}

/* =========================================================
   LEFT CONTOUR WAVE
========================================================= */

.summit-about-section
.summit-about-bg-wave {
    position: absolute;

    pointer-events: none;

    opacity: 0.75;

    z-index: 1;
}

.summit-about-section
.summit-about-wave-left {
    width: 420px;
    height: 280px;

    left: -70px;
    bottom: -80px;

    background:
        repeating-radial-gradient(
            ellipse at 50% 0%,
            transparent 0px,
            transparent 15px,
            rgba(244, 123, 32, 0.32) 16px,
            transparent 18px
        );

    transform:
        rotate(-8deg);

    animation:
        summitAboutWaveLeft 12s ease-in-out infinite;
}

/* =========================================================
   RIGHT CONTOUR WAVE
========================================================= */

.summit-about-section
.summit-about-wave-right {
    width: 370px;
    height: 250px;

    right: -90px;
    top: 40px;

    background:
        repeating-radial-gradient(
            ellipse at 50% 100%,
            transparent 0px,
            transparent 14px,
            rgba(244, 123, 32, 0.28) 15px,
            transparent 17px
        );

    transform:
        rotate(8deg);

    animation:
        summitAboutWaveRight 14s ease-in-out infinite;
}

/* =========================================================
   DOT PATTERN
========================================================= */

.summit-about-section
.summit-about-dots {
    position: absolute;

    width: 160px;
    height: 160px;

    z-index: 1;

    opacity: 0.5;

    background-image:
        radial-gradient(
            circle,
            #f47b20 1.5px,
            transparent 1.7px
        );

    background-size:
        15px 15px;

    animation:
        summitAboutDots 8s ease-in-out infinite;
}

.summit-about-section
.summit-about-dots-top {
    right: 9%;
    top: 35px;
}

.summit-about-section
.summit-about-dots-bottom {
    left: 10%;
    bottom: 25px;

    opacity: 0.22;
}

/* =========================================================
   EXTRA BACKGROUND GLOW
========================================================= */

.summit-about-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124, 58, 237, 0.08),
            transparent 70%
        );

    filter: blur(20px);

    animation:
        summitAboutGlow 8s ease-in-out infinite;

    pointer-events: none;
}

.summit-about-section::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.35),
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, 0.25)
        );
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes summitAboutUnderline {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


@keyframes summitAboutPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}


@keyframes summitAboutWaveLeft {

    0%,
    100% {
        transform:
            rotate(-8deg)
            translateX(0)
            translateY(0);
    }

    50% {
        transform:
            rotate(-5deg)
            translateX(25px)
            translateY(-12px);
    }

}


@keyframes summitAboutWaveRight {

    0%,
    100% {
        transform:
            rotate(8deg)
            translateX(0)
            translateY(0);
    }

    50% {
        transform:
            rotate(4deg)
            translateX(-20px)
            translateY(15px);
    }

}


@keyframes summitAboutDots {

    0%,
    100% {
        transform:
            translateY(0);
        opacity: 0.35;
    }

    50% {
        transform:
            translateY(-12px);
        opacity: 0.65;
    }

}


@keyframes summitAboutGlow {

    0%,
    100% {
        transform:
            translateX(-50%)
            scale(1);
        opacity: 0.5;
    }

    50% {
        transform:
            translateX(-50%)
            scale(1.2);
        opacity: 1;
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .summit-about-section {
        padding: 80px 0;
    }

    .summit-about-section h2 {
        font-size: 48px;
    }

    .summit-about-section
    .summit-about-description {
        max-width: 90%;
    }

}


@media (max-width: 767px) {

    .summit-about-section {
        padding: 65px 0;
    }

    .summit-about-section h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .summit-about-section
    .summit-about-label {
        font-size: 11px;
        letter-spacing: 1.3px;
        gap: 10px;
    }

    .summit-about-section
    .summit-about-label span {
        width: 30px;
    }

    .summit-about-section
    .summit-about-description {
        max-width: 100%;
    }

    .summit-about-section
    .summit-about-description p {
        font-size: 15px;
        line-height: 1.75;
    }

    .summit-about-section
    .summit-about-wave-left {
        width: 260px;
        height: 200px;

        left: -120px;
    }

    .summit-about-section
    .summit-about-wave-right {
        width: 220px;
        height: 180px;

        right: -120px;
    }

    .summit-about-section
    .summit-about-dots {
        width: 100px;
        height: 100px;

        background-size:
            13px 13px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .summit-about-section *,
    .summit-about-section::before {
        animation: none !important;
        transition: none !important;
    }

}

/* =========================================================
   EVENT DETAILS START
========================================================= */

.summit-about-section
.summit-about-event-details {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* max-width: 1050px; */
    margin: 45px auto 0;
    border-top: 1px solid rgba(31, 42, 68, 0.1);
    border-left: 1px solid rgba(31, 42, 68, 0.1);
    background: rgba(255, 255, 255, 0.38);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 50px rgba(31, 42, 68, 0.05);
}


/* Event Item */

.summit-about-section
.summit-about-event-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 30px;
    text-align: left;
    border-right: 1px solid rgba(31, 42, 68, 0.1);
    border-bottom: 1px solid rgba(31, 42, 68, 0.1);
    transition: background 0.35s ease;
}

.summit-about-section
.summit-about-event-item:hover {
    background: linear-gradient(
        135deg,
        rgba(244, 123, 32, 0.08),
        rgba(124, 58, 237, 0.04)
    );
}


/* Event Icon */

.summit-about-section
.summit-about-event-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f47b20;
    font-size: 19px;
    border-radius: 50%;
    background: rgba(244, 123, 32, 0.08);
    border: 1px solid rgba(244, 123, 32, 0.15);
    transition: all 0.4s ease;
}

.summit-about-section
.summit-about-event-item:hover
.summit-about-event-icon {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #f47b20,
        #e65d10
    );
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(244, 123, 32, 0.28);
}


/* Event Content */

.summit-about-section
.summit-about-event-info {
    flex: 1;
}

.summit-about-section
.summit-about-event-label {
    display: block;
    margin-bottom: 5px;
    color: #9098a6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.summit-about-section
.summit-about-event-info h3,
.summit-about-section
.summit-about-event-info h4 {
    margin: 0;
    color: #273249;
    font-weight: 700;
    line-height: 1.4;
}

.summit-about-section
.summit-about-event-info h3 {
    font-size: 19px;
}

.summit-about-section
.summit-about-event-info h3 strong {
    color: #f47b20;
}

.summit-about-section
.summit-about-event-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.summit-about-section
.summit-about-event-info sup {
    font-size: 9px;
}


/* =========================================================
   EVENT DETAILS RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .summit-about-section
    .summit-about-event-details {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .summit-about-section
    .summit-about-event-item {
        padding: 20px;
        gap: 14px;
    }

    .summit-about-section
    .summit-about-event-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .summit-about-section
    .summit-about-event-info h3 {
        font-size: 17px;
    }

    .summit-about-section
    .summit-about-event-info h4 {
        font-size: 14px;
    }

}


/* =========================================================
   EVENT DETAILS END
========================================================= */

.summit-counter{
  background: #001945;
}
.summit-counter .common-title h2{
  color: #fff;
}
.summit-counter.lab-section .feature-item h3 span{
 color: #fff;
}
.summit-counter.lab-section .feature-item p{
  color: #aeaeae;
}
.summit-counter.lab-counter::before {
    background: repeating-radial-gradient(ellipse at center, #ffffff00 0, #ffffff00 22px, rgb(255 255 255 / 12%) 23px, rgb(255 255 255 / 12%) 25px, #ffffff00 26px, #ffffff00 50px);
    opacity: 0.3;
}
.summit-counter.lab-counter::after {
    background: repeating-radial-gradient(ellipse at center, #ffffff00 0, transparent 28px, rgb(255 255 255 / 5%) 29px, rgb(255 255 255 / 5%) 31px, #ffffff00 32px, #ffffff00 62px);
    opacity: 0.5;
}
.summit-counter.lab-section .lab-features {
    grid-template-columns: repeat(5, 1fr);
}
.summit-counter.lab-section .feature-item:not(:last-child)::after {
    background: linear-gradient(to bottom, #ffffff00, rgb(255 255 255 / 35%), #ffffff00);
}
/* Flagship Event */


/* =========================================================
   OBJECTIVES SECTION START
========================================================= */

.objectives-section {
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
    /* background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%); */
}


/* =========================================================
   CONTENT
========================================================= */

.objectives-section .objectives-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   NUMBER BADGE
========================================================= */

.objectives-section .objectives-number-badge {
    position: absolute;
    top: 0;
    left: 0;

    width: 72px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 25px;
    font-weight: 700;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #2e1b75,
            #6d45d8
        );

    box-shadow:
        0 12px 25px
        rgba(77, 46, 160, 0.18);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.objectives-section .objectives-heading {
    text-align: center;
    margin-bottom: 70px;
}


.objectives-section .objectives-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}


.objectives-section .objectives-title span {
    width: 74px;
    height: 2px;

    display: block;

    background:
        linear-gradient(
            90deg,
            transparent,
            #000
        );
}


.objectives-section .objectives-title span:last-child {
    background:
        linear-gradient(
            90deg,
            #000,
            transparent
        );
}


.objectives-section .objectives-title h2 {
    margin: 0;

    color:var(--title-color);

    font-size: 56px;
    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.objectives-section .objectives-heading p {
    margin: 24px 0 0;
}


.objectives-section .objectives-heading p strong {
    color: #4d399d;
    font-weight: 700;
}


/* =========================================================
   OBJECTIVES JOURNEY
========================================================= */

.objectives-section .objectives-journey {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 0;

    width: 100%;
}


/* =========================================================
   OBJECTIVE ITEM
========================================================= */

.objectives-section .objectives-item {
    position: relative;

    min-width: 0;

    text-align: center;
}


/* =========================================================
   STEP / CHEVRON
========================================================= */

.objectives-section .objectives-step {
    position: relative;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #c94e08 0%, #e57734 50%, #ffffff 100%);
    clip-path: polygon(
            0 0,
            calc(100% - 28px) 0,
            100% 50%,
            calc(100% - 28px) 100%,
            0 100%,
            28px 50%
        );
    transition: transform 0.4s ease,
        filter 0.4s ease;
}


/* First Step */

.objectives-section .objectives-item:first-child
.objectives-step {
    clip-path:
        polygon(
            0 0,
            calc(100% - 28px) 0,
            100% 50%,
            calc(100% - 28px) 100%,
            0 100%
        );
}


/* Last Step */

.objectives-section .objectives-item:last-child
.objectives-step {
    clip-path:
        polygon(
            0 0,
            calc(100% - 28px) 0,
            100% 50%,
            calc(100% - 28px) 100%,
            0 100%,
            28px 50%
        );
}


/* =========================================================
   CONNECTOR
========================================================= */

.objectives-section .objectives-connector {
    position: relative;

    width: 1px;
    height: 60px;

    margin: 0 auto;
 transition: transform 0.4s ease;
    background:
        linear-gradient(to bottom, #f47b20, #ffffff);
}


.objectives-section .objectives-connector span {
    position: absolute;

    width: 22px;
    height: 22px;

    left: 50%;
    bottom: -11px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
       linear-gradient(135deg, #cb4f08, #f2771e);

    box-shadow:
        0 5px 15px
        rgba(75, 45, 170, 0.25);
}


/* =========================================================
   OBJECTIVE TEXT
========================================================= */

.objectives-section .objectives-text {
    max-width: 230px;
    margin: 35px auto 0;
    color: #293245;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.objectives-section .objectives-item:hover .objectives-step {
    transform:
        translateY(-8px);

    filter:
        drop-shadow(
            0 15px 15px
            rgba(80, 50, 170, 0.2)
        );
       
}

.objectives-section .objectives-item:hover .objectives-connector {
    transform:
        translateY(-8px);
}


.objectives-section .objectives-item:hover
.objectives-text {
    color: var(--theme-color-3);

    transform:
        translateY(-3px);
}


/* =========================================================
   BACKGROUND DOTS
========================================================= */

.objectives-section .objectives-dots {
    position: absolute;

    width: 180px;
    height: 180px;

    opacity: 0.55;

    background-image:
        radial-gradient(
            #947ee2 1.5px,
            transparent 1.5px
        );

    background-size: 18px 18px;
}


.objectives-section .objectives-dots-top {
    top: -10px;
    right: 0;
}


.objectives-section .objectives-dots-bottom {
    left: 0;
    bottom: 40px;

    transform:
        rotate(90deg);
}


/* =========================================================
   BACKGROUND WAVES
========================================================= */

.objectives-section .objectives-wave {
    position: absolute;

    width: 500px;
    height: 180px;

    opacity: 0.3;

    pointer-events: none;
}


.objectives-section .objectives-wave::before,
.objectives-section .objectives-wave::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    border:
        1px solid
        rgba(121, 91, 220, 0.35);

    border-radius:
        50% 50% 0 0;

    transform:
        rotate(-10deg);
}


.objectives-section .objectives-wave::after {
    transform:
        translateY(20px)
        rotate(-10deg);

    opacity: 0.6;
}


.objectives-section .objectives-wave-left {
    left: -180px;
    bottom: -120px;

    transform:
        rotate(15deg);
}


.objectives-section .objectives-wave-right {
    right: -180px;
    bottom: -100px;

    transform:
        rotate(-15deg);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .objectives-section {
        padding: 90px 0;
    }


    .objectives-section .objectives-journey {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        row-gap: 55px;
    }


    .objectives-section .objectives-item:nth-child(4) {
        grid-column: 1 / 2;
    }


    .objectives-section .objectives-text {
        font-size: 16px;
        line-height: 1.7;
    }

}


@media (max-width: 991px) {

    .objectives-section .objectives-number-badge {
        position: relative;

        margin-bottom: 45px;
    }


    .objectives-section .objectives-heading {
        margin-bottom: 55px;
    }


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


    .objectives-section .objectives-heading p {
        font-size: 19px;
    }


    .objectives-section .objectives-step {
        height: 75px;

        font-size: 28px;
    }

}


@media (max-width: 767px) {

    .objectives-section {
        padding: 70px 0;
    }


    .objectives-section .objectives-number-badge {
        width: 60px;
        height: 54px;

        font-size: 21px;

        margin: 0 auto 35px;
    }


    .objectives-section .objectives-title {
        gap: 14px;
    }


    .objectives-section .objectives-title span {
        width: 35px;
    }


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


    .objectives-section .objectives-heading p {
        font-size: 16px;
        line-height: 1.7;

        margin-top: 18px;
    }


    .objectives-section .objectives-heading {
        margin-bottom: 45px;
    }


    .objectives-section .objectives-journey {
        grid-template-columns: 1fr;

        gap: 30px;

        max-width: 400px;

        margin: auto;
    }


    .objectives-section .objectives-step {
        height: 70px;

        margin: 0;

        font-size: 25px;
    }


    .objectives-section .objectives-connector {
        height: 35px;
    }


    .objectives-section .objectives-text {
        max-width: 100%;

        margin-top: 28px;

        font-size: 16px;

        line-height: 1.7;
    }


    .objectives-section .objectives-wave {
        width: 350px;
        height: 120px;
    }

}


/* =========================================================
   OBJECTIVES SECTION END
========================================================= */

/* ==========================================
   INAUGURAL SESSION SECTION START
========================================== */

.inaugural-session {
    --orange: #f47b20;
    --orange-light: #ff9b4d;
    --dark: #050b16;
    --dark-light: #0d1728;

    position: relative;

    padding: 90px 0 90px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #030711 0%,
            #091321 50%,
            #040811 100%
        );

    isolation: isolate;
}


/* ==========================================
   BACKGROUND IMAGE START
========================================== */

.inaugural-session .inaugural-session-bg {
    position: absolute;

    inset: -40px;

    z-index: -5;

    background-image: var(--inaugural-bg);

    background-size: cover;

    background-position: center;

    transform: scale(1.08);

    will-change: transform;

    animation:
        inauguralSessionZoom 18s ease-in-out infinite alternate;
}


/* ==========================================
   BACKGROUND IMAGE END
========================================== */


/* ==========================================
   DARK OVERLAY START
========================================== */

.inaugural-session .inaugural-session-overlay {
    position: absolute;

    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(3, 8, 18, 0.94) 0%,
            rgba(4, 10, 21, 0.78) 40%,
            rgba(5, 10, 20, 0.58) 70%,
            rgba(2, 6, 14, 0.88) 100%
        );
}


/* Additional Overlay */

.inaugural-session::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -3;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(244, 123, 32, 0.06),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            rgba(3, 7, 15, 0.25),
            rgba(3, 7, 15, 0.85)
        );

    pointer-events: none;
}


/* ==========================================
   DARK OVERLAY END
========================================== */


/* ==========================================
   INNER CONTENT
========================================== */

.inaugural-session .inaugural-session-inner {
    position: relative;

    z-index: 5;

    max-width: 1250px;

    margin: auto;
}


/* ==========================================
   HEADING START
========================================== */

.inaugural-session .inaugural-session-heading {
    position: relative;

    text-align: center;

    margin-bottom: 55px;
}


.inaugural-session .inaugural-session-heading h2 {
    position: relative;

    z-index: 2;

    margin: 0;

    color: #ffffff;

    font-size: clamp(52px, 3vw, 88px);

    font-weight: 700;

    line-height: 1;

    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35);
}


.inaugural-session .inaugural-session-heading h2 strong {
    color: var(--orange);

    font-weight: 700;

    text-shadow:
        0 0 25px rgba(244, 123, 32, 0.25);
}


/* ==========================================
   HEADING LINE
========================================== */




.inaugural-session .inaugural-session-heading-line i {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 15px rgba(244, 123, 32, 0.9),
        0 0 30px rgba(244, 123, 32, 0.45);

    animation:
        inauguralSessionPulse 2s ease-in-out infinite;
}


/* ==========================================
   HEADING GLOW
========================================== */

.inaugural-session .inaugural-session-heading-glow {
    width: 250px;
    height: 3px;

    margin: 22px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--orange),
            #ffffff,
            var(--orange),
            transparent
        );

    box-shadow:
        0 0 20px rgba(244, 123, 32, 0.65);

    animation:
        inauguralSessionLineGlow 3s ease-in-out infinite;
}


/* ==========================================
   HEADING END
========================================== */


/* ==========================================
   CONTENT PANEL START
========================================== */

.inaugural-session .inaugural-session-content {
    position: relative;

    display: flex;

    gap: 38px;

    padding: 42px 65px 50px 85px;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(8, 16, 30, 0.78),
            rgba(9, 16, 29, 0.55)
        );

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    overflow: hidden;
}


/* Panel Glow */

.inaugural-session .inaugural-session-content::before {
    content: "";

    position: absolute;

    top: -100px;
    left: 25%;

    width: 350px;
    height: 180px;

    background:
        radial-gradient(
            ellipse,
            rgba(244, 123, 32, 0.11),
            transparent 70%
        );

    filter: blur(15px);

    pointer-events: none;
}


/* ==========================================
   CONTENT PANEL END
========================================== */


/* ==========================================
   TIMELINE START
========================================== */

.inaugural-session .inaugural-session-timeline {
    position: absolute;

    top: 44px;
    bottom: 55px;
    left: 36px;

    width: 20px;
}


.inaugural-session .inaugural-session-timeline-line {
    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--orange) 10%,
            rgba(244, 123, 32, 0.45) 90%,
            transparent
        );
}


/* Timeline Points */

.inaugural-session .inaugural-session-point {
    position: absolute;

    left: 50%;

    width: 10px;
    height: 10px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(244, 123, 32, 0.13),
        0 0 15px rgba(244, 123, 32, 0.8),
        0 0 35px rgba(244, 123, 32, 0.35);

    animation:
        inauguralSessionPointGlow 2.5s ease-in-out infinite;
}


.inaugural-session .inaugural-session-point-one {
    top: 0;
}


.inaugural-session .inaugural-session-point-two {
    top: 48%;

    animation-delay: 0.5s;
}


.inaugural-session .inaugural-session-point-three {
    bottom: 0;

    animation-delay: 1s;
}


/* ==========================================
   TIMELINE END
========================================== */


/* ==========================================
   TEXT CONTENT START
========================================== */

.inaugural-session .inaugural-session-text {
    width: 100%;
}


.inaugural-session .inaugural-session-block {
    position: relative;

    padding: 0 0 28px;

    margin-bottom: 26px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    opacity: 0;

    transform:
        translateY(25px);

    animation:
        inauguralSessionContentReveal 0.8s ease forwards;
}


.inaugural-session .inaugural-session-block:nth-child(1) {
    animation-delay: 0.2s;
}


.inaugural-session .inaugural-session-block:nth-child(2) {
    animation-delay: 0.45s;
}


.inaugural-session .inaugural-session-block:nth-child(3) {
    animation-delay: 0.7s;

    padding-bottom: 0;

    margin-bottom: 0;

    border-bottom: 0;
}


.inaugural-session .inaugural-session-block p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;
}


.inaugural-session .inaugural-session-block strong {
    color: #ffffff;

    font-weight: 600;
}


.inaugural-session .inaugural-session-block span {
    color: var(--orange-light);

    font-weight: 500;
}


/* ==========================================
   TEXT CONTENT END
========================================== */


/* ==========================================
   SIDE GLOW START
========================================== */

.inaugural-session .inaugural-session-glow {
    position: absolute;

    width: 300px;
    height: 600px;

    z-index: -1;

    pointer-events: none;

    opacity: 0.7;

    filter: blur(25px);
}


.inaugural-session .inaugural-session-glow-left {
    top: 18%;
    left: -190px;

    background:
        radial-gradient(
            ellipse,
            rgba(244, 123, 32, 0.4),
            transparent 68%
        );
}


.inaugural-session .inaugural-session-glow-right {
    top: 10%;
    right: -190px;

    background:
        radial-gradient(
            ellipse,
            rgba(244, 123, 32, 0.35),
            transparent 70%
        );
}


/* ==========================================
   SIDE GLOW END
========================================== */





/* ==========================================
   FLOATING PARTICLES START
========================================== */

.inaugural-session .inaugural-session-particles span {
    position: absolute;

    z-index: 1;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 10px rgba(244, 123, 32, 0.9),
        0 0 25px rgba(244, 123, 32, 0.4);

    animation:
        inauguralSessionParticle 5s ease-in-out infinite;
}


.inaugural-session .inaugural-session-particles span:nth-child(1) {
    top: 12%;
    left: 9%;
}


.inaugural-session .inaugural-session-particles span:nth-child(2) {
    top: 28%;
    left: 5%;

    animation-delay: 1s;
}


.inaugural-session .inaugural-session-particles span:nth-child(3) {
    top: 9%;
    right: 8%;

    animation-delay: 2s;
}


.inaugural-session .inaugural-session-particles span:nth-child(4) {
    top: 25%;
    right: 13%;

    animation-delay: 0.5s;
}


.inaugural-session .inaugural-session-particles span:nth-child(5) {
    bottom: 12%;
    left: 10%;

    animation-delay: 1.5s;
}


.inaugural-session .inaugural-session-particles span:nth-child(6) {
    bottom: 7%;
    right: 15%;

    animation-delay: 2.5s;
}


.inaugural-session .inaugural-session-particles span:nth-child(7) {
    top: 55%;
    left: 4%;

    animation-delay: 3s;
}


.inaugural-session .inaugural-session-particles span:nth-child(8) {
    top: 60%;
    right: 5%;

    animation-delay: 0.8s;
}


.inaugural-session .inaugural-session-particles span:nth-child(9) {
    top: 17%;
    left: 22%;

    animation-delay: 2.2s;
}


.inaugural-session .inaugural-session-particles span:nth-child(10) {
    bottom: 20%;
    right: 25%;

    animation-delay: 1.3s;
}


.inaugural-session .inaugural-session-particles span:nth-child(11) {
    top: 35%;
    left: 17%;

    animation-delay: 3.5s;
}


.inaugural-session .inaugural-session-particles span:nth-child(12) {
    bottom: 30%;
    right: 8%;

    animation-delay: 2.8s;
}


/* ==========================================
   FLOATING PARTICLES END
========================================== */


/* ==========================================
   BOTTOM CURVE START
========================================== */

.inaugural-session .inaugural-session-bottom-curve {
    position: absolute;

    bottom: -180px;
    left: 50%;

    width: 120%;
    height: 260px;

    transform:
        translateX(-50%);

    border:
        2px solid rgba(244, 123, 32, 0.55);

    border-radius: 50% 50% 0 0;

    box-shadow:
        0 -8px 30px rgba(244, 123, 32, 0.12),
        0 -3px 18px rgba(124, 58, 237, 0.18);

    pointer-events: none;
}


/* ==========================================
   BOTTOM CURVE END
========================================== */


/* ==========================================
   KEYFRAMES START
========================================== */

@keyframes inauguralSessionZoom {

    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.16);
    }

}


@keyframes inauguralSessionPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);

        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) scale(1.7);

        opacity: 1;
    }

}


@keyframes inauguralSessionLineGlow {

    0%,
    100% {
        opacity: 0.45;

        transform: scaleX(0.75);
    }

    50% {
        opacity: 1;

        transform: scaleX(1);
    }

}


@keyframes inauguralSessionPointGlow {

    0%,
    100% {
        transform:
            translateX(-50%)
            scale(1);

        box-shadow:
            0 0 0 4px rgba(244, 123, 32, 0.12),
            0 0 10px rgba(244, 123, 32, 0.7);
    }

    50% {
        transform:
            translateX(-50%)
            scale(1.45);

        box-shadow:
            0 0 0 9px rgba(244, 123, 32, 0.06),
            0 0 25px rgba(244, 123, 32, 1);
    }

}


@keyframes inauguralSessionParticle {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);

        opacity: 0.35;
    }

    50% {
        transform:
            translateY(-18px)
            scale(1.7);

        opacity: 1;
    }

}


@keyframes inauguralSessionContentReveal {

    0% {
        opacity: 0;

        transform:
            translateY(25px);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* ==========================================
   KEYFRAMES END
========================================== */


/* ==========================================
   RESPONSIVE START
========================================== */

@media (max-width: 1199px) {

    .inaugural-session {
        min-height: auto;

        padding: 80px 0 90px;
    }

    .inaugural-session .inaugural-session-content {
        padding:
            40px 45px 50px 75px;
    }

    .inaugural-session .inaugural-session-block p {
        font-size: 17px;
    }

}


@media (max-width: 991px) {

    .inaugural-session {
        padding: 70px 0 85px;
    }

    .inaugural-session .inaugural-session-heading {
        margin-bottom: 40px;
    }

    .inaugural-session .inaugural-session-heading-line span {
        width: 100px;
    }

    .inaugural-session .inaugural-session-content {
        padding:
            35px 35px 50px 65px;
    }

    .inaugural-session .inaugural-session-arc {
        opacity: 0.4;
    }

}


@media (max-width: 767px) {

    .inaugural-session {
        padding: 65px 0 80px;
    }

    .inaugural-session .inaugural-session-bg {
        background-position: center;
    }

    .inaugural-session .inaugural-session-heading h2 {
        letter-spacing: -1.5px;
    }

    .inaugural-session .inaugural-session-heading-line {
        display: none;
    }

    .inaugural-session .inaugural-session-heading-glow {
        width: 170px;
    }

    .inaugural-session .inaugural-session-content {
        display: block;

        padding:
            32px 25px 50px 48px;

        border-radius: 18px;
    }

    .inaugural-session .inaugural-session-timeline {
        left: 20px;

        top: 38px;
        bottom: 60px;
    }

    .inaugural-session .inaugural-session-block {
        padding-bottom: 25px;

        margin-bottom: 25px;
    }

    .inaugural-session .inaugural-session-block p {
        font-size: 16px;

        line-height: 1.7;
    }

    .inaugural-session .inaugural-session-arc {
        width: 150px;

        height: 500px;

        opacity: 0.35;
    }

    .inaugural-session .inaugural-session-arc-left {
        left: -110px;
    }

    .inaugural-session .inaugural-session-arc-right {
        right: -110px;
    }

}


@media (max-width: 480px) {

    .inaugural-session .inaugural-session-heading h2 {
        font-size: 44px;
    }

    .inaugural-session .inaugural-session-content {
        padding:
            28px 20px 45px 42px;
    }

    .inaugural-session .inaugural-session-timeline {
        left: 16px;
    }

    .inaugural-session .inaugural-session-block p {
        font-size: 15px;
    }

}

/* ==========================================
   INAUGURAL SESSION SECTION END
========================================== */
.traning-program .faq-accordion .accordion-item{
  border-radius: 0;

}
.traning-program .faq-accordion .accordion-item .accordion-header .accordion-button{
  color: var(--theme-color-3);  
      font-size: 20px;
     
}
.traning-program .faq-accordion .accordion-item .accordion-header{
 position: relative;
 overflow: hidden;
}
.traning-program .faq-accordion .accordion-item .accordion-header::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--theme-color-3);
    border-radius: 50%;
}
.traning-program .faq-accordion .accordion-item .accordion-header .accordion-button.collapsed{
  color: var(--theme-color);
}

.traning-program .faq-accordion .accordion-item .accordion-header .accordion-button .icon{
  min-width: 32px;
  max-width: 32px;
}


.incubated-years .c-tabs-wrapper .nav-tabs{
  justify-content: center;
}




.incubated-startup-gallery .innovation-growth-content{
  text-align: center;
  margin-bottom: 50px;
}
.incubated-startup-gallery.innovation-growth-section .innovation-growth-heading h2 span{
  display: inline-block;
}
.incubated-startup-gallery.innovation-growth-section .innovation-growth-bottom-line{
  margin: auto;
  margin-top: 40px;
}
.incubated-startup-gallery.innovation-growth-section .innovation-growth-image{
   clip-path:initial;
   flex: 0.2;
   animation: innovation-growth-image-float2 6s ease-in-out infinite;
   border-radius: 10px;
   opacity: 0.3;
}
.incubated-startup-gallery.innovation-growth-section .innovation-growth-image.active{
   clip-path:initial;
   flex: 1;
   opacity: 1;
}

/* =========================================
   STARTUP JOURNEY SECTION
========================================= */

.startup-journey-section {
    position: relative;
    padding: 0;
    overflow: hidden;
        background: radial-gradient(circle at 15% 15%, rgba(43, 156, 162, 0.10), transparent 26%), radial-gradient(circle at 85% 35%, rgba(79, 111, 205, 0.10), transparent 25%), linear-gradient(135deg, #fbfcff 0%, #f4f6fb 50%, #eef1f9 100%);
}

.startup-journey-section .startup-journey-wrapper {
    position: relative;
    min-height: 1040px;
    overflow: hidden;
    padding: 60px 50px 80px;
    
}


/* =========================================
   BACKGROUND GRID
========================================= */

.startup-journey-section .startup-journey-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(80, 105, 160, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(80, 105, 160, 0.04) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}


/* =========================================
   BACKGROUND DOTS
========================================= */

.startup-journey-section .startup-journey-dots {
    position: absolute;
    width: 160px;
    height: 160px;
    pointer-events: none;

    background-image:
        radial-gradient(
            circle,
            rgba(75, 94, 165, 0.4) 2px,
            transparent 2px
        );

    background-size: 18px 18px;

    animation: journeyDotsFloat 8s ease-in-out infinite;
}

.startup-journey-section .dots-1 {
    top: 30px;
    left: 30px;
}

.startup-journey-section .dots-2 {
    top: 90px;
    right: 30px;
    animation-delay: -4s;
}


/* =========================================
   FLOWING BACKGROUND WAVES
========================================= */

.startup-journey-section .startup-journey-wave {
    position: absolute;
    width: 500px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(70, 100, 190, 0.10);
    pointer-events: none;
}

.startup-journey-section .wave-1 {
    top: -170px;
    right: -80px;

    box-shadow:
        0 0 0 25px rgba(70, 100, 190, 0.025),
        0 0 0 50px rgba(70, 100, 190, 0.02),
        0 0 0 75px rgba(70, 100, 190, 0.015);

    animation: journeyWaveMove 12s ease-in-out infinite;
}

.startup-journey-section .wave-2 {
    width: 550px;
    height: 240px;
    bottom: -130px;
    left: -150px;

    box-shadow:
        0 0 0 25px rgba(40, 155, 165, 0.025),
        0 0 0 50px rgba(40, 155, 165, 0.02),
        0 0 0 75px rgba(40, 155, 165, 0.015);

    animation:
        journeyWaveMove 15s ease-in-out infinite reverse;
}


/* =========================================
   MOUNTAIN BACKGROUND
========================================= */

.startup-journey-section .startup-journey-mountains {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 360px;
    opacity: 0.16;
    overflow: hidden;
    pointer-events: none;
}

.startup-journey-section .startup-journey-mountains span {
    position: absolute;
    bottom: -100px;
    width: 500px;
    height: 350px;

    background:
        linear-gradient(
            135deg,
            transparent 50%,
            #8294bd 50%
        );

    transform: rotate(45deg);
}

.startup-journey-section .startup-journey-mountains span:nth-child(1) {
    left: -100px;
}

.startup-journey-section .startup-journey-mountains span:nth-child(2) {
    left: 35%;
    bottom: -160px;
    transform: rotate(45deg) scale(1.25);
}

.startup-journey-section .startup-journey-mountains span:nth-child(3) {
    right: -150px;
    transform: rotate(45deg) scale(1.15);
}


/* =========================================
   HEADING
========================================= */

.startup-journey-section .startup-journey-heading {
    position: relative;
    z-index: 10;
    text-align: center;
}

.startup-journey-section .startup-journey-heading h2 {
    margin: 0;
    color: #17223b;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}

.startup-journey-section .startup-journey-heading-line {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}

.startup-journey-section .startup-journey-heading-line span {
    width: 42px;
    height: 4px;
    border-radius: 20px;
}

.startup-journey-section
.startup-journey-heading-line span:nth-child(1) {
    background: #249ca3;
}

.startup-journey-section
.startup-journey-heading-line span:nth-child(2) {
    background: #416ecb;
}

.startup-journey-section
.startup-journey-heading-line span:nth-child(3) {
    background: #7740c6;
}

.startup-journey-section
.startup-journey-heading-line span:nth-child(4) {
    background: #f47b20;
}


/* =========================================
   FLOW AREA
========================================= */

.startup-journey-section .startup-journey-flow {
    position: relative;
    z-index: 5;
    height: 730px;
}


/* =========================================
   JOURNEY CARDS
========================================= */

.startup-journey-section .startup-journey-card {
    position: absolute;
    width: 32%;
    min-height: 290px;
    padding: 28px 34px 30px;

    background:
        rgba(255, 255, 255, 0.80);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 26px;

    box-shadow:
        0 20px 50px rgba(31, 50, 95, 0.10);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.startup-journey-section .startup-journey-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 28px 65px rgba(31, 50, 95, 0.18);
}


/* =========================================
   CARD POSITIONS
========================================= */

.startup-journey-section .card-01 {
    top: 60px;
    left: 4%;
}

.startup-journey-section .card-02 {
    top: 125px;
    right: 8%;
}

.startup-journey-section .card-03 {
    top: 485px;
    left: 15%;
}

.startup-journey-section .card-04 {
    top: 535px;
    right: 16%;
}


/* =========================================
   CARD COLORS
========================================= */

.startup-journey-section .card-01 {
    border-color: rgba(33, 158, 164, 0.55);
}

.startup-journey-section .card-02 {
    border-color: rgba(57, 104, 204, 0.55);
}

.startup-journey-section .card-03 {
    border-color: rgba(119, 64, 198, 0.55);
}

.startup-journey-section .card-04 {
    border-color: rgba(244, 123, 32, 0.60);
}


/* =========================================
   CARD TOP
========================================= */

.startup-journey-section .journey-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}


/* =========================================
   NUMBER
========================================= */

.startup-journey-section .journey-number {
    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(30, 40, 70, 0.12);
}

.startup-journey-section .card-01 .journey-number {
    background: linear-gradient(135deg, #148d96, #28b9b7);
}

.startup-journey-section .card-02 .journey-number {
    background: linear-gradient(135deg, #2f5fc1, #5288e7);
}

.startup-journey-section .card-03 .journey-number {
    background: linear-gradient(135deg, #6937ba, #9a68e6);
}

.startup-journey-section .card-04 .journey-number {
    background: linear-gradient(135deg, #ef6811, #ff9a43);
}


/* =========================================
   ICON
========================================= */

.startup-journey-section .journey-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 12px 28px rgba(31, 50, 95, 0.10);
}

.startup-journey-section .journey-icon i {
    font-size: 28px;
}

.startup-journey-section .card-01 .journey-icon i {
    color: #1c9ca3;
}

.startup-journey-section .card-02 .journey-icon i {
    color: #3869c7;
}

.startup-journey-section .card-03 .journey-icon i {
    color: #7946c9;
}

.startup-journey-section .card-04 .journey-icon i {
    color: #f47b20;
}


/* =========================================
   TEXT
========================================= */

.startup-journey-section .startup-journey-card h3 {
    margin: 0 0 14px;

    color: #26364d;

    font-size: 20px;
    font-weight: 700;

    text-transform: uppercase;
}

.startup-journey-section .startup-journey-card p {
    margin: 0;

    color: #647087;

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================
   BOTTOM ACCENT LINE
========================================= */

.startup-journey-section .journey-card-line {
    width: 90px;
    height: 4px;

    margin-top: 22px;

    border-radius: 10px;
}

.startup-journey-section .card-01 .journey-card-line {
    background: #1a9ba2;
}

.startup-journey-section .card-02 .journey-card-line {
    background: #416fc9;
}

.startup-journey-section .card-03 .journey-card-line {
    background: #7741c5;
}

.startup-journey-section .card-04 .journey-card-line {
    background: #f47b20;
}


/* =========================================
   JOURNEY PATH
========================================= */

.startup-journey-section .startup-journey-path {
    position: absolute;

    top: 235px;
    left: 5%;
    right: 5%;
    bottom: 100px;

    z-index: 2;

    pointer-events: none;
}


/* =========================================
   CURVED PATH LINES
========================================= */

.startup-journey-section .path-line {
    position: absolute;

    height: 180px;

    border-top:
        6px dashed rgba(94, 110, 145, 0.38);

    border-radius: 50%;

    transform-origin: center;
}

.startup-journey-section .path-line-1 {
    width: 36%;
    left: 25%;
    top: 0;

    transform: rotate(18deg);
}

.startup-journey-section .path-line-2 {
    width: 38%;
    left: 27%;
    top: 180px;

    transform: rotate(-30deg);
}

.startup-journey-section .path-line-3 {
    width: 35%;
    right: 4%;
    bottom: 0;

    transform: rotate(12deg);
}


/* =========================================
   PATH NODES
========================================= */

.startup-journey-section .path-node {
    position: absolute;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.5),
        0 10px 25px rgba(30, 40, 80, 0.15);

    animation: journeyNodePulse 2.8s ease-in-out infinite;
}

.startup-journey-section .node-1 {
    top: 20px;
    left: 38%;
    background: #229ba2;
}

.startup-journey-section .node-2 {
    top: 135px;
    left: 59%;
    background: #416fc9;
    animation-delay: -0.7s;
}

.startup-journey-section .node-3 {
    bottom: 165px;
    left: 42%;
    background: #7741c5;
    animation-delay: -1.4s;
}

.startup-journey-section .node-4 {
    bottom: 50px;
    right: 10%;
    background: #f47b20;
    animation-delay: -2.1s;
}


/* =========================================
   MOVING DOTS
========================================= */

.startup-journey-section .journey-moving-dot {
    position: absolute;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.45),
        0 0 18px currentColor;
}

.startup-journey-section .dot-animation-1 {
    color: #229ba2;
    background: #229ba2;
    animation: journeyMoveOne 5s linear infinite;
}

.startup-journey-section .dot-animation-2 {
    color: #7741c5;
    background: #7741c5;
    animation: journeyMoveTwo 6s linear infinite;
}

.startup-journey-section .dot-animation-3 {
    color: #f47b20;
    background: #f47b20;
    animation: journeyMoveThree 7s linear infinite;
}


/* =========================================
   DESTINATION
========================================= */

.startup-journey-section .startup-journey-destination {
    position: absolute;

    right: 5%;
    bottom: 100px;

    z-index: 5;

    text-align: center;
}

.startup-journey-section .destination-pin {
    font-size: 65px;
    color: #f47b20;

    animation:
        destinationFloat 3s ease-in-out infinite;

    filter:
        drop-shadow(
            0 12px 20px rgba(244, 123, 32, 0.25)
        );
}

.startup-journey-section .destination-pin i {
    display: block;
}

.startup-journey-section .startup-journey-destination span {
    display: block;

    width: 85px;
    height: 18px;

    margin: -3px auto 0;

    border-radius: 50%;

    border:
        2px solid rgba(80, 100, 145, 0.20);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes journeyDotsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


@keyframes journeyWaveMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -15px);
    }

}


@keyframes journeyNodePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 8px rgba(255, 255, 255, 0.5),
            0 10px 25px rgba(30, 40, 80, 0.15);
    }

    50% {
        transform: scale(1.18);
        box-shadow:
            0 0 0 15px rgba(255, 255, 255, 0.2),
            0 10px 30px rgba(30, 40, 80, 0.20);
    }

}


@keyframes journeyMoveOne {

    0% {
        top: 20px;
        left: 30%;
    }

    50% {
        top: 120px;
        left: 58%;
    }

    100% {
        top: 20px;
        left: 30%;
    }

}


@keyframes journeyMoveTwo {

    0% {
        top: 220px;
        left: 55%;
    }

    50% {
        top: 410px;
        left: 35%;
    }

    100% {
        top: 220px;
        left: 55%;
    }

}


@keyframes journeyMoveThree {

    0% {
        bottom: 90px;
        right: 32%;
    }

    50% {
        bottom: 40px;
        right: 10%;
    }

    100% {
        bottom: 90px;
        right: 32%;
    }

}


@keyframes destinationFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px) {

    .startup-journey-section
    .startup-journey-wrapper {
        min-height: 1050px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .startup-journey-section
    .startup-journey-card {
        width: 38%;
    }

    .startup-journey-section .card-01 {
        left: 2%;
    }

    .startup-journey-section .card-02 {
        right: 2%;
    }

    .startup-journey-section .card-03 {
        left: 8%;
    }

    .startup-journey-section .card-04 {
        right: 8%;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .startup-journey-section
    .startup-journey-wrapper {
        min-height: auto;
        padding: 55px 25px 70px;
    }

    .startup-journey-section
    .startup-journey-heading h2 {
        font-size: 38px;
    }

    .startup-journey-section
    .startup-journey-flow {
        height: auto;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 80px 30px;

        margin-top: 80px;
    }

    .startup-journey-section
    .startup-journey-card {
        position: relative !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;

        width: 100%;
    }

    .startup-journey-section
    .startup-journey-path {
        display: none;
    }

    .startup-journey-section
    .startup-journey-destination {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .startup-journey-section {
        padding: 50px 0;
    }

    .startup-journey-section
    .startup-journey-wrapper {
        padding: 45px 15px 60px;
    }

    .startup-journey-section
    .startup-journey-heading h2 {
        font-size: 29px;
    }

    .startup-journey-section
    .startup-journey-heading-line {
        margin-top: 15px;
    }

    .startup-journey-section
    .startup-journey-heading-line span {
        width: 28px;
    }

    .startup-journey-section
    .startup-journey-flow {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 50px;
    }

    .startup-journey-section
    .startup-journey-card {
        min-height: auto;
        padding: 25px;
        border-radius: 20px;
    }

    .startup-journey-section
    .journey-number {
        width: 58px;
        height: 58px;

        font-size: 22px;
    }

    .startup-journey-section
    .journey-icon {
        width: 62px;
        height: 62px;
    }

    .startup-journey-section
    .journey-icon i {
        font-size: 24px;
    }

    .startup-journey-section
    .startup-journey-card h3 {
        font-size: 18px;
    }

    .startup-journey-section
    .startup-journey-card p {
        font-size: 14px;
    }

}



/* Pitching Section */
/* =========================================================
   PITCHING OVERVIEW SECTION
========================================================= */

.pitching-overview-section {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 35%,
            rgba(105, 63, 205, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 55%,
            rgba(244, 123, 32, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8f8ff 50%,
            #fffaf7 100%
        );
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.pitching-overview-section
.pitching-bg-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    filter: blur(20px);

    pointer-events: none;
}


.pitching-overview-section
.pitching-bg-glow-left {
    left: -300px;
    top: 25%;

    background:
        radial-gradient(
            circle,
            rgba(103, 57, 205, 0.14),
            transparent 65%
        );

    animation:
        pitchingGlowMove 12s ease-in-out infinite;
}


.pitching-overview-section
.pitching-bg-glow-right {
    right: -300px;
    top: 35%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.13),
            transparent 65%
        );

    animation:
        pitchingGlowMove 15s ease-in-out infinite reverse;
}


/* =========================================================
   BACKGROUND DOTS
========================================================= */

.pitching-overview-section
.pitching-bg-dots {
    position: absolute;

    width: 170px;
    height: 170px;

    opacity: .45;

    pointer-events: none;

    background-image:
        radial-gradient(
            circle,
            rgba(105, 60, 205, .45) 2px,
            transparent 2px
        );

    background-size: 18px 18px;

    animation:
        pitchingDotsFloat 8s ease-in-out infinite;
}


.pitching-overview-section
.pitching-bg-dots-left {
    top: 20px;
    left: 20px;
}


.pitching-overview-section
.pitching-bg-dots-right {
    right: 20px;
    bottom: 80px;

    background-image:
        radial-gradient(
            circle,
            rgba(244, 123, 32, .45) 2px,
            transparent 2px
        );

    animation-delay: -4s;
}


/* =========================================================
   FLOATING CIRCLES
========================================================= */

.pitching-overview-section
.pitching-floating-shape {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(105, 63, 205, .13);

    pointer-events: none;

    animation:
        pitchingShapeFloat 8s ease-in-out infinite;
}


.pitching-overview-section
.pitching-shape-1 {
    width: 60px;
    height: 60px;

    top: 20%;
    left: 8%;
}


.pitching-overview-section
.pitching-shape-2 {
    width: 35px;
    height: 35px;

    top: 30%;
    right: 10%;

    border-color:
        rgba(244, 123, 32, .2);

    animation-delay: -2s;
}


.pitching-overview-section
.pitching-shape-3 {
    width: 90px;
    height: 90px;

    bottom: 18%;
    right: 5%;

    border-color:
        rgba(244, 123, 32, .12);

    animation-delay: -4s;
}


/* =========================================================
   HEADING
========================================================= */

.pitching-overview-section
.pitching-overview-heading {
    position: relative;

    z-index: 5;

    text-align: center;

    margin-bottom: 45px;
}


.pitching-overview-section
.pitching-overview-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #6134c5;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.pitching-overview-section
.pitching-overview-label span {
    width: 35px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #6938ca
        );
}


.pitching-overview-section
.pitching-overview-label span:last-child {
    background:
        linear-gradient(
            90deg,
            #f47b20,
            transparent
        );
}


.pitching-overview-section
.pitching-overview-heading h2 {
    margin: 0;

    color: #15213a;

    font-size: 58px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -2px;
}


.pitching-overview-section
.pitching-overview-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #6935c8,
            #f47b20
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.pitching-overview-section
.pitching-heading-decoration {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 20px;
}


.pitching-overview-section
.pitching-heading-decoration i {
    width: 38px;
    height: 4px;

    border-radius: 20px;

    background: #6935c8;
}


.pitching-overview-section
.pitching-heading-decoration i:nth-child(2) {
    width: 10px;
    background: #f47b20;
}


.pitching-overview-section
.pitching-heading-decoration i:nth-child(3) {
    width: 10px;
    background: #f47b20;
}


.pitching-overview-section
.pitching-overview-heading p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #68738a;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MAIN FLOW
========================================================= */

.pitching-overview-section
.pitching-overview-flow {
    position: relative;

    z-index: 10;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 0;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   PITCHING ITEM
========================================================= */

.pitching-overview-section
.pitching-overview-item {
    position: relative;

    flex: 1;

    max-width: 300px;

    text-align: center;

    transition:
        transform .45s ease;
}


.pitching-overview-section
.pitching-overview-item:hover {
    transform: translateY(-10px);
}


/* =========================================================
   LETTER
========================================================= */

.pitching-overview-section
.pitching-letter {
    position: absolute;

    top: -25px;
    left: 50%;

    z-index: 20;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform: translateX(-50%);

    border-radius: 50%;

    color: #fff;

    font-size: 24px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(60, 45, 100, .18);
}


.pitching-overview-section
.pitching-item-purple
.pitching-letter {
    background:
        linear-gradient(
            135deg,
            #7544d1,
            #5422ad
        );
}


.pitching-overview-section
.pitching-item-orange
.pitching-letter {
    background:
        linear-gradient(
            135deg,
            #ff8a2a,
            #f05c08
        );
}


/* =========================================================
   MAIN CIRCLE
========================================================= */

.pitching-overview-section
.pitching-circle {
    position: relative;

    width: 285px;
    height: 285px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 50% 45%,
            #ffffff 0%,
            #fbfbff 65%,
            #f5f3fc 100%
        );

    border:
        1px solid rgba(100, 75, 160, .10);

    box-shadow:
        0 25px 65px rgba(48, 43, 92, .09);

    transition:
        box-shadow .5s ease,
        transform .5s ease;
}


.pitching-overview-section
.pitching-overview-item:hover
.pitching-circle {
    box-shadow:
        0 30px 75px rgba(48, 43, 92, .16);
}


/* =========================================================
   OUTER PROGRESS RING
========================================================= */

.pitching-overview-section
.pitching-progress-ring {
    position: absolute;
    z-index: 0;
    inset: -11px;

    border-radius: 50%;

    border: 2px solid transparent;

    animation:
        pitchingRingRotate 12s linear infinite;
}


/* Purple ring */

.pitching-overview-section
.pitching-item-purple
.pitching-progress-ring {
    background:
        linear-gradient(
            #fff,
            #fff
        ) padding-box,
        conic-gradient(
            from 20deg,
            #6735cc 0deg,
            #6735cc 115deg,
            rgba(103,53,204,.12) 115deg,
            rgba(103,53,204,.12) 235deg,
            #6735cc 235deg,
            #6735cc 290deg,
            transparent 290deg
        ) border-box;
}


/* Orange ring */

.pitching-overview-section
.pitching-item-orange
.pitching-progress-ring {
    background:
        linear-gradient(
            #fff,
            #fff
        ) padding-box,
        conic-gradient(
            from 20deg,
            #f47b20 0deg,
            #f47b20 115deg,
            rgba(244,123,32,.12) 115deg,
            rgba(244,123,32,.12) 235deg,
            #f47b20 235deg,
            #f47b20 290deg,
            transparent 290deg
        ) border-box;
}


/* =========================================================
   PROGRESS DOT
========================================================= */

.pitching-overview-section
.pitching-progress-dot {
    position: absolute;

    top: 42px;
    right: 17px;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    animation:
        pitchingDotPulse 2.2s ease-in-out infinite;
}


.pitching-overview-section
.pitching-item-purple
.pitching-progress-dot {
    background: #6a38cc;

    box-shadow:
        0 0 0 5px rgba(106,56,204,.10),
        0 0 18px rgba(106,56,204,.4);
}


.pitching-overview-section
.pitching-item-orange
.pitching-progress-dot {
    background: #f47b20;

    box-shadow:
        0 0 0 5px rgba(244,123,32,.10),
        0 0 18px rgba(244,123,32,.4);
}




/* =========================================================
   TITLE
========================================================= */

.pitching-overview-section
.pitching-circle h3 {
    position: relative;

    z-index: 2;

    margin: 0;

    color: #17233b;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   MINI LINE
========================================================= */

.pitching-overview-section
.pitching-mini-line {
    width: 38px;
    height: 3px;
position: relative;
    margin: 10px auto 15px;

    border-radius: 20px;
}


.pitching-overview-section
.pitching-item-purple
.pitching-mini-line {
    background: #6735cc;
}


.pitching-overview-section
.pitching-item-orange
.pitching-mini-line {
    background: #f47b20;
}


/* =========================================================
   STATS
========================================================= */

.pitching-overview-section
.pitching-stat-flow {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;

    gap: 13px;
}


.pitching-overview-section
.pitching-stat {
    display: flex;

    flex-direction: column;

    align-items: center;
}


.pitching-overview-section
.pitching-stat strong {
    color: #5d2dc1;

    font-size: 38px;

    line-height: 1;

    font-weight: 700;
}


.pitching-overview-section
.pitching-item-orange
.pitching-stat strong {
    color: #f26712;
}


.pitching-overview-section
.pitching-stat span {
    margin-top: 5px;

    color: #26344d;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   SELECTED NUMBER
========================================================= */

.pitching-overview-section
.pitching-stat-selected {
    position: relative;

    min-width: 86px;
    min-height: 86px;

    padding: 10px;

    border-radius: 50%;

    border:
        1px dashed rgba(104,52,201,.5);

    background:
        rgba(104,52,201,.025);
}


.pitching-overview-section
.pitching-item-orange
.pitching-stat-selected {
    border-color:
        rgba(244,123,32,.5);

    background:
        rgba(244,123,32,.025);
}




/* =========================================================
   ARROW BETWEEN STATS
========================================================= */

.pitching-overview-section
.pitching-stat-arrow {
    position: relative;

    width: 45px;

    display: flex;

    align-items: center;
}


.pitching-overview-section
.pitching-stat-arrow span {
    position: absolute;

    left: 0;
    right: 0;

    top: 38%;

    border-top:
        2px dotted rgba(105,58,200,.55);
}


.pitching-overview-section
.pitching-item-orange
.pitching-stat-arrow span {
    border-color:
        rgba(244,123,32,.55);
}


.pitching-overview-section
.pitching-stat-arrow i {
    position: relative;

    z-index: 2;

    margin-left: auto;

    color: #6735cc;

    font-size: 13px;

    background: #fff;

    padding-left: 4px;
}


.pitching-overview-section
.pitching-item-orange
.pitching-stat-arrow i {
    color: #f47b20;
}


/* =========================================================
   RESULT
========================================================= */

.pitching-overview-section
.pitching-result {
    margin-top: 38px;

    text-align: center;
}


.pitching-overview-section
.pitching-result::before {
    content: "";

    display: block;

    width: 1px;
    height: 30px;

    margin: 0 auto;

    background:
        linear-gradient(
            180deg,
            #6735cc,
            transparent
        );
}


.pitching-overview-section
.pitching-item-orange
.pitching-result::before {
    background:
        linear-gradient(
            180deg,
            #f47b20,
            transparent
        );
}


.pitching-overview-section
.pitching-result span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 0 22px;

    border-radius: 30px;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(75,40,160,.18);
}


.pitching-overview-section
.pitching-item-purple
.pitching-result span {
    background:
        linear-gradient(
            90deg,
            #6534c5,
            #7d4bda
        );
}


.pitching-overview-section
.pitching-item-orange
.pitching-result span {
    background:
        linear-gradient(
            90deg,
            #f15e0b,
            #ff8b2b
        );

    box-shadow:
        0 8px 22px rgba(244,123,32,.18);
}


.pitching-overview-section
.pitching-result p {
    max-width: 220px;

    margin: 14px auto 0;

    color: #5f6c82;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================================
   CONNECTORS BETWEEN CIRCLES
========================================================= */

.pitching-overview-section
.pitching-flow-connector {
    position: relative;

    flex: 0 0 55px;

    height: 285px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 4px;

    z-index: 15;
}


.pitching-overview-section
.pitching-flow-connector span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    animation:
        pitchingConnectorMove 1.8s ease-in-out infinite;
}


.pitching-overview-section
.pitching-connector-purple span {
    background: #6735cc;
}


.pitching-overview-section
.pitching-connector-orange span {
    background: #f47b20;
}


.pitching-overview-section
.pitching-flow-connector span:nth-child(2) {
    animation-delay: .25s;
}


.pitching-overview-section
.pitching-flow-connector span:nth-child(3) {
    animation-delay: .5s;
}


.pitching-overview-section
.pitching-flow-connector::after {
    content: "";

    position: absolute;

    width: 40px;

    border-top: 2px dotted rgba(103,53,204,.35);

    top: 50%;

    z-index: -1;
}


.pitching-overview-section
.pitching-connector-orange::after {
    border-color:
        rgba(244,123,32,.35);
}


/* =========================================================
   BOTTOM WAVES
========================================================= */

.pitching-overview-section
.pitching-bottom-wave {
    position: absolute;

    left: -10%;
    right: -10%;

    bottom: -25px;

    height: 150px;

    pointer-events: none;

    opacity: .55;
}


.pitching-overview-section
.pitching-wave-line {
    position: absolute;

    left: 0;
    right: 0;

    height: 90px;

    border-top: 1px solid;

    border-radius: 50%;

    transform-origin: center;
}


.pitching-overview-section
.wave-line-1 {
    top: 20px;

    border-color:
        rgba(103,53,204,.25);

    transform:
        rotate(2deg)
        scaleY(.7);
}


.pitching-overview-section
.wave-line-2 {
    top: 40px;

    border-color:
        rgba(244,123,32,.22);

    transform:
        rotate(-2deg)
        scaleY(.65);
}


.pitching-overview-section
.wave-line-3 {
    top: 60px;

    border-color:
        rgba(103,53,204,.14);

    transform:
        rotate(3deg)
        scaleY(.55);
}


.pitching-overview-section
.wave-line-4 {
    top: 80px;

    border-color:
        rgba(244,123,32,.13);

    transform:
        rotate(-3deg)
        scaleY(.5);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes pitchingGlowMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -25px);
    }

}


@keyframes pitchingDotsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


@keyframes pitchingShapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(15deg);
    }

}


@keyframes pitchingRingRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes pitchingDotPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }

}


@keyframes pitchingConnectorMove {

    0% {
        transform: scale(.6);
        opacity: .3;
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
    }

    100% {
        transform: scale(.6);
        opacity: .3;
    }

}


/* =========================================================
   LARGE SCREEN
========================================================= */

@media (max-width: 1399px) {

    .pitching-overview-section
    .pitching-circle {
        width: 255px;
        height: 255px;
    }

    .pitching-overview-section
    .pitching-flow-connector {
        flex-basis: 35px;
    }

    .pitching-overview-section
    .pitching-overview-item {
        max-width: 270px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .pitching-overview-section {
        padding: 80px 0 100px;
    }

    .pitching-overview-section
    .pitching-overview-heading h2 {
        font-size: 48px;
    }

    .pitching-overview-section
    .pitching-overview-flow {
        flex-wrap: wrap;

        row-gap: 70px;
    }

    .pitching-overview-section
    .pitching-overview-item {
        flex: 0 0 45%;

        max-width: 330px;
    }

    .pitching-overview-section
    .pitching-flow-connector {
        display: none;
    }

    .pitching-overview-section
    .pitching-circle {
        width: 280px;
        height: 280px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .pitching-overview-section {
        padding: 60px 0 80px;
    }

    .pitching-overview-section
    .pitching-overview-heading {
        margin-bottom: 55px;
    }

    .pitching-overview-section
    .pitching-overview-label {
        font-size: 9px;

        letter-spacing: 1.7px;
    }

    .pitching-overview-section
    .pitching-overview-heading h2 {
        font-size: 36px;

        letter-spacing: -1px;
    }

    .pitching-overview-section
    .pitching-overview-heading p {
        font-size: 14px;

        padding: 0 15px;
    }

    .pitching-overview-section
    .pitching-overview-flow {
        flex-direction: column;

        align-items: center;

        gap: 65px;
    }

    .pitching-overview-section
    .pitching-overview-item {
        flex: none;

        width: 100%;

        max-width: 340px;
    }

    .pitching-overview-section
    .pitching-circle {
        width: 280px;
        height: 280px;
    }

    .pitching-overview-section
    .pitching-result {
        margin-top: 32px;
    }

    .pitching-overview-section
    .pitching-bg-dots {
        opacity: .18;
    }

    .pitching-overview-section
    .pitching-bottom-wave {
        bottom: -10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .pitching-overview-section
    .pitching-overview-heading h2 {
        font-size: 31px;
    }

    .pitching-overview-section
    .pitching-circle {
        width: 260px;
        height: 260px;
    }

    .pitching-overview-section
    .pitching-stat strong {
        font-size: 37px;
    }

    .pitching-overview-section
    .pitching-stat-selected {
        min-width: 68px;
        min-height: 68px;
    }

}
/* Pitching Section */

/* =========================================================
   AIC ABOUT SECTION
========================================================= */

.aic-about-section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(244, 123, 32, 0.08),
            transparent 25%
        ),
        #f7f7f4;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.aic-about-section .aic-about-wrapper {
    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    justify-content: flex-end;
}


/* =========================================================
   IMAGE
========================================================= */

.aic-about-section .aic-about-image {
    position: relative;

    width: 68%;

    margin-left: auto;

    overflow: hidden;

    z-index: 1;

    background: #eeeeee;
}


/* Image */

.aic-about-section .aic-about-image img {
    display: block;

    width: 100%;

    height: auto;

    height: 650px;

    object-fit: cover;

    object-position: top;

    transition:
        transform 1s ease,
        filter 1s ease;
}


/* Image hover */

.aic-about-section
.aic-about-wrapper:hover
.aic-about-image img {
    transform: scale(1.025);

    filter:
        brightness(1.03)
        saturate(1.05);
}


/* =========================================================
   IMAGE TOP LEFT ORANGE CORNER
========================================================= */

.aic-about-section .aic-about-image::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 90px;
    height: 90px;

    border-top: 3px solid #f47b20;

    border-left: 3px solid #f47b20;

    z-index: 3;

    pointer-events: none;
}


/* =========================================================
   IMAGE BOTTOM RIGHT ORANGE CORNER
========================================================= */

.aic-about-section .aic-about-image::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 120px;
    height: 120px;

    border-right: 3px solid #f47b20;

    border-bottom: 3px solid #f47b20;

    z-index: 3;

    pointer-events: none;
}


/* =========================================================
   WHITE CONTENT CARD
========================================================= */

.aic-about-section .aic-about-card {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50%;
    padding: 55px 60px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 30, 50, 0.04);
    box-shadow: 0 30px 80px rgba(30, 35, 50, 0.12);
    transition: transform .5s ease,
        box-shadow .5s ease;
}

/* Card hover */

.aic-about-section
.aic-about-wrapper:hover
.aic-about-card {
    transform:
        translateY(calc(-50% - 6px));

    box-shadow:
        0 38px 90px rgba(30, 35, 50, 0.16);
}


/* =========================================================
   CARD LEFT ORANGE ACCENT
========================================================= */

.aic-about-section .aic-about-card::before {
    content: "";

    position: absolute;

    left: 0;

    top: 48px;

    width: 4px;

    height: 65px;

    background: #f47b20;
}


/* =========================================================
   ABOUT LABEL
========================================================= */

.aic-about-section .aic-about-label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #f47b20;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* Label line */

.aic-about-section .aic-about-label span {
    width: 28px;

    height: 2px;

    background: #f47b20;
}


/* =========================================================
   HEADING
========================================================= */

.aic-about-section .aic-about-card h2 {
    margin: 0;

    color: #202d43;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.2px;
}


/* =========================================================
   HEADING DECORATION
========================================================= */

.aic-about-section .aic-about-title-line {
    position: relative;

    width: 52px;

    height: 3px;

    margin-top: 18px;

    margin-bottom: 27px;

    background: #f47b20;
}


/* Dark secondary line */

.aic-about-section .aic-about-title-line::after {
    content: "";

    position: absolute;

    left: 58px;

    top: 0;

    width: 22px;

    height: 3px;

    background: #202d43;
}


/* =========================================================
   CONTENT TEXT
========================================================= */

.aic-about-section .aic-about-text {
    color: #687386;
    font-size: 14px;
    line-height: 1.85;
    overflow-y: auto;
    height: 250px;
    transition: all 0.5s;
    padding-right: 20px;
}
.aic-about-section .aic-about-text::-webkit-scrollbar {
    width: 5px;
}

.aic-about-section .aic-about-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.aic-about-section .aic-about-text::-webkit-scrollbar-thumb {
    background: #f47b20;
    border-radius: 10px;
}

.aic-about-section .aic-about-text::-webkit-scrollbar-thumb:hover {
    background: #d9630e;
}


/* Paragraph */

.aic-about-section .aic-about-text p {
    margin: 0 0 20px;
    text-align: justify;
}


/* Last paragraph */

.aic-about-section .aic-about-text p:last-child {
    margin-bottom: 0;
}


/* Strong text */

.aic-about-section .aic-about-text strong {
    color: #202d43;

    font-weight: 700;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.aic-about-section .aic-about-highlights {
    display: flex;

    align-items: center;

    gap: 0;

    margin-top: 28px;

    padding-top: 20px;

    border-top: 1px solid #ececec;
}


/* Highlight item */

.aic-about-section .aic-about-highlight-item {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 0 22px;

    color: #26354c;

    font-size: 12px;

    font-weight: 600;

    border-right: 1px solid #e7e7e7;
}


/* First */

.aic-about-section
.aic-about-highlight-item:first-child {
    padding-left: 0;
}


/* Last */

.aic-about-section
.aic-about-highlight-item:last-child {
    border-right: 0;
}


/* Highlight icon */

.aic-about-section
.aic-about-highlight-item i {
    color: #f47b20;

    font-size: 18px;
}


/* =========================================================
   BACKGROUND LARGE CIRCLE
========================================================= */

.aic-about-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -260px;
    top: 80px;

    border:
        1px solid rgba(244, 123, 32, 0.14);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   BACKGROUND RIGHT CIRCLE
========================================================= */

.aic-about-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -160px;
    bottom: -100px;

    border:
        1px solid rgba(244, 123, 32, 0.12);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   FLOATING DOT PATTERN
========================================================= */

.aic-about-section .aic-about-wrapper::before {
    content: "";

    position: absolute;

    right: 2%;

    top: 8%;

    width: 100px;

    height: 100px;

    background-image:
        radial-gradient(
            circle,
            #f47b20 1.5px,
            transparent 1.5px
        );

    background-size: 15px 15px;

    opacity: .25;

    z-index: 0;

    pointer-events: none;

    animation:
        aicAboutDotsFloat 7s ease-in-out infinite;
}


/* =========================================================
   DOT ANIMATION
========================================================= */

@keyframes aicAboutDotsFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-15px);
    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

    .aic-about-section .aic-about-wrapper {
        min-height: 650px;
    }


    .aic-about-section .aic-about-image {
        width: 66%;
    }


    .aic-about-section
    .aic-about-image img {
        min-height: 620px;
    }


    .aic-about-section .aic-about-card {
        width: 57%;

        padding: 48px 52px;
    }


    .aic-about-section
    .aic-about-card h2 {
        font-size: 39px;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .aic-about-section {
        padding: 80px 0;
    }


    .aic-about-section
    .aic-about-wrapper {
        min-height: 620px;
    }


    .aic-about-section
    .aic-about-image {
        width: 65%;
    }


    .aic-about-section
    .aic-about-image img {
        min-height: 590px;
    }


    .aic-about-section
    .aic-about-card {
        width: 60%;

        padding: 42px 45px;
    }


    .aic-about-section
    .aic-about-card h2 {
        font-size: 35px;
    }


    .aic-about-section
    .aic-about-text {
        font-size: 13px;

        line-height: 1.75;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .aic-about-section {
        padding: 70px 0;
    }


    .aic-about-section
    .aic-about-wrapper {
        min-height: auto;

        display: block;
    }


    /* Full image */

    .aic-about-section
    .aic-about-image {
        width: 100%;

        margin: 0;
    }


    .aic-about-section
    .aic-about-image img {
        width: 100%;

        min-height: 500px;

        object-fit: cover;
    }


    /* Overlapping card */

    .aic-about-section
    .aic-about-card {
        position: relative;

        top: auto;

        left: auto;

        transform: none;

        width: calc(100% - 70px);

        margin:
            -100px auto 0;

        min-height: auto;

        padding: 45px;

        z-index: 5;
    }


    .aic-about-section
    .aic-about-wrapper:hover
    .aic-about-card {
        transform:
            translateY(-5px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .aic-about-section {
        padding: 50px 0;
    }


    .aic-about-section
    .aic-about-image img {
        min-height: 380px;

        object-fit: cover;
    }


    /* Orange corner */

    .aic-about-section
    .aic-about-image::before {
        width: 55px;

        height: 55px;

        border-width: 2px;
    }


    .aic-about-section
    .aic-about-image::after {
        width: 65px;

        height: 65px;

        border-width: 2px;
    }


    /* Card */

    .aic-about-section
    .aic-about-card {
        width: calc(100% - 30px);

        margin-top: -55px;

        padding: 35px 25px;
    }


    .aic-about-section
    .aic-about-card::before {
        top: 32px;

        height: 55px;
    }


    /* Label */

    .aic-about-section
    .aic-about-label {
        font-size: 9px;

        letter-spacing: 2px;
    }


    /* Heading */

    .aic-about-section
    .aic-about-card h2 {
        font-size: 31px;

        letter-spacing: -.5px;
    }


    /* Line */

    .aic-about-section
    .aic-about-title-line {
        margin-top: 14px;

        margin-bottom: 20px;
    }


    /* Text */

    .aic-about-section
    .aic-about-text {
        font-size: 13px;

        line-height: 1.75;
    }


    .aic-about-section
    .aic-about-text p {
        margin-bottom: 16px;
    }


    /* Highlights */

    .aic-about-section
    .aic-about-highlights {
        flex-wrap: wrap;

        gap: 15px;

        padding-top: 18px;
    }


    .aic-about-section
    .aic-about-highlight-item {
        padding: 0 15px;

        font-size: 11px;
    }


    .aic-about-section
    .aic-about-highlight-item:first-child {
        padding-left: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .aic-about-section
    .aic-about-image img {
        min-height: 320px;
    }


    .aic-about-section
    .aic-about-card {
        width: calc(100% - 20px);

        margin-top: -45px;

        padding: 30px 20px;
    }


    .aic-about-section
    .aic-about-card h2 {
        font-size: 28px;
    }


    .aic-about-section
    .aic-about-text {
        font-size: 12.5px;
    }


    .aic-about-section
    .aic-about-highlights {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }
    .aic-about-section
    .aic-about-highlight-item {
        padding: 0;

        border-right: 0;
    }

}

.aic-about-section .aic-about-wrapper.left-image{
  justify-content: flex-start;
}
.aic-about-section .aic-about-wrapper.left-image .aic-about-image {
    margin-right: auto;
    margin-left: initial;
}
.aic-about-section .aic-about-wrapper.left-image .aic-about-card {
    left: auto;
    right: 0;
}
/*# sourceMappingURL=main.css.map */


/*responsive*/
@media (max-width: 767px) {
    .top-bar{
        display:none;
    }
    .logo-wrap img {
        width: 100%;
        max-width: 120px;
    }
    .hero-slide-2 {
        height: 50vh;
    }
    .hero-slide-2 .container {
        left: 10px;
        max-width: 90%;
        min-width: 90%;
    }
    .hero-slide-2 img{
        height:100%;
        object-fit:cover;
    }
    .hero-content-2 .join-us .e-primary-btn{
        margin-top:20px;
    }
    .hero-slider-active-2 .hero-slider-pagination-2 {
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        display: none;
    }
    .why-us-section-2 .thumb .outer-inner {
        width: 160px;
        height: 160px;
        /* filter: drop-shadow(1px 1px 6px #666); */
    }
    .why-us-section-2 .thumb {
        height: auto;
        position: relative;
        margin-bottom: 20px;
    }
    .why-us-content .text p{
        text-align:justify;
    }
    .success-story {
        margin-top: -50px;
    }
    .success-story .story-content {
        padding-right: 0;
    }
    .success-story .story-box {
        padding: 20px;
    }
    .story-slider-active {
        margin-bottom: 20px;
    }
    .success-story .quote-icon {
        font-size: 40px;
    }
    .success-story .quote-card p {
        font-size: 17px;
        line-height: 1.3;
        color: #555;
        margin-bottom: 25px;
    }
    .what-we-do-section-2 {
        padding: 80px 10px 80px 10px;
        margin: 0 15px 0;
    }
    .what-we-do-section-2 .section-top-3 .right p {
        color: var(--light-color);
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 20px;
        display: none;
    }
    .startup-journey .m-b-60{
        margin-bottom: 0;
    }
    .startup-journey {
        padding: 40px 0;
    }
    .our-camping-section {
        padding: 50px 0;
    }
    .our-camping-section .row.m-b-xs-40 {
        margin-bottom: 20px;
    }
    .flowchart-section {
        background: #fefefe;
        padding: 40px 0;
    }
    .flowchart-section .m-b-60{
        margin-bottom:10px;
    }
    .dust-recycling-section {
        padding: 40px 0 40px;
    }
    .dust-recycle-card .dust-recycle-top p{
        text-align: justify;
    }
    .dust-recycle-card .dust-recycle-top .services-4 .service-2 {
        width: 100%;
    }
    .testimonial{
        padding:40px 0;
    }
    .testimonial-slider-active {
        overflow: hidden;
        padding-left: 0;
    }
    .btn-layer.startup-product-play a {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
    .testimonial-card {
        padding: 10px;
    }
    .blogs-slider-active .swiper-slide.swiper-slide-active .blog-card-2 {
        transform: scale(1);
        box-shadow: none;
    }
    .blogs-slider-active .swiper{
        padding:0;
    }
    .blogs-slider-active .blogs-button-next{
        right: 10px;
        top: 50%;
    }
    .blogs-slider-active .blogs-button-prev{
        left: 10px;
        top: 50%;
    }
    .form-2 input{
        margin-top:15px;
    }
    .form-2 textarea{
        margin-top:15px;
    }
    .form-2 {
        width: 100%!important;
        margin: 0 auto;
    }
    .footer-section .row.p-b-170{
        padding-bottom:0;
    }
    .footer-section {
        padding: 40px 0 120px;
    }
    .breadcrumb-content {
        height:auto;
        padding: 60px 20px;
        border-radius: 0;
    }
    .aic-about-section .aic-about-image img {
        height: auto;
        min-height: auto;
    }
    .aic-about-section .aic-about-card {
        transform: translateY(0);
        margin-top: 0;
        width: 100%;
    }
    .aic-about-section
        .aic-about-text {
        font-size: 12.5px;
        height: auto;
        padding-right: 0;
    }
    .aic-about-section
        .aic-about-wrapper {
        margin-bottom: 30px;
    }
    .c-tabs-wrapper .timeline-arrow-left{
        left:-6px;
    }
    .c-tabs-wrapper .timeline-arrow-right{
        right:-6px;
    }
    .c-tabs-wrapper .timeline-tabs-scroll {
        width: 80%;
        margin: auto;
    }
    .volunteer-cta-wrap .content-wrap {
        padding-right:0!important;
    }
    .volunteer-cta-wrap .content-wrap .text p{
        text-align:justify;
    }
    .tabmenu-sec {
        top: 60px;
    }
    .lab-section .lab-image {
        height: auto;
        border-radius: 22px;
    }
    .equipment-section .equipment-list {
        display: none;
    }
    .news-letter {
        border-radius: 0;
    }
    .workspace-section .workspace-image {
        height: auto;
    }
    .workspace-section .workspace-image-wrap {
        padding: 0 15px 0 38px;
    }
    .workspace-section .workspace-stat {
        position: relative;
        width: 100%;
    }
    .facilities-glance-section
        .facilities-glance-visual {
        width: 100%;
        height: auto;
        transform: initial;
        margin: 0;
        max-width: initial;
        margin-top: 25px;
    }
    .facilities-glance-section .facilities-glance-image {
        position: static;
        overflow: hidden;
        width: 100%;
        height: auto;
        margin: 10px 0;
        transform: initial;
    }
    .facilities-glance-section .facilities-glance-image img {
        transform: initial;
    }
    .facilities-glance-section .facilities-glance-center{
        display:none;
    }
    .c-tabs-wrapper .nav-tabs {
        margin-bottom: 0;
    }
    .c-tabs-wrapper .timeline-arrow.is-hidden {
        opacity: 1;
        visibility: visible;
        pointer-events: none;
    }
    .startup-profile-section .startup-logo-area {
        min-height: auto;
        padding: 10px;
        position: static;
        margin-bottom: 30px;
    }
    .startup-profile-section .info-icon {
        flex: 0 0 33px;
        width: 33px;
        height: 33px;
        font-size: 15px;
        border-radius: 8px;
    }
    .detail-page.startup-profile-section .startup-logo-area {
        transform: initial;
        width: 40%;
    }
    .startup-profile-section .startup-title {
        width: 100%;
    }
    .detail-page.startup-profile-section .startup-info {
        width: auto;
    }
    .startup-profile-section {
        padding-bottom: 20px;
    }
    .about-section .about-description{
        max-width: max-content;
        margin: 0;
    }
    .about-section .about-description p {
        text-align:justify;
    }
    .carousel-container .nav-arrow {
        background: var(--theme-color-3);
        color: var(--white-color);
        width: 50px;
        height: 50px;
        font-size: 21px;
        border-radius: 50%;
    }
    .team-height {
        position: relative;
        height: 700px;
        overflow: hidden;
    }
    .innovation-growth-section .innovation-growth-gallery {
        height: auto;
        display: grid;
        gap: 10px;
    }
    .incubated-startup-gallery.innovation-growth-section .innovation-growth-image.active {
        clip-path: initial;
        flex: initial;
        opacity: 1; 
    }
    .incubated-startup-gallery.innovation-growth-section .innovation-growth-image {
        clip-path: initial;
        flex: initial;
        animation: innovation-growth-image-float2 6s ease-in-out infinite;
        border-radius: 10px;
        opacity: 1;
    }
    .innovation-growth-section .innovation-growth-image {
        flex: initial;
    }
    .stage-step h4 {
        font-size: 14px;
    }
    .get-work-one__video-btn {
        position: absolute;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
        width: 50%;
        height: 200px;
        border-radius: 50%;
        opacity: 0.2;
    }
    
}
/*responsive*/

