/* @import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&amp;display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #ebb949;
  --theme-2: #144d2a;
  --header: #122F2A;
  --text: #667471;
  --text-2: #252522;
  --border: #C9C9C9;
  --bg: #F8F3E7;
  --bg-2: #122F2A;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--theme-2);
  color: var(--white);
  font-size: 15px;

  font-weight: 400;
  text-transform: capitalize;
  padding: 10px 16px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow: hidden;
  border-radius: 100px;
  z-index: 1;
  font-family: Nunito;
}

.theme-btn i {
  margin-left: 8px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.theme-btn::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 33px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.theme-btn:hover {
  color: var(--header);
  background-color: transparent;
}

.theme-btn:hover i {
  transform: rotate(0);
}

.theme-btn:hover::before {
  height: 380%;
}

.link-btn {
  font-weight: 600;
  font-size: 16px;
  color: var(--theme-2);
  text-transform: capitalize;
  font-family: DM Serif Tex;
}

.link-btn i {
  margin-left: 8px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.link-btn:hover {
  color: var(--theme);
}

.link-btn:hover i {
  transform: rotate(0deg);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  /* text-transform: capitalize; */
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather Sans", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  /* text-transform: capitalize; */
}

h1 {
  font-size: 96px;
  font-weight: 400;
  line-height: 114%;
}
@media(width >= 1300px){
#mobile-menu {
    display: block !important;
}
}
@media (max-width: 1899px) {
  h1 {
    font-size: 70px;
  }
}

@media (max-width: 1600px) {
  h1 {
    font-size: 80px;
  }
}

@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 112%;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 131%;
}

@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 141%;
}

@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.about-wrapper .about-content .text {
  max-width: 645px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .text {
    margin-bottom: 30px;
  }
}

.about-wrapper .about-content .about-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-wrapper .about-content .about-icon-item {
    flex-wrap: wrap;
  }
}

.about-wrapper .about-content .about-icon-item .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.about-wrapper .about-content .about-icon-item .content p {
  max-width: 565px;
}

.about-wrapper .about-content .about-icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}

.about-wrapper .about-content .about-bottom {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-bottom {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper .about-content .about-bottom .info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-wrapper .about-item {
  margin-left: 215px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-item {
    margin-left: 0;
  }
}

.about-wrapper .about-item .about-image {
  max-width: 420px;
  position: relative;
}

@media (max-width: 1399px) {
  .about-wrapper .about-item .about-image {
    max-width: initial;
  }
}

.about-wrapper .about-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper .about-item .about-image .shape {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1399px) {
  .about-wrapper .about-item .about-image .shape {
    display: none;
  }
}

.about-wrapper .about-item .about-image .about-image-2 {
  position: absolute;
  max-width: 300px;
  left: -180px;
  top: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-item .about-image .about-image-2 {
    max-width: 250px;
    top: 0;
    left: 0;
  }
}

.about-wrapper .about-item .about-image .about-image-3 {
  position: absolute;
  max-width: 360px;
  left: -190px;
  bottom: -90px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-item .about-image .about-image-3 {
    max-width: 250px;
    bottom: 0;
    left: 0;
  }
}

.about-wrapper-2 .about-left-item .text {
  margin-top: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-left-item .text {
    margin-bottom: 30px;
  }
}

.about-wrapper-2 .about-left-item .about-image {
  position: relative;
}

.about-wrapper-2 .about-left-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px 0 20px 20px;
}

.about-wrapper-2 .about-right-item .about-image {
  margin-left: -25px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-item .about-image {
    margin-left: 0;
  }
}

.about-wrapper-2 .about-right-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 20px 0;
}

.about-wrapper-2 .about-right-item .about-icon-main-item {
  margin-top: 40px;
  margin-left: 10px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-item .about-icon-main-item {
    margin-left: 0;
    margin-top: 30px;
  }
}

.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item {
    margin-bottom: 30px;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item {
    gap: 40px;
  }
}

.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item h5 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item h5:hover {
  color: var(--theme);
}

.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item p {
  max-width: 179px;
}

.about-wrapper-2 .about-right-item .about-icon-main-item .about-icon-item .icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}

.about-wrapper-3 .about-content .text {
  max-width: 624px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.about-wrapper-3 .about-content .about-box {
  display: flex;
  gap: 20px;
  border-radius: 10px;
  padding: 20px 30px;
  background-color: #F7F7F7;
  width: 499px;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-box {
    width: initial;
    padding: 20px 20px;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content .about-box {
    flex-wrap: wrap;
    padding: 20px 30px;
    gap: 20px;
  }
}

.about-wrapper-3 .about-content .about-box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme-2);
  border-radius: 100px;
}

.about-wrapper-3 .about-content .about-box .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.about-wrapper-3 .about-content .about-box .content h5 {
  margin-bottom: 5px;
}

.about-wrapper-3 .about-content .about-box .content p {
  max-width: 369px;
}

.about-wrapper-3 .about-content .about-box:hover .icon img {
  transform: scaleX(-1) !important;
}

.about-wrapper-3 .about-content .about-button-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-button-item {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-3 .about-content .about-button-item .theme-btn {
  background-color: var(--theme);
  color: var(--header);
}

.about-wrapper-3 .about-content .about-button-item .theme-btn::before {
  background-color: var(--theme-2);
}

.about-wrapper-3 .about-content .about-button-item .theme-btn:hover {
  color: var(--white);
}

.about-wrapper-3 .about-content .about-button-item .info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-wrapper-3 .about-image {
  position: relative;
}

.about-wrapper-3 .about-image .shape {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-image .shape {
    display: none;
  }
}

.about-wrapper-3 .about-image .circle-image {
  width: 160px;
  height: 160px;
  line-height: 160px;
  border-radius: 100%;
  background-color: var(--theme-2);
  position: absolute;
  right: 0;
  text-align: center;
  bottom: 0;
}

.about-wrapper-3 .about-image .circle-image img {
  animation: cir36 10s linear infinite;
  width: initial;
  height: initial;
}

.about-wrapper-3 .about-image .circle-image .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-wrapper-3 .about-image .about-image-2 {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: -28%;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-image .about-image-2 {
    top: 21%;
    left: 0;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-image .about-image-2 {
    top: 130px;
    left: 0;
  }
}

@media (max-width: 767px) {
  .about-wrapper-3 .about-image .about-image-2 {
    top: 89px;
  }
}

.about-wrapper-3 .about-image .about-image-2 img {
  border-radius: 0;
}

.about-wrapper-3 .about-image img {
  max-width: 100%;
  max-height: 100%;
  height: 40vh;
  border-radius: 30px 0;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

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

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

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

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

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

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

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

  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes borderAnim {
  0% {
    width: 0;
  }

  100% {
    width: 44px;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes strokeColorChange1 {
  0% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }

  25% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }

  50% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }

  75% {
    -webkit-text-stroke-color: rgba(227, 87, 43, 0.1);
  }

  100% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
}

@keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}

@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrolly {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60%);
  }
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes scroll-left-to-right-loop {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.img_left_animation {
  animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes left-animation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_right_animation {
  animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes right-animation {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_top_animation {
  animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes top-animation {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_bottom_animation {
  animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes bottom-animation {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }

  100% {
    transform: scale(30);
    opacity: 0;
  }
}

@keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.zoom_in {
  transform: scale(0.5);
}

.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.banner-image {
  position: relative;
  height: 330px;
}

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

.banner-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 193, 7, 0.3);
  opacity: 0.6;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: left center;
  z-index: 1;
}

.banner-image .icon {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--white);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.banner-image:hover::before {
  transform: scale(1, 1);
  transform-origin: left center;
}

.banner-image:hover .icon {
  opacity: 1;
}

.contact-wrapper .contact-image {
  margin-left: -175px;
  margin-top: -120px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1899px) {
  .contact-wrapper .contact-image {
    margin-left: -310px;
  }
}

@media (max-width: 1600px) {
  .contact-wrapper .contact-image {
    margin-left: -280px;
  }
}

@media (max-width: 1399px) {
  .contact-wrapper .contact-image {
    margin-left: 0;
    margin-top: 0;
  }
}

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

.contact-wrapper .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 20px 20px 0;
}

.contact-wrapper .contact-content {
  margin-left: 30px;
}

@media (max-width: 1899px) {
  .contact-wrapper .contact-content {
    /* padding-top: 110px; */
  }
}

@media (max-width: 1399px) {
  .contact-wrapper .contact-content {
    margin-left: 0;
    padding-top: 0;
  }
}

.contact-wrapper .contact-content .logo-image {
  margin-bottom: 20px;
}

@media (max-width: 1899px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 1600px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 33px;
  }
}

@media (max-width: 991px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  .contact-wrapper .contact-content .section-title h2 {
    font-size: 25px;
  }
}

@media (max-width: 1899px) {
  .contact-wrapper .contact-content .section-title h2 br {
    display: none;
  }
}

.contact-wrapper .contact-content .text {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 40px;
}

.contact-wrapper .contact-content .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .contact-wrapper .contact-content .contact-item {
    flex-wrap: wrap;
  }
}

.contact-wrapper .contact-content .contact-item .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.contact-wrapper .contact-content .contact-item .theme-btn::before {
  background-color: var(--theme-2);
}

.contact-wrapper .contact-content .contact-item .theme-btn:hover {
  color: var(--white);
}

.contact-wrapper .contact-content .contact-item h6 a {
  color: var(--white);
}

.contact-wrapper .contact-content .contact-item h6 span {
  color: var(--white);
  font-family: "Merriweather Sans", sans-serif;
}

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

.contact-section {
  position: relative;
  z-index: 9;
  background-color: #252522;
}

@media (max-width: 1399px) {
  .contact-section {
    padding-bottom: 100px !important;
  }
}

@media (max-width: 991px) {
  .contact-section {
    padding-bottom: 80px !important;
  }
}

.contact-section .container-fluid {
  padding: 0 175px;
}

@media (max-width: 1600px) {
  .contact-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .contact-section .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .contact-section .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .contact-section .container-fluid {
    padding: 0 15px;
  }
}

/* .contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  z-index: -1;
  top: 120px;
} */

@media (max-width: 1399px) {
  .contact-section::before {
    top: initial;
  }
}

.contact-us-wrapper .contact-us-content .text {
  margin-top: 20px;
  margin-bottom: 40px;
}

.contact-us-wrapper .contact-us-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.contact-us-wrapper .contact-us-content .theme-btn::before {
  background-color: var(--theme-2);
}

.contact-us-wrapper .contact-us-content .theme-btn:hover {
  color: var(--white);
}

.contact-us-wrapper .contact-us-item .form-clt input,
.contact-us-wrapper .contact-us-item .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 16px;
  border: 1px solid #C9C9C9;
  border-radius: 10px;
}

.contact-us-wrapper .contact-us-item .form-clt input::placeholder,
.contact-us-wrapper .contact-us-item .form-clt textarea::placeholder {
  color: var(--text);
}

.contact-us-wrapper .contact-us-item .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}

.contact-us-wrapper-2 .contact-us-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #F7F7F7;
  padding: 25px;
  margin-bottom: 20px;
  max-width: 420px;
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .contact-us-wrapper-2 .contact-us-box {
    display: grid;
  }
}

@media (max-width: 991px) {
  .contact-us-wrapper-2 .contact-us-box {
    max-width: initial;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .contact-us-wrapper-2 .contact-us-box {
    display: grid;
  }
}

.contact-us-wrapper-2 .contact-us-box .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  background-color: var(--theme-2);
  font-size: 30px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
}

.contact-us-wrapper-2 .contact-us-box .icon i {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.contact-us-wrapper-2 .contact-us-box .contact-us-content span {
  color: var(--header);
  margin-bottom: 5px;
}

@media (max-width: 1199px) {
  .contact-us-wrapper-2 .contact-us-box .contact-us-content h5 br {
    display: none;
  }
}

@media (max-width: 991px) {
  .contact-us-wrapper-2 .contact-us-box .contact-us-content h5 br {
    display: initial;
  }
}

.contact-us-wrapper-2 .contact-us-box:hover .icon {
  background-color: var(--theme);
  color: var(--white);
}

.contact-us-wrapper-2 .contact-us-box:hover .icon i {
  transform: scaleX(-1) !important;
  filter: brightness(0) invert(1);
}

.contact-us-wrapper-2 .from-fill-up-box {
  border: 1px solid #C9C9C9;
  padding: 27px 40px;

  border-radius: 20px;
}

@media (max-width: 1399px) {
  .contact-us-wrapper-2 .from-fill-up-box {
    padding: 30px;
  }
}

.contact-us-wrapper-2 .from-fill-up-box h4 {
  margin-bottom: 40px;
}

.contact-us-wrapper-2 .from-fill-up-box .form-clt input,
.contact-us-wrapper-2 .from-fill-up-box .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: #F7F7F7;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--header);
  font-size: 16px;
  border-radius: 10px;
}

.contact-us-wrapper-2 .from-fill-up-box .form-clt input::placeholder,
.contact-us-wrapper-2 .from-fill-up-box .form-clt textarea::placeholder {
  color: var(--header);
}

.contact-us-wrapper-2 .from-fill-up-box .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}

.contact-us-wrapper-2 .from-fill-up-box .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.contact-us-wrapper-2 .from-fill-up-box .theme-btn::before {
  background-color: var(--theme-2);
}

.contact-us-wrapper-2 .from-fill-up-box .theme-btn:hover {
  color: var(--white);
}

.cta-wrapper {
  text-align: center;
  padding-bottom: 195px;
}

@media (max-width: 1399px) {
  .cta-wrapper {
    padding-bottom: 150px;
  }
}

.cta-wrapper .cta-content .circle-image {
  position: relative;
  margin-bottom: 30px;
}

.cta-wrapper .cta-content .circle-image img {
  animation: cir36 10s linear infinite;
}

.cta-wrapper .cta-content .circle-image .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1399px) {
  .cta-wrapper .cta-content .section-title h2 br {
    display: none;
  }
}

.cta-wrapper .cta-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 40px;
}

.cta-wrapper .cta-content .theme-btn::before {
  background-color: var(--white);
}

.cta-wrapper .cta-content .theme-btn:hover {
  color: var(--theme-2);
}

.cta-section {
  position: relative;
}

.cta-section .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1600px) {
  .cta-section .left-shape {
    top: 30px;
  }

  .cta-section .left-shape img {
    max-width: 380px;
  }
}

@media (max-width: 1399px) {
  .cta-section .left-shape {
    display: none;
  }
}

.cta-section .love-shape {
  position: absolute;
  left: 294px;
  bottom: 100px;
}

@media (max-width: 1600px) {
  .cta-section .love-shape {
    left: 150px;
  }
}

@media (max-width: 1399px) {
  .cta-section .love-shape {
    display: none;
  }
}

.cta-section .top-shape {
  position: absolute;
  top: 85px;
  right: 20%;
}

@media (max-width: 1600px) {
  .cta-section .top-shape {
    right: 14%;
  }
}

@media (max-width: 1399px) {
  .cta-section .top-shape {
    display: none;
  }
}

.cta-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .cta-section .right-shape img {
    max-width: 380px;
  }
}

@media (max-width: 1399px) {
  .cta-section .right-shape {
    display: none;
  }
}

.cta-contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
  border-radius: 20px;
  background-color: var(--header);
}

@media (max-width: 1399px) {
  .cta-contact-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}

.cta-contact-wrapper .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #C9C9C9;
  padding-right: 40px;
  height: 114px;
}

@media (max-width: 1399px) {
  .cta-contact-wrapper .contact-item {
    border-right: none;
    padding-right: 0;
    height: initial;
  }
}

.cta-contact-wrapper .contact-item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid var(--theme);
  color: var(--theme);
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
}

.cta-contact-wrapper .contact-item .icon:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.cta-contact-wrapper .contact-item .content h6 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 5px;
}

.cta-contact-wrapper .contact-item .content h4 {
  color: var(--white);
}

.cta-contact-wrapper .contact-item .content h4 a {
  color: var(--white);
}

.cta-contact-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-contact-wrapper .social-icon a {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}

.cta-contact-wrapper .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.cta-contact-section-2 {
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .cta-contact-section-2 {
    overflow: hidden;
  }
}

.cta-contact-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #0F0F0F;
  z-index: -1;
  bottom: -50%;
  top: initial;
}

.cta-contact-section-2 .top-shape {
  position: absolute;
  bottom: -90px;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .cta-contact-section-2 .top-shape {
    display: none;
  }
}

.cta-bg-section-4 {
  position: relative;
  background-attachment: fixed;
}

.cta-bg-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.cta-bg-wrapper-4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1399px) {
  .cta-bg-wrapper-4 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.cta-bg-wrapper-4 .cta-content h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-bg-wrapper-4 .cta-content p {
  color: var(--white);
  max-width: 500px;
}

.cta-bg-wrapper-4 .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.cta-bg-wrapper-4 .theme-btn::before {
  background-color: var(--white);
}

.donation-wrapper {
  margin-bottom: 20px;
}

.donation-wrapper .donation-card-item {
  display: flex;
  align-items: stretch;
  height: 100%;
  /* align-items: center; */
  gap: 30px;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .donation-wrapper .donation-card-item {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .donation-wrapper .donation-card-item {
    flex-wrap: initial;
  }
}

@media (max-width: 575px) {
  .donation-wrapper .donation-card-item {
    padding: 25px;
    flex-wrap: wrap;
  }
}

.donation-wrapper .donation-card-item .donation-image {
  position: relative;
}

@media (max-width: 1399px) {
  .donation-wrapper .donation-card-item .donation-image {
    flex-basis: 100%;
  }
}

@media (max-width: 991px) {
  .donation-wrapper .donation-card-item .donation-image {
    flex-basis: initial;
  }
}

@media (max-width: 575px) {
  .donation-wrapper .donation-card-item .donation-image {
    flex-basis: 100%;
  }
}

.donation-wrapper .donation-card-item .donation-image img {
  border-radius: 20px;
  max-width: 200px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1399px) {
  .donation-wrapper .donation-card-item .donation-image img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .donation-wrapper .donation-card-item .donation-image img {
    width: initial;
    height: initial;
  }
}

@media (max-width: 575px) {
  .donation-wrapper .donation-card-item .donation-image img {
    width: 100%;
    height: 100%;
  }
}

.donation-wrapper .donation-card-item .donation-image .right-shape {
  position: absolute;
  top: 0;
  right: 0;
}

.donation-wrapper .donation-card-item .donation-content h4 {
  margin-bottom: 10px;
}

.donation-wrapper .donation-card-item .donation-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.donation-wrapper .donation-card-item .donation-content h4 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.donation-wrapper .donation-card-item .donation-content p {
  max-width: 295px;
  margin-bottom: 20px;
}

.donation-wrapper .donation-card-item .donation-content .pro-items {
  width: 100%;
}

.donation-wrapper .donation-card-item .donation-content .pro-items:not(:last-child) {
  margin-bottom: 20px;
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-2 .progress {
  background-color: rgba(255, 193, 7, 0.2);
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-2 .progress-value {
  background: var(--theme);
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-2 .progress-value::before {
  background-color: var(--theme);
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-3 .progress {
  background-color: rgba(255, 85, 40, 0.2);
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-3 .progress-value {
  background: #FF5528;
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-3 .progress-value::before {
  background-color: #FF5528;
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-4 .progress {
  background-color: rgba(129, 57, 231, 0.2);
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-4 .progress-value {
  background: #8139E7;
}

.donation-wrapper .donation-card-item .donation-content .pro-items.style-4 .progress-value::before {
  background-color: #8139E7;
}

.donation-wrapper .donation-card-item .donation-content .pro-items .progress {
  background: rgba(11, 78, 61, 0.2);
  justify-content: flex-start;
  border-radius: 20px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
  overflow: visible;
}

.donation-wrapper .donation-card-item .donation-content .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 20px;
  background: var(--theme-2);
  height: 8px;
  width: 0;
  position: relative;
}

.donation-wrapper .donation-card-item .donation-content .pro-items .progress-value::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  content: "78%";
  color: var(--white);
  background-color: var(--theme-2);
  top: -6px;
  right: initial;
  width: 53px;
  height: 20px;
  line-height: 12px;
  padding: 5px 14px;
  z-index: 2;
  left: 90%;
}

.donation-wrapper .donation-card-item .donation-content .pro-items .style-two {
  animation: load2 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.donation-wrapper .donation-card-item .donation-content .donate-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .donation-wrapper .donation-card-item .donation-content .donate-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.donation-wrapper .donation-card-item .donation-content .donate-list li {
  font-size: 14px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
}

.donation-wrapper .donation-card-item .donation-content .donate-list li span {
  color: var(--header);
}

.donation-wrapper .donation-card-item .donation-content .theme-btn {
  padding: 12px 30px;
}

.donation-wrapper .donation-card-item .donation-content .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--theme-2);
}

.donation-wrapper .donation-card-item .donation-content .theme-btn.style-2::before {
  background-color: var(--theme-2);
}

.donation-wrapper .donation-card-item .donation-content .theme-btn.style-2:hover {
  color: var(--white);
}

.donation-wrapper .donation-card-item .donation-content .theme-btn.style-3 {
  background-color: #FF5528;
  color: var(--white);
}

.donation-wrapper .donation-card-item .donation-content .theme-btn.style-3::before {
  background-color: var(--theme-2);
}

.donation-wrapper .donation-card-item .donation-content .theme-btn.style-3:hover {
  color: var(--white);
}

.donation-wrapper .donation-card-item .donation-content .theme-btn.style-4 {
  background-color: #8139E7;
  color: var(--white);
}

.donation-wrapper .donation-card-item .donation-content .theme-btn.style-4::before {
  background-color: var(--theme-2);
}

.donation-section {
  margin-bottom: -20px;
}

.donation-wrapper-2 {
  margin-bottom: 20px;
}

.donation-wrapper-2 .donation-card-item-2 {
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  margin-top: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

.donation-wrapper-2 .donation-card-item-2 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 575px) {
  .donation-wrapper-2 .donation-card-item-2 {
    padding: 25px;
  }
}

.donation-wrapper-2 .donation-card-item-2 .donation-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}

.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}

.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}

.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}

.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}

.donation-wrapper-2 .donation-card-item-2 .donation-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}

.donation-wrapper-2 .donation-card-item-2 .donation-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content {
  margin-top: 20px;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content h4 {
  margin-bottom: 20px;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items {
  width: 100%;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items:not(:last-child) {
  margin-bottom: 20px;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items.style-2 .progress {
  background-color: rgba(11, 78, 61, 0.2);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items.style-2 .progress-value {
  background: var(--theme-2);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items.style-3 .progress {
  background-color: rgba(255, 85, 40, 0.2);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items.style-3 .progress-value {
  background: #FF5528;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items .progress {
  background-color: rgba(255, 85, 40, 0.2);
  justify-content: flex-start;
  border-radius: 20px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
  overflow: visible;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 20px;
  background: var(--theme);
  height: 8px;
  width: 0;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .pro-items .style-two {
  animation: load2 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .donate-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .donation-wrapper-2 .donation-card-item-2 .donation-content .donate-list {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .donate-list li {
  font-size: 16px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .donate-list li span {
  color: var(--header);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn {
  padding: 12px 30px;
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--theme-2);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-2::before {
  background-color: var(--theme-2);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-2:hover {
  color: var(--white);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-3 {
  background-color: #FF5528;
  color: var(--white);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-3::before {
  background-color: var(--theme-2);
}

.donation-wrapper-2 .donation-card-item-2 .donation-content .theme-btn.style-3:hover {
  color: var(--white);
}

.donation-wrapper-2 .donation-card-item-2:hover {
  transform: translateY(-10px);
}

.donation-wrapper-2 .donation-card-item-2:hover .donation-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}

.donation-section-2 {
  margin-bottom: -20px;
}

.volounteer-wrapper-3 {
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 40px 40px 40px 60px;
  position: relative;
}

@media (max-width: 1399px) {
  .volounteer-wrapper-3 {
    padding: 30px;
  }
}

.volounteer-wrapper-3 .volounteer-content .volounteer-button {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .volounteer-wrapper-3 .volounteer-content .volounteer-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.volounteer-wrapper-3 .volounteer-content .volounteer-button .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--theme-2);
}

.volounteer-wrapper-3 .volounteer-content .volounteer-button .theme-btn.style-2::before {
  background-color: var(--theme-2);
}

.volounteer-wrapper-3 .volounteer-content .volounteer-button .theme-btn.style-2:hover {
  color: var(--white);
}

.volounteer-wrapper-3 .volunteer-image {
  overflow: hidden;
  position: relative;
}

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

.volounteer-wrapper-3 .volunteer-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.volounteer-wrapper-3 .circle-image {
  width: 160px;
  height: 160px;
  line-height: 160px;
  border-radius: 100%;
  background-color: var(--theme-2);
  position: absolute;
  text-align: center;
  bottom: 70px;
  left: 44%;
  z-index: 999;
}

@media (max-width: 1199px) {
  .volounteer-wrapper-3 .circle-image {
    left: 46%;
  }
}

@media (max-width: 991px) {
  .volounteer-wrapper-3 .circle-image {
    left: 37%;
    bottom: 155px;
  }
}

@media (max-width: 767px) {
  .volounteer-wrapper-3 .circle-image {
    display: none;
  }
}

.volounteer-wrapper-3 .circle-image img {
  animation: cir36 10s linear infinite;
  width: initial;
  height: initial;
}

.volounteer-wrapper-3 .circle-image .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  display: inline-block;
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.volounteer-wrapper-3 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1399px) {
  .volounteer-wrapper-3 .right-shape {
    display: none;
  }
}

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

.donation-card-items-3 {
  border-radius: 20px;
  margin-top: 30px;
  padding: 30px;
  background-color: #F7F7F7;
  text-align: center;
}

.donation-card-items-3 .donation-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.donation-card-items-3 .donation-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.donation-card-items-3 .donation-image .donation-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}

.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}

.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}

.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}

.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}

.donation-card-items-3 .donation-image .donation-layer-wrapper .donation-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}

.donation-card-items-3 .donation-content {
  margin-top: 20px;
}

.donation-card-items-3 .donation-content h5 {
  margin-bottom: 10px;
}

.donation-card-items-3 .donation-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  position: relative;
  z-index: 9999;
}

.donation-card-items-3 .donation-content h5 a:hover {
  color: #FF5528;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #FF5528 0%, #FF5528 100%);
}

.donation-card-items-3 .donation-content p {
  max-width: 360px;
  margin: 0 auto;
  font-size: 15px;
}

.donation-card-items-3 .donation-content .link-btn {
  margin-top: 20px;
  color: #FD853E;
  display: inline-block;
}

.donation-card-items-3 .donation-content.style-2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.donation-card-items-3:hover .donation-image .donation-layer-wrapper .donation-layer-image {
  transform: translateY(-100%);
}

.donation-details-wrapper .donation-details-left h3 {
  margin-bottom: 20px;
}

.donation-details-wrapper .donation-details-left .list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.donation-details-wrapper .donation-details-left .list li {
  color: var(--header);
}

.donation-details-wrapper .donation-details-left .list li.style-2 {
  border-left: 1px solid var(--header);
  padding-left: 20px;
}

.donation-details-wrapper .donation-details-left .details-image {
  margin-top: 40px;
  margin-bottom: 20px;
}

.donation-details-wrapper .donation-details-left .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.donation-details-wrapper .donation-details-left .radius-box {
  border-radius: 100px;
  padding: 30px 30px 30px 48px;
  background-color: var(--bg);
  margin-top: 20px;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .radius-box {
    padding: 30px;
    border-radius: 20px;
  }
}

.donation-details-wrapper .donation-details-left .radius-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 5px;
  height: 120px;
  background-color: var(--theme-2);
  left: 60px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .radius-box::before {
    display: none;
  }
}

.donation-details-wrapper .donation-details-left .radius-box .box-ber {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .radius-box .box-ber {
    flex-wrap: wrap;
  }
}

.donation-details-wrapper .donation-details-left .donation-display {
  background: #f5f5f5;
  border-radius: 50px;
  padding: 20px 20px;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #252522;
  margin-bottom: 15px;
  width: 630px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .donation-display {
    width: 460px;
  }
}

@media (max-width: 991px) {
  .donation-details-wrapper .donation-details-left .donation-display {
    width: 700px;
  }
}

@media (max-width: 767px) {
  .donation-details-wrapper .donation-details-left .donation-display {
    width: 350px;
  }
}

.donation-details-wrapper .donation-details-left .donation-display span {
  font-size: 24px;
  color: var(--theme-2);
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .donation-display span {
    font-size: 16px;
  }
}

.donation-details-wrapper .donation-details-left .donation-display .currency {
  background: var(--theme-2);
  color: var(--theme);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.donation-details-wrapper .donation-details-left .donation-options {
  display: flex;
  gap: 35px;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .donation-options {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.donation-details-wrapper .donation-details-left .donation-btn,
.donation-details-wrapper .donation-details-left #custom-btn {
  border: 1px solid #C9C9C9;
  background: transparent;
  padding: 8px 42px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Merriweather Sans", sans-serif;
}

@media (max-width: 1399px) {

  .donation-details-wrapper .donation-details-left .donation-btn,
  .donation-details-wrapper .donation-details-left #custom-btn {
    padding: 8px 25px;
  }
}

.donation-details-wrapper .donation-details-left .donation-btn.active,
.donation-details-wrapper .donation-details-left #custom-btn.active {
  background: var(--theme-2);
  color: var(--white);
}

.donation-details-wrapper .donation-details-left .select-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 25px;
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .select-item {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.donation-details-wrapper .donation-details-left .select-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  gap: 10px;
  font-size: 16px;
}

.donation-details-wrapper .donation-details-left .select-item label input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #afc5b7;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
  outline-offset: 4px;
}

.donation-details-wrapper .donation-details-left .select-item label input[type=radio]:checked {
  background-color: #123b32;
  border-color: #123b32;
}

.donation-details-wrapper .donation-details-left .select-item label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.donation-details-wrapper .donation-details-left .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.donation-details-wrapper .donation-details-left .theme-btn::before {
  background-color: var(--theme-2);
}

.donation-details-wrapper .donation-details-left .theme-btn:hover {
  color: var(--white);
}

.donation-details-wrapper .donation-details-left .text {
  border-top: 1px solid #C9C9C9;
  padding-top: 60px;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-left .text {
    padding-top: 30px;
    margin-top: 30px;
  }
}

.donation-details-wrapper .donation-details-left .form-clt input,
.donation-details-wrapper .donation-details-left .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: #F7F7F7;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 16px;
  font-family: "Merriweather Sans", sans-serif;
  border-radius: 10px;
}

.donation-details-wrapper .donation-details-left .form-clt input::placeholder,
.donation-details-wrapper .donation-details-left .form-clt textarea::placeholder {
  color: var(--text);
}

.donation-details-wrapper .donation-details-left .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}

.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box {
  background: #F7F7F7;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .donation-details-sideber-box {
    padding: 30px;
  }
}

.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box h4 {
  border-bottom: 4px solid var(--white);
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}

.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box h4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  height: 4px;
  width: 134px;
  top: 54px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .donation-details-sideber-box h4::before {
    top: 48px;
  }
}

.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box .donation-list li {
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .donation-details-sideber-box .donation-list li {
    font-size: 16px;
  }
}

.donation-details-wrapper .donation-details-sideber .donation-details-sideber-box .donation-list li:not(:last-child) {
  margin-bottom: 30px;
}

.donation-details-wrapper .donation-details-sideber .text {
  border-bottom: 4px solid #F7F7F7;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}

.donation-details-wrapper .donation-details-sideber .text::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  height: 4px;
  width: 134px;
  top: 54px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .text::before {
    top: 48px;
  }
}

.donation-details-wrapper .donation-details-sideber .details-post-area .details-items {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #C9C9C9;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .donation-details-wrapper .donation-details-sideber .details-post-area .details-items {
    flex-wrap: wrap;
  }
}

.donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-content h5 {
  font-size: 24px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-content h5 {
    font-size: 20px;
  }
}

.donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.donation-details-wrapper .donation-details-sideber .details-post-area .details-items .details-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.donation-details-wrapper .donation-details-sideber .contact-bg {
  position: relative;
  z-index: 9;
  border-radius: 20px;
  width: 450px;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .contact-bg {
    width: initial;
  }
}

.donation-details-wrapper .donation-details-sideber .contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.58) 100%);
  z-index: -1;
  border-radius: 20px;
}

.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content {
  padding: 80px 0;
  text-align: center;
}

.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content .icon {
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  border-radius: 100px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 45px;
  margin: 0 auto;
}

@media (max-width: 1399px) {
  .donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}

.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content h5 {
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 10px;
}

.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content h6 {
  font-size: 20px;
  font-weight: 400;
}

.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content h6 a {
  color: var(--theme);
}

.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 40px;
}

.donation-details-wrapper .donation-details-sideber .contact-bg .donation-contact-content .theme-btn::before {
  background-color: var(--white);
}

.upcoming-event-wrapper {
  margin-top: 60px;
}

.upcoming-event-wrapper .upcoming-event-image {
  margin-bottom: 20px;
}

.upcoming-event-wrapper .upcoming-event-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box {
  display: flex;
  align-items: center;
  gap: 35px;
  border-radius: 20px;
  border: 1px solid #C9C9C9;
  padding: 20px 30px;
  position: relative;
  transition: width 0.5s ease;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .upcoming-event-wrapper .upcoming-event-item .upcoming-event-box {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box {
  background-color: var(--theme-2);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box .left-content span {
  color: var(--theme);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box .left-content h4 {
  color: var(--theme);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box .right-content h5 a {
  color: var(--theme);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box.event-acive-box .right-content .event-list li {
  color: var(--white);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme-2);
  border-radius: 20px;
  z-index: 1;
  transition: width 0.5s ease;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .left-content {
  display: grid;
  border-right: 1px solid #C9C9C9;
  padding-right: 22px;
  transition: width 0.5s ease;
}

@media (max-width: 1399px) {
  .upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .left-content {
    padding-right: 0;
    border-right: none;
  }
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content h5 {
  margin-bottom: 10px;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content .event-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box .right-content .event-list li i {
  margin-right: 5px;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover::before {
  width: 100%;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .left-content {
  position: relative;
  z-index: 999;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .left-content span {
  color: var(--white);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .left-content h4 {
  color: var(--white);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content {
  position: relative;
  z-index: 999;
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content h5 a {
  color: var(--theme);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content h5 a:hover {
  color: var(--theme);
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content .event-list li {
  color: var(--white);
}

.upcoming-event-wrapper .upcoming-event-item .upcoming-event-box:hover .right-content .event-list li i {
  color: var(--white);
}

.event-inner-items {
  border-radius: 20px;
  background-color: #F7F7F7;
}

.event-inner-items .event-image {
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.event-inner-items .event-image::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  width: 100%;
  height: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.event-inner-items .event-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}

.event-inner-items .event-image .event-tag {
  font-size: 14px;
  color: var(--theme-2);
  background-color: var(--theme);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 4px 14px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.event-inner-items .event-content {
  padding: 30px;
}

.event-inner-items .event-content .event-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.event-inner-items .event-content .event-list li i {
  color: var(--theme);
  margin-right: 10px;
}

.event-inner-items .event-content h4 {
  margin-bottom: 20px;
}

.event-inner-items .event-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.event-inner-items .event-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.event-inner-items .event-content p {
  margin-bottom: 25px;
}

.event-inner-items:hover .event-image::after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.event-inner-items:hover .event-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.event-list-items {
  border-radius: 20px;
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .event-list-items {
    flex-wrap: wrap;
  }
}

.event-list-items .event-image {
  position: relative;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .event-list-items .event-image {
    flex-basis: 100%;
    border-radius: 20px;
  }
}

.event-list-items .event-image::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  width: 100%;
  height: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.event-list-items .event-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}

@media (max-width: 767px) {
  .event-list-items .event-image img {
    border-radius: 20px;
  }
}

.event-list-items .event-content {
  padding: 20px;
}

@media (max-width: 1399px) {
  .event-list-items .event-content {
    padding-left: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 991px) {
  .event-list-items .event-content {
    padding: 20px;
  }
}

.event-list-items .event-content .event-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .event-list-items .event-content .event-list {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .event-list-items .event-content .event-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.event-list-items .event-content .event-list li i {
  color: var(--theme);
  margin-right: 10px;
}

@media (max-width: 1399px) {
  .event-list-items .event-content .event-list li {
    font-size: 14px;
  }
}

.event-list-items .event-content h4 {
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .event-list-items .event-content h4 {
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .event-list-items .event-content h4 {
    margin-bottom: 20px;
  }
}

.event-list-items .event-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.event-list-items .event-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.event-list-items .event-content p {
  margin-bottom: 25px;
  max-width: 518px;
}

@media (max-width: 1399px) {
  .event-list-items .event-content p {
    max-width: 475px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .event-list-items .event-content p {
    max-width: 518px;
    margin-bottom: 25px;
  }
}

.event-list-items:hover .event-image::after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.event-list-items:hover .event-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.event-details-wrapper .event-details-post .event-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.event-details-wrapper .event-details-post .event-details-content {
  margin-top: 30px;
}

.event-details-wrapper .event-details-post .event-details-content .event-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  margin-top: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .event-details-wrapper .event-details-post .event-details-content .event-list {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .event-details-wrapper .event-details-post .event-details-content .event-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.event-details-wrapper .event-details-post .event-details-content .event-list li i {
  color: var(--theme);
  margin-right: 10px;
}

.event-details-wrapper .event-details-post .event-details-content .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.event-details-wrapper .event-main-sideber .event-sideber-box {
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 40px 35px;
  margin-bottom: 30px;
  text-align: center;
}

.event-details-wrapper .event-main-sideber .event-sideber-box .client-image {
  margin-bottom: 10px;
}

.event-details-wrapper .event-main-sideber .event-sideber-box .user-content span {
  display: inline-block;
  margin-bottom: 30px;
}

.event-details-wrapper .event-main-sideber .event-sideber-box .user-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.event-details-wrapper .event-main-sideber .event-sideber-box .user-content .social-icon a {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}

.event-details-wrapper .event-main-sideber .event-sideber-box .user-content .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.event-details-wrapper .event-main-sideber .event-info-box {
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 40px 35px;
  margin-bottom: 30px;
}

.event-details-wrapper .event-main-sideber .event-info-box h3 {
  margin-bottom: 30px;
  position: relative;
}

.event-details-wrapper .event-main-sideber .event-info-box h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 40px;
  background-color: var(--theme);
}

.event-details-wrapper .event-main-sideber .event-info-box .info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.event-details-wrapper .event-main-sideber .event-info-box .info-item .icon {
  color: var(--theme);
}

.event-details-wrapper .event-main-sideber .event-contact-box {
  text-align: center;
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 40px 35px;
}

.event-details-wrapper .event-main-sideber .event-contact-box .icon {
  width: 76px;
  height: 76px;
  line-height: 76px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--theme-2);
  margin: 0 auto;
  font-size: 30px;
}

.event-details-wrapper .event-main-sideber .event-contact-box h5 {
  margin-top: 15px;
}

.event-details-wrapper .event-main-sideber .event-contact-box h6 {
  margin-top: 15px;
  margin-bottom: 40px;
}

.event-details-wrapper .event-main-sideber .event-contact-box .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.event-details-wrapper .event-main-sideber .event-contact-box .theme-btn::before {
  background-color: var(--theme-2);
}

.event-details-wrapper .event-main-sideber .event-contact-box .theme-btn:hover {
  color: var(--white);
}

.faq-wrapper .faq-items {
  position: relative;
  z-index: 9;
}

.faq-wrapper .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 5px;
  margin-bottom: 18px;
  background: var(--bg);
}

.faq-wrapper .faq-items .accordion .accordion-item h2 button {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  box-shadow: none;
  border-radius: 20px !important;
  padding: 29px 30px;
  color: var(--header);
  cursor: pointer;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}

.faq-wrapper .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 0;
  background-color: white;
}

.faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
  color: #666;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-wrapper .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
  border-radius: 5px !important;
}

.faq-wrapper .faq-items .accordion .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 900;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}

.faq-wrapper .faq-items .accordion .accordion-button:not(.collapsed) {
  background-color: var(--theme-2);
  color: var(--theme);
  border-radius: 5px !important;
}

.faq-wrapper .faq-items .accordion .accordion-button:not(.collapsed)::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 900;
  color: var(--theme);
  transform: rotate(0);
}

.faq-wrapper .faq-content {
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .faq-wrapper .faq-content {
    margin-left: 0;
  }
}

.faq-wrapper .faq-content .text {
  margin-top: 20px;
  margin-bottom: 30px;
}

.faq-wrapper .faq-content .faq-image {
  position: relative;
}

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

.faq-wrapper .faq-content .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.faq-wrapper .faq-content .faq-image .video-btn {
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 20px;
  height: 80px;
  width: 80px;
  line-height: 70px;
  border-radius: 100px;
  text-align: center;
  border: 6px solid var(--theme);
  position: absolute;
  bottom: 30px;
  left: 50px;
}

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

.counter-wrapper .counter-image {
  position: relative;
  margin-left: -310px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-image {
    margin-left: 0;
  }
}

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

.counter-wrapper .counter-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.counter-wrapper .counter-image .shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .counter-wrapper .counter-image .shape {
    display: none;
  }
}

.counter-wrapper .counter-content {
  margin-left: 100px;
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-content {
    margin-left: 0;
  }
}

.counter-wrapper .counter-content .text {
  max-width: 555px;
  margin-top: 20px;
}

.counter-wrapper .counter-content .counter-main-item {
  margin-top: 80px;
  position: relative;
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item {
    margin-top: 30px;
  }
}
.counter-content  h5 {
  font-size: 13px;
  height: 150px;
}
.counter-wrapper .counter-content .counter-main-item::before {
  position: absolute;
  content: "";
  background-color: #C9C9C9;
  width: 1px;
  height: 260px;
  top: 0px;
  left: 47%;
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item::before {
    display: none;
  }
}

.counter-wrapper .counter-content .counter-main-item .counter-item {
  display: flex;
  align-items: center;
  gap: 120px;
  border-bottom: 1px solid #C9C9C9;
  padding-bottom: 30px;
  margin-bottom: 30px;
  width: 502px;
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item .counter-item {
    gap: 50px;
    flex-wrap: wrap;
    width: 310px;
  }
}

.counter-wrapper .counter-content .counter-main-item .counter-item.style-border {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.counter-wrapper .counter-content .counter-main-item .counter-item .content {
  flex-basis: 100%;
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item .counter-item .content {
    flex-basis: initial;
  }
}

.counter-wrapper .counter-content .counter-main-item .counter-item .content h2 {
  font-size: 64px;
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item .counter-item .content h2 {
    font-size: 50px;
  }
}

.counter-wrapper .counter-content .counter-main-item .counter-item .content p {
  font-size: 20px;
  font-weight: 400;
  color: var(--header);
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-content .counter-main-item .counter-item .content p {
    font-size: 16px;
  }
}

.counter-wrapper .counter-content .counter-main-item .counter-item .content.style-2 h2 {
  color: var(--theme);
}

.counter-wrapper .counter-content .counter-main-item .counter-item .content.style-2 p {
  color: var(--theme);
}

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

.counter-section {
  position: relative;
}

@media (max-width: 1399px) {
  .counter-section {
    padding: 100px 0;
  }
}

@media (max-width: 1399px) {
  .counter-section {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .counter-section {
    padding: 80px 0;
  }
}

.counter-section .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1399px) {
  .counter-section .right-shape {
    display: none;
  }
}

.counter-main-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .counter-main-wrapper {
    margin-top: 30px;
  }
}

.counter-main-wrapper .map-shape {
  position: absolute;
  top: -75%;
  left: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .counter-main-wrapper .map-shape {
    display: none;
  }
}

.counter-main-wrapper p {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.counter-main-wrapper .counter-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .counter-main-wrapper .counter-wrapper-2 {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .counter-main-wrapper .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.counter-main-wrapper .counter-wrapper-2 .counter-image img {
  width: 100%;
  height: 100%;
  border-radius: 150px;
}

.counter-main-wrapper .counter-wrapper-2 .counter-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .counter-main-wrapper .counter-wrapper-2 .counter-item {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .counter-main-wrapper .counter-wrapper-2 .counter-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.counter-content {
  text-align: center;
}
.counter-main-wrapper .counter-wrapper-2 .counter-item .counter-content h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .counter-main-wrapper .counter-wrapper-2 .counter-item .counter-content h2 {
    font-size: 30px;
  }
}

.counter-main-wrapper .counter-wrapper-2 .counter-item .counter-content.style-2 {
  border-left: 1px solid #C9C9C9;
  padding-left: 60px;
}

@media (max-width: 1399px) {
  .counter-main-wrapper .counter-wrapper-2 .counter-item .counter-content.style-2 {
    border-left: none;
    padding-left: 0;
  }
}

.counter-section-2 {
  position: relative;
  z-index: 9;
}

.counter-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: -20%;
  z-index: -1;
}

@media (max-width: 1399px) {
  .counter-section-2 .right-shape {
    display: none;
  }
}

.feature-wrapper-3 .feature-content .text {
  max-width: 630px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.feature-wrapper-3 .feature-right-items {
  margin-left: 220px;
}

@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items {
    margin-left: 0;
  }
}

.feature-wrapper-3 .feature-right-items .feature-image {
  max-width: 420px;
  position: relative;
}

@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image {
    max-width: initial;
  }
}

.feature-wrapper-3 .feature-right-items .feature-image .content-item {
  display: grid;
  gap: 5px;
  position: absolute;
  top: 54px;
  left: -130px;
}

@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image .content-item {
    top: 25px;
    left: -15px;
  }
}

.feature-wrapper-3 .feature-right-items .feature-image .content-item .content {
  display: grid;
  transform: rotate(-90deg);
}

.feature-wrapper-3 .feature-right-items .feature-image .content-item .content h5 {
  color: var(--theme);
}

@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image .content-item .content h3 {
    color: var(--white);
  }
}

.feature-wrapper-3 .feature-right-items .feature-image .content-item h2 {
  font-size: 80px;
  transform: rotate(-90deg);
}

@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image .content-item h2 {
    color: var(--white);
  }
}

.feature-wrapper-3 .feature-right-items .feature-image .feature-box {
  background-color: var(--white);
  padding: 24px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  max-width: initial;
  position: absolute;
  bottom: 20px;
  left: -210px;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .feature-wrapper-3 .feature-right-items .feature-image .feature-box {
    padding: 20px;
    bottom: 0;
    left: 0;
  }
}

.feature-wrapper-3 .feature-right-items .feature-image .feature-box h5 {
  margin-bottom: 10px;
}

.feature-wrapper-3 .feature-right-items .feature-image .feature-box p {
  max-width: 253px;
}

.feature-wrapper-3 .feature-right-items .feature-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.choose-us-wrapper-3 {
  margin-top: 60px;
}

.choose-us-wrapper-3 .choose-us-image {
  max-width: 540px;
  position: relative;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-image {
    max-width: initial;
  }
}

.choose-us-wrapper-3 .choose-us-image .circle-image {
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -90px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-image .circle-image {
    right: 0;
    top: 100px;
  }
}

.choose-us-wrapper-3 .choose-us-image .circle-image .video-btn {
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  background-color: var(--bg);
  color: var(--theme);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
}

.choose-us-wrapper-3 .choose-us-image .circle-image img {
  border-radius: 190px;
  border: 8px solid var(--white);
}

.choose-us-wrapper-3 .choose-us-image .content-box {
  background-color: var(--theme);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  position: absolute;
  bottom: 70px;
  left: 70px;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-image .content-box {
    bottom: 20px;
    left: 20px;
  }
}

.choose-us-wrapper-3 .choose-us-image .content-box .arrow-icon {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--white);
}

.choose-us-wrapper-3 .choose-us-image .content-box .arrow-icon i {
  transform: rotate(-30deg);
  font-size: 13px;
}

.choose-us-wrapper-3 .choose-us-image .content-box h6 {
  font-size: 14px;
  font-weight: 400;
}

.choose-us-wrapper-3 .choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.choose-us-wrapper-3 .choose-us-image .shape {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-image .shape {
    display: none;
  }
}

.choose-us-wrapper-3 .choose-us-box {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background-color: var(--white);
  padding: 23px 20px;
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-box {
    flex-wrap: wrap;
  }
}

.choose-us-wrapper-3 .choose-us-box.active-box {
  background-color: var(--theme-2);
}

.choose-us-wrapper-3 .choose-us-box.active-box .icon {
  background-color: var(--theme);
}

.choose-us-wrapper-3 .choose-us-box.active-box .content h5 {
  color: var(--white);
}

.choose-us-wrapper-3 .choose-us-box.active-box .content p {
  color: var(--white);
}

.choose-us-wrapper-3 .choose-us-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme-2);
  border-radius: 30px;
  z-index: 1;
  transition: width 0.5s ease;
}

.choose-us-wrapper-3 .choose-us-box .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: #F7F7F7;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 999;
}

.choose-us-wrapper-3 .choose-us-box .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.choose-us-wrapper-3 .choose-us-box .icon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--theme);
  content: "";
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.choose-us-wrapper-3 .choose-us-box .content h5 {
  margin-bottom: 5px;
}

.choose-us-wrapper-3 .choose-us-box .content p {
  max-width: 430px;
}

.choose-us-wrapper-3 .choose-us-box:hover::before {
  width: 100%;
}

.choose-us-wrapper-3 .choose-us-box:hover .icon img {
  transform: scaleX(-1) !important;
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(120deg) contrast(130%) brightness(80%);
}

.choose-us-wrapper-3 .choose-us-box:hover .icon::after {
  transform: scale(1);
  z-index: -1;
}

.choose-us-wrapper-3 .choose-us-box:hover .content h5 {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.choose-us-wrapper-3 .choose-us-box:hover .content p {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.choose-us-section-3 {
  position: relative;
}

.choose-us-section-3 .top-shape {
  position: absolute;
  top: 50px;
  left: 30px;
}

@media (max-width: 1399px) {
  .choose-us-section-3 .top-shape {
    display: none;
  }
}

.choose-us-section-3 .left-shape {
  position: absolute;
  bottom: 34px;
  left: 30px;
}

@media (max-width: 1399px) {
  .choose-us-section-3 .left-shape {
    display: none;
  }
}

.choose-us-section-3 .right-shape {
  position: absolute;
  right: 60px;
  top: 60px;
}

@media (max-width: 1399px) {
  .choose-us-section-3 .right-shape {
    display: none;
  }
}

.feature-skill-content h6 {
  color: var(--theme);
  /* text-transform: uppercase; */
  margin-bottom: 20px;
}

.feature-skill-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.feature-skill-content p {
  max-width: 590px;
  color: var(--white);
}

.feature-skill-content .progress-wrap {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .feature-skill-content .progress-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.feature-skill-content .progress-wrap .pro-items {
  width: 100%;
}

.feature-skill-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}

.feature-skill-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.feature-skill-content .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.feature-skill-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  font-family: "Merriweather Sans", sans-serif;
}

.feature-skill-content .progress-wrap .pro-items .progress {
  background: rgba(255, 255, 255, 0.2);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 22px;
  width: 100%;
}

.feature-skill-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--white);
  height: 22px;
  width: 0;
  border-radius: 10px;
}

.feature-skill-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 85%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 95%;
  }
}

.feature-skill-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.feature-skill-content .theme-btn::before {
  background-color: var(--white);
}

.footer-widget-wrapper {
  padding: 20px 0;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper {
    padding: 0 0 70px;
  }
}

@media (max-width: 1600px) {
  .footer-widget-wrapper.widget-inner {
    padding: 90px 0;
  }
}

@media (max-width: 1399px) {
  .footer-widget-wrapper.widget-inner {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper.widget-inner {
    padding: 80px 0;
  }
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget {
    margin-top: 0;
  }
}

.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 30px;
}

.footer-widget-wrapper .single-footer-widget .wid-title h3 {
  font-size: 28px;
  color: #ffffff;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .wid-title h3 {
    font-size: 20px;
  }
}

.footer-widget-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .list-area li {
    font-size: 16px;
  }
}

.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
  color: #144d2a;
  font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter p {
  max-width: 470px;
  color: var(--white);
  margin-bottom: 30px;
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter form {
  max-width: 424px;
  width: 100%;
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt {
  position: relative;
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 10px;
  background: transparent;
  backdrop-filter: blur(26px);
  color: var(--white);
  line-height: 1;
  padding: 20px;
  max-width: 442px;
  border: 1px solid #C9C9C9;
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt input::placeholder {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  color: var(--theme);
  border-radius: 0;
  background-color: transparent;
  border-left: 1px solid #D9D9D9;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn {
    border-left: none;
    border: 1px solid var(--white);
    border-radius: 10px;
  }
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn::before {
  border-radius: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn:hover {
  color: var(--theme-2);
}

@media (max-width: 470px) {
  .footer-widget-wrapper .single-footer-widget .footer-newsletter form .form-clt .theme-btn {
    position: static;
    margin-top: 20px;
  }
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter .social-icon a {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}

.footer-widget-wrapper .single-footer-widget .footer-newsletter .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .footer-left-content p {
  color: var(--white);
  max-width: 400px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.footer-widget-wrapper .single-footer-widget .footer-left-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 40px;
}

.footer-widget-wrapper .single-footer-widget .footer-left-content .theme-btn::before {
  background-color: var(--theme-2);
}

.footer-widget-wrapper .single-footer-widget .footer-left-content .theme-btn:hover {
  color: var(--white);
}

@media (max-width: 1399px) {
  .footer-widget-wrapper.style-2 {
    padding: 100px 0 70px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 {
    padding: 80px 0 70px;
  }
}

.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a {
  color: #000;
}

.footer-widget-wrapper.style-2 .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content p {
  color: #fff;
  max-width: 400px;
  margin-bottom: 40px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content p {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content p {
    font-size: 16px;
  }
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 0;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content .theme-btn::before {
  background-color: var(--theme-2);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-left-content .theme-btn:hover {
  color: var(--white);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li {
  line-height: 162%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li {
    font-size: 16px;
  }
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li a {
  color: #fff;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .list li i {
  color: #fff;
  font-size: 16px;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .social-icon a {
  color: #fff;
  font-size: 20px;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-right-contact .social-icon a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--white);
  padding: 10px 0;
}

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

@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-bottom .footer-wrapper p {
  color: #000;
}

.footer-bottom .footer-wrapper p span {
  color: var(--theme);
}

.footer-bottom .footer-wrapper .footer-bottom-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper .footer-bottom-list {
    gap: 15px;
  }
}

.footer-bottom .footer-wrapper .footer-bottom-list li a {
  color: var(--white);
}

.footer-bottom .footer-wrapper .footer-bottom-list li a:hover {
  color: var(--theme);
}

.footer-bottom.style-2 {
  background-color: #f2f2f2;
  border-top: 1px none;
}

.footer-bottom.style-2 .footer-wrapper p {
  color: #000;
  font-family: "Merriweather Sans", sans-serif;
}

.footer-bottom.style-2 .footer-wrapper p span {
  color: var(--theme);
}

.footer-bottom.style-2 .footer-wrapper .footer-bottom-list li {
  font-family: "Merriweather Sans", sans-serif;
}

.footer-bottom.style-2 .footer-wrapper .footer-bottom-list li a {
  color: var(--white);
}

.footer-bottom.style-2 .footer-wrapper .footer-bottom-list li a:hover {
  color: var(--theme);
}

.footer-section-2 {
  position: relative;
}

.footer-section-2 .left-shape {
  position: absolute;
  left: 30px;
  top: 90px;
}

@media (max-width: 1600px) {
  .footer-section-2 .left-shape {
    left: 10px;
    top: 30px;
  }

  .footer-section-2 .left-shape img {
    width: 100px;
  }
}

@media (max-width: 1399px) {
  .footer-section-2 .left-shape {
    display: none;
  }
}

.footer-section-2 .right-shape {
  position: absolute;
  bottom: 44%;
  right: 30px;
}

@media (max-width: 1399px) {
  .footer-section-2 .right-shape {
    display: none;
  }
}

.footer-section-3 .container-fluid {
  padding: 0 90px;
}

@media (max-width: 1600px) {
  .footer-section-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .footer-section-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .footer-section-3 .container-fluid {
    padding: 0 15px;
  }
}

.footer-widget-wrapper-3 {
  padding: 120px 0 100px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper-3 {
    padding: 100px 0 100px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper-3 {
    padding: 80px 0 80px;
  }
}

.footer-widget-wrapper-3 .top-list {
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #C9C9C9;
  padding-top: 60px;
  margin-top: 80px;
  justify-content: center;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .top-list {
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.footer-widget-wrapper-3 .top-list li {
  font-size: 24px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .top-list li {
    font-size: 16px;
  }
}

.footer-widget-wrapper-3 .top-list li a {
  position: relative;
  z-index: 999;
}

.footer-widget-wrapper-3 .top-list li a:hover {
  color: var(--theme);
}

.footer-widget-wrapper-3 .text {
  font-size: 200px;
  text-align: center;
  color: var(--header);
  opacity: 0.1;
}

@media (max-width: 1600px) {
  .footer-widget-wrapper-3 .text {
    font-size: 150px;
  }
}

@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .text {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper-3 .text {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper-3 .text {
    font-size: 38px;
  }
}

.footer-bottom-3 {
  border-top: 1px solid #C9C9C9;
  padding: 30px 0;
}

.footer-bottom-3 .footer-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .footer-bottom-3 .footer-wrapper-3 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-bottom-3 .footer-wrapper-3 p {
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
}

.footer-bottom-3 .footer-wrapper-3 p span {
  color: var(--theme-2);
}

.footer-bottom-3 .footer-wrapper-3 .footer-bottom-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1399px) {
  .footer-bottom-3 .footer-wrapper-3 .footer-bottom-list {
    gap: 15px;
  }
}

.footer-bottom-3 .footer-wrapper-3 .footer-bottom-list li {
  font-family: "Merriweather Sans", sans-serif;
}

.footer-bottom-3 .footer-wrapper-3 .footer-bottom-list li a {
  color: var(--header);
}

.footer-bottom-3 .footer-wrapper-3 .footer-bottom-list li a:hover {
  color: var(--theme);
}

.header-top-section {
  background-color: var(--bg);
}

.header-top-section .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    display: none;
  }
}

.header-top-section-2 {
  background-color: var(--theme-2);
  position: relative;
}

.header-top-section-2 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .header-top-section-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-top-section-2 .container-fluid {
    display: none;
  }
}

.header-top-section-2.header-inner::before {
  display: none;
}

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

.header-top-wrapper .icon-items {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #D9D9D9;
  padding-right: 135px;
  height: 90px;
}

@media (max-width: 1399px) {
  .header-top-wrapper .icon-items {
    border-right: none;
    padding-right: 0;
    height: initial;
  }
}

.header-top-wrapper .icon-items .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid var(--theme-2);
  color: var(--theme-2);
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
}

.header-top-wrapper .icon-items .icon:hover {
  color: var(--theme-2);
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.header-top-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-wrapper .social-icon a {
  font-size: 20px;
  color: var(--theme-2);
  border: 1px solid var(--theme-2);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}

.header-top-wrapper .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.header-top-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
}

.header-top-wrapper-2 .header-left .list-icon {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header-top-wrapper-2 .header-left .list-icon li {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  /* font-family: "Merriweather Sans", sans-serif; */
}

.header-top-wrapper-2 .header-left .list-icon li i {
  color: var(--white);
  margin-right: 8px;
}

.header-top-wrapper-2 .header-left .list-icon li a {
  color: var(--white);
}

.header-top-wrapper-2 .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-wrapper-2 .social-icon a {
  font-size: 20px;
  color: var(--theme);
  border: 1px solid var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}

.header-top-wrapper-2 .social-icon a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.header-top-wrapper-2.inner .header-left {
  margin-left: 0;
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 27px;
}

@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }

  .my-dropdown>a .arrow {
    display: none !important;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-2);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme-2);
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: scaleY(0) translateZ(100px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.34px;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme-2);
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
  margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 18px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--white);
  position: relative;
  background-color: var(--theme-2);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 33px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--theme-2) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  height: 380%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme-2);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

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

.header-main .header-right {
  margin-left: 14px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-right .header-button {
  margin-right: 10px;
}

.header-main .header-right .search-toggler {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--theme-2);
  border-radius: 100px;
  border: 1px solid var(--theme-2);
  font-size: 16px;
}

@media (max-width: 575px) {
  .header-main .header-right .search-toggler {
    display: none;
  }
}

@media (max-width: 1399px) {
  .header-main .header-right .header-button {
    display: none;
  }
}

.header-main .header-right .header-button .theme-btn::before {
  background-color: var(--white);
}

.header-main .header-right .header-button .theme-btn:hover {
  color: var(--header);
}

.header-main .header-right .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-1 {
  background-color: var(--theme);
}

.header-1 .container-fluid {
  padding: 0 41px;
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}

.header-1.header-2 {
  position: relative;
  z-index: 9999;
}

/* .header-1.header-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  width: 387px;
  clip-path: polygon(0 0, 79% 0, 100% 100%, 0% 100%);
  z-index: -1;
} */

@media (max-width: 1399px) {
  .header-1.header-2::before {
    display: none;
  }
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-left .logo .header-logo {
    display: none;
  }
}

.header-1.header-2 .header-main .header-left .logo .header-logo-2 {
  display: none;
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-left .logo .header-logo-2 {
    display: block;
  }
}

.header-1.header-2.header-3 {
  background-color: #ffffff;
}

/* .header-1.header-2.header-3::before {
  background-color: var(--theme);
} */

@media (max-width: 1399px) {
  .header-1.header-2.header-3 .header-main .header-left .logo .header-logo {
    display: block;
  }
}

.header-1.header-2.header-3.header-inner::before {
  display: none;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 .header-main .header-right .header-button .theme-btn::before {
  background-color: var(--theme);
}

.sticky.header-2::before {
  display: none;
}

.sticky.header-2 .header-main .header-left .logo .header-logo {
  display: none;
}

.sticky.header-2 .header-main .header-left .logo .header-logo-2 {
  display: block;
}

.sticky.header-3 {
  background-color: var(--white) !important;
}

.sticky.header-3 .header-main .header-left .logo .header-logo {
  display: block;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--theme-2);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  margin-bottom: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 0;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 14px;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

/* .breadcrumb-wrapper {
  position: relative;
  max-width: 1920px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 600"><path fill-rule="evenodd" clip-rule="evenodd"  d="M0 434.474V0H1920V599.565C1920 599.565 1915.6 589.879 1909.61 589.276C1902.9 588.6 1903.08 597.779 1896.62 599.565C1885.78 602.562 1881.9 589.144 1870.65 587.873C1863.58 587.074 1859.16 591.486 1852.47 589.276C1846.14 587.184 1846.07 575.88 1840 578.519C1836.71 579.951 1838.41 585.005 1834.81 585.534C1832.2 585.916 1831.14 583.723 1828.57 583.196C1820.63 581.568 1813.35 595.379 1808.83 589.276C1807 586.802 1808.71 584.468 1807.27 581.793C1801.85 571.72 1792.79 600.586 1780.78 597.694C1773.29 595.891 1773.77 587.157 1766.23 585.534C1759.34 584.051 1755.64 588.776 1748.57 589.276C1737.93 590.029 1731.8 588.235 1721.56 585.534C1713.79 583.485 1710.42 577.982 1702.34 578.519C1697.86 578.817 1695.82 580.953 1691.43 581.793C1683.29 583.349 1677.79 584.715 1670.13 581.793C1659.04 577.561 1664.24 563.318 1653.51 558.409C1646.39 555.157 1639.93 559.988 1633.25 556.07C1624.87 551.164 1632.85 534.835 1622.86 535.025C1615.68 535.161 1613.17 540.777 1609.35 546.249C1606.04 550.994 1604.16 559.812 1604.16 559.812C1604.16 559.812 1596.81 569.527 1589.61 572.439C1571.39 579.811 1560.76 532.774 1547.53 546.249C1544.35 549.493 1546.57 555.39 1541.82 556.07C1538.5 556.545 1537.25 551.943 1534.03 552.797C1529.36 554.035 1534.63 559.671 1534.03 564.021C1532.54 574.807 1530.64 582.689 1521.04 589.276C1511.54 595.79 1502.34 597.058 1490.91 593.953C1484.28 592.152 1482.63 586.753 1475.84 585.534C1472.06 584.856 1469.68 586.481 1465.97 585.534C1459.35 583.843 1460.39 574.178 1453.51 574.31C1450.49 574.368 1449.18 576.05 1446.23 576.648C1424.62 581.047 1431.4 535.85 1409.35 537.831C1403.16 538.387 1400.5 542.779 1394.29 542.508C1388.83 542.27 1386.75 537.573 1381.3 537.831C1373.12 538.218 1373.2 547.477 1365.71 550.458C1347.38 557.76 1338.56 524.78 1319.48 530.348C1313.42 532.116 1311.54 536.149 1305.45 537.831C1282.41 544.199 1286.41 496.989 1262.34 498.078C1245.7 498.831 1239.26 529.755 1227.01 519.592C1222.94 516.212 1225.79 508.559 1220.26 508.367C1216.21 508.227 1215.33 511.961 1211.95 513.979C1181.33 532.258 1143.84 493.339 1117.92 516.785C1114.06 520.283 1114.3 525.077 1109.09 526.607C1102.45 528.557 1099.35 516.993 1092.99 519.592C1088.11 521.585 1090.39 527.297 1086.23 530.348C1079 535.661 1071.33 532.597 1062.34 530.348C1052.04 527.771 1048.85 512.149 1039.48 516.785C1034.89 519.056 1036.39 524.529 1031.69 526.607C1027.32 528.539 1023.93 525.495 1019.22 526.607C1011.68 528.387 1010.97 535.462 1003.64 537.831C995.998 540.298 989.903 534.206 982.857 537.831C979.121 539.753 978.504 542.517 975.065 544.846C962.047 553.665 947.994 541.411 933.507 548.12C926.687 551.278 925.511 557.882 917.922 558.877C910.684 559.825 907.517 554.088 900.26 553.264C890.465 552.153 885.159 557.782 875.325 557.006C868.854 556.495 865.664 554.001 859.221 553.264C852.781 552.529 849.083 553.011 842.597 553.264C829.927 553.76 822.261 561.023 810.39 557.006C796.831 552.418 800.649 536.786 788.052 530.348C770.73 521.496 752.581 544.486 737.143 533.154C733.016 530.125 732.607 526.635 728.312 523.801C717.349 516.566 706.727 526.644 693.507 523.801C680.976 521.105 674.314 503.881 663.896 510.706C661.103 512.536 661.49 515.89 658.182 516.785C653.548 518.04 652.583 511.321 647.792 510.706C641.592 509.909 639.484 517.292 633.247 516.785C625.102 516.124 625.189 498.741 618.701 503.223C616.737 504.58 617.372 507.089 615.065 507.9C611.658 509.097 610.819 504.029 607.273 503.223C602.875 502.223 600.376 504.903 595.844 505.093C585.571 505.525 580.386 496.839 570.39 499.014C565.007 500.185 563.444 504.72 557.922 505.093C551.493 505.528 548.788 501.289 542.857 499.014C524.026 491.79 513.947 484.105 493.507 483.113C477.254 482.324 468.672 491.034 452.468 489.66C435.777 488.245 422.247 463.37 412.468 475.63C409.474 479.383 411.444 483.194 408.312 486.854C399.266 497.423 387.03 473.153 372.468 475.63C366.656 476.618 364.316 481.39 358.442 480.774C353.842 480.292 352.516 476.737 348.052 475.63C340.556 473.77 334.887 474.232 328.312 477.968C325.519 479.555 325.371 482.887 322.078 483.113C318.476 483.359 318.023 479.446 314.805 477.968C311.255 476.337 308.75 474.592 304.935 475.63C301.774 476.49 301.509 479.209 298.701 480.774C290.768 485.198 283.891 482.691 274.805 480.774C267.465 479.226 264.673 473.432 257.143 473.759C250.346 474.054 248.356 481.042 241.558 480.774C231.955 480.396 233.692 467.14 224.416 464.873C215.057 462.586 209.562 474.107 200.519 470.953C194.766 468.946 194.698 463.45 189.091 461.132C177.999 456.545 169.698 473.841 158.961 468.615C152.322 465.383 154.394 457.414 147.532 454.584C138.31 450.781 132.705 460.369 122.597 461.132C118.352 461.452 115.898 460.54 111.688 461.132C106.807 461.818 104.654 465.331 99.7403 464.873C93.0203 464.247 93.3733 455.798 86.7533 454.584C81.0158 453.532 78.0408 458.316 72.2078 457.858C61.8828 457.046 62.0596 440.377 51.9481 442.424C48.5834 443.106 47.5326 445.535 44.1558 446.166C35.4499 447.793 33.8922 436.999 25.4545 434.474C16.0215 431.651 0 434.474 0 434.474Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
} */

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgb(0 0 0 / 71%) 0%, rgb(75 75 75 / 65%) 100%);
  /* background:linear-gradient(0deg, rgb(10 10 10) 0%, rgb(37 95 57 / 65%) 100%) ; */
  /* background: linear-gradient(0deg, rgba(18, 47, 42, 0.7) 0%, rgba(18, 47, 42, 0.7) 100%); */
}

.breadcrumb-wrapper .page-heading {
  padding: 136px 0px;
  text-align: center;
  position: relative;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0 100px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 80px 0 80px;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 49px;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--theme);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  font-family: "Merriweather Sans", sans-serif;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.error-item .error-image img {
  width: 100%;
  height: 100%;
}

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

.error-item .error-content h2 {
  font-size: 64px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .error-item .error-content h2 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .error-item .error-content h2 {
    font-size: 35px;
  }
}

.error-item .error-content p {
  max-width: 649px;
  margin: 0 auto;
}

.error-item .error-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 48px;
}

@media (max-width: 1199px) {
  .error-item .error-content .theme-btn {
    margin-top: 30px;
  }
}

.error-item .error-content .theme-btn::before {
  background-color: var(--theme-2);
}

.error-item .error-content .theme-btn:hover {
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1199px) {
  .array-buttons {
    flex-wrap: wrap;
  }
}

.array-buttons .array-prev {
  width: 110px;
  height: 48px;
  line-height: 45px;
  text-align: center;
  background-color: transparent;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 100px;
  border: 1px solid var(--header);
  font-weight: 600;
}

.array-buttons .array-prev i {
  margin-left: 5px;
  transform: rotate(45deg);
}

.array-buttons .array-prev:hover {
  background: var(--theme-2);
  color: var(--header);
  border: 1px solid var(--theme-2);
}

.array-buttons .array-next {
  width: 110px;
  height: 48px;
  line-height: 45px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 100px;
  font-weight: 600;
  /* text-transform: uppercase; */
}

.array-buttons .array-next i {
  margin-left: 5px;
  transform: rotate(-45deg);
}

.array-buttons .array-next:hover {
  background: var(--header);
  color: var(--white);
}

.array-buttons-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1199px) {
  .array-buttons-2 {
    flex-wrap: wrap;
  }
}

.array-buttons-2 .array-prev {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--header);
  color: #00E5FF;
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}

.array-buttons-2 .array-prev:hover {
  background: var(--theme);
  color: var(--white);
}

.array-buttons-2 .array-next {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 100%;
  text-align: center;
  background: #2ADDC8;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

.array-buttons-2 .array-next:hover {
  background: var(--theme);
  color: var(--white);
}

.array-buttons-4 {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1199px) {
  .array-buttons-4 {
    flex-wrap: wrap;
  }
}

.array-buttons-4 .array-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--bg);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}

.array-buttons-4 .array-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid rgb(65, 65, 65);
  border-radius: 100%;
  text-align: center;
  background: transparent;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.array-buttons-4 .array-next:hover {
  background: var(--bg);
  border: 1px none;
  color: var(--white);
}

.swiper-dot {
  text-align: center;
  margin-top: 30px;
}

.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: var(--theme-2);
  opacity: 1;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 30px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.swiper-dot-2 {
  text-align: center;
  margin-top: 30px;
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid var(--header);
  opacity: 1;
  position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid var(--header);
  transition: 0.6s;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 30px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.page-nav-wrap {
  margin-top: 60px;
}

@media (max-width: 1199px) {
  .page-nav-wrap {
    margin-top: 30px;
  }
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--theme-2);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
  background: linear-gradient(180deg, #1539EE 0%, #2ADDC8 100%);
  color: var(--white);
  border-radius: 10px;
}

.page-nav-wrap ul li .page-numbers.style-2 {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  border: 1px solid var(--header);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
  background: var(--theme-2);
  color: var(--white);
  border: 1px solid var(--theme-2);
}

.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.custom-container {
  max-width: 1700px;
  margin: 0 auto;
}

.bw-img-anim-left,
.bw-img-anim-right {
  transition: clip-path 0.5s ease-out;
}

.hero-1 {
  position: relative;
  /* padding: 180px 0; */

  height: 80vh;
}

.thematic_interventions img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.thematic_interventions h4 {
    margin-bottom: 100px;
    margin-top: 20px;
    background: #ffc107;
    border-radius: 40px;
    padding: 10px;
}

.our_approach h4 {
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 8px;
    padding: 10px;
}

.magenta_color{background: #5d4b94}
.blue_color {background: #06427d;}
.purple_color{background: #e63a74}

@media (max-width: 1399px) {
  .hero-1 {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    padding: 80px 0;
  }
}

/* .hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 999;
} */

.hero-1 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
  z-index: 9;
}

.hero-1 .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9999;
}

@media (max-width: 1199px) {
  .hero-1 .shape {
    display: none;
  }
}

.hero-1 .hero-content {
  position: relative;
  z-index: 999;
  text-align: center;
}

@media (max-width: 767px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}

.hero-1 .hero-content h6 {
  color: var(--theme);
  margin-bottom: 20px;
  /* text-transform: uppercase; */
  letter-spacing: 5px;
}

.hero-1 .hero-content h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.hero-1 .hero-content p {
  max-width: 722px;
  color: var(--white);
  margin: 0 auto;
}

.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content .hero-button {
    justify-content: center;
  }
}

.hero-1 .hero-content .hero-button .theme-btn.border-btn {
  background-color: transparent;
  border: 1px solid var(--white);
}

.hero-1 .hero-content .hero-button .theme-btn.border-btn:hover {
  border: 1px solid var(--theme);
}

.hero-section-1 {
  position: relative;
}

.hero-section-1 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}

@media (max-width: 1199px) {
  .hero-section-1 .arrow-button {
    display: none;
  }
}

.hero-section-1 .arrow-button .array-prev {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--theme-2);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  line-height: 60px;
  color: var(--theme);
  font-size: 18px;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

.hero-section-1 .arrow-button .array-prev:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.hero-section-1 .arrow-button .array-next {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 18px;
  z-index: 999;
  transition: all 0.4s ease-in-out;
  background-color: var(--theme-2);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  line-height: 60px;
}

.hero-section-1 .arrow-button .array-next:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.hero-2 {
  padding: 180px 0;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .hero-2 {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .hero-2 {
    padding: 80px 0;
  }
}

.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.51) 30.29%, rgba(0, 0, 0, 0.37) 39.42%, rgba(0, 0, 0, 0) 55.77%);
  z-index: -1;
}

.hero-2 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1399px) {
  .hero-2 .left-shape {
    display: none;
  }
}

.hero-2 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .hero-2 .right-shape {
    display: none;
  }
}

.hero-2 .left-shape-2 {
  position: absolute;
  left: 100px;
  bottom: 290px;
  z-index: -1;
}

@media (max-width: 1600px) {
  .hero-2 .left-shape-2 {
    display: none;
  }
}

.hero-2 .hero-content h4 {
  color: var(--theme);
  /* text-transform: uppercase; */
}

.hero-2 .hero-content h1 {
  color: var(--white);
  font-size: 110px;
}

@media (max-width: 1600px) {
  .hero-2 .hero-content h1 {
    font-size: 110px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 35px;
  }
}

.hero-2 .hero-content .hero-button-item {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-content .hero-button-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.hero-2 .hero-content .hero-button-item .theme-btn {
  background-color: var(--theme);
  color: #0F0F0F;
}

.hero-2 .hero-content .hero-button-item .theme-btn::before {
  background-color: var(--header);
}

.hero-2 .hero-content .hero-button-item .theme-btn:hover {
  color: var(--white);
}

.hero-2 .hero-content .hero-button-item .button-text {
  display: flex;
  align-items: center;
}

.hero-2 .hero-content .hero-button-item .button-text .video-btn {
  border: 1px solid var(--white);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 100px;
  text-align: center;
}

.hero-2 .hero-content .hero-button-item .button-text span {
  font-size: 14px;
  color: var(--white);
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
}

.hero-3 {
  padding: 80px 0;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .hero-3 {
    padding: 80px 0;
  }
}

.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(11, 78, 61, 0.9) 0%, rgba(11, 78, 61, 0.9) 100%);
  z-index: -1;
}

.hero-3 .container-fluid {
  padding: 0 150px;
}

@media (max-width: 1600px) {
  .hero-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-3 .container-fluid {
    padding: 0 15px;
  }
}

.hero-3 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-3 .right-shape img {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .hero-3 .right-shape {
    display: none;
  }
}

.hero-3 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .hero-3 .left-shape {
    display: none;
  }
}

.hero-3 .box {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 46px;
  padding: 20px 30px;
  background-color: var(--white);
  position: absolute;
  bottom: 175px;
  left: 49%;
  z-index: 99;
}

@media (max-width: 1199px) {
  .hero-3 .box {
    display: none;
  }
}

.hero-3 .box .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
}

.hero-3 .box .icon img {
  width: initial;
  height: initial;
}

.hero-3 .box .content h6 {
  font-weight: 400;
}

.hero-3 .box .content span {
  font-family: "Merriweather Sans", sans-serif;
  color: var(--header);
}

.hero-3 .shape-1 {
  position: absolute;
  left: 48%;
  top: 120px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .hero-3 .shape-1 {
    display: none;
  }
}

.hero-3 .shape-1 img {
  width: initial;
  height: initial;
}

.hero-3 .shape-2 {
  position: absolute;
  bottom: 185px;
  right: 77px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .hero-3 .shape-2 {
    display: none;
  }
}

.hero-3 .shape-2 img {
  width: initial;
  height: initial;
}

.hero-3 .hero-content h6 {
  color: var(--theme);
  margin-bottom: 20px;
  /* text-transform: uppercase; */
}

.hero-3 .hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 68px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 30px;
  }
}

.hero-3 .hero-content h1 span {
  color: var(--theme);
}

.hero-3 .hero-content p {
  max-width: 730px;
  color: var(--white);
}

.hero-3 .hero-content .hero-button-item {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content .hero-button-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.hero-3 .hero-content .hero-button-item .theme-btn {
  background-color: var(--theme);
  color: #0F0F0F;
}

.hero-3 .hero-content .hero-button-item .theme-btn::before {
  background-color: var(--header);
}

.hero-3 .hero-content .hero-button-item .theme-btn:hover {
  color: var(--white);
}

.hero-3 .hero-content .hero-button-item .button-text {
  display: flex;
  align-items: center;
}

.hero-3 .hero-content .hero-button-item .button-text .video-btn {
  border: 1px solid var(--white);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 100px;
  text-align: center;
}

@media (max-width: 575px) {
  .hero-3 .hero-content .hero-button-item .button-text .video-btn.ripple::before {
    display: none;
  }

  .hero-3 .hero-content .hero-button-item .button-text .video-btn.ripple::after {
    display: none;
  }
}

.hero-3 .hero-content .hero-button-item .button-text span {
  font-size: 14px;
  color: var(--white);
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
}

.hero-3 .hero-image {
  max-width: 790px;
  position: relative;
  margin-left: 80px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-image {
    margin-left: 0;
  }
}

.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-3 .hero-image-slider {
  margin-right: -100px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-image-slider {
    margin-right: 0;
  }
}

.hero-3 .swiper-dot {
  position: absolute;
  right: 150px;
  bottom: 60px;
}

@media (max-width: 991px) {
  .hero-3 .swiper-dot {
    display: none;
  }
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li .submenu li a {
  border-bottom: none !important;
  font-size: 14px;
  padding: 6px 0;
  color: var(--header);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-card-items {
  margin-top: 30px;
}

.news-card-items .news-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.news-card-items .news-image .bottom-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.news-card-items .news-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}

.news-card-items .news-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}

.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}

.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}

.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}

.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}

.news-card-items .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}

.news-card-items .news-content {
  margin-top: 20px;
}

.news-card-items .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 20px;
}

.news-card-items .news-content .news-meta li {
  font-family: "Merriweather Sans", sans-serif;
}

.news-card-items .news-content .news-meta li i {
  margin-right: 8px;
}

.news-card-items .news-content h4 {
  border-bottom: 1px solid #C9C9C9;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.news-card-items .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-card-items .news-content h4 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.news-card-items:hover .news-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}

.news-card-items:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-card-items-2 {
  margin-top: 30px;
}

.news-card-items-2 .news-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.news-card-items-2 .news-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}

.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}

.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}

.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}

.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}

.news-card-items-2 .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}

.news-card-items-2 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}

.news-card-items-2 .news-content {
  margin-top: 20px;
}

.news-card-items-2 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 20px;
}

.news-card-items-2 .news-content .news-meta li {
  font-family: "Merriweather Sans", sans-serif;
}

.news-card-items-2 .news-content .news-meta li i {
  margin-right: 8px;
}

.news-card-items-2 .news-content h3 {
  margin-bottom: 20px;
  font-size: 30px;
}

@media (max-width: 1399px) {
  .news-card-items-2 .news-content h3 {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .news-card-items-2 .news-content h3 {
    font-size: 20px;
  }
}

.news-card-items-2 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-card-items-2 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items-2 .news-content p {
  max-width: 645px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .news-card-items-2 .news-content p {
    margin-bottom: 30px;
  }
}

.news-card-items-2:hover .news-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}

.news-card-items-2:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-card-items-3 {
  margin-top: 30px;
  border-radius: 20px;
  background-color: var(--white);
  position: relative;
  z-index: 999;
  overflow: hidden;
}

.news-card-items-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--theme-2);
  border-radius: 20px;
  z-index: -1;
  transition: height 0.5s ease;
}

.news-card-items-3 .news-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.news-card-items-3 .news-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}

.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}

.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}

.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}

.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}

.news-card-items-3 .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}

.news-card-items-3 .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}

.news-card-items-3 .news-content {
  padding: 30px;
}

.news-card-items-3 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 20px;
}

.news-card-items-3 .news-content .news-meta li {
  font-family: "Merriweather Sans", sans-serif;
}

.news-card-items-3 .news-content .news-meta li i {
  margin-right: 8px;
}

.news-card-items-3 .news-content h4 {
  margin-bottom: 30px;
}

.news-card-items-3 .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--theme-2);
}

.news-card-items-3 .news-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items-3:hover .news-content {
  position: relative;
  z-index: 999;
}

.news-card-items-3:hover .news-content .news-meta li {
  color: var(--white);
}

.news-card-items-3:hover .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
  position: relative;
  z-index: 9999;
}

.news-card-items-3:hover .news-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items-3:hover .news-content .theme-btn {
  position: relative;
  z-index: 999;
  background-color: var(--theme);
  color: var(--theme-2);
}

.news-card-items-3:hover .news-content .theme-btn::before {
  background-color: var(--white);
}

.news-card-items-3:hover::before {
  height: 100%;
}

.news-card-items-3:hover .news-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}

.news-card-items-3:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-section-3 {
  position: relative;
}

.news-section-3 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .news-section-3 .left-shape {
    display: none;
  }
}

.news-section-3 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1399px) {
  .news-section-3 .right-shape {
    display: none;
  }
}

.news-standard-wrapper .news-grid-items {
  margin-bottom: 48px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-grid-items {
    margin-bottom: 30px;
  }
}

.news-standard-wrapper .news-grid-items .news-image {
  overflow: hidden;
  border-radius: 20px;
}

.news-standard-wrapper .news-grid-items .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 20px;
}

.news-standard-wrapper .news-grid-items .news-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-grid-items .news-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-standard-wrapper .news-grid-items .news-content .date-list li i {
  margin-right: 10px;
}

.news-standard-wrapper .news-grid-items .news-content h3 {
  margin-bottom: 10px;
  font-size: 32px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-grid-items .news-content h3 {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .news-standard-wrapper .news-grid-items .news-content h3 {
    font-size: 20px;
  }
}

.news-standard-wrapper .news-grid-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-standard-wrapper .news-grid-items .news-content h3 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.news-standard-wrapper .news-grid-items .news-content p {
  margin-bottom: 30px;
}

.news-standard-wrapper .news-grid-items:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.main-sideber .single-sidebar-widget {
  padding: 40px 35px;
  margin-bottom: 30px;
  background-color: #F7F7F7;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .main-sideber .single-sidebar-widget {
    padding: 40px 30px;
  }
}

.main-sideber .single-sidebar-widget .wid-title {
  margin-bottom: 20px;
}

.main-sideber .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sideber .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
}

.main-sideber .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--theme-2);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.main-sideber .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--header);
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  line-height: 1;
  padding: 20px;
  position: relative;
  font-family: "Merriweather Sans", sans-serif;
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme);
  z-index: 0;
  transition: width 0.5s ease;
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--header);
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover::before {
  width: 100%;
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 10px;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  margin-bottom: 10px;
  line-height: 133%;
  font-weight: 400;
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme);
}

.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
}

.main-sideber .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 12px 20px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.4s ease-in-out;
  position: relative;
}

.main-sideber .single-sidebar-widget .tagcloud a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme);
  z-index: 0;
  transition: width 0.5s ease;
}

.main-sideber .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sideber .single-sidebar-widget .tagcloud a:hover {
  color: var(--white);
  z-index: 999;
  position: relative;
}

.main-sideber .single-sidebar-widget .tagcloud a:hover::before {
  width: 100%;
  z-index: -1;
}

.news-details-wrapper .news-details-post .news-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.news-details-wrapper .news-details-post .news-details-content {
  margin-top: 30px;
}

.news-details-wrapper .news-details-post .news-details-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-post .news-details-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-details-wrapper .news-details-post .news-details-content .date-list li i {
  margin-right: 10px;
  color: var(--theme);
}

.news-details-wrapper .news-details-post .news-details-content .sideber {
  border-left: 5px solid var(--theme-2);
  padding: 40px 30px;
  background-color: #F7F7F7;
  margin-top: 30px;
  margin-bottom: 60px;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .sideber {
    padding: 30px;
    margin-bottom: 30px;
  }
}

.news-details-wrapper .news-details-post .news-details-content .news-details-list-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .news-details-list-items {
    margin-bottom: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item li {
  font-size: 20px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  color: var(--header);
}

@media (max-width: 575px) {
  .news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item li {
    font-size: 16px;
  }
}

.news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item li svg {
  margin-right: 10px;
}

.news-details-wrapper .news-details-post .news-details-content .news-details-list-items .list-item li:not(:last-child) {
  margin-bottom: 30px;
}

.news-details-wrapper .news-details-post .news-details-content .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-right: 8px;
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
}

.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: #F7F7F7;
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud a {
    padding: 10px 18px;
  }
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}

.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--theme-2);
}

.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--header);
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  line-height: 36px;
  text-align: center;
  background-color: var(--bg);
}

.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}

.news-details-wrapper .news-details-post .news-details-content .tag-share-wrap .social-share a:hover {
  color: var(--theme-2);
  background-color: var(--theme);
}

.news-details-wrapper .news-details-post .news-details-content .comment-area {
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .comment-area {
    margin-top: 30px;
  }
}

.news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item {
    flex-wrap: wrap;
  }
}

.news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item .client-image {
  border: 1px dashed var(--theme-2);
  padding: 8px;
  border-radius: 100%;
}

.news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item .client-image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item .comment-content h4 {
  margin-bottom: 10px;
}

.news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item .comment-content p {
  max-width: 506px;
  margin-bottom: 0;
}

.news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item .comment-content .comment-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}

.news-details-wrapper .news-details-post .news-details-content .comment-area .comment-item .comment-content .comment-list li i {
  margin-right: 8px;
}

.news-details-wrapper .news-details-post .news-details-content .contact-from-box {
  margin-top: 60px;
  padding: 40px;
  background-color: #F7F7F7;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .contact-from-box {
    margin-top: 30px;
    padding: 30px;
  }
}

.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt input,
.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 16px;
  font-family: "Merriweather Sans", sans-serif;
  border-radius: 10px;
}

.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt input::placeholder,
.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt textarea::placeholder {
  color: var(--text);
}

.news-details-wrapper .news-details-post .news-details-content .contact-from-box .form-clt textarea {
  padding-bottom: 120px;
  resize: none;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "DM Serif Text", serif, "Nunito", sans-serif;
  text-align: center;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Merriweather Sans", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 8px;
  color: var(--theme);
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--theme-2);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

@media (max-width: 575px) {
  .back-to-top {
    display: none;
  }
}

.back-to-top:hover {
  background-color: var(--white);
  color: var(--theme-2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.search-popup__form .search-btn:hover {
  background-color: var(--black);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.pricing-wrapper {
  margin-top: 60px;
}

.pricing-wrapper .pricing-card-item-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 110px 110px 0;
  border-radius: 0 110px 110px 0;
  border: 1px solid #C9C9C9;
  padding: 40px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .pricing-wrapper .pricing-card-item-2 {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
    border-radius: 10px;
  }
}

.pricing-wrapper .pricing-card-item-2 .content h3 {
  margin-bottom: 10px;
}

.pricing-wrapper .pricing-card-item-2 .content p {
  max-width: 366px;
}

.pricing-wrapper .pricing-card-item-2 .number {
  font-size: 36px;
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 100%;
  background-color: var(--theme);
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1399px) {
  .pricing-wrapper .pricing-card-item-2 .number {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 25px;
  }
}

.pricing-wrapper .pricing-card-item-2 .number::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--theme-2);
  content: "";
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.pricing-wrapper .pricing-card-item-2:hover .number {
  color: var(--white);
}

.pricing-wrapper .pricing-card-item-2:hover .number::after {
  transform: scale(1);
  z-index: -1;
}

.pricing-wrapper .pricing-right-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 110px 0 0 110px;
  border: 1px solid #C9C9C9;
  padding: 40px 80px 40px 60px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .pricing-wrapper .pricing-right-card {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
    border-radius: 10px;
  }
}

.pricing-wrapper .pricing-right-card .pricing-list {
  border-right: 1px solid #D9D9D9;
  padding-right: 30px;
}

@media (max-width: 1399px) {
  .pricing-wrapper .pricing-right-card .pricing-list {
    border-right: none;
    padding-right: 0;
  }
}

.pricing-wrapper .pricing-right-card .pricing-list li {
  font-family: "Merriweather Sans", sans-serif;
}

.pricing-wrapper .pricing-right-card .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}

.pricing-wrapper .pricing-right-card .pricing-list li i {
  margin-right: 6px;
  color: var(--theme-2);
}

.pricing-wrapper .pricing-right-card .pricing-button .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.pricing-wrapper .pricing-right-card .pricing-button .theme-btn::before {
  background-color: var(--theme-2);
}

.pricing-wrapper .pricing-right-card .pricing-button .theme-btn:hover {
  color: var(--white);
}

.project-card-item {
  margin-top: 30px;
}

.project-card-item .project-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.project-card-item .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}

.project-card-item .project-image .project-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: absolute;
  left: 40px;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.project-card-item .project-image .project-content.style-2 {
  flex-direction: row-reverse;
}

.project-card-item .project-image .project-content.style-2 .content h5 {
  text-align: left;
}

.project-card-item .project-image .project-content .content h3 {
  font-size: 36px;
}

@media (max-width: 1199px) {
  .project-card-item .project-image .project-content .content h3 {
    font-size: 25px;
  }
}

.project-card-item .project-image .project-content .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-card-item .project-image .project-content .content h3 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.project-card-item .project-image .project-content .arrow-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--theme-2);
  transition: all 0.4s ease-in-out;
}

.project-card-item .project-image .project-content .arrow-icon i {
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.project-card-item .project-image .project-content .arrow-icon:hover {
  background-color: var(--white);
  color: var(--theme-2);
  border: 1px solid var(--white);
}

.project-card-item .project-image .project-content .arrow-icon:hover i {
  transform: rotate(0);
}

.project-card-item .project-image .shape-image {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  left: -30px;
  bottom: 0;
  max-width: 580px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 580 166"><path fill-rule="evenodd" clip-rule="evenodd"  d="M2.39423 2.39423H24.0276C24.4094 2.39423 24.7903 2.35863 25.1655 2.28789L34.3657 0.55312C35.5707 0.325895 36.5161 1.57489 35.9701 2.67296C35.4831 3.65253 36.1868 4.80453 37.2807 4.81838L349.977 8.77885C349.977 8.77885 361.087 8.77884 353.151 14.3654C345.215 19.9519 332.517 21.5481 332.517 21.5481H324.432C322.977 21.5481 321.556 21.9806 320.347 22.7906C318.508 24.0238 316.21 24.36 314.094 23.7054L307.814 21.7622C307.373 21.6256 306.895 21.6788 306.494 21.9089C305.054 22.7366 305.601 24.9328 307.26 25.0119L502.347 34.3173C558.207 36.9817 531.658 37.47 511.767 37.5305C538.049 38.4126 447.294 45.9424 434.73 46.9704C433.802 47.0464 432.993 47.5249 432.454 48.2839C431.059 50.2475 432.286 52.9605 434.687 53.1501C444.177 53.8994 464.226 55.0375 477.746 52.6731C495.999 49.4808 480.115 56.6888 482.507 58.2596C487.179 61.3264 491.513 56.4453 496.792 58.2596C500.212 59.4351 501.2 62.2596 504.728 63.0481C507.148 63.589 508.627 62.6626 511.077 63.0481C516.282 63.8672 518.004 67.6939 522.981 69.4327C533.52 73.1147 536.472 66.2404 551.55 69.4327C563.541 71.9714 542.91 72.9959 533.958 73.309C531.49 73.3954 529.15 74.4016 527.408 76.1533C526.58 76.9863 525.584 77.7894 524.417 77.6557C522.851 77.4763 521.386 76.4965 519.806 77.4135C517.643 78.6698 516.695 80.488 516.632 83C516.499 88.2967 528.917 77.8425 530.123 83C530.407 84.2135 529.978 84.9542 530.123 86.1923C531.119 94.7057 548.161 89.4454 554.636 87.1246C556.289 86.5324 558.005 86.1387 559.691 85.6472C561.343 85.1652 563.101 84.3282 562.661 83C562.238 81.7241 564.294 81.8081 566.307 82.1649C568.649 82.58 571.017 82.8995 573.395 82.8873C579.162 82.8577 587.752 83.6301 565.835 90.1827C536.472 98.9615 526.155 95.7692 516.632 95.7692C513.006 95.7692 512.141 96.6948 512.461 97.8412C513.525 101.662 518.75 102.154 522.716 102.154H551.55L488.033 109.165C486.996 109.279 485.951 109.302 484.909 109.345C482.552 109.442 478.308 109.975 477.746 112.529C477.255 114.759 480.074 116.247 482.637 117.123C485.116 117.97 487.785 117.8 490.362 117.332C495.407 116.417 503.447 115.351 502.347 118.115C500.76 122.106 462.667 119.712 462.667 122.106C462.667 124.5 461.697 125.741 462.667 127.692C464.608 131.595 472.069 123.682 473.778 127.692C474.634 129.701 476.358 131.803 478.49 131.332C484.481 130.008 493.764 128.487 491.237 132.481C489.669 134.958 486.477 135.673 483.545 135.673H469.81C459.493 135.673 465.842 140.462 469.81 140.462H510.12C511.767 140.462 513.364 141.025 514.648 142.058C515.932 143.091 517.531 143.654 519.178 143.654H552.393C553.417 143.654 554.44 143.728 555.446 143.918C558.015 144.406 562.452 145.451 557.106 146.048C549.963 146.846 544.408 146.846 526.155 148.442C507.902 150.038 538.059 150.038 526.155 152.433C514.251 154.827 557.106 150.837 557.106 150.837L536.856 155.2C535.624 155.466 534.605 156.328 534.14 157.498C533.622 158.801 532.426 159.709 531.032 159.859L513.43 161.756C511.924 161.918 510.546 162.677 509.604 163.862C508.529 165.213 506.897 166 505.17 166H20C8.9543 166 0 157.046 0 146V4.78846C0 3.46616 1.07193 2.39423 2.39423 2.39423Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}

.project-card-item:hover .project-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.project-card-item:hover .project-image .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.project-card-item:hover .project-image .shape-image {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.causes-card-items-2 {
  margin-top: 30px;
}

.causes-card-items-2 .causes-image {
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.causes-card-items-2 .causes-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.51) 44.73%, rgba(0, 0, 0, 0.55) 60.96%, rgba(0, 0, 0, 0.6) 100%);
  z-index: -1;
  height: 86%;
}

.causes-card-items-2 .causes-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
}

.causes-card-items-2 .causes-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.causes-card-items-2 .causes-image .causes-content {
  position: absolute;
  bottom: 0px;
  left: 40px;
  transition: all 0.4s ease;
}

@media (max-width: 1600px) {
  .causes-card-items-2 .causes-image .causes-content {
    left: 20px;
    bottom: -40px;
  }
}

.causes-card-items-2 .causes-image .causes-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.causes-card-items-2 .causes-image .causes-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.causes-card-items-2 .causes-image .causes-content .content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.causes-card-items-2 .causes-image .causes-content .content p {
  max-width: 340px;
  color: var(--white);
}

.causes-card-items-2 .causes-image .causes-content .content .link-btn {
  color: var(--white);
}

.causes-card-items-2 .causes-image .causes-content .content .link-btn:hover {
  color: var(--theme);
}

.causes-card-items-2:hover .causes-image::after {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.causes-card-items-2:hover .causes-image .causes-content {
  transform: translateY(-100px);
  z-index: 999;
}

@media (max-width: 1600px) {
  .causes-card-items-2:hover .causes-image .causes-content {
    transform: translateY(-130px);
  }
}

.causes-card-items-2:hover .causes-image .causes-content .content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.causes-card-items-2:hover .causes-image .causes-content .content p {
  margin-bottom: 15px;
  margin-top: 10px;
}

.causes-section-2 {
  position: relative;
}

.causes-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .causes-section-2 .left-shape {
    display: none;
  }
}

.causes-section-2 .container-fluid {
  padding: 0 75px;
}

@media (max-width: 1600px) {
  .causes-section-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .causes-section-2 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .causes-section-2 .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 1399px) {
  .causes-section-2 .arrow-button {
    display: none;
  }
}

.causes-section-2 .arrow-button .array-prev {
  left: 35px;
  top: 58%;
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme-2);
  color: var(--white);
  z-index: 999;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1600px) {
  .causes-section-2 .arrow-button .array-prev {
    left: 18px;
  }
}

.causes-section-2 .arrow-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--theme-2);
}

.causes-section-2 .arrow-button .array-next {
  position: absolute;
  right: 35px;
  top: 58%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-2);
  z-index: 999;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1600px) {
  .causes-section-2 .arrow-button .array-next {
    right: 18px;
  }
}

.causes-section-2 .arrow-button .array-next:hover {
  background-color: var(--theme);
  color: var(--theme-2);
}

.causes-section-2 .causes-button {
  text-align: center;
  margin-top: 60px;
}

.causes-section-2 .causes-button .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.causes-section-2 .causes-button .theme-btn::before {
  background-color: var(--theme-2);
}

.causes-section-2 .causes-button .theme-btn:hover {
  color: var(--white);
}

.causes-card-item-3 {
  border-radius: 20px;
  padding: 30px;
  background-color: #F7F7F7;
  margin-top: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .causes-card-item-3 {
    padding: 25px;
  }
}

.causes-card-item-3 .causes-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.causes-card-item-3 .causes-image .causes-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}

.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}

.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}

.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}

.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}

.causes-card-item-3 .causes-image .causes-layer-wrapper .causes-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}

.causes-card-item-3 .causes-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.causes-card-item-3 .causes-content {
  margin-top: 20px;
}

.causes-card-item-3 .causes-content h4 {
  margin-bottom: 20px;
}

.causes-card-item-3 .causes-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.causes-card-item-3 .causes-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.causes-card-item-3 .causes-content p {
  max-width: 380px;
  margin-bottom: 20px;
}

.causes-card-item-3 .causes-content .pro-items {
  width: 100%;
}

.causes-card-item-3 .causes-content .pro-items:not(:last-child) {
  margin-bottom: 20px;
}

.causes-card-item-3 .causes-content .pro-items.style-2 .progress {
  background-color: rgba(255, 193, 7, 0.2);
}

.causes-card-item-3 .causes-content .pro-items.style-2 .progress-value {
  background: var(--theme);
}

.causes-card-item-3 .causes-content .pro-items.style-3 .progress {
  background-color: rgba(255, 85, 40, 0.2);
}

.causes-card-item-3 .causes-content .pro-items.style-3 .progress-value {
  background: #FF5528;
}

.causes-card-item-3 .causes-content .pro-items .progress {
  background-color: rgba(129, 57, 231, 0.2);
  justify-content: flex-start;
  border-radius: 20px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
  overflow: visible;
}

.causes-card-item-3 .causes-content .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 20px;
  background: #8139E7;
  height: 8px;
  width: 0;
}

.causes-card-item-3 .causes-content .pro-items .style-two {
  animation: load2 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.causes-card-item-3 .causes-content .donate-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .causes-card-item-3 .causes-content .donate-list {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}

.causes-card-item-3 .causes-content .donate-list li {
  font-size: 16px;
  font-weight: 400;
}

.causes-card-item-3 .causes-content .theme-btn {
  padding: 12px 30px;
  background-color: #8139E7;
  color: var(--white);
}

.causes-card-item-3 .causes-content .theme-btn::before {
  background-color: var(--theme);
}

.causes-card-item-3 .causes-content .theme-btn:hover {
  color: var(--white);
}

.causes-card-item-3 .causes-content .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--theme-2);
}

.causes-card-item-3 .causes-content .theme-btn.style-2::before {
  background-color: var(--theme-2);
}

.causes-card-item-3 .causes-content .theme-btn.style-2:hover {
  color: var(--white);
}

.causes-card-item-3 .causes-content .theme-btn.style-3 {
  background-color: #FF5528;
  color: var(--white);
}

.causes-card-item-3 .causes-content .theme-btn.style-3::before {
  background-color: var(--theme-2);
}

.causes-card-item-3 .causes-content .theme-btn.style-3:hover {
  color: var(--white);
}

.causes-card-item-3:hover {
  transform: translateY(-10px);
}

.causes-card-item-3:hover .causes-image .causes-layer-wrapper .causes-layer-image {
  transform: translateY(-100%);
}

.causes-details-wrapper .causes-details-post .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.causes-details-wrapper .causes-details-post .details-content {
  margin-top: 30px;
}

.causes-details-wrapper .causes-details-post .details-content .cause-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .causes-details-wrapper .causes-details-post .details-content .cause-list {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.causes-details-wrapper .causes-details-post .details-content .cause-list li {
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
}

.causes-details-wrapper .causes-details-post .details-content .cause-list li i {
  margin-right: 8px;
}

.causes-details-wrapper .causes-details-post .details-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .causes-details-wrapper .causes-details-post .details-content h2 {
    font-size: 25px;
  }
}

.causes-details-wrapper .causes-details-post .details-content p {
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content p {
    margin-bottom: 30px;
  }
}

.causes-details-wrapper .causes-details-post .details-content .cause-lis-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content .cause-lis-items {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
}

.causes-details-wrapper .causes-details-post .details-content .cause-lis-items .list-item li {
  font-size: 20px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  color: var(--header);
}

@media (max-width: 575px) {
  .causes-details-wrapper .causes-details-post .details-content .cause-lis-items .list-item li {
    font-size: 16px;
  }
}

.causes-details-wrapper .causes-details-post .details-content .cause-lis-items .list-item li svg {
  margin-right: 10px;
}

.causes-details-wrapper .causes-details-post .details-content .cause-lis-items .list-item li:not(:last-child) {
  margin-bottom: 30px;
}

.causes-details-wrapper .causes-details-post .details-content .cause-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.causes-details-wrapper .causes-details-post .details-content .comment-area {
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content .comment-area {
    margin-top: 30px;
  }
}

.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item {
    flex-wrap: wrap;
  }
}

.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .client-image {
  border: 1px dashed var(--theme-2);
  padding: 8px;
  border-radius: 100%;
}

.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .client-image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .comment-content h4 {
  margin-bottom: 10px;
}

.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .comment-content p {
  max-width: 506px;
  margin-bottom: 0;
}

.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .comment-content .comment-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}

.causes-details-wrapper .causes-details-post .details-content .comment-area .comment-item .comment-content .comment-list li i {
  margin-right: 8px;
}

.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box {
  background: #F7F7F7;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .causes-details-sideber-box {
    padding: 30px;
  }
}

.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box h4 {
  border-bottom: 4px solid var(--white);
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}

.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box h4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  height: 4px;
  width: 134px;
  top: 54px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .causes-details-sideber-box h4::before {
    top: 48px;
  }
}

.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li {
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li {
    font-size: 16px;
  }
}

.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li:not(:last-child) {
  margin-bottom: 30px;
}

.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li span {
  transition: all 0.4s ease-in-out;
}

.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li:hover a {
  color: var(--theme);
}

.causes-details-wrapper .causes-details-sideber .causes-details-sideber-box .donation-list li:hover span {
  color: var(--theme);
}

.causes-details-wrapper .causes-details-sideber .text {
  border-bottom: 4px solid #F7F7F7;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}

.causes-details-wrapper .causes-details-sideber .text::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-2);
  height: 4px;
  width: 134px;
  top: 54px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .text::before {
    top: 48px;
  }
}

.causes-details-wrapper .causes-details-sideber .details-post-area .details-items {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #C9C9C9;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .causes-details-wrapper .causes-details-sideber .details-post-area .details-items {
    flex-wrap: wrap;
  }
}

.causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-content h5 {
  font-size: 24px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-content h5 {
    font-size: 20px;
  }
}

.causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.causes-details-wrapper .causes-details-sideber .details-post-area .details-items .details-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.causes-details-wrapper .causes-details-sideber .contact-bg {
  position: relative;
  z-index: 9;
  border-radius: 20px;
  width: 450px;
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .contact-bg {
    width: initial;
  }
}

.causes-details-wrapper .causes-details-sideber .contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(11, 78, 61, 0.6) 0%, rgba(11, 78, 61, 0.6) 100%);
  z-index: -1;
  border-radius: 20px;
}

.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content {
  padding: 80px 0;
  text-align: center;
}

.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content h6 {
  font-size: 14px;
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 10px;
}

.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content h2 {
  font-size: 40px;
  color: var(--white);
}

@media (max-width: 1399px) {
  .causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content h2 {
    font-size: 30px;
  }
}

.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 40px;
}

.causes-details-wrapper .causes-details-sideber .contact-bg .donation-contact-content .theme-btn::before {
  background-color: var(--white);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title .sub-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-2);
  font-family: "Merriweather Sans", sans-serif;
  margin-bottom: 20px;
  /* text-transform: uppercase; */
  line-height: 1;
  border: 1px solid var(--header);
  padding: 10px 20px;
  border-radius: 100px;
  padding-left: 25px;
  display: inline-block;
  position: relative;
}

.section-title .sub-title::before {
  width: 6px;
  height: 6px;
  border-radius: 30px;
  background-color: var(--text-2);
  left: 0;
  position: absolute;
  content: "";
  top: 15px;
  left: 13px;
}

.section-title h2 {
  text-transform: capitalize;
}

.section-title h2 span {
  /* text-transform: uppercase; */
}

/* 
.section-title.style-2 h2 {
  font-size: 64px;
} */

/* @media (max-width: 1399px) {
  .section-title.style-2 h2 {
    font-size: 50px;
  }
} */

@media (max-width: 1199px) {
  .section-title.style-2 h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .section-title.style-2 h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .section-title.style-2 h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .section-title.style-2 h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  .section-title.style-2 h2 {
    font-size: 25px;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}

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

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

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

.section-bg-2 {
  background-color: #F7F7F7;
}

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

.footer-bg-2 {
  background-color: #000000;
}

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

@media (max-width: 1199px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 40px 0;
  }
}

.causes-section {
  margin: 0 40px;
  border-radius: 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .causes-section {
    margin: 0 30px;
  }
}

@media (max-width: 767px) {
  .causes-section {
    margin: 0 15px;
  }
}

.causes-section .shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .causes-section .shape {
    display: none;
  }
}

.causes-box-item {
  text-align: center;
  margin-top: 30px;
  z-index: 9;
  padding: 0 40px 40px 40px;
  position: relative;
}

.causes-box-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background-color: var(--white);
  top: 80px;
  z-index: -1;
  height: 353px;
}

@media (max-width: 1399px) {
  .causes-box-item::before {
    height: 388px;
  }
}

.causes-box-item::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  border-radius: 20px;
  z-index: -1;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  height: 353px;
}

@media (max-width: 1399px) {
  .causes-box-item::after {
    height: 388px;
  }
}

.causes-box-item .icon {
  width: 150px;
  height: 150px;
  line-height: 130px;
  text-align: center;
  border-radius: 100%;
  border: 10px solid var(--white);
  margin: 0 auto;
  background-color: var(--bg);
  transition: all 0.4s ease-in-out;
}

.causes-box-item .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.causes-box-item .content h3 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.causes-box-item .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.causes-box-item .content h3 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.causes-box-item .content p {
  max-width: 340px;
  margin: 0 auto;
}

.causes-box-item .content .theme-btn {
  margin-top: 30px;
}

.causes-box-item .content .theme-btn::before {
  background-color: var(--theme-2);
}

.causes-box-item .content .theme-btn:hover {
  color: var(--theme);
}

.causes-box-item:hover::after {
  transform: scale(1, 1);
  transform-origin: top center;
}

.causes-box-item:hover .content p {
  color: var(--header);
}

.causes-box-item:hover .icon {
  border: 10px solid var(--theme);
}

.causes-box-item:hover .icon img {
  transform: scaleX(-1) !important;
}

.service-card-items-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background-color: var(--white);
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .service-card-items-3 {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    justify-content: center;
  }
}

.service-card-items-3 .service-content {
  padding: 40px 0 40px 40px;
}

@media (max-width: 1399px) {
  .service-card-items-3 .service-content {
    padding: 0;
  }
}

.service-card-items-3 .service-content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--theme-2);
  text-align: center;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  margin-bottom: 138px;
}

@media (max-width: 1399px) {
  .service-card-items-3 .service-content .icon {
    margin-bottom: 30px;
  }
}

.service-card-items-3 .service-content .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.service-card-items-3 .service-content .content h4 {
  color: var(--theme);
  margin-bottom: 10px;
}

.service-card-items-3 .service-content .content h5 {
  margin-bottom: 15px;
}

.service-card-items-3 .service-content .content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-card-items-3 .service-content .content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.service-card-items-3 .service-content .content p {
  max-width: 180px;
}

.service-card-items-3 .service-image {
  height: 460px;
  position: relative;
}

.service-card-items-3 .service-image::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  width: 100%;
  height: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  border-radius: 0 20px 20px 0;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

@media (max-width: 1399px) {
  .service-card-items-3 .service-image {
    height: initial;
  }
}

.service-card-items-3 .service-image .icon {
  position: absolute;
  top: 40px;
  background-color: var(--theme);
  left: -30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  border: 2px solid var(--white);
  z-index: 999;
}

.service-card-items-3 .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  object-fit: cover;
}

@media (max-width: 1399px) {
  .service-card-items-3 .service-image img {
    border-radius: 20px;
  }
}

.service-card-items-3:hover .service-content .icon {
  background-color: var(--theme);
}

.service-card-items-3:hover .service-content .icon img {
  transform: scaleX(-1) !important;
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(120deg) contrast(130%) brightness(80%);
}

.service-card-items-3:hover .service-image::after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.service-section-3 .section-title-area .arrow-button {
  gap: 30px;
  display: flex;
  align-items: center;
}

.service-section-3 .section-title-area .arrow-button .array-prev {
  width: 80px;
  height: 80px;
  line-height: 85px;
  text-align: center;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid var(--theme-2);
  color: var(--theme-2);
  transition: all 0.4s ease-in-out;
  font-size: 24px;
}

.service-section-3 .section-title-area .arrow-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.service-section-3 .section-title-area .arrow-button .array-next {
  width: 80px;
  height: 80px;
  line-height: 85px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
  font-size: 24px;
}

.service-section-3 .section-title-area .arrow-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.service-section-3 .service-slider-3 {
  margin-right: -390px;
}

@media (max-width: 1600px) {
  .service-section-3 .service-slider-3 {
    margin-right: -150px;
  }
}

@media (max-width: 1399px) {
  .service-section-3 .service-slider-3 {
    margin-right: 0;
  }
}

.team-card-items {
  margin-top: 30px;
  text-align: center;
  position: relative;
  z-index: 9;
  padding: 0 30px 30px 30px;
}

@media (max-width: 1399px) {
  .team-card-items {
    padding: 30px;
  }
}

.team-card-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background-color: #e3e0cf;
  top: 130px;
  z-index: -1;
  height: 340px;
}

@media (max-width: 1399px) {
  .team-card-items::before {
    height: initial;
    top: 0;
  }
}

.team-card-items .team-image {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 154px;
  position: relative;
}

@media (max-width: 1399px) {
  .team-card-items .team-image {
    border-radius: 1000px;
  }
}

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

.team-card-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 154px;
  border: 5px solid var(--theme);
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}

@media (max-width: 1399px) {
  .team-card-items .team-image img {
    border-radius: 1000px;
  }
}

.team-card-items .team-content {
  border-radius: 20px;
  background-color: var(--white);
  padding: 30px 0;
  text-align: center;
  position: relative;
  z-index: 999;
}

.team-card-items .team-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 20px;
}

.team-card-items .team-content h5 {
  margin-bottom: 10px;
}

.team-card-items .team-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.team-card-items .team-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.team-card-items .team-content p {
  margin: 0 auto;
}

.team-card-items .team-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
}

.team-card-items .team-content .social-icon a {
  font-size: 20px;
  color: var(--theme-2);
}

.team-card-items .team-content .social-icon a:hover {
  color: var(--theme-2);
}

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

.team-card-items:hover .team-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.team-card-items:hover .team-content::before {
  top: auto;
  height: 100%;
}

.team-card-items:hover .team-content p {
  color: var(--theme-2);
}

.volounteer-inner-card {
  border: 1px solid var(--border);
  border-radius: 10px;
}

.volounteer-inner-card .volounteer-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.volounteer-inner-card .volounteer-image .shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.volounteer-inner-card .volounteer-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 10px;
}

.volounteer-inner-card .volounteer-image .volounteer-content {
  text-align: center;
  position: relative;
  z-index: 999;
  position: absolute;
  bottom: 0px;
  left: 50px;
  right: 50px;
}

.volounteer-inner-card .volounteer-image .volounteer-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.volounteer-inner-card .volounteer-image .volounteer-content h5 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-2) 0%, var(--theme-2) 100%);
}

.volounteer-inner-card .volounteer-image .volounteer-content p {
  margin: 0 auto;
}

.volounteer-inner-card .volounteer-image .volounteer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-bottom: -15px;
}

.volounteer-inner-card .volounteer-image .volounteer-content .social-icon a {
  font-size: 20px;
  color: var(--theme-2);
}

.volounteer-inner-card .volounteer-image .volounteer-content .social-icon a:hover {
  color: var(--theme);
}

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

.volounteer-inner-card:hover .volounteer-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.volounteer-inner-card:hover .volounteer-image .volounteer-content .social-icon {
  opacity: 1;
  visibility: visible;
  margin-bottom: 15px;
}

.volounteer-details-wrapper {
  margin-bottom: 80px;
}

@media (max-width: 1399px) {
  .volounteer-details-wrapper {
    margin-bottom: 30px;
  }
}

.volounteer-details-wrapper .volounteer-details-left-item .details-image {
  position: relative;
  overflow: hidden;
}

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

.volounteer-details-wrapper .volounteer-details-left-item .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.volounteer-details-wrapper .volounteer-details-left-item .details-list {
  margin-top: 30px;
}

.volounteer-details-wrapper .volounteer-details-left-item .details-list li {
  font-size: 20px;
  font-weight: 400;
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
}

@media (max-width: 1399px) {
  .volounteer-details-wrapper .volounteer-details-left-item .details-list li {
    font-size: 16px;
  }
}

.volounteer-details-wrapper .volounteer-details-left-item .details-list li span {
  color: var(--text);
}

.volounteer-details-wrapper .volounteer-details-left-item .details-list li:not(:last-child) {
  margin-bottom: 20px;
}

.volounteer-details-wrapper .volounteer-details-left-item:hover .details-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.volounteer-details-wrapper .volounteer-details-box {
  border-radius: 20px;
  padding: 40px 60px;
  background: #F7F7F7;
}

@media (max-width: 1399px) {
  .volounteer-details-wrapper .volounteer-details-box {
    padding: 30px;
  }
}

.volounteer-details-wrapper .volounteer-details-box h3 {
  margin-bottom: 10px;
}

.volounteer-details-wrapper .volounteer-details-box .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.volounteer-details-wrapper .volounteer-details-box .social-icon a {
  font-size: 20px;
  color: var(--theme-2);
  border: 1px solid var(--theme-2);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
}

.volounteer-details-wrapper .volounteer-details-box .social-icon a:hover {
  color: var(--theme);
  background-color: var(--theme-2);
}

.volounteer-details-wrapper .volounteer-details-box h5 {
  margin-top: 20px;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap {
  margin-top: 30px;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items {
  width: 100%;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 400;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .progress {
  background: rgba(11, 78, 61, 0.2);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 5px;
  width: 100%;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-2);
  height: 5px;
  width: 0;
  border-radius: 10px;
}

.volounteer-details-wrapper .volounteer-details-box .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 85%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 95%;
  }
}

.volounteer-details-wrapper .volounteer-details-box .list-item {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .volounteer-details-wrapper .volounteer-details-box .list-item {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.volounteer-details-wrapper .volounteer-details-box .list-item .list li {
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .volounteer-details-wrapper .volounteer-details-box .list-item .list li {
    font-size: 16px;
  }
}

.volounteer-details-wrapper .volounteer-details-box .list-item .list li:not(:last-child) {
  margin-bottom: 15px;
}

.volounteer-details-wrapper .volounteer-details-box .list-item .list li i {
  margin-right: 5px;
}

.volounteer-details-wrapper .volounteer-details-box .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.volounteer-details-wrapper .volounteer-details-box .theme-btn::before {
  background-color: var(--theme-2);
}

.volounteer-details-wrapper .volounteer-details-box .theme-btn:hover {
  color: var(--white);
}

.volounteer-Experience-wrapper .contact-form-items p {
  margin-bottom: 40px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .volounteer-Experience-wrapper .contact-form-items p {
    margin-bottom: 30px;
  }
}

.volounteer-Experience-wrapper .contact-form-items .form-clt input,
.volounteer-Experience-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  border: 1px solid #DEDEDE;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: #666;
  font-size: 16px;
  border-radius: 6px;
  font-family: "Merriweather Sans", sans-serif;
}

.volounteer-Experience-wrapper .contact-form-items .form-clt input::placeholder,
.volounteer-Experience-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: #666;
}

.volounteer-Experience-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 30px;
  resize: none;
}

.volounteer-Experience-wrapper .volounteer-Experience-content {
  margin-left: 50px;
}

@media (max-width: 1399px) {
  .volounteer-Experience-wrapper .volounteer-Experience-content {
    margin-left: 0;
  }
}

.volounteer-Experience-wrapper .volounteer-Experience-content h3 {
  margin-bottom: 20px;
}

.volounteer-Experience-wrapper .volounteer-Experience-content .list li {
  color: var(--header);
  font-size: 20px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
}

@media (max-width: 1399px) {
  .volounteer-Experience-wrapper .volounteer-Experience-content .list li {
    font-size: 16px;
  }
}

.volounteer-Experience-wrapper .volounteer-Experience-content .list li svg {
  margin-right: 10px;
}

.volounteer-Experience-wrapper .volounteer-Experience-content .list li:not(:last-child) {
  margin-bottom: 25px;
}

.become-volounteer-wrapper .become-volounteer-content .text {
  margin-top: 20px;
}

.become-volounteer-wrapper .become-volounteer-content .become-volounteer-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .become-volounteer-wrapper .become-volounteer-content .become-volounteer-list {
    margin-bottom: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.become-volounteer-wrapper .become-volounteer-content .become-volounteer-list .list-item li {
  font-size: 20px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  color: var(--header);
}

@media (max-width: 575px) {
  .become-volounteer-wrapper .become-volounteer-content .become-volounteer-list .list-item li {
    font-size: 16px;
  }
}

.become-volounteer-wrapper .become-volounteer-content .become-volounteer-list .list-item li svg {
  margin-right: 10px;
}

.become-volounteer-wrapper .become-volounteer-content .become-volounteer-list .list-item li:not(:last-child) {
  margin-bottom: 30px;
}

.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items {
  width: 100%;
}

.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}

.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}

.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  font-family: "Merriweather Sans", sans-serif;
}

.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .progress {
  background: #667471;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
}

.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--header);
  height: 10px;
  width: 0;
  border-radius: 10px;
}

.become-volounteer-wrapper .become-volounteer-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

.become-volounteer-wrapper .from-box {
  margin-left: 50px;
}

@media (max-width: 1399px) {
  .become-volounteer-wrapper .from-box {
    margin-left: 0;
  }
}

.become-volounteer-wrapper .from-box p {
  max-width: 532px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.become-volounteer-wrapper .from-box .form-clt input,
.become-volounteer-wrapper .from-box .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid #C9C9C9;
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 16px;
  border-radius: 10px;
}

.become-volounteer-wrapper .from-box .form-clt input::placeholder,
.become-volounteer-wrapper .from-box .form-clt textarea::placeholder {
  color: var(--text);
}

.become-volounteer-wrapper .from-box .form-clt textarea {
  padding-bottom: 90px;
  resize: none;
}

.become-volounteer-wrapper .from-box .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
}

.become-volounteer-wrapper .from-box .theme-btn::before {
  background-color: var(--theme-2);
}

.become-volounteer-wrapper .from-box .theme-btn:hover {
  color: var(--white);
}

.testimonial-wrapper {
  margin-top: 60px;
  position: relative;
}

.testimonial-wrapper::before {
  height: 601px;
  background-color: var(--bg);
  border-radius: 20px;
  width: 84%;
  left: 18%;
  top: 23px;
  position: absolute;
  content: "";
}

@media (max-width: 1399px) {
  .testimonial-wrapper::before {
    display: none;
  }
}

.testimonial-wrapper .testimonial-image {
  position: relative;
  z-index: 9;
}

.testimonial-wrapper .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 266.5px 266.5px;
}

.testimonial-wrapper .testimonial-image .shape {
  position: absolute;
  left: -32%;
  bottom: -30px;
  z-index: -1;
}

@media (max-width: 1600px) {
  .testimonial-wrapper .testimonial-image .shape {
    left: -9%;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-image .shape {
    display: none;
  }
}

.testimonial-wrapper .testimonial-content {
  padding: 60px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content {
    padding: 30px;
    background-color: var(--bg);
    border-radius: 20px;
  }
}

.testimonial-wrapper .testimonial-content .content {
  border-bottom: 1px solid #C9C9C9;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content .content {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

.testimonial-wrapper .testimonial-content .content .star {
  color: var(--theme);
}

.testimonial-wrapper .testimonial-content .content p {
  max-width: 666px;
  margin-bottom: 30px;
}

.testimonial-wrapper .testimonial-content h6 {
  color: var(--text);
  font-family: "Nunito", sans-serif;
  margin-bottom: 40px;
  position: relative;
}

.testimonial-wrapper .testimonial-content h6 span {
  color: var(--header);
}

.testimonial-wrapper .testimonial-content .brand-image {
  text-align: center;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  opacity: 0.9;
}

.testimonial-wrapper .testimonial-content .brand-image:hover {
  filter: initial;
  opacity: 1;
}

.testimonial-wrapper .testimonial-content .swiper-slide.swiper-slide-active .brand-image {
  filter: initial;
  opacity: 1;
}

.testimonial-wrapper-2 {
  position: relative;
}

.testimonial-wrapper-2 .testimonial-content .section-title h2 {
  font-size: 50px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  .testimonial-wrapper-2 .testimonial-content .section-title h2 {
    font-size: 25px;
  }
}

.testimonial-wrapper-2 .testimonial-content .text {
  max-width: 533px;
  margin-top: 20px;
}

.testimonial-wrapper-2 .testimonial-content .theme-btn {
  background-color: var(--theme);
  color: var(--theme-2);
  margin-top: 40px;
}

.testimonial-wrapper-2 .testimonial-content .theme-btn::before {
  background-color: var(--theme-2);
}

.testimonial-wrapper-2 .testimonial-content .theme-btn:hover {
  color: var(--white);
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-items {
    padding-bottom: 35px;
  }
}

.testimonial-wrapper-2 .testimonial-items .testimonial-box {
  background-color: var(--white);
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 600px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box {
    padding: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-items .testimonial-box .top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box .top-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-items .testimonial-box .top-item .star {
  color: var(--theme);
}

.testimonial-wrapper-2 .testimonial-items .testimonial-box p {
  max-width: 446px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box p {
    font-size: 14px;
  }
}

.testimonial-wrapper-2 .testimonial-items .testimonial-box .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box .client-info {
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box .client-info h5 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-items .testimonial-box .client-info span {
    font-size: 14px;
  }
}

.testimonial-wrapper-2 .testimonial-items #slider {
  position: relative;
  width: 70%;
  height: 357px;
  margin: 0px auto;
  font-family: sans-serif;
  perspective: 1200px;
  transform-style: preserve-3d;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-items #slider {
    margin: 0px auto;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-items #slider {
    height: 260px;
    margin: 0px auto;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-items #slider {
    height: 330px;
  }
}

.testimonial-wrapper-2 .testimonial-items #slider input[type=radio] {
  display: none;
}

.testimonial-wrapper-2 .testimonial-items #slider label {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  transition: transform 400ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-wrapper-2 .testimonial-items #slider #s1:checked~#slide1,
.testimonial-wrapper-2 .testimonial-items #slider #s2:checked~#slide2,
.testimonial-wrapper-2 .testimonial-items #slider #s3:checked~#slide3 {
  transform: translate3d(0%, 0, 0px);
  z-index: 3;
}

.testimonial-wrapper-2 .testimonial-items #slider #s1:checked~#slide2,
.testimonial-wrapper-2 .testimonial-items #slider #s2:checked~#slide3,
.testimonial-wrapper-2 .testimonial-items #slider #s3:checked~#slide1 {
  transform: translate3d(15%, 0, -100px);
  z-index: 2;
}

.testimonial-wrapper-2 .testimonial-items #slider #s1:checked~#slide3,
.testimonial-wrapper-2 .testimonial-items #slider #s2:checked~#slide1,
.testimonial-wrapper-2 .testimonial-items #slider #s3:checked~#slide2 {
  transform: translate3d(-15%, 0, -100px);
  z-index: 1;
}

.testimonial-section-2 {
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .testimonial-section-2 {
    overflow: hidden;
    margin-bottom: 100px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-2 {
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-2 {
    margin-bottom: 80px;
  }
}

.testimonial-wrapper-3 .testimonial-item-3 {
  position: relative;
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-image {
  max-width: 500px;
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-item-3 .testimonial-image {
    max-width: initial;
  }
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  position: absolute;
  right: 30px;
  bottom: -64px;
  width: 500px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-item-3 .testimonial-box {
    width: initial;
    padding: 30px;
    right: 0;
    bottom: 0;
    position: static;
    margin-top: 30px;
  }
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .testimonial-content .star {
  color: var(--theme);
  margin-bottom: 5px;
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .testimonial-content p {
  max-width: 420px;
  margin-bottom: 30px;
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .array-button {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  background-color: var(--white);
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .array-button .array-prev {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
  color: var(--theme-2);
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  z-index: 999;
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .array-button .array-prev:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .array-button .array-next {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme-2);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  z-index: 999;
}

.testimonial-wrapper-3 .testimonial-item-3 .testimonial-box .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--theme-2);
}

.testimonial-wrapper-3 .testimonial-content .section-title h2 {
  font-size: 60px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  .testimonial-wrapper-3 .testimonial-content .section-title h2 {
    font-size: 25px;
  }
}

.testimonial-wrapper-3 .testimonial-content .text {
  margin-top: 20px;
  margin-bottom: 40px;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-content .testimonial-count-box {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box {
  padding: 20px 30px;
  background-color: #F7F7F7;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box {
    width: 200px;
  }
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--theme);
  border-radius: 10px;
  z-index: 1;
  transition: height 0.5s ease;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--white);
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box h6 {
  font-weight: 400;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover::before {
  height: 100%;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover .icon {
  background-color: var(--theme-2);
  color: var(--white);
  position: relative;
  z-index: 999;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover .icon img {
  filter: brightness(0) invert(1);
  transform: scaleX(-1) !important;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover h2 {
  color: var(--theme-2);
  position: relative;
  z-index: 999;
}

.testimonial-wrapper-3 .testimonial-content .testimonial-count-box .box:hover h6 {
  color: var(--theme-2);
  position: relative;
  z-index: 999;
}

.header-logo img {
  max-height: 12vh;
}

.mean__menu-wrapper {
  margin-left: auto;
}

.my-dropdown>a {
  position: relative;
  padding-right: 10px;
  /* space for arrow */
}

.my-dropdown>a .arrow {
  border: solid #333;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 6px;
  transform: rotate(45deg);
  transition: 0.3s;
}

/* Rotate arrow when submenu is open (optional if you toggle class) */
.my-dropdown:hover>a .arrow {
  transform: rotate(-135deg);
}

/*# sourceMappingURL=main.css.map */

.contact-section {
  overflow: hidden;
}

.team-section {
  background: #fff;
}

.footer-left-content img {
  max-height: 70px;
}

img {
  max-width: 100%;
  height: auto;
}

.logo-image img,
.offcanvas__logo img {
  max-height: 70px;
}



.program-text .number {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 40px;
  margin-right: 5px;
  background: #144d2a;
  display: block;
  padding: 10px 10px;
  /* padding-right: 10px; */
  margin-bottom: 4px;
  margin-top: 11px;
}

.program-text h2 {
  font-size: 5.4vh;
  color: var(--header);
  align-items: flex-start;
  display: flex;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 21px;
  /* text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 1px rgb(0 0 0 / 0%), 0px 18px 8px rgb(0 0 0 / 0%); */
}

.section-title h2 {
  font-size: 5.4vh;
  color: var(--header);


  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 21px;
}

.program-text h2 span {
  display: block;
  font-weight: 500;
}

.program-text p {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.btn-learn {
  display: inline-block;
  background: #ffd000;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-learn:hover {
  background: #000;
  color: #fff;
}

.parallax-img {
  transition: transform 0.3s ease-out;
  /* smooth movement */
  will-change: transform;
  /* performance optimization */
}

.vm-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #144d2a 0%, #ebb949 100%);
  color: #fff;
}

.vm-section .container {
  max-width: 1100px;
}

.vm-section h1 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
}

.vm-section h1::after {
  content: '';
  width: 100px;
  height: 4px;
  background-color: #fff;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.vm-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.vm-box {
  flex: 1 1 45%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  min-width: 300px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.vm-box:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.vm-box h2 {
  color: #ebb949;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
}

.vm-box h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #144d2a;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.vm-box p {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  text-align: justify;
}

@media (max-width: 768px) {
  .vm-content {
    flex-direction: column;
    gap: 30px;
  }

  .vm-section h1 {
    font-size: 32px;
  }

  .vm-box h2 {
    font-size: 24px;
  }

  .vm-box p {
    font-size: 16px;
  }
}


.clinets {
  width: 100%;
  padding: 40px 0;
  /* background: #f9f9f9; */
}

.client-slider img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.client-slider img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

.about-content p {
  text-transform: none;
}


.sustainable {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.sustainable::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, #00c6ff33, transparent 70%);
  z-index: 0;
}

.sustainable .section-title h2 {
  font-size: 5vh;
  letter-spacing: 1px;
  color: #122f2a;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

.sustainable .section-title h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #00b4d8, #48cae4);
  border-radius: 2px;
}

.goal-card {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  transform: translateY(0);
  cursor: pointer;
  z-index: 1;
}

.goal-card img {
  width: 100%;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.goal-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.goal-card:hover img {
  transform: scale(1.08);
}

.goal-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, #00b4d855 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.goal-card:hover::after {
  opacity: 1;
}

/* Animation for smooth appearance */
.goal-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



.career-section {
  background: #f9f9fb;
}

.career-section .career-info .career-title {
  font-size: 32px;
  font-weight: 700;
  color: #2b0b52;
}

.career-section .career-info .career-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.career-section .career-divider {
  border: none;
  border-top: 2px solid #8333b1;
  width: 60px;
  margin: 20px 0;
}

.career-section .career-contact p {
  margin: 0 0 8px;
  color: #333;
  font-size: 15px;
}

.career-section .career-contact i {
  color: #8333b1;
  margin-right: 8px;
}

.career-section .career-box {
  background: #fff;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

.career-section .career-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.career-section .career-field input,
.career-section .career-field textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fafafa;
  transition: 0.3s;
}

.career-section .career-field input:focus,
.career-section .career-field textarea:focus {
  border-color: #8333b1;
  background: #fff;
  box-shadow: 0 0 0 0.2rem rgba(131, 51, 177, 0.15);
}

.career-section .career-label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #4d4d4d;
  display: block;
}

.career-section .career-btn {
  background: #8333b1;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.career-section .career-btn:hover {
  background: #6d26a2;
  box-shadow: 0 5px 15px rgba(131, 51, 177, 0.3);
}

.career-section textarea {
  height: 120px;
  resize: none;
}




.brochure-section {
  background: #fff;
}

.brochure-section .brochure-title {
  font-size: 30px;
  font-weight: 700;
  color: #2b0b52;
}

.brochure-section .brochure-subtitle {
  color: #6c6c6c;
  font-size: 16px;
}

.brochure-section .brochure-card {
  transition: all 0.3s ease;
}

.brochure-section .brochure-card:hover {
  transform: translateY(-5px);
}

.brochure-section .brochure-img img {
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.brochure-section .brochure-img img:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.brochure-section .brochure-name {
  font-size: 14px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #000;
  margin-top: 12px;
  letter-spacing: 0.5px;
}


.annual-report-section {
  background-color: #f9f9ff;
}

.section-title {
  font-size: 34px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  color: #222;
}

.section-divider {
  width: 90px;
  height: 3px;
  background: #7b3bd7;
  border: none;
  margin: 12px auto 20px;
}

.section-desc {
  color: #666;
  font-size: 16px;

}

.report-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.report-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.report-img img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

.report-card:hover .report-img img {
  transform: scale(1.05);
}

.report-content {
  padding: 20px 15px 25px;
}

.report-content h5 {
  font-size: 18px;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
  /* text-transform: uppercase; */
}

.btn-download {
  background: #7b3bd7;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 20px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: #5c25aa;
  color: #fff;
}



.vision-mission-section {
  background: #fff;
}

.vision-box,
.mission-box {
  background: #ffffff;
  border-radius: 12px;

  transition: all 0.4s ease;
}

.vm-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #144d2a;
  margin-bottom: 0.5rem;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.vm-line {
  width: 70px;
  height: 4px;
  background: #ffd000;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.vm-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

/* Hover Animation */
.vision-box:hover,
.mission-box:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.08); */
  border-color: #ffd000;
}

/* Vertical divider line */
.vertical-divider {
  width: 3px;
  background: linear-gradient(to bottom, #144d2a, #ffd000);
  border-radius: 2px;
  height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .vertical-divider {
    display: none;
  }

  .vision-box,
  .mission-box {
    margin-bottom: 2rem;
  }
}



.history-section {
  background: #f9f9f9;
  position: relative;
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
}
.section-title span {
  color: #000;
}
.history-text p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.scrollable-text {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}
.scrollable-text::-webkit-scrollbar {
  width: 6px;
}
.scrollable-text::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}
.history-img img {
  transition: transform 0.4s ease;
}
.history-img:hover img {
  transform: scale(1.03);
}



.Teambox {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 90%;
  margin-bottom: 20px;
}

.Teambox:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thumbimage {
  flex: 0 0 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
}

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

.tex {
  flex: 1;
  max-height: 160px; /* Limit visible text height */
  overflow-y: auto; /* Enable scroll when content is too long */
  padding-right: 8px; /* Space for scrollbar */
}

.tex::-webkit-scrollbar {
  width: 6px;
}

.tex::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.tex p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}


.awards-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.awards-section  .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.awards-section  .section-subtitle {
  text-align: center;
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
}

.awards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.award-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.award-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.award-card:hover img {
  transform: scale(1.05);
}

.award-content {
  padding: 20px;
}

.award-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.award-year {
  display: inline-block;
  background: #007bff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.award-detail {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.testimonial-section {
  background-color: #144d2a;
}

.testimonial-card {
  background-color: #ffd65c;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  color: #000;
  font-size: 16px;
  margin-bottom: 20px;
}

.client-name {
  color: #144d2a;
  font-weight: 700;
  margin-bottom: 5px;
}

.client-role {
  color: #000;
  font-size: 14px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #ffc107;
  opacity: 1;
}
/* Headings */
.plan-head {
    background: #3c7a1e;
    padding: 12px;
}
.promote-head {
    background: #f4c430;
    padding: 12px;
}
.propel-head {
    background: #3b82c4;
    padding: 12px;
}

/* Boxes */
.approach-box {
    border: 2px solid;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.approach-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.approach-box ul {
    padding-left: 18px;
}

/* Color Borders */
.approach-box.plan {
    border-color: #3c7a1e;
}
.approach-box.promote {
    border-color: #f4c430;
}
.approach-box.propel {
    border-color: #3b82c4;
}
/* Headings (unchanged) */
.plan-head {
    background: #3c7a1e;
    padding: 12px;
}
.promote-head {
    background: #f4c430;
    padding: 12px;
}
.propel-head {
    background: #3b82c4;
    padding: 12px;
}

/* Boxes – SAME HEIGHT FIX */
.approach-box {
    border: 2px solid;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;

    height: 31%;              /* 👈 equal height */
    display: flex;             /* 👈 content stretch */
    flex-direction: column;
}

/* Heading inside box */
.approach-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Bullet points FIX */
.approach-box ul {
    padding-left: 20px;
    margin: 0;
}

.approach-box ul li {
    list-style: disc;          /* 👈 dot visible */
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
    color: #000;
}

/* Border colors (unchanged) */
.approach-box.plan {
    border-color: #3c7a1e;
}
.approach-box.promote {
    border-color: #f4c430;
}
.approach-box.propel {
    border-color: #3b82c4;
}
/* ===== FOOTER CENTER MENU ===== */

.footer-center-menu .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-center-menu .footer-menu > li {
    margin-bottom: 8px;
}

.footer-center-menu .footer-menu a {
    color: #ffffff;
    font-size: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-center-menu .footer-menu a:hover {
    color: #ffc106;
}

/* Submenu */
.footer-submenu {
    list-style: none;
    padding-left: 0;
    margin-top: 6px;
}

.footer-submenu li {
    margin-bottom: 5px;
}

.footer-submenu a {
    font-size: 14px;
    color: #cccccc;
}

/* Donate Highlight */
.footer-center-menu .donate-link {
    color: #ffc106;
    font-weight: 700;
}

/* Mobile Center Fix */
@media (max-width: 767px) {
    .footer-center-menu {
        margin-top: 20px;
    }
}
/* ===== PHOTO GALLERY FIX ===== */

/* Card */
.project-card-item {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

/* Image container – fixed height */
.project-image {
    width: 100%;
    height: 260px;              /* 👈 sab images same height */
    overflow: hidden;
    border-radius: 10px;
}

/* Image proper fit */
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* 👈 image crop hoke fit hogi */
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

/* Optional hover effect */
.project-card-item:hover img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .project-image {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .project-image {
        height: 200px;
    }
}
/* ===== HERO SECTION SIZE FIX ===== */

.hero-section-1 {
    position: relative;
    width: 100%;
    height: 90vh;        /* DESKTOP height */
    overflow: hidden;
}

/* Swiper full height */
.hero-section-1 .swiper,
.hero-section-1 .swiper-wrapper,
.hero-section-1 .swiper-slide {
    height: 100%;
}

/* Slide wrapper */
.hero-1 {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* Optional dark overlay for premium look */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Arrow buttons positioning */
.arrow-button {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section-1 {
        height: 75vh;
    }
}

@media (max-width: 576px) {
    .hero-section-1 {
        height: 65vh;
    }
}
.project-section {
  padding: 40px 60px;
  font-family: "Times New Roman", serif;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  margin: 8px auto 0;
  border-top: 1px dashed #000;
}

.project-box {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.project-text {
  flex: 1.2;
  border: 1px solid #f2d28b;  /* light yellow border like in image */
  padding: 20px 25px;
  background-color: #fffdf5;
}

.project-text h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.project-text p {
  font-size: 14px;
  margin-bottom: 12px;
}

.project-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-text ul {
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.project-text li {
  margin-bottom: 4px;
}

.project-image {
  flex: 1;
  text-align: right;
}

.project-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .project-box {
    flex-direction: column;
  }

  .project-image {
    text-align: center;
    margin-top: 15px;
  }
}
/* PDF Download Section */
.pdf-download-section {
    padding: 60px 0;
}

.pdf-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.pdf-section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* PDF Card */
.pdf-card {
    background: white;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pdf-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-top-color: #2185d0;
}

/* PDF Icon */
.pdf-icon {
    font-size: 48px;
    color: #d32f2f;
    margin-bottom: 15px;
}

/* PDF Title */
.pdf-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* PDF Description */
.pdf-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Download Button */
.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2185d0 0%, #1565c0 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2185d0;
}

.pdf-download-btn:hover {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    border-color: #0d47a1;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.pdf-download-btn i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .pdf-section-title {
        font-size: 24px;
    }

    .pdf-card {
        padding: 20px 15px;
    }

    .pdf-icon {
        font-size: 40px;
    }
}
.key-points {
  list-style-type: disc;     /* dot bullets */
  padding-left: 18px;        /* thoda left space */
  margin: 0;
}
.key-points li {
  margin-bottom: 4px;
}
/* ===== VIEW PDF BUTTON ===== */

.pdf-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;
    background: #c0392b; /* PDF red */
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;

    transition: 0.3s ease;
}

.pdf-view-btn i {
    font-size: 16px;
}

.pdf-view-btn:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(192,57,43,0.4);
}
.pdf-card {
    text-align: center;   /* center all inner content */
}

.pdf-view-btn {
    margin: 0 auto;       /* button center */
}
/* ===== BOARD MEMBERS SECTION ===== */

.board-section {
    padding: 80px 0;
    background: #ffffff;
}

.board-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Card */
.board-card {
    text-align: center;
    padding: 20px;
}

/* Image */
.board-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

/* Name & role */
.board-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.board-role {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

/* Description box */
.board-desc {
    border: 2px solid #f0b429;
    padding: 18px;
    font-size: 14px;
    line-height: 1.6;
    background: #fffaf0;
}

.board-desc p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .board-title {
        text-align: center;
    }

    .board-card {
        margin-bottom: 40px;
    }
}
/* Board card equal height setup */
.board-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SAME HEIGHT DESCRIPTION BOX */
.board-desc {
    border: 2px solid #f0b429;
    padding: 18px;
    font-size: 14px;
    line-height: 1.6;
    background: #fffaf0;

    min-height: 220px;   /* 👈 FIXED HEIGHT */
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
.leadership-section {
    background: #ffffff;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.leader-card {
    text-align: center;
    margin-bottom: 40px;
}

.leader-img {
    max-width: 180px;
    margin-bottom: 15px;
}

.leader-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.leader-designation {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* SAME HEIGHT BOX */
.leader-desc {
    border: 2px solid #3b82c4;
    padding: 20px;
    min-height: 260px;   /* 👈 fixed height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 10px;
    line-height: 1.6;
    background: #f9fbff;
}

/* Responsive */
@media (max-width: 768px) {
    .leader-desc {
        min-height: auto;
    }
}
/* SECTION */
.advisors-section {
    padding: 80px 0;
    background: #ffffff;
}

/* TITLE */
.advisors-title {
    text-align: center;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    margin-bottom: 60px;
    color: #0f2f2f;
}

/* GRID */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    text-align: center;
}

/* ITEM */
.advisor-item {
    width: 100%;
}

/* NAME – NEVER WRAP, NEVER CUT */
.advisor-item h4 {
    font-size: clamp(16px, 1.6vw, 22px); /* 🔑 auto scale */
    font-weight: 600;
    color: #0f2f2f;

    white-space: nowrap;     /* ❌ wrap disabled */
    overflow: visible;       /* ❌ no cutting */
    text-overflow: unset;

    margin-bottom: 6px;
}

/* DESIGNATION */
.advisor-item h6 {
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 500;
    margin-bottom: 10px;
    color: #222;

    white-space: nowrap;     /* ❌ wrap disabled */
}

/* DESCRIPTION – CAPS LIKE IMAGE */
.advisor-item p {
    font-size: clamp(12px, 1.1vw, 14px);
    letter-spacing: 2px;
    line-height: 1.8;
    color: #2f3b4a;
    /* text-transform: uppercase; */

    white-space: nowrap;     /* ❌ wrap disabled */
}

/* RESPONSIVE GRID */
@media (max-width: 992px) {
    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .advisors-grid {
        grid-template-columns: 1fr;
    }
}
/* Row ko flex bana do */
.leadership-section .row {
    display: flex;
    flex-wrap: wrap;
}

/* Column ko full height */
.leadership-section .col-lg-6,
.leadership-section .col-md-6 {
    display: flex;
}

/* Card full height */
.leader-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image */
.leader-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
}

/* Name */
.leader-name {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Designation */
.leader-designation {
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Description – FLEX GROW */
.leader-desc {
    margin-top: auto;      /* 🔑 magic */
}

.leader-desc p {
    font-size: 10px;
    line-height: 1.7;
    color: #333;
}
/* Row gap control */
.leadership-section .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;      /* 🔹 vertical gap */
   

/* Column spacing fix (Bootstrap override safe) */
.leadership-section .col-lg-6,
.leadership-section .col-md-6 {
    padding: 0 15px;
    display: flex;
}

/* Card spacing from inside */
.leader-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    height: 100%;
}
@media (max-width: 768px) {
    .leadership-section .col-lg-6,
    .leadership-section .col-md-6 {
        margin-bottom: 30px;
    }
}
/* Leadership LinkedIn icon */
.leader-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    margin: 6px auto 10px;

    border-radius: 50%;
    background: #0a66c2;   /* LinkedIn blue */
    color: #ffffff;

    font-size: 16px;
    text-decoration: none;

    transition: all 0.25s ease;
}

.leader-linkedin:hover {
    background: #084b8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 102, 194, 0.4);
}
}
.projects-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Header */
.projects-header {
    text-align: center;
    margin-bottom: 40px;
}

.projects-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.divider {
    width: 220px;
    margin: 12px auto 0;
    border-bottom: 2px dashed #000;
}

/* Title */
.project-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-title span {
    font-weight: 400;
}

/* Intro */
.project-intro {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 900px;
}

/* Objectives */
.objectives-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

/* Item */
.objective-item {
    display: flex;
    align-items: center;
}

/* Icon */
.objective-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 15px;
}

/* .objective-icon.blue {
    color: #2b6cb0;
    border-color: #2b6cb0;
} */

/* .objective-icon.orange {
    color: #f59e0b;
    border-color: #f59e0b;
} */

/* Box */
.objective-box {
    border: 2px solid #f59e0b;
    padding: 14px 16px;
    font-size: 13.5px;
    line-height: 1.6;
    background: #fff;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}
.project-section {
  padding: 50px 60px;
  font-family: "Times New Roman", serif;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  /* text-transform: uppercase; */
  position: relative;
}

/* dotted line under PROJECTS */
.section-title::after {
  content: "";
  display: block;
  width: 60%;
  margin: 8px auto 0;
  border-top: 1px dashed #000;
}

.project-main-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 20px 0 25px;
}

.project-images-row {
  margin-top: 5px;
}

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

.project-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .project-section {
    padding: 30px 20px;
  }
  .project-main-title {
    font-size: 14px;
  }
  .project-images-row {
    row-gap: 20px;
  }
}
.project-section {
  padding: 50px 60px;
  font-family: "Times New Roman", serif;
  background-color: #ffffff;
}

/* Top PROJECTS heading + dotted line */
.section-title {
  text-align: center;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  /* text-transform: uppercase; */
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  margin: 8px auto 0;
  border-top: 1px dashed #000;
}

/* Sub title */
.project-main-title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 20px;
}

/* Paragraphs */
.project-paragraph {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 14px;
}

/* Image box */
.project-image-box {
  border-radius: 4px;
  overflow: hidden;
}

.project-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .project-section {
    padding: 30px 20px;
  }
  .project-main-title {
    font-size: 14px;
  }
  .project-content-row {
    row-gap: 20px;
  }
}
.project-section {
  padding: 50px 60px;
  font-family: "Times New Roman", serif;
  background-color: #ffffff;
  margin-bottom: 30px;
}

/* PROJECTS heading + dotted line */
.section-title {
  text-align: center;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  /* text-transform: uppercase; */
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  margin: 8px auto 0;
  border-top: 1px dashed #000;
}

/* Project title */
.project-main-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Paragraphs */
.project-paragraph {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 14px;
}

/* Images */
.project-section img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* NISM specific */
.nism-certification {
  position: relative;
}

.nism-certification::before {
  content: "NISM";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #007bff;
  color: white;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .project-section {
    padding: 30px 20px;
  }
  .project-main-title {
    font-size: 14px;
  }
}
h3.project-main-title {
    font-weight: 900;
    font-size: 20px;
}/* ==========================================
           PROJECTS PAGE STYLESHEET
   ========================================== */

/* Global Project Section */
.project-section {
    padding: 80px 0;
    font-family: "Times New Roman", serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* PROJECTS Main Heading */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    /* text-transform: uppercase; */
    position: relative;
    color: #1a1a1a;
}

.section-title::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
    border-radius: 2px;
}

/* Project Main Title */
.project-main-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 30px 0 40px;
    color: #007bff;
}

/* Project Paragraphs */
.project-paragraph {
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 20px;
    color: #555;
}

/* ==========================================
           SHILP SHAKTI SECTION
   ========================================== */
.project-box {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.project-text {
    flex: 1.2;
    background: linear-gradient(135deg, #fffdf5 0%, #fff8e1 100%);
    border: 2px solid #f0c453;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(240, 196, 83, 0.2);
    position: relative;
    overflow: hidden;
}

.project-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
}

.project-text h4 {
    color: #d32f2f;
    font-size: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 8px;
    position: relative;
}

.project-text h4::after {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: #4caf50;
    font-weight: bold;
}

.key-points {
    list-style-type: disc;
    padding-left: 25px;
    margin: 0;
}

.key-points li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 8px;
}

.key-points li::marker {
    color: #ffc107;
    font-size: 18px;
}

.project-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    height: 390px;
}

.project-image:hover {
    transform: translateY(-8px);
}

.project-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ==========================================
           SAKSHAM OBJECTIVES GRID
   ========================================== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.objective-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,123,255,0.1);
    border: 1px solid rgba(0,123,255,0.15);
    transition: all 0.3s ease;
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,123,255,0.2);
    border-color: #007bff;
}

.objective-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    flex-shrink: 0;
}

.objective-icon.blue { 
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); 
}

.objective-icon.orange { 
    background: linear-gradient(135deg, #fd7e14 0%, #e6550d 100%); 
}

.objective-box {
    flex: 1;
}

.objective-box p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: #444;
}

.objective-box strong {
    color: #007bff;
    font-weight: 700;
}

/* Objectives Heading */
.objectives-heading {
    color: #d32f2f !important;
    font-size: 20px !important;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 20px;
}

/* ==========================================
           IMAGE SECTIONS
   ========================================== */
.project-images-row img,
.project-content-row img {
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    object-fit: cover;
    height: 100%;
    min-height: 350px;
}

.project-images-row img:hover,
.project-content-row img:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* NISM Certification Badge */
.nism-certification {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.nism-certification::before {
    content: "NISM Certified";
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
    z-index: 2;
}

/* ==========================================
           RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .objectives-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .project-box { 
        flex-direction: column; 
        gap: 30px; 
    }
    .project-image img { 
        height: 320px; 
    }
    .objective-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .project-section { 
        padding: 60px 0; 
    }
    .section-title { 
        font-size: 24px; 
    }
    .project-main-title { 
        font-size: 16px; 
    }
    .project-image img { 
        height: 280px; 
    }
    .objectives-grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
}

@media (max-width: 480px) {
    .project-section { 
        padding: 40px 0; 
    }
    .project-text { 
        padding: 20px; 
    }
}
.projects-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Header */
.projects-header {
    text-align: center;
    margin-bottom: 35px;
}

.projects-header h2 {
    font-size: 34px;
    font-weight: 700;
}

/* .projects-divider {
    width: 240px;
    margin: 12px auto 0;
    border-bottom: 2px dashed #000;
} */

/* Title */
.project-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-title span {
    font-weight: 400;
}

/* Description */
.project-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 950px;
    margin-bottom: 30px;
}

/* Objectives */
.objectives-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 40px;
}

/* Item */
.objective-item {
    display: flex;
    align-items: center;
}

/* Icon */
.objective-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 16px;
}

/* .objective-icon.blue {
    color: #2b6cb0;
    border-color: #2b6cb0;
} */

.objective-icon.orange {
    color: #f59e0b;
    border-color: #f59e0b;
}

/* Box */
.objective-box {
    border: 2px solid #f59e0b;
    padding: 14px 16px;
    font-size: 13.5px;
    line-height: 1.6;
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}
.project-logo {
    max-width: 220px;          /* logo size control */
    padding: 15px;
}

.project-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); /* soft logo shadow */
}
@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 12%;
    }
}


.pdf-category-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #182333;
    border-left: 4px solid #dc3545;
    padding-left: 12px;
}
/* CARD */
.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

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

/* IMAGE BOX (SQUARE) */
.team-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HOVER OVERLAY */
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24,35,51,0.95);
    color: #fff;
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.team-img-box:hover .team-overlay {
    opacity: 1;
}

/* INFO */
.team-info {
    text-align: center;
    padding: 15px;
}

.team-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-post {
    font-size: 13px;
    color: #777;
    display: block;
}

/* LINKEDIN */
.team-linkedin {
    margin-top: 10px;
    width: 36px;
    height: 36px;
    background: #0a66c2;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.team-linkedin:hover {
    background: #084d96;
}
/* CARD */
.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

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

/* IMAGE BOX – SIZE BADA */
.team-img-box {
    position: relative;
    width: 100%;
    height: 420px;              /* 🔥 IMAGE HEIGHT BADA */
    overflow: hidden;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY – TEXT FULL VISIBLE */
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24,35,51,0.96);
    color: #fff;
    padding: 25px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0;
    transition: 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;   /* 🔥 TOP SE START */
    overflow-y: auto;              /* 🔥 SCROLL ENABLE */
}

/* Scrollbar clean look */
.team-overlay::-webkit-scrollbar {
    width: 5px;
}
.team-overlay::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

.team-img-box:hover .team-overlay {
    opacity: 1;
}

/* INFO */
.team-info {
    text-align: center;
    padding: 16px;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-post {
    font-size: 14px;
    color: #666;
    display: block;
}

/* LINKEDIN */
.team-linkedin {
    margin-top: 10px;
    width: 38px;
    height: 38px;
    background: #0a66c2;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.team-linkedin:hover {
    background: #084d96;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .team-img-box {
        height: 340px;
    }
}
.justify-content-center {
    justify-content: space-around !important;
}
.program-impact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9fc, #ffffff);
}

/* Heading */
.impact-heading h2 {
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.impact-heading p {
    font-size: 14px;
    color: #777;
    margin-bottom: 60px;
}

/* Wrapper */
.impact-wrapper {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* Vertical Line */
.impact-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f4a300, #ff7a00);
    border-radius: 10px;
}

/* Card */
.impact-card {
    margin-left: 60px;
    background: #ffffff;
    padding: 50px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    position: relative;
}

/* Dot */
.impact-card::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 50px;
    width: 22px;
    height: 22px;
    background: #f4a300;
    border-radius: 50%;
    border: 5px solid #fff;
}

/* Tag */
.impact-tag {
    display: inline-block;
    background: #182333;
    color: #fff;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
}

/* Content */
.impact-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #182333;
}

.impact-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

/* Stats */
.impact-stats {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.impact-stat {
    background: rgba(244,163,0,0.1);
    padding: 20px 25px;
    border-radius: 16px;
    min-width: 170px;
    text-align: center;
}

.impact-stat h4 {
    font-size: 26px;
    font-weight: 800;
    color: #182333;
}

.impact-stat span {
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .impact-card {
        padding: 30px;
        margin-left: 40px;
    }

    .impact-line {
        left: 10px;
    }

    .impact-card::before {
        left: -40px;
    }

    .impact-stats {
        flex-direction: column;
    }
}
/* Duration */
.project-duration {
    display: block;
    font-size: 14px;
    color: #f4a300;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Achievements */
.impact-achievements {
    margin-top: 30px;
    background: #f9fbff;
    padding: 25px 30px;
    border-radius: 16px;
    border-left: 4px solid #f4a300;
}

.impact-achievements h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #182333;
}

.impact-achievements ul {
    padding-left: 18px;
    margin: 0;
}

.impact-achievements ul li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}
.program-feature-section {
    padding: 100px 0;
    background: #f7f9fc;
}

/* HEADING */
.feature-heading h2 {
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.feature-heading p {
    font-size: 14px;
    color: #777;
    margin-bottom: 60px;
}

/* IMAGE */
.feature-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(24,35,51,0.9);
    color: #fff;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 30px;
}

/* CARD */
.feature-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.08);
    position: relative;
}

.feature-tag {
    display: inline-block;
    background: #182333;
    color: #fff;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #182333;
}

.feature-duration {
    display: block;
    font-size: 14px;
    color: #f4a300;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}

/* HIGHLIGHTS */
.feature-highlights {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(244,163,0,0.12);
    padding: 18px 22px;
    border-radius: 16px;
    min-width: 150px;
    text-align: center;
}

.highlight h4 {
    font-size: 22px;
    font-weight: 800;
    color: #182333;
}

.highlight span {
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .feature-card {
        padding: 30px;
        margin-top: 30px;
    }

    .feature-highlights {
        flex-direction: column;
    }
}
.saksham-objectives {
    padding: 90px 0;
    background: #f8f9fc;
}

/* Heading */
.objectives-heading h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #182333;
}

.objectives-heading p {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}

/* Card */
.objective-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

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

/* Icon */
.objective-icon {
    min-width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.objective-icon.blue { background: #3b82f6; }
.objective-icon.orange { background: #f59e0b; }
.objective-icon.green { background: #10b981; }
.objective-icon.purple { background: #8b5cf6; }
.objective-icon.teal { background: #14b8a6; }
.objective-icon.yellow { background: #facc15; color:#333; }

/* Content */
.objective-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #182333;
}

.objective-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .objective-card {
        flex-direction: column;
        text-align: left;
    }
}
.nism-program-section {
    padding: 90px 0;
    background: #f7f9fc;
}

/* Heading */
.nism-heading h2 {
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.nism-heading p {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

/* Card */
.nism-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 45px 50px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Accent */
.nism-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0d6efd, #0b5ed7);
}

/* Content */
.nism-content {
    margin-left: 15px;
}

.nism-tag {
    display: inline-block;
    background: rgba(13,110,253,0.12);
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.nism-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #182333;
}

.nism-duration {
    display: block;
    font-size: 14px;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 20px;
}

.nism-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}

/* Highlights */
.nism-highlights {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight-box {
    background: rgba(13,110,253,0.1);
    padding: 18px 22px;
    border-radius: 16px;
    min-width: 160px;
    text-align: center;
}

.highlight-box h4 {
    font-size: 24px;
    font-weight: 800;
    color: #182333;
}

.highlight-box span {
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nism-card {
        padding: 30px 25px;
    }

    .nism-highlights {
        flex-direction: column;
    }
}
.program-story-section {
    padding: 100px 0;
    background: #f7f9fc;
}

/* Heading */
.story-heading h2 {
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.story-heading p {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

/* CARD */
.story-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Tag */
.story-tag {
    display: inline-block;
    background: rgba(244,163,0,0.15);
    color: #f4a300;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

/* Content */
.story-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #182333;
}

.story-duration {
    display: block;
    font-size: 14px;
    color: #f4a300;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}

/* Impact */
.story-impact {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.impact-box {
    background: rgba(244,163,0,0.12);
    padding: 18px 22px;
    border-radius: 16px;
    text-align: center;
    min-width: 150px;
}

.impact-box h4 {
    font-size: 24px;
    font-weight: 800;
    color: #182333;
}

.impact-box span {
    font-size: 13px;
    color: #666;
}

/* IMAGE */
.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(24,35,51,0.9);
    color: #fff;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .story-card {
        padding: 30px;
        margin-bottom: 30px;
    }

    .story-impact {
        flex-direction: column;
    }
}
.rpl-showcase-section {
    padding: 110px 0;
    background: linear-gradient(120deg, #0f172a 50%, #f8fafc 50%);
}

/* Header */
.rpl-header h2 {
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
}

.rpl-header p {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 70px;
}

/* IMAGE */
.rpl-image-box {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.rpl-image-box img {
    width: 100%;
    height: auto;
}

.rpl-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.rpl-image-overlay h4 {
    font-size: 22px;
    font-weight: 700;
}

.rpl-image-overlay span {
    font-size: 13px;
    opacity: 0.9;
}

/* GLASS CARD */
.rpl-glass-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Badge */
.rpl-badge {
    display: inline-block;
    background: #1d4ed8;
    color: #fff;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
}

/* Content */
.rpl-glass-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
}

.rpl-duration {
    display: block;
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
}

.rpl-glass-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #334155;
}

/* STATS */
.rpl-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.rpl-stat {
    background: #f1f5f9;
    padding: 18px 20px;
    border-radius: 18px;
    text-align: center;
    min-width: 150px;
}

.rpl-stat i {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 6px;
}

.rpl-stat h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.rpl-stat span {
    font-size: 13px;
    color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .rpl-showcase-section {
        background: #0f172a;
    }

    .rpl-glass-card {
        margin-top: 30px;
    }

    .rpl-stats {
        flex-direction: column;
    }
}
.nism-showcase-section {
    padding: 110px 0;
    background: linear-gradient(120deg, #0f172a 45%, #f8fafc 45%);
}

/* Header */
.nism-header h2 {
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffffff;
}

.nism-header p {
    font-size: 14px;
    color: #c7d2fe;
    margin-bottom: 70px;
}

/* Glass Card */
.nism-glass-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* Badge */
.nism-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 40px;
    margin-bottom: 18px;
}

/* Content */
.nism-glass-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.nism-glass-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 16px;
}

/* Stats */
.nism-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.nism-stat {
    background: #f1f5f9;
    padding: 22px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s ease;
}

.nism-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.nism-stat i {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 8px;
}

.nism-stat h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.nism-stat span {
    font-size: 13px;
    color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .nism-showcase-section {
        background: #0f172a;
    }

    .nism-glass-card {
        padding: 35px;
    }
}
.digital-showcase-section {
    padding: 110px 0;
    background: linear-gradient(120deg, #0f172a 45%, #f8fafc 45%);
}

/* Header */
.digital-header h2 {
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffffff;
}

.digital-header p {
    font-size: 14px;
    color: #c7d2fe;
    margin-bottom: 70px;
}

/* Glass Card */
.digital-glass-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* Badge */
.digital-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 40px;
    margin-bottom: 18px;
}

/* Content */
.digital-glass-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.digital-glass-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 16px;
}

/* Stats */
.digital-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.digital-stat {
    background: #f1f5f9;
    padding: 24px 22px;
    border-radius: 22px;
    text-align: center;
    transition: 0.3s ease;
}

.digital-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.digital-stat i {
    font-size: 26px;
    color: #16a34a;
    margin-bottom: 10px;
}

.digital-stat h4 {
    font-size: 26px;
    font-weight: 900;
    color: #0f172a;
}

.digital-stat span {
    font-size: 13px;
    color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .digital-showcase-section {
        background: #0f172a;
    }

    .digital-glass-card {
        padding: 35px;
    }
}
.nism-header {
    text-align: left !important;
}
.digital-header {
    text-align: left !important;
}
.creative-clean {
    padding: 110px 0;
    background: linear-gradient(180deg, #fdfcfb, #f8fafc);
    position: relative;
    overflow: hidden;
}

/* soft decorative blobs */
.creative-clean::before,
.creative-clean::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(245,158,11,0.12);
    z-index: 0;
}

.creative-clean::before {
    width: 260px;
    height: 260px;
    top: -90px;
    right: -90px;
}

.creative-clean::after {
    width: 180px;
    height: 180px;
    bottom: -70px;
    left: -70px;
}

/* Heading */
.creative-clean .impact-heading {
    max-width: 820px;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.creative-clean .impact-subtitle {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f59e0b;
}

.creative-clean .impact-heading h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 8px;
}

/* Main card */
.impact-card-clean {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 55px;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.impact-card-clean:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.14);
}

/* Tag */
.impact-card-clean .impact-tag {
    display: inline-block;
    background: rgba(245,158,11,0.15);
    color: #92400e;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 40px;
    margin-bottom: 15px;
}

/* Title */
.impact-card-clean h3 {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
}

/* Text */
.impact-card-clean p {
    font-size: 15px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 30px;
}

/* Achievements */
.impact-achievements-clean {
    background: #fff7ed;
    padding: 30px 34px;
    border-radius: 20px;
}



.impact-achievements-clean ul {
    padding-left: 18px;
    margin: 0;
}

.impact-achievements-clean ul li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .impact-card-clean {
        padding: 35px;
    }

    .creative-clean .impact-heading h4 {
        font-size: 20px;
    }
}
.impact-card-clean .impact-tag {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 40px;
    margin-bottom: 15px;
}
.impact-achievements-clean h5 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.hero-1 {
    position: relative;
}

.hero-text {
    position: absolute;
    left: 500px;
    bottom: 150px;
    z-index: 9999;
    color: #fff;
    font-size: 53px;
    font-weight: 800;
    line-height: 71px;
    max-width: 530px;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}


@media (max-width: 768px) {
    .hero-text {
        left: 20px;
        bottom: 70px;
        font-size: 24px;
    }
  }
  .our-reach-light {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* Title */
  .light-title {
    font-size: 5.4vh;
    font-weight: 500;
    color: rgb(30, 41, 59);
}

.light-sub {
    font-size: 16px;
    color: #64748b;
}

/* Pillars */
.light-pillar {
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    padding: 60px 25px 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.4s ease;
}

.light-pillar:hover {
    transform: translateY(-10px);
}

/* Label */
.light-label {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
}

/* Colors */
.light-pillar.plan .light-label {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    color: #78350f;
}

.light-pillar.promote .light-label {
    background: linear-gradient(135deg, #bae6fd, #38bdf8);
    color: #0c4a6e;
}

.light-pillar.propel .light-label {
    background: linear-gradient(135deg, #bbf7d0, #22c55e);
    color: #14532d;
}

/* Boxes */
.light-box {
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.light-box:hover {
    background: #eef2f7;
}

/* Text */
.light-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.light-box ul {
    padding-left: 18px;
}

.light-box ul li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .light-title {
        font-size: 30px;
    }
}

.testimonialSwiper {
    pointer-events: none; /* extra safety: koi interaction nahi */
}

.testimonial-card {
    height: 100%;
}
.geo-outreach-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffdf3, #ffffff);
}

/* Header */
.geo-header {
    text-align: center;
    margin-bottom: 40px;
}

.geo-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #122f2a;
}

.geo-header p {
    color: #666;
    font-size: 16px;
}

/* Map card */
.geo-map-card {
    background: #ffffff;
    /* padding: 20px; */
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.geo-map-card img {
    width: 100%;
    max-width: 600px;
}

/* Info card */
.geo-info-card {
    background: #fff4cc;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Stats */
.geo-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-box {
    flex: 1;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
    margin: 0;
    color: #f2a900;
}

.stat-box span {
    font-size: 14px;
    color: #555;
}

/* Lists */
.geo-lists h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.geo-lists ul {
    columns: 2;
    padding-left: 18px;
}

.geo-lists ul li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

/* Mobile */
@media (max-width: 768px) {
    .geo-lists ul {
        columns: 1;
    }

    .geo-header h2 {
        font-size: 28px;
    }
}
.geo-map-card img {
    max-height: 508px;
    width: 92%;
    object-fit: contain;
}
.focus-areas-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #F0FDF4, #ffffff);
}

/* Header */
.focus-header {
    text-align: center;
    margin-bottom: 50px;
}

.focus-badge {
    background: #22C55E;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.focus-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
}

.focus-header p {
    color: #365314;
    font-size: 16px;
}

/* Cards */
.focus-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.focus-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

/* Colors */
.focus-card.yellow .focus-icon { background: #FACC15; }
.focus-card.green .focus-icon { background: #22C55E; }
.focus-card.blue .focus-icon { background: #3B82F6; }

/* Text */
.focus-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #14532D;
    margin-bottom: 10px;
}

.focus-card p {
    font-size: 14px;
    color: #475569;
}

/* Mobile */
@media (max-width: 768px) {
    .focus-header h2 {
        font-size: 28px;
    }
}
.about-wrapper-3 .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-wrapper-3 .about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-wrapper-3 .about-image img {
    max-width: 100%;
    border-radius: 12px;
}
.objective-icon.orange {
    background: #f1ca8a;
}
/* TEAM CARD IMAGE WRAPPER */
.team-img-box {
    position: relative;
    width: 100%;
    height: 380px;              /* 🔧 adjust if needed */
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

/* TEAM IMAGE */
.team-img-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;        /* 🔥 no cut, no zoom */
    image-rendering: auto;      /* blur fix */
}

/* HOVER OVERLAY */
.team-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    opacity: 0;
    transition: 0.4s ease;
    overflow-y: auto;
}

/* SHOW OVERLAY ON HOVER */
.team-img-box:hover .team-overlay {
    opacity: 1;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .team-img-box {
        height: 300px;
    }
}
.testimonial-card {
    background-color: #f3d48f;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.testimonial-section {
    background-color: #37bf6c;
}
.impact-achievement-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 35px;
    align-items: center;
    margin-top: 25px;
}

.achievement-right img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Mobile */
@media (max-width: 768px) {
    .impact-achievement-grid {
        grid-template-columns: 1fr;
    }

    .achievement-right {
        margin-top: 25px;
    }
}
/* ============================= */
/* TESTIMONIAL SECTION */
/* ============================= */

.testimonial-section {
    background: linear-gradient(135deg, #0f1b2d, #1e293b);
    position: relative;
}

/* Swiper spacing */
.testimonialSwiper {
    padding-bottom: 60px;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 35px 32px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    transition: all 0.35s ease;
}

/* Active slide highlight */
.swiper-slide-active .testimonial-card {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.28);
}

/* Quote icon */
.testimonial-card::before {
    content: "❝";
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 72px;
    color: #ffc106;
    opacity: 0.25;
    font-family: serif;
}

/* ============================= */
/* TEXT STYLING */
/* ============================= */

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.client-role {
    font-size: 14px;
    color: #666;
}

/* ============================= */
/* PAGINATION */
/* ============================= */

.testimonialSwiper .swiper-pagination-bullet {
    background: #ffc106;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 8px;
    opacity: 1;
}

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

@media (max-width: 991px) {
    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }
}
/* SECTION – light background */
.testimonial-section {
    background: #f8fafc; /* very light grey / off-white */
}

/* Swiper bottom space */
.testimonialSwiper {
    padding-bottom: 60px;
}

/* FORCE SAME HEIGHT FOR SLIDES */
.testimonialSwiper .swiper-slide {
    height: auto;
    display: flex;
}

/* CARD – SAME SIZE */
.testimonial-card {
    background: #ffffff;
    padding: 32px 30px;
    border-radius: 18px;
    width: 100%;
    height: 100%;                 /* 👈 sab box equal */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover / Active feel */
.swiper-slide-active .testimonial-card {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* TEXT */
.testimonial-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #374151; /* slate grey */
    margin-bottom: 22px;
}

/* NAME */
.client-name {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

/* ROLE */
.client-role {
    font-size: 13.5px;
    color: #6b7280;
}

/* PAGINATION – light theme */
.testimonialSwiper .swiper-pagination-bullet {
    background: #94a3b8;
    opacity: 0.5;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #2563eb; /* soft blue */
    opacity: 1;
    width: 22px;
    border-radius: 8px;
}

/* HEADING COLOR FIX */
.testimonial-section h2 {
    color: #111827 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 26px 22px;
    }

    .testimonial-text {
        font-size: 15px;
    }
}
/* ============================= */
/* STRATEGY SECTION */
/* ============================= */

.strategy-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(900px 400px at 50% -10%, #eef2ff, #f8fafc);
    overflow: hidden;
}

/* Decorative blur shapes */
.strategy-section::before,
.strategy-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    z-index: 0;
}

.strategy-section::before {
    background: #60a5fa;
    top: -120px;
    left: -120px;
}

.strategy-section::after {
    background: #34d399;
    bottom: -120px;
    right: -120px;
}

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

.strategy-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.strategy-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.8px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strategy-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 520px;
    margin: 10px auto 0;
}

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

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

.strategy-card {
    position: relative;
    padding: 55px 40px;
    border-radius: 30px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 30px 80px rgba(15,23,42,0.15);
    transition: transform .5s ease, box-shadow .5s ease;
    overflow: hidden;
}

.strategy-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 50px 120px rgba(15,23,42,0.28);
}

/* Floating step number */
.strategy-step {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 60px;
    font-weight: 900;
    opacity: 0.08;
    pointer-events: none;
}

/* Title */
.strategy-card h4 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

/* Text */
.strategy-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

/* ============================= */
/* COLOR THEMES */
/* ============================= */

.strategy-card.plan h4 { color: #2563eb; }
.strategy-card.promote h4 { color: #16a34a; }
.strategy-card.propel h4 { color: #f59e0b; }

.strategy-card.plan { border-top: 6px solid #2563eb; }
.strategy-card.promote { border-top: 6px solid #16a34a; }
.strategy-card.propel { border-top: 6px solid #f59e0b; }

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

@media (max-width: 991px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .strategy-title {
        font-size: 32px;
    }
}
/* ============================= */
/* SECTION */
/* ============================= */

.ppp-section {
    padding: 100px 0;
    background:
        radial-gradient(800px 400px at 50% -10%, #eef2ff, #ffffff);
    position: relative;
    overflow: hidden;
}

/* glowing shapes */
.ppp-section::before,
.ppp-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.ppp-section::before {
    background: #e7f1fc;
    top: -120px;
    left: -120px;
}

.ppp-section::after {
    background: #34d399;
    bottom: -120px;
    right: -120px;
}

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

.ppp-heading {
    text-align: center;
    margin-bottom: 70px;
}

.ppp-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.8px;
     background: #1e293b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ppp-subtitle {
    font-size: 17px;
    color: #64748b;
}

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

.ppp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

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

.ppp-card {
    position: relative;
    height: 240px;
    border-radius: 28px;
    color: #ffffff;
    text-align: center;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    transition: transform .45s ease, box-shadow .45s ease;
    overflow: hidden;
}

.ppp-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 50px 120px rgba(0,0,0,0.35);
}

/* glowing border */
.ppp-card::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,.35), transparent);
    opacity: 0;
    transition: opacity .4s ease;
}

.ppp-card:hover::after {
    opacity: 1;
}

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

.ppp-number {
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 30px;
    font-weight: 900;
    opacity: 0.85;
}

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

.ppp-icon {
    font-size: 58px;
    margin-bottom: 18px;
}

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

.ppp-card h4 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
}

/* ============================= */
/* COLOR THEMES */
/* ============================= */

.ppp-card.plan {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.ppp-card.promote {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.ppp-card.propel {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

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

@media (max-width: 991px) {
    .ppp-grid {
        grid-template-columns: 1fr;
    }

    .ppp-title {
        font-size: 32px;
    }
}

.ppp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* pehle 35px tha */
}

/* ============================= */
/* CARD – SMALLER SIZE */
/* ============================= */

.ppp-card {
    position: relative;
    height: 150px;              
    border-radius: 22px;        
    padding: 20px;              
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 22px 55px rgba(0,0,0,0.18);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* Hover still premium */
.ppp-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 90px rgba(0,0,0,0.3);
}

/* ============================= */
/* NUMBER – smaller */
/* ============================= */

.ppp-number {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 24px;            /* pehle 30px */
    font-weight: 900;
}

/* ============================= */
/* ICON – smaller */
/* ============================= */

.ppp-icon {
    font-size: 44px;            /* pehle 58px */
    margin-bottom: 12px;
}

/* ============================= */
/* TITLE – compact */
/* ============================= */

.ppp-card h4 {
    font-size: 15px;            /* pehle 18px */
    letter-spacing: 2px;
    margin: 0;
}

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

@media (max-width: 991px) {
    .ppp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ppp-card {
        height: 180px;
    }
}
.testimonial-section {
    background: #f1fdf5;
}
/* QR Section */
.donation-qr-section {
    background: #f6f8f7;
    padding: 25px;
    border-radius: 18px;
    border: 1px dashed #1c5c3a;
}

.qr-image-box {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.qr-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* ============================= */
/* STRATEGY FLOW SECTION */
/* ============================= */

.strategy-flow {
    padding: 90px 0;
    background: linear-gradient(180deg, #f9fafb, #eef2f7);
}

.strategy-head {
    margin-bottom: 60px;
}

.strategy-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f3d2e;
}

.strategy-head p {
    font-size: 16px;
    color: #6b7280;
    margin-top: 8px;
}

/* FLOW WRAPPER */
.flow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* CARD */
.flow-card {
    width: 260px;
    min-height: 240px;
    background: #ffffff;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.flow-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* CIRCLE ICON */
.flow-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.flow-circle.red {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

.flow-circle.orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.flow-circle.green {
    background: linear-gradient(135deg, #16a34a, #4ade80);
}

/* CARD TEXT */
.flow-card h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #111827;
}

.flow-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ARROW */
.flow-arrow {
    font-size: 40px;
    color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .flow-arrow {
        display: none;
    }
}
.donation-ui {
    background: linear-gradient(180deg, #f5f8ff, #eef3fb);
}

.donation-ui-wrapper {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,0.08);
}

/* LEFT */
.donation-details-left {
    padding: 60px;
}

.donation-display {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f1f1f1;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
}

.currency {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0b2e59;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-options {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.donation-btn {
    padding: 10px 26px;
    border-radius: 40px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-weight: 600;
    color: #0b2e59;
}

.donation-btn.active,
.donation-btn:hover {
    background: #0b2e59;
    color: #fff;
}

/* RIGHT QR */
.donation-ui-right {
    background: linear-gradient(180deg, #f3f6ff, #e8eeff);
    padding: 60px 40px;
    text-align: center;
    height: 100%;
}

.qr-box {
    background: #fff;
    padding: 22px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    display: inline-block;
}

.qr-box img {
    width: 210px;
}

.qr-note {
    margin-top: 16px;
    font-size: 14px;
    color: #475569;
}
/* ============================= */
/* QR MODAL POPUP */
/* ============================= */

.qr-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}

.qr-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    animation: zoomIn 0.35s ease;
}

/* Header */
.qr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.qr-modal-header h4 {
    font-weight: 700;
    margin: 0;
}

.qr-close {
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

/* Body */
.qr-modal-body {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f4f7fb;
}

/* Account Info */
.qr-info p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #334155;
}

/* QR Image */
.qr-image {
    background: #fff;
    padding: 76px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.qr-image img {
    width: 600px;
}

.upi-id {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #475569;
}

/* Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .qr-modal-body {
        flex-direction: column;
        text-align: center;
    }
}

