* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
  /* Scrollbar Width */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Track Color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #fbd80d, #fbd80d);
  /* Scroll Thumb Color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #fbd80d, #fbd80d);
  /* Hover Effect */
}


@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Bold.woff2') format('woff2'),
    url('../fonts/Lora-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-SemiBold.woff2') format('woff2'),
    url('../fonts/Lora-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arial';
  src: url('../fonts/ArialMT.woff2') format('woff2'),
    url('../fonts/ArialMT.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:root {
  --first-clr: #fbd80d;
  --second-clr: #000;
  --bg-clr: #faeda2;
  --third-clr: #272827;
}

html {
  font-size: 16px;
  /* Base font size */
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}


h4 {
  font-size: 1.5rem;
}


h5 {
  font-size: 1.25rem;
}


h6 {
  font-size: 1rem;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: 'Lora';
  transition: 0.4s ease;
  /* font-weight: bold; */
  letter-spacing: .2px;
  line-height: 1.3;
}

p,
li {
  font-size: 1rem;
  color: #303030;
  line-height: 1.5;
  font-family: 'Arial';
  transition: 0.4s ease;
      font-weight: normal;
}

a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-family: 'Arial';
  transition: 0.4s ease;
}

img {
  max-width: 100%;
  transition: 0.4s ease;
}

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

.padd {
  padding: 60px 0;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}


@media (min-width: 1360px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1230px;
  }
}

/* ==========Header============= */

.top-bar {
  background: var(--third-clr);
  padding: 10px 0;
}

.bottom-bar {
  background: var(--bg-clr);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.top-flex {
  display: flex;
  align-items: center;
}

.top-flex ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav.desk-menu.menus ul {
  display: flex;
  align-items: center;
}

.logo img {
  width: 250px;
  height: auto;
}

nav.desk-menu.menus ul li a {
  display: inline-block;
  padding: 8px 15px;
  /* font-size: 1.1rem; */
}

nav.desk-menu.menus ul li a:hover {
  background: var(--third-clr);
  /* border-radius: 5px; */
  color: white;
}

.top-left ul li a {
  width: 32px;
  color: white;
  height: 32px;
  display: grid;
  place-content: center;
  border: 1px solid #cdcdcd42;
}

.top-left ul li a:hover {
  color: var(--first-clr);
}

.top-right ul li a {
  color: white;
}

.top-right ul li a i {
  color: var(--bg-clr);
}

.top-right ul li {
  display: flex;
  gap: 5px;
}

.banner-sec {
  padding: 75px 0;
}

.nav-btn a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--bg-clr);
  font-weight: 500;
  position: relative;
}

.nav-btn a:hover {
  background: linear-gradient(90deg, #fcd804, #faeda2);
  box-shadow: 0 0 6px rgb(250 237 162);
  transform: scale(1.08);
}




p.banner-span {
  background: var(--third-clr);
  display: inline-block;
  padding: 5px 10px;
  color: white;
  font-size: .9rem;
}

p.banner-span span {
  color: var(--first-clr);
}

.banner-content h2 {
  font-size: 2.6rem;
  margin: 20px 0;
  font-weight: bold;
}

/* ========= */

.banner-image-design {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  align-items: center;
  text-align: center;
  place-content: center;
  justify-content: space-between;
}

.box {
  width: 140px;
  height: 140px;
  background: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  transform: rotate(45deg);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
  font-family: 'Lora';
}

.box.light {
  background: #f7e9a5;
}

.center-box {
  background: #333;
  color: white !important;
  font-size: 18px;
  width: 180px;
  height: 180px;
  position: relative;
  z-index: 9;
  animation: floatAnimation 3s ease-in-out infinite;
}

.center-box span {
  font-size: 2rem !important;
}

.box span {
  transform: rotate(-45deg);
  font-family: 'Lora';
  color: #000;
  font-size: 1rem;
}

.box-left {
  position: relative;
  left: 0;
}

.box.box-1 {
  top: 10px;
  width: 100px;
  height: 100px;
  left: 115px;
  z-index: 9;
  animation: floatScale 3s ease-in-out infinite;
}

.box.box-2 {
  left: 60px;
  width: 125px;
  height: 125px;
  top: 0;
  z-index: 9;
  animation: floatAnimation 3s ease-in-out infinite;
}

.box.box-3 {
  left: -10px;
  width: 125px;
  height: 125px;
  top: -26px;
  z-index: 2;
  animation: floatScale 3s ease-in-out infinite;
}

.box.box-4 {
  left: 40px;
  top: -36px;
  z-index: -1;
  animation: floatWave 4s ease-in-out infinite;
}

.box-right {
  position: relative;
  right: 0;
}

.box.box-6 {
  width: 120px;
  height: 120px;
  right: 69px;
  top: 88px;
  animation: floatScale 3s ease-in-out infinite;
}

.box.box-7 {
  right: 26px;
  top: 65px;
  width: 145px;
  height: 145px;
  animation: floatWave 4s ease-in-out infinite;
}

.box.box-8 {
  right: 75px;
  top: 35px;
  width: 120px;
  height: 120px;
  animation: floatAnimation 3s ease-in-out infinite;
}

.box.box-9 {
  right: 130px;
  top: 10px;
  width: 110px;
  height: 110px;
  animation: floatWave 4s ease-in-out infinite;
}

section {
  position: relative;
  overflow-x: clip;
  z-index: 9;
}

.pattern-1 img {
  position: absolute;
  right: 0;
  top: 0;
  width: 340px;
  height: auto;
}

.pattern-2 img {
  position: absolute;
  bottom: 0;
  transform: rotate(180deg);
  width: 340px;
  height: auto;
}

.pattern-3 img {
  position: absolute;
  top: 0;
  left: 0;
  animation: float 3s ease-in-out infinite;
}

/* Animation for a floating effect */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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


.sticky {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  animation: slidetop 1s ease-in-out backwards;
  box-shadow: rgb(0 0 0 / 7%) 0 3px 8px;
  bottom: inherit;
  background: #fff;
}

@keyframes slidetop {
  from {
    transform: translateY(-100%)
  }

  to {
    transform: translateY(0)
  }
}

.sticky .top-bar {
  display: none;
}

/* Animation for a floating effect */
@keyframes floatAnimation {
  0% {
    transform: rotate(45deg) translateY(0px);
  }

  50% {
    transform: rotate(45deg) translateY(-10px);
  }

  100% {
    transform: rotate(45deg) translateY(0px);
  }
}

@keyframes floatWave {
  0% {
    transform: rotate(45deg) translate(0, 0);
  }

  25% {
    transform: rotate(45deg) translate(5px, -10px);
  }

  50% {
    transform: rotate(45deg) translate(-5px, 5px);
  }

  75% {
    transform: rotate(45deg) translate(10px, -5px);
  }

  100% {
    transform: rotate(45deg) translate(0, 0);
  }
}

@keyframes floatScale {
  0% {
    transform: rotate(45deg) translateY(0px) scale(1);
  }

  50% {
    transform: rotate(45deg) translateY(-10px) scale(1.05);
  }

  100% {
    transform: rotate(45deg) translateY(0px) scale(1);
  }
}

.counter-sec {
  background: #000;
  text-align: center;
  padding: 15px 0;
}

.counter-box {
  width: 100%;
  text-align: center;
}

.counter-box .num,
.counter-box .plus {
  color: var(--first-clr);
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Lora';
}

.counter-box p {
  color: white;
  font-size: 16px;
}

.p-title-p {
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  font-weight: 600;
  text-transform: capitalize;
}

.p-title-p:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background: var(--first-clr);
  left: -40px;
  top: 7px;
}

.p-title-p:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background: var(--first-clr);
  left: -45px;
  top: 14px;
}

h2.web-title {
  font-size: 2.4rem;
  color: #000;
  font-weight: bold;
  text-transform: capitalize;
}


h2.web-title span {
  font-family: 'Lora';
  color: var(--first-clr);
}



ul#serviceTabs {
  width: 100%;
  /* background: var(--third-clr); */
  padding: 0px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
}

ul#serviceTabs li button {
  border: none;
  width: 100%;
  padding: 10px 10px;
  border-radius: 0;
  margin-bottom: 12px;
  color: #000;
  background: #efefef;
  text-align: center;
}

ul#serviceTabs li button.active {
  background: var(--bg-clr);
}


.service-box {
  width: 98%;
  text-align: center;
  border: 2px solid #000;
  border-radius: 20px;
  overflow: hidden;
  transition: .4s ease;
  margin: auto;
}

.service-box h4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.service-box p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-text {
  padding: 20px 20px 10px;
  min-height: 195px;
  display: grid;
  place-content: center;
  transition: .4s ease;
}

.ser-arrow a {
      display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    background: var(--bg-clr);
    font-family: 'Lora';
    gap: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  transition: all 0.3s ease-in-out;
  opacity: 1 !important;
  z-index: 99;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #f7df75;
  color: #222;
}

.swiper-button-next {
  right: -4px;
  top: 48%;
}

.swiper-button-prev {
  left: -7px;
  top: 48%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.choose-box {
  padding: 30px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 25px;
  transition: .4s ease;
  background: white;
}

.choose-box h4 {
  font-size: 2rem;
}

.choose-box h4 span {
  color: var(--first-clr);
  font-family: "Lora";
}

.choose-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.choose-box ul li {
  width: 48%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.choose-box ul li .ch-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  background: #000;
  padding: 8px;
  border-radius: 100%;
}

.choose-box ul li p {
  width: 75%;
}

.choose-box:hover {
  background: var(--bg-clr);
}

.ngo-monk-sec {
  /*background-image: url(../imgs/ngo-bg.jpg);*/
  background-size: cover;
}

.ngo-monk-content .nav-btn a {
  background: var(--third-clr);
  color: white;
}

.form-box {
  box-shadow: 0px 4px 7.6px 0.4px rgba(0, 0, 0, 0.3);
  padding: 30px;
  background: #f7f3d9;
  border-radius: 10px;
}

.form-box input,
.form-box textarea , .form-box select {
  width: 100%;
  border: 1px solid #cdcdcd;
  padding: 8px 10px;
  margin-bottom: 15px;
  font-size: 15px;
  border-radius: 5px;
}

.select2-container {
    margin-bottom: 15px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    margin: 10px;
}


textarea {
  height: 110px;
}

input[type="submit"] {
  border-color: var(--bg-clr);
  background: var(--bg-clr);
  /* color: #fff; */
  width: auto;
  padding: 10px 50px;
  font-weight: 500;
}

.blog-box {
  width: 100%;
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 25px;
}

.blog-img {
  width: 100%;
  height: 270px;
  overflow: hidden;
}

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

.blog-txt {
  padding: 20px;
}

.date {
  width: 70px;
  height: 70px;
  text-align: center;
  display: grid;
  place-content: center;
  background: var(--bg-clr);
  position: absolute;
  top: 0;
  left: 30px;
  color: #000;
  font-weight: bold;
  font-family: 'Lora';
  font-size: 18px;
}

span.tags {
  color: var(--first-clr);
  font-size: 18px;
  font-weight: 600;
}

.blog-txt h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.2em;
  margin: 15px 0;
}

a.read-mr {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #272827;
  font-weight: 600;
}


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


.blog-box:hover h3 {
  color: var(--first-clr);
}

.newletter {
  background: var(--third-clr);
}

.form-box-2 input,
.form-box-2 textarea {
  width: 100%;
  border: 0;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  background: #f5f5f5;
}

.form-box-2 input[type="submit"] {
  width: auto;
  background: var(--bg-clr);
  color: #000;
  padding: 10px 50px;
  border-radius: 0;
  font-weight: 600;
  font-size: 17px;
}


.testimonial-sec {
  background: #fff;
}

.testimonial-box {
  width: 95%;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  display: grid;
  place-content: center;
  border-radius: 14px;
  text-align: left;
}

.testimonial-box .review-rating i {
  color: #ffc107;
  font-size: .8rem;
  margin-top: 0;
}


.video-card {
     position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    z-index: 9;
    width: 95%;
    margin: auto;
}

.video-card img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
}

.video-card:hover img {
  /* transform: scale(1.05); */
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000000;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .play-btn {
  background: rgb(0 0 0);
  color: white;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.7); */
  color: white;
  padding: 15px;
  text-align: left;
  /* height: 100%; */
}

.video-info span {
  font-size: 1rem;
  color: var(--first-clr);
  font-weight: bold;
}

.video-info h3 {
  font-size: 1.5rem;
  margin: 5px 0 0;
  color: white;
}

.video-card:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000000a6;
  top: 0;
  left: 0;
}

.footer {
  background-image: url(../imgs/footer-bg.jpg);
}

.top-footer,
.bottom-footer {
  padding: 45px 0;
}

.footer-social ul {
  display: flex;
  align-items: center;
}

.footer-social ul li a {
  width: 35px;
  height: 35px;
  display: grid;
  place-content: center;
  background: var(--third-clr);
  color: white;
  border-radius: 100%;
  margin: 0 3px;
}

.footer-social ul li a:hover {
  background: var(--second-clr);
}


.footer-contact ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  width: auto;
}

.footer-contact ul li i {
  width: 35px;
  height: 35px;
  display: grid;
  place-content: center;
  background: var(--third-clr);
  color: white;
  border-radius: 100%;
  margin: 0 3px;
}

.line {
  width: 100%;
  height: 3px;
  background: var(--third-clr);
  /* margin: 45px 0; */
}

.footer_links ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.footer_links ul li:before {
  position: absolute;
  content: "";
  left: 0;
  color: #fff;
  font-weight: bold;
  clip-path: polygon(56% 27%, 100% 50%, 55% 71%, 0% 100%, 17% 51%, 0% 0%);
  content: "";
  background: var(--third-clr);
  width: 10px;
  height: 10px;
  top: 7px;
}

.footer-img img {
  width: 250px;
  margin: 0 auto 20px;
}

.footer-img {
  /* text-align: center; */
}

.fixed-whatsapp {
    position: fixed;
    bottom: 10px;
    left: 15px;
    z-index: 999;
    animation: scaleUpDown 8s ease-in-out infinite;
}

.fixed-whatsapp a {
    transform: scale3d(1, 1, 1);
    color: white;
    font-size: 28px;
    line-height: 26px;
    z-index: 9999;
    display: inline-block;
    width: 50px;
    text-align: center;
    height: 50px;
    background: #25d367;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 0 7px 2px rgba(136, 136, 136, 0.5);
    transition: transform 0.3s ease-in-out;
    transform-origin: 100% 100%;
    margin: 0;
}

.copyrights {
  text-align: center;
  border-top: 3px solid #000;
  padding: 20px 0;
}

.copyrights p,
.copyrights a {
  margin: 0;
}

/* Ensure body covers the full viewport */
html,
body {
  height: auto;
  width: 100%;
  cursor: default;
  /* Keep the default cursor */
}

/* Inner Dot (Moves Instantly) */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--first-clr);
  /* Change color */
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Outer Border (Smooth Follow) */
.cursor-border {
  width: 25px;
  height: 25px;
  border: 2px solid var(--first-clr);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  z-index: 9998;
}

/* Click Effect */
.click-effect {
  transform: scale(1.5);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-box:hover .service-text {
  background: var(--bg-clr);
}

.service-box:hover .ser-arrow a {
  background: white;
}

.ser-arrow.cat-arr a {
    justify-content: space-between;
}

.spot-1 img {
  position: absolute;
  right: 0;
  top: 0;
  height: 200px;
}

.spot-2 img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 200px;
  object-fit: contain;
}

.choose-sec:after {
  top: 0;
  content: "";
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1285.06px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  animation: scale 3s linear infinite;
  background-image: url(../imgs/bg-pattern.png);
  z-index: -1 !important;
}

@-webkit-keyframes scale
  {
  0% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/*===================*/

.inner-banner {
  text-align: center;
  padding: 60px 0;
  background: #272827;
  position: relative;
  display:none;
}

.inner-banner:before {
  position: absolute;
  content: "";
  background-image: url(../imgs/bg-pattern.png);
  width: 100%;
  height: 100%;
  left: -210px;
  top: 0;
  background-size: cover;
  background-position: center;
  animation: scale 5s linear infinite;
}

.inner-banner span {
  font-family: 'Lora';
  font-size: 3.5rem;
  color: #ffffff;
}


.inner-banner p {
  width: 70%;
  margin: 15px auto;
  color: white;
}

nav.inner-ul ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

nav.inner-ul ul li a {
  opacity: .8;
  color: white;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.img-animation img {
  animation: float 5s infinite ease-in-out;
}

.our-feature{
	background-color: #f5f5f5;
}

.our-feature-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.our-feature-item{
	width: 100%;
	padding: 30px;
	border-radius: 20px;
	background: #ffffff;
	margin-bottom: 25px;
	/*min-height: 300px;*/
}

.our-feature-list .col-md-4:nth-child(odd) .our-feature-item{
	background: var(--first-clr);
}

.our-feature-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--first-clr);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	overflow: hidden;
}

.our-feature-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.our-feature-item:hover .icon-box:before,
.our-feature-item.active .icon-box::before{
	transform: scale(1);	
}

.our-feature-list .col-md-4:nth-child(odd) .icon-box{
	background: #fff;
}

.our-feature-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
	filter: brightness(0);
}

.our-feature-item h3 {
  /* font-size: 1.5rem; */
  text-transform: capitalize;
}

.proces-text {
  position: sticky;
  top: 100px;
}

.work-step-item{
	position: relative;
	background-color: var(--bg-clr);
	border-radius: 20px;
	padding: 40px 40px 0 40px;
	margin-bottom: 40px;
	overflow: hidden;
}

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

.work-step-item::before{
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--third-clr);
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

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

.work-step-item-content{
	position: relative;
	margin-bottom: 15px;
	z-index: 1;
}

.work-step-item-content h3{
	font-size: 1rem;
	text-transform: uppercase;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.work-step-item-content h2{
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content h3,
.work-step-item:hover .work-step-item-content h2{
	color: white;
}

.work-step-item-content p{
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content p{
	color: white;
	opacity: 80%;
}

.work-step-item-no{
	position: relative;
	margin-bottom: -35px;
	z-index: 1;
}

.work-step-item-no h2{
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: transparent;
    stroke-width: 10px;
    -webkit-text-stroke-width: 1px;
    stroke: #000;
    -webkit-text-stroke-color: #000;
    opacity: 15%;
    transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-item-no h2{
	stroke: white;
	-webkit-text-stroke-color: white;
}


.detail-text {
  width: 100%;
}

.detail-text h2 {
  font-size: 1.5rem;
}

.detail-text h2 span,
.detail-text h3 span,
.detail-text h4 span,
.detail-text h1 span,
.detail-text h5 span,
.detail-text h6 span {
  color: var(--first-clr);
}

.detail-image {
  overflow: hidden;
}

.detail-image img:hover {
  transform: scale(1.1);
}

.detail-image {
  width: 100%;
  height: auto;
  margin: 20px 0 0 0;
  border-radius: 10px;
  box-shadow: rgb(99 99 99 / 34%) 0px 2px 8px 0px;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.detail-text ul {
  /* padding-left: 3%; */
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.detail-text li {
  margin: 0 0 15px;
  position: relative;
  /* padding-left: 20px; */
  width: 100%;
  /* color: #000; */
  /*font-style: italic;*/
  list-style: inside circle;
}

.detail-text li p {
    display: inline;
}

.detail-text ul li b {
  margin-right: 10px;
  color: var(--second-clr);
}

.service-form {
  /* width: 100%; */
  /* padding: 20px; */
  /* border: 1px solid #dcdcda; */
  /* border-radius: 20px 20px 0 0; */
  /*margin-top: 30px;*/
  /*overflow: hidden;*/
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.service-left-form ul li {
    margin: 0 0 12px;
    font-size: 16px;
    list-style: none;
    color: white;
    position : relative;
    padding-left: 23px;
}

.service-left-form ul li:before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background: url(../imgs/tick.png);
    top: 1px;
    background-size: contain;
    left: 0;
    background-repeat: no-repeat;
}





.service-form h4 {
  /* padding: 15px 20px; */
  /* background: var(--first-clr); */
}

.service-form form {
  /* padding: 20px; */
}

.la-event {
  width: 100%;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #dcdcda;
}

.la-event ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.la-event ul li img {
  width: 80px;
  height: 80px;
  max-width: inherit;
  border-radius: 100%;
  object-fit: cover;
  border: 2px solid var(--first-clr);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.evrnt-text p {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.evrnt-text h5 {
  font-size: 14px;
  margin: 10px 0px;
  /* background: var(--second-clr); */
  color: var(--second-clr);
  /* padding: 8px 10px; */
  display: inline-block;
  border-radius: 30px;
}

.service-formbox {
  width: 100%;
  padding: 30px;
  background-color: var(--third-clr);
  background-image: url(
  ../imgs/pattern-1.png);
  background-position: center center;
  background-size: cover;
  margin: 40px 0 0 0;
  position: sticky;
  top: 40px;
  /* border-radius: 20px 20px 0 0; */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-formbox h3 {
  font-size: 1.4rem;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ffffff;
  color: #fff;
}

.service-formbox p {
  /* margin: 0; */
  color: #ffffff;
  /* font-size: 15px; */
}

.service-formbox form {
  margin: 20px 0 0 0;
}

.service-input {
  padding: 10px 10px;
  /* height: 40px; */
  width: 100%;
  font-size: 16px;
  color: #000000;
  outline: none;
  border: none;
  background: #ffffff;
  /* border-bottom: 1px solid #cb267e; */
  /* border-radius: 30px; */
}

.service-submit {
  width: 100%;
  padding: 8px 0;
  background-color: var(--first-clr);
  /* color: #ffff; */
  font-size: 18px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  margin: 20px 0 0 0;
  /* border-radius: 30px; */
}

.service-submit:hover {
  color: #fff;
  background-color: #000;
}

.service-input::placeholder {
  color: rgb(0, 0, 0);
}

.service-detail {
  width: 100%;
}

.service-sidebar {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}

.service-list {
  width: 100%;
  padding: 20px;
  border: 1px solid #dcdcda;
  border-radius: 10px;
}


.service-list ul {
  padding: 0;
  margin: 10px 0 0 0;
}

.service-list ul li {
  margin: 0 0 10px 0;
  background-color: #f1f1f1;
  position: relative;
  border-left: 4px solid var(--second-clr);
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  display: flex;
  gap: 10px;
  align-items: center;
}

.service-list li a {
  display: flex;
  padding: 15px;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  z-index: 9;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}


.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--second-clr);
  transition: all 0.5s;
  color: #000;
}

.service-list ul li:hover {
  border-left: 4px solid #fcd804;
}

.service-list ul li:hover::before {
  width: 100%;
}

.service-list ul li:hover a {
  color: #fff;
}

.single-contact-info {
  background: #f8f8f8;
  padding: 25px 25px 40px;
  border-radius: 5px;
  margin-top: 30px;
  min-height: 280px;
}

.info-content .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}

.info-content a {
  display: inline-block;
  margin: 5px 0;
}

.contact-form {
  padding: 30px;
  /*width: 70%;*/
  /*margin: auto;*/
  /* background: #f8f8f8; */
}

.pr-img {
  width: 90%;
  padding: 30px;
  background: #f5f5f5;
  display: grid;
  place-content: center;
  margin: 0 auto 25px;
  min-height: 165px;
  border-radius: 5px;
  box-shadow: 0 0 15px 0 rgb(2 48 71 / 28%);
  transition: .4s ease;
}

.pr-img:hover {
  background: var(--bg-clr);
  transform: translateY(-15px);
}

.pr-img:hover img {
  /* filter: brightness(100); */
}

.cat-box {
  width: 100%;
  padding: 20px;
  background: var(--third-clr);
  min-height: 230px;
  display: grid;
  place-content: center;
  transition: .4s ease;
}

.cat-text h4 {
  color: var(--first-clr);
}

.cat-text p {
  color: white;
}

.ser-arrow.cat-arr a i {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  background: var(--third-clr);
  color: var(--bg-clr);
}

.cat-box:hover {
  background: #000;
}



/*============NEW SEC=================*/
.how-flex {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 15px;
}

.how-flex img {
    width: 58px;
    height: auto;
}

.how-right-box {
    width: 47%;
    display: inline-block;
}

.how-help-sec {
    background: #f5f5f5;
}

.how-left {
    background: #fff;
    padding: 20px;
    text-align: center;
}

.partner-accordion .accordion-header button {
    display: flex;
    align-items: center;
    background: white;
}

.partner-accordion .accordion-header button img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 40px;
}

.partner-accordion .accordion-item {
    border: 0;
    margin-bottom: 20px;
    background: white;
    border: 2px solid #000000;
    border-radius: 5px !important;
    overflow: hidden;
}

.partner-accordion .accordion-header button span {
    font-size: 20px;
    color: #000;
}

.partner-logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.accordion-button:focus {
    box-shadow: none;
    border-bottom: 1px solid;
}

.partner-accordion {
    width: 95%;
}

.partner-bottom {
    text-align: center;
    width: 90%;
    margin: auto;
}

.partener-b-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: var(--bg-clr);
    padding: 5px;
    border-radius: 100%;
}

.partener-b-img img {
    padding: 10px;
}


.pagination {
    
    justify-content: center;
}
        
.page-item.active .page-link {
    background-color: var(--first-clr);
    border-color: var(--first-clr);
    color: #000;
}

.page-link {
        color: #000000;
}

.page-link:hover {
    background-color: var(--third-clr);
    color: white;
    border-color: var(--third-clr);
}


section.service-up {
    padding: 40px 0;
    background: url(../imgs/banner-ser.jpg);
    background-size: cover;
    position:relative;
}

section.service-up:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000000d1;
    top: 0;
    left: 0;
    z-index: -1;
}

.service-left-form img {
    width: 190px;
    height: auto;
    background: white;
    padding: 5px;
    margin-top: 10px;
}

.service-right-form {
    width: 70%;
    margin: auto;
    text-align: center;
}

/*========DROPDOWN===========*/


nav.desk-menu.menus ul.dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
    border: 0;
    background: #ffffff;
    padding: 0;
    flex-direction: column;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    /* min-height: 360px; */
    /* opacity: 0; */
    /* visibility: hidden; */
    z-index: 1000;
    vertical-align: top;
    border-radius: 5px;
    /* overflow: hidden; */
    top: 50px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    height: auto;
    display: none;
}

ul.dropdown-menu li {
    width: 100%;
    justify-content: space-between;
    /* vertical-align: top; */
}

nav.desk-menu.menus li ul.dropdown-menu li ul.dropdown-menu {
    position: absolute;
    width: 75%;
    left: 25%;
    top: 0px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    min-height: auto;
    vertical-align: top;
    float: left;
    display: inherit;
    box-shadow: none;
    height: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 20px !important;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-next:after {
    content: 'next';
    font-size: 20px !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0 !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0 !important;
}

nav.desk-menu.menus ul li ul.dropdown-menu li ul.dropdown-menu li a {
    width: 90%;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
    color: #000;
    border: none;
    vertical-align: top;
    border-bottom: 1px solid #cdcdcd;
    font-size: 15px;
    padding: 10px 15px;
}


/* Show dropdown when hovering over parent */
/*ul.dropdown-menu li:hover > ul.dropdown-menu,*/
/*ul.dropdown-menu li ul.dropdown-menu.active {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/* Show the first dropdown submenu by default */
/*.has-submenu > ul.dropdown-menu.active {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/* Ensure keyboard accessibility */
ul li a:focus,
ul li a:hover {
    outline: none;
}

nav.desk-menu.menus li:hover ul.dropdown-menu {
    /* opacity: 1; */
    /* visibility: visible; */
    display: flex;
}

ul.dropdown-menu li .clk_btn {
    display: none;
}

nav.desk-menu.menus ul li 
 ul.dropdown-menu li a {
    width: 20%;
    background: #272827;
    color: white;
    border-bottom: 1px solid #cdcdcd;
    float: left;
}

ul.dropdown-menu li ul.dropdown-menu li {
    /* vertical-align: top; */
    width: 47%;
    display: inline-block;
}

nav.desk-menu.menus li ul.dropdown-menu li:hover ul.dropdown-menu {
    /* display: block; */
    opacity: 1;
    visibility: visible;
}


ul.dropdown-menu.default-open {  
    opacity: 1;
    visibility: visible;
}


nav.desk-menu.menus li ul.dropdown-menu li.has-submenu.default-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
}


span.clk_btn {
    position: relative;
    right: 13px;
    font-size: 13px;
}

nav.desk-menu.menus ul li ul.dropdown-menu li a:hover {
    background: var(--first-clr);
    color: #000;
}

.how-flex h5 {
    font-size: 17px;
}

.ngo-monk-sec .ngo-container {
    padding: 40px;
    /* border: 1px solid #cdcdcd; */
    border-radius: 10px;
    background: #fff;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 25px;
}

.ngo-monk-content {
    width: 95%;
}

.form-box.ngo-monk-form {
    width: 90%;
    margin-left: auto;
}

.ngo-head-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ngo-head-box li {
    display: inline-block;
    padding: 10px 20px;
    /* border: 1px solid #ffffff; */
    width: 48%;
    font-size: 17px;
    margin-bottom: 20px;
    justify-content: space-between;
    vertical-align: top;
    background: var(--first-clr);
    border-radius: 10px;
    box-shadow: rgb(99 99 99 / 51%) 0px 2px 8px 0px;
    font-weight: 500;
    color: #000;);)0;)00;)0;);
}

.ngo-head-box li img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: 100%;
}




input.pulse {
    background: #000;
    color: white;
    animation: pulse 1.5s infinite;
}


@keyframes pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    transform : scale(0.9);
  }
  70%{
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    transform : scale(1);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
    transform : scale(0.9);
  }
}

.map iframe {
    width: 100%;
    height: 421px;
    border-radius: 10px;
    box-shadow: 0px 4px 7.6px 0.4px rgba(0, 0, 0, 0.3);
}


ul.team-links li a {
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    background: var(--second-clr);
    color: white;
    border-radius: 100%;
    margin-bottom: 5px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

ul.team-links {gap: 10px;position: absolute;top: 47%;right: 0;transform: translateY(-50%);right: 5%;z-index: 9;}

.team-up {
    position: relative;
    width: 40%;
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
}

.team-img {
    width: 100%;
    height: 225px;
    /* margin-bottom: 20px; */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.team-box:hover ul.team-links li a {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

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

/* imgs hover  */

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

/* Adding a dark overlay effect */
.image-container::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2); /* Dark overlay */
  transition: .4s ease;
  z-index: 9;
}

/* Adding a border glow effect */
.image-container::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: .4s ease;
}

.image-container:hover::before {
  width: 50%;
}

.image-container:hover::after {
  width: 50%;
}

.image-container:hover img {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(0.8) contrast(1.2); /* Darker effect with more contrast */
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.news-right , .news-left {
  background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /*width: 95%;*/
    /*margin-left: auto;*/
}

/*.news-right input#submit_button {*/
/*    background: #000;*/
/*    color: white;*/
/*}*/

.team-box {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    margin-bottom: 25px;
    border: 1px solid #cdcdcd;
    padding: 15px;
    border-radius: 15px;
    width: 100%;
    /* flex-direction: row-reverse; */
}

.team-text {
    width: 100%;
}

.team-text h5 {
    font-size: 25px;
}

.google-review {
    position: relative;
}

.google-review:before {
    position: absolute;
    content: "";
    width: 320px;
    height: 78px;
    background: #faeda2;
    bottom: -18px;
    right: -44px;
    z-index: 9;
}


a.btn.toggle {
    display: none;
}

.ab-pg-1.img-animation {
    position: sticky;
    top: 0;
}

.policy-sec li {
    margin: 0 0 10px;
}

.video-card-2 iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
}

.video-card-2 {
    width: 95%;
    margin: auto;
}

.ytSwiper {
    padding: 0 15px;
}

.detail-text table {
    border-radius: 10px;
    width: 100%;
    margin: 0 0 20px;
}

.detail-text table col {
    width: auto;
}

.detail-text table td {
    text-align: center;
    border: 1px solid #cdcdcd;
    padding: 9px 10px;
}

.detail-text table tr:first-child {
    background: #000;
}

.detail-text table tr:first-child td p {
    color: white;
}

.detail-text table td p {
    margin: 0;
    font-size: 15px;
}

/*.news-calender img {*/
/*    width: 60%;*/
/*    margin: 10px auto;*/
/*    animation: float 6s ease-in-out infinite;*/
/*}*/

/*.new-cont {*/
/*    background: white;*/
/*    padding: 40px 35px;*/
/*    border-radius: 25px;*/
/*}*/


.test-left img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 100%;
    margin-right: 10px;
}

.test-left {
    width: 70%;
}

.test-right {
    width: 25%;
}

.test-right img {
    width: 35px;
}

.test-desc p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* number of lines to show */
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.test-read a {
    display: inline-block;
    width: 100%;
    padding: 6px 10px;
    text-align: center;
    background: var(--first-clr);
    font-weight: 500;
    font-size: 14px;
    border-radius: 7px;
}

.footer-contact ul li.last-addres {
    width: 48%;
}

.partner-flexs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.partner-bx-flex {
    display: flex;
    width: 48%;
    justify-content: flex-start;
    margin-bottom: 25px;
    align-items: center;
    gap: 10px;
}

.pt-icon i {
    width: 55px;
    height: 55px;
    background: var(--first-clr);
    display: grid;
    place-content: center;
    border-radius: 100%;
    font-size: 1.5rem;
    color: #000;
    margin-right: 10px;
}

.partner-bx-flex h5 {
    font-size: 1.1rem;
}

.partner-list li {
    margin: 0 0 8px;
    padding-left: 25px;
    position: relative;
}

.partner-list li:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Eo_circle_yellow_checkmark.svg/2048px-Eo_circle_yellow_checkmark.svg.png);
    background-size: contain;
    left: 0;
    top: 4px;
}

.partner-logos {
    display: flex;
    align-items: center;
}

.partner-logos img {
    width: 100px;
    margin-right: 10px;
    height: auto;
}


.new-partner-sec {
    width: 90%;
}

.partner-flexs {
    margin: 30px 0 0;
}

.serviceSwiper {
    padding: 0 30px;
}




/*RESPONSIVE QUERY______*/



/*@media (min-width: 992px) {*/
/*    .container, .container-lg, .container-md, .container-sm, .container-xl {*/
/*        max-width: 1140px;*/
/*    }*/
/*}*/


@media only screen and (max-width: 1280px) {
    
    html {
    font-size: 15px;
}

.choose-box {
    min-height: 320px;
}

    

}

@media only screen and (max-width: 1199px) {
    
    h2.web-title {
      font-size: 2.1rem; 
    }
    
    
    
    

}

@media only screen and (max-width: 1140px) {
    
    .banner-image-design {
    gap: 10px;
}

.center-box {
    width: 150px;
    height: 150px;
    font-size: 15px;
}

.center-box span {
    font-size: 1.2rem !important;
}




}

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

}

@media only screen and (max-width: 991px) {
    
    .desk-view {
    display: none;
}

a.btn.toggle {
    display: inline-block;
    background: #222;
    color: white;
}

nav.mobile-menu.desk-menu.menus ul {
    flex-direction: column;
    align-items: flex-start;
}

nav.mobile-menu.desk-menu.menus ul li {
    width: 100%;
    position: relative;
}

nav.mobile-menu.desk-menu.menus ul li a {
    width: 100%;
    padding: 9px 10px;
    border-bottom: 1px solid #cdcdcd6e;
    font-size: .9rem;
}

span.clk_btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px;
}

nav.mobile-menu.desk-menu.menus ul.dropdown-menu {
    width: 100%;
    min-width: 100%;
    position: revert;
    display: none;
}

nav.mobile-menu.desk-menu.menus ul.dropdown-menu li a {
    width: 100%;
    float: inherit;
    font-size: .9rem;
}

nav.mobile-menu.desk-menu.menus ul.dropdown-menu li span.clk_btn {
    display: inline-block;
    color: white;
}

nav.mobile-menu.desk-menu.menus li ul.dropdown-menu li ul.dropdown-menu {
    position: revert;
    width: 100%;
    display: none;
    float: inherit;
    visibility: inherit;
    opacity: 1;
}

nav.desk-menu.menus ul li ul.dropdown-menu li ul.dropdown-menu li a {
    width: 100%;
}

nav.desk-menu.menus li:hover ul.dropdown-menu {
    /* opacity: 1; */
    /* visibility: visible; */
    display: none;
}
nav.mobile-menu.desk-menu.menus ul.dropdown-menu li .dropdown-menu a {
    font-size: 0.9rem;
}

.offcanvas-header img {
    width: 200px;
    height: auto;
}

button.btn-close {
    background: #000;
    opacity: 1;
    color: white;
    line-height: 1;
}

.banner-image-design {
    justify-content: center;
    gap: 45px;
}

.box.box-1 {
    width: 80px;
    height: 80px;
}

.box span {
    font-size: 14px;
}

.box.box-2 {
    width: 105px;
    height: 105px;
}

.box.box-3 {
    width: 110px;
    height: 110px;
}

.box.box-4 {
    width: 120px;
    height: 120px;
}

.center-box {
    width: 125px;
    height: 125px;
}

.box.box-6 {
    width: 110px;
    height: 110px;
    top: 43px;
}

.box.box-7 {
    width: 120px;
    height: 120px;
    top: 28px;
}

.box.box-8 {
    width: 110px;
    height: 110px;
}

ul#serviceTabs li button {
    display: inline-block;
    width: max-content;
    margin: 0 8px 8px 0px;
    font-size: 13px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

ul#serviceTabs {
    flex-direction: row;
    justify-content: center;
    padding: 0;
    background: transparent;
    margin: 0 0 30px;
    border: 0;
}

.choose-box {
    margin: 0 0 25px;
}

.form-box.ngo-monk-form {
    width: 100%;
    margin: 25px 0 0;
}

.padd {
    padding: 40px 0;
}

.news-left {
    margin: 0 0 30px;
}

.footer-social ul {
    display: none;
}

.footer-contact ul {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-contact ul li {
    width: 100%;
    margin: 0 0 10px;
}

.footer-contact ul li i {
    width: 25px;
    height: 25px;
    font-size: 11px;
}

.banner-content h2 {
    font-size: 2.1rem;
}

.logo img {
    width: 170px; 
}

.service-box h4 {
    font-size: 1.2rem;
    margin: 0 0 10px;
}

.ab-pg-1 img {
    width: 80%;
    margin: 20px 0;
}

.our-feature-list .col-md-4 {
    width: 100%;
}

.service-right-form {
    width: 100%;
    margin: 30px 0 0;
}

.service-left-form h3 {
    font-size: 1.2rem;
}

.service-left-form img {
    width: 140px;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.4rem;
}


h4 {
  font-size: 1.3rem;
}


h5 {
  font-size: 1.2rem;
}


h6 {
  font-size: 1.1rem;
}

.date {
    width: 60px;
    height: 40px;
    font-size: 13px;
}

input[type="submit"] {
    padding: 8px 35px;
}

.single-contact-info {
    padding: 40px 30px;
}

.info-icon img {
    width: 40px;
}

.info-content .title {
    font-size: 20px;
    margin: 10px 0;
    line-height: normal;
}

.map iframe {
    height: 200px;
}

.map {
    margin: 0 0 20px;
}














    
    

}


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

}

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

}


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

}


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

}

@media only screen and (max-width: 767px) {
    
    .top-right ul li a.a-1 {
    display: none;
}

.top-right ul li a i {
    font-size: 1.2rem;
}

.top-left ul li a {
    width: 25px;
    height: 25px;
    font-size: 12px;
}

.counter-sec .col-md-3 {
    width: 50%;
    margin: 0 0 10px;
}

.choose-box h4 {
    font-size: 1.5rem;
}

h2.web-title {
    font-size: 1.8rem;
}

.mt-5 {
    margin-top: 2rem !important;
}

.mb-5 {
    margin-bottom: 1.5rem !important;
}

.ngo-head-box li {
    width: 100%;
    justify-content: flex-start;
}

.nav-btn a {
    padding: 8px 15px;
    font-size: 12px;
}

.blog-img {
    height: auto;
}

.footer-img img {
    width: 170px;
}

.footer_links h4 {
    font-size: 19px;
}

.copyrights {
    padding: 10px 0;
}

.team-up {
    width: 100%;
    float: none;
    margin: 0 0 20px;
}

.team-img {
    height: auto;
}

.cat-box {
    height: auto;
    min-height: auto;
}

.ser-arrow.cat-arr a {
    padding: 6px 10px;
}

.cat-text h4 {
    font-size: 18px;
}

.cat-text p {
    margin: 0;
}

.service-text {
    min-height: auto;
}

.service-box {
    width: 100%;
}


.single-contact-info {
    min-height: auto;
}



    
    

}

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

}

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

}

@media only screen and (max-width: 575px) {
    
html {
    font-size: 14px;
}
    
.choose-box ul li {
    width: 100%;
}

.pattern-1 img {
    width: 200px;
}

.pattern-3 img {
    width: 60px;
}

.pattern-2 img {
    width: 200px;
}

.ngo-monk-sec .ngo-container {
    padding: 25px;
}

.team-text h5 {
    font-size: 20px;
}

.partner-accordion .accordion-header button img {
    width: 40px;
    height: 40px;
}

.partner-accordion .accordion-header button span {
    font-size: 17px;
}

.partner-logo img {
    width: 80px;
    height: 80px;
}

.partner-accordion {
    width: 100%;
}

.logo img {
    width: 155px;
}

.partener-b-img {
    width: 75px;
    height: 75px;
}

.partner-bottom {
    width: 100%;
}

.footer-contact ul li.last-addres {
    width: auto;
}

.news-right, .news-left {
    padding: 20px;
}


.ngo-monk-sec .ngo-container {
    padding: 20px; 
}

.partner-bx-flex {
    width: 100%;
}

.form-box.service-form {
    margin: 30px 0 0;
}


    


}



@media only screen and (max-width: 480px) {
    .box.box-1 {
    width: 70px;
    height: 70px;
    top: 0;
}

.box.box-2 {
    width: 90px;
    height: 90px;
}

.box.box-3 {
    width: 90px;
    height: 90px;
}

.box.box-4 {
    width: 95px;
    height: 95px;
}

.center-box {
    width: 100px;
    height: 100px;
}

.box.box-6 {
    width: 85px;
    height: 85px;
}

.box.box-7 {
    width: 95px;
    height: 95px;
}

.box.box-8 {
    width: 90px;
    height: 90px;
}

.box.box-9 {
    width: 95px;
    height: 95px;
}

.box span {
    font-size: 12px;
}

html {
    font-size: 14px;
}

    

}

@media only screen and (max-width: 400px) {
    
    .banner-image-design {
    gap: 35px;
}

.box {
}




}

@media only screen and (max-width: 390px) {
    
    .banner-image-design {
    display: none;
}



}

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

}


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

}

.arrows  {
    top: 0 !important;
    transform: translateY(-5%) !important;
}

.arrows {
    bottom: -75px !important;
}

.eFlJLT .review-list.layout-1 .arrows .arrow .arrow-btn {
    position: absolute;
}
.eFlJLT .review-list.layout-1 .arrows .arrow .icon {
    margin-top: 35px;
}








