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

html {
  scroll-behavior: smooth !important;
  transition: 0.6s !important;
}

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

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

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

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

li {
  font-family: "Poppins";
  list-style: none;
}

a {
  font-family: "Poppins";
  text-decoration: none;
}

p,
li {
  font-family: "Poppins";
  font-size: 15px;
  color: #242424;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: "Baskerville BT";
  font-weight: 600;
}

h5,
h6 {
  font-family: "Poppins";
  color: #000;
  font-weight: 500;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.1rem;
}

.pt-6 {
  padding-top: 60px;
}

.pb-6 {
  padding-bottom: 60px;
}

:root {
  --primary-color: #26a9cd;
  --secondary-color: #22a954;
  --black-color: #000;
  --white-color: #fff;
}

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

.header-top {
  width: 100%;
  padding: 6px 0;
  background: var(--primary-color);
}

.header-img-box {
  position: relative;
}

.header-top {
  width: 100%;
  padding: 6px 0;
}

.header-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fbae12;
  font-size: 18px;
  align-items: center;
}

.header-contact ul {
  display: flex;
  align-items: center;
}

.header-contact ul li {
  display: flex;
  margin: 0 20px 0 0;
  align-items: center;
}

/*------------------ .navbar ------------------------*/
nav.navbar {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 99;
  /* top: 0; */
}

.navbar-img img {
  width: 126px;
  height: auto;
}

.navbar-mean ul {
  display: flex;
}

.navbar-mean ul li {
  padding: 25px 18px;
}

.navbar-mean ul li a {
  color: #000000;
  font-size: 17px;
}

.navbar-icon i {
  padding: 4px 6px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 18px;
}

.navbar-icon i:hover {
  color: #fbae12;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-text a {
  color: white;
}

/* Swiper Container */
.headerSwiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Swiper Slide with Background Image */
.headerSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay with Dark Background */
.headerSwiper .overlay {
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  /* semi-transparent black */
  display: flex;
  align-items: center;
  /* justify-content: center; */
  margin-left: 5%;
}

/* Content in the Center */
.headerSwiper .content {
  /* text-align: center; */
  color: #fff;
  max-width: 50%;
  padding: 0 20px;
}

.headerSwiper .content h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}

.headerSwiper .content p {
  margin: 20px 0;
  line-height: 1.6;
  color: white;
}

.headerSwiper .btn:hover {
  background-color: #084298;
}

/* Swiper Arrows (Hidden by Default) */
.headerSwiper .swiper-button-next,
.headerSwiper .swiper-button-prev {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  color: #fff;
  font-size: 24px;
  background: #26a9cd;
  padding: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Show Arrows on Hover */
.headerSwiper:hover .swiper-button-next,
.headerSwiper:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}

/* Optional: Adjust arrow positioning if needed */
.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
}

/* Default hidden */
.content {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

/* When active */
.swiper-slide-active .content {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.swiper-slide-active .content {
  animation: fadeUp 1s ease forwards;
}

.swiper-slide-active .content h1 {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.swiper-slide-active .content p {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

.swiper-slide-active .content a.btn {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Hide default Swiper arrow icons */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* Custom font icon styling */
.swiper-button-next i,
.swiper-button-prev i {
  font-size: 30px;
  color: #fff;
  transition: transform 0.6s ease;
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
  transform: scale(1.1);
  transition: 0.6s;
}

a.header-btn {
  background: var(--primary-color);
  color: white;
  padding: 10px 32px;
  border-radius: 20px;
}

a.header-btn:hover {
  background: var(--secondary-color);
  color: #ffffff;
}

.about-text img {
  width: 60px;
  height: 60px;
}

.card {
  border-radius: 0px !important;
}

.card-body {
  width: 100% !important;
  height: 100% !important;
  background: #29aace3d !important;
  border-radius: 18px !important;
}

.about-img img {
  border-radius: 16px !important;
}

.about-img {
  margin-right: 10px;
}

.mission-img {
  width: 96% !important;
}

.header-area-text h2 {
  font-size: 36px;
  color: #23a854;
}

.header-area-text h6 {
  color: var(--secondary-color);
}

.about-btn a {
  color: #26a9cd;
}

.about-btn a i {
  font-size: 16px;
}

.about-text h4 {
  font-size: 22px;
  margin-top: 20px;
  color: #23a854;
}

.about-btn {
  /* float: inline-end; */
  margin-top: 20px;
}

section.servies-sec {
  background: #e4e9f2;
  /* padding: 60px 0px; */
}

.servies-img {
  position: relative;
  margin-bottom: 28px;
}

.servies-box {
  background: #23a854;
  padding: 10px;
  border-radius: 13px;
  position: relative;
  transition: 0.4s ease-in-out;
}

.servies-box h4 {
  color: white;
}

.servies-box p {
  color: white;
}

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

.servies-box i {
  background: #26a9cd;
  padding: 14px;
  border-radius: 50%;
  /* position: absolute; */
  right: 20px;
  bottom: 20px;
  z-index: 99;
  color: white;
  transform: rotate(327deg);
  border: 1px solid #ffffff;
}

.serviceSwiper .swiper-slide .servies-box {
  transition: all 0.4s ease;
  margin: 20px 0px;
  width: 98%;
  margin: 20px auto;
}

.swiper-slide-active .servies-box {
  background-color: var(--secondary-color) !important;
  /* transform: scale(1.05) !important; */
}

.swiper-slide-active .servies-box i {
  color: var(--secondary-color);
  background-color: white;
  font-size: 18px;
}

.about-btn a {
  background: #26a9cd;
  color: white;
  padding: 9px 20px;
  border-radius: 30px;
}

.testimonials-sec {
  background-image: url(../images/testimonials-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 80px 0px !important;
  position: relative;
}

.testimonial-icon img {
  width: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
  filter: invert(1);
}

.testimonial-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid;
}

.testimonial-box {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  width: 98%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 4px;
}

.testimonial-profile {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.testimonial-img {
  margin-right: 24px;
}

.testimonial-name h4 {
  font-size: 24px;
  margin: 0;
}

.testimonials-arrow .swiper-button-prev {
  position: absolute;
  bottom: 0px;
  background: #26a9cd;
  padding: 26px;
  border-radius: 50%;
  left: 0;
}

.testimonials-arrow {
  position: relative;
  margin-top: 71px;
}

.testimonials-arrow .swiper-button-next {
  position: absolute;
  bottom: 0px;
  background: #26a9cd;
  padding: 26px;
  border-radius: 50%;
  left: 80px;
}

.blog-card {
  background: #cfffe1;
  border-radius: 12px !important;
  overflow: hidden;
  margin: 20px 10px;
}

.blog-content {
  padding: 20px;
}

h3.blog-title {
  font-size: 24px;
  color: #23a854;
}

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

a.read-more {
  color: var(--secondary-color);
}

/* Default: all slides slightly zoomed out */
.blogSwiper .swiper-slide .blog-card {
  /* transform: scale(0.96); */
  transition: transform 0.2s ease, background-color 0.3s ease;
}

/* Active center slide: zoom in + #26a9cd background */
.blogSwiper .swiper-slide.center-active .blog-card {
  transform: scale(1.03);
  background-color: var(--secondary-color);
  /* Or use any highlight color */
  z-index: 2;
}

.blogSwiper .swiper-slide {
  transition: transform 0.5s ease;
}

.blogSwiper .swiper-slide.center-active h3.blog-title {
  color: white;
}

.blogSwiper .swiper-slide.center-active h3.blog-title {
  color: white;
}

.blogSwiper .swiper-slide.center-active p.blog-desc {
  color: white;
}

.blogSwiper .swiper-slide.center-active a {
  color: white;
}

.blogSwiper .swiper-slide.center-active .blog-content {
  color: white;
}

.footer {
  width: 100%;
  /* padding: 70px 0 20px 0; */
  background-color: var(--primary-color);
}

.footer_box img {
  width: 80%;
}

.footer_box p {
  font-size: 15px;
  padding: 10px 0 0 0;
  /* width: 75%; */
  color: #fff;
}

.footer_icon {
  width: 100%;
  margin: 20px 0;
}

.footer_icon ul {
  display: flex;
  justify-content: flex-start;
  padding: 0;
}

.footer_icon ul li a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 10px 0 0;
  font-size: 18px;
  color: var(--primary-color);
  background-color: #fff;
  transition: all 0.5s;
  cursor: pointer;
}

.footer_icon ul li a:hover {
  color: var(--secondary-color);
}

.footer_box h4 {
  display: inline-block;
  font-weight: 500;
  font-size: 24px;
  padding: 0 0 5px 0;
  margin: 0 0 20px 0;
  position: relative;
  color: #fff;
}

.footer_box h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 2px;
  background-color: #faad15;
}

.footer_links {
  padding: 0;
}

.footer_links li {
  position: relative;
  padding: 0 0 0 10px;
}

.footer_links li::before {
  position: absolute;
  content: "\2B9E";
  left: 0;
  top: 0;
  color: #faad15;
}

.footer_links li a {
  display: inline-block;
  font-size: 16px;
  margin: 0 0 10px 10px;
  font-weight: 100;
  transition: all 0.5s;
  color: #fff;
}

.footer_links li a:hover {
  color: #faad15;
}

.footer_contact {
  padding: 0;
}

.footer_contact li {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  font-size: 14px;
  margin: 10px 0 20px 0;
}

.link-icon {
  width: 40px;
  height: 40px;
  background-color: #faad15;
  display: grid;
  place-items: center;
  font-size: 15px;
  border-radius: 50%;
  color: #fff;
}

.link-text {
  /* width: 85%; */
  margin-left: 20px;
  color: white;
}

.link-text span {
  color: #fff;
  font-size: 15px;
}

.link-text a {
  color: #fff;
  font-size: 16px;
  transition: all 0.5s;
}

.link-text a:hover {
  color: var(--secondary-color);
}

.footer-acknowledge {
  width: 100%;
  margin: 30px 0 0 0;
  text-align: center;
}

.footer-acknowledge p {
  font-size: 18px;
  margin: 0 auto 20px auto;
  width: 60%;
}

section.footer_copyright p {
  margin: 0;
  padding: 10px 0px;
  text-align: center;
  font-size: 16px;
  color: #000;
}

section.footer_copyright {
  background: #02376b;
}

section.footer_copyright p {
  color: white;
}

.footer_box img {
  width: 120px;
  margin-bottom: 20px;
  height: auto;
}

.footer_box.footer-second {
  margin-left: 80px;
}

.navbar-btn a {
  background: #26a9cd;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
}

.navbar-btn:hover a {
  background-color: var(--primary-color);
}

.navbar-btn i {
  font-size: 12px;
  margin-left: 4px;
}

.inner-banner {
  position: relative;
}

.inner-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #23a854;
  opacity: 0.87;
}

.inner-banner .inner-title {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.inner-banner .inner-title h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
}

.inner-banner .inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.inner-banner .inner-title ul li {
  font-size: 18px;
  color: #fff;
  display: inline-block;
}

.inner-banner .inner-title ul li a {
  color: #fff;
}

.counter-box {
  width: 100%;
  padding: 50px 0;
  background: var(--secondary-color);
  margin: 0 0 60px 0;
}

.counter.about-counter {
  text-align: center;
  background: #23a854;
  padding: 13px;
  /* display: flex; */
  border-radius: 10px;
}

.counter.about-counter img {
  width: 75px;
  margin: auto;
  display: block;
  background: #f8ae21;
  padding: 12px;
  border-radius: 6px;
  /* filter: saturate(0.5); */
}

.counter-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 26px;
}

.counter-head h3 {
  font-size: 68px;
  margin: 0;
  font-weight: 800;
  color: #f8ae21;
}

.counter-head span {
  margin: 0 0 0 5px;
  font-size: 60px;
  color: #f8ae21;
  font-weight: 700;
}

.header-area-text ul li {
  list-style: disc inside;
}

.c-info {
  background: #ffffff;
  padding: 22px;
  height: 200px;
  border-radius: 8px;
  border: 2px solid var(--secondary-color);
}

.c-info:hover {
  border: 2px solid var(--primary-color);
}

.c-info i {
  background: #26a9cd;
  padding: 14px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
}

.c-info:hover i {
  background: var(--primary-color);
}

.contact-form {
  background: #23a854;
  padding: 30px 20px;
}

.contact-form h3 {
  font-size: 36px;
  color: white;
  text-align: center;
  margin-bottom: 30px;
}

.contant-btn {
  margin-top: 20px;
}

.contact-form input {
  padding: 12px;
}

.contant-btn a {
  background: var(--secondary-color);
  color: white;
  padding: 9px 26px;
  border-radius: 30px;
}

.c-info h6 {
  font-size: 20px;
  font-weight: 600;
  color: #26a9cd;
}

.c-info:hover h6 {
  color: var(--primary-color);
}

.c-info a {
  color: #282828;
}

.servies-box:hover {
  background: #26a9cd;
  /* transform: scale(1.03); */
}

section.servies-sec-inner .servies-box {
  width: 98%;
  margin-bottom: 16px;
}

/*.gallery-item {*/
/*  overflow: hidden;*/
/*  border-radius: 12px;*/
/*  transition: transform 0.3s ease;*/
/*}*/
/*.gallery-item img {*/
/*  transition: transform 0.3s ease;*/
/*}*/
/*.gallery-item:hover img {*/
/*  transform: scale(1.05);*/
/*}*/
.fancy-box::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #007BFF 0%, #00C6FF 100%);
  top: 0;
  left: -100%;
  z-index: 0;
  transition: 0.4s ease-in-out;
}

.fancy-box:hover::before {
  left: 0;
}

.fancy-box * {
  position: relative;
  z-index: 2;
}

.detail-image {
  margin: 20px 0;
  overflow: hidden;
}

.detail-image img,
.detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.la-event {
  width: 100%;
  padding: 30px;
  border-radius: 5px;
  border: 2px solid var(--primary-color);
  position: sticky;
  top: 120px;
}

.la-event ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
  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 #ddd;
}

.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: 11px;
  margin: 10px 0;
  background: #000;
  color: #fff;
  padding: 8px 10px;
  display: inline-block;
  border-radius: 30px;
}

.service-sidebar {
  box-shadow: 0 0 70px rgb(0 0 0 / 8%);
  position: relative;
  border-radius: 10px;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  background: #26a9cd;
}

.service-sidebar ul li a {
  background-color: #ffffff;
  padding: 6px 11px;
  margin: 0 0 15px;
  line-height: 1;
  /* border: 2px solid #ffffff; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  transition: 0.4s;
  color: #26a9cd;
  font-size: 17px;
  text-transform: capitalize;
}

.service-sidebar ul li a i {
  width: 38px;
  height: 38px;
  background-color: #21a950;
  font-size: 13px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  transition: 0.4s;
  color: white;
}

.service-sidebar ul li a.active-service,
.service-sidebar ul li a:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.service-ban {
  background-image: url(../images/project3.jpg);
  width: 100%;
  background-size: cover;
  padding: 150px 30px 30px;
  position: sticky;
  border-radius: 10px;
  overflow: hidden;
  top: 30px;
}

.service-ban:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(90deg,
      rgba(33, 37, 41, 0.9) 5%,
      transparent 80%);
  top: 0;
  left: 0;
}

.img-hover:after,
.img-hover:before {
  height: 0;
  opacity: 0.2;
  z-index: 9;
  transition: 0.5s;
  content: "";
  width: 100%;
  position: absolute;
}

.service-ban-text {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 9;
}

.service-ban-text i {
  font-size: 30px;
  color: #fff;
}

.service-ban-text a:first-child {
  font-size: 25px;
  font-weight: 700;
}

.about-img.first-img img {
  width: 100%;
  height: 518px;
  object-fit: cover;
}

.about-inner {
  display: flex;
  gap: 12px;
  width: 92%;
}

.about-inner figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.about-img img {
  width: 100%;
  /* height: 500px; */
  object-fit: cover;
}

.counter.about-counter p {
  margin: 0;
  font-size: 20px;
  color: white;
  font-weight: 500;
}

.counter.about-counter p {
  margin: 0;
  font-size: 20px;
  color: white;
  font-weight: 500;
}

.team-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
}

.team-socil ul {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 140px;
  right: 50%;
  transform: translateX(50%);
}

.team-socil ul li i {
  background: #faad15;
  color: white;
  padding: 8px;
  border-radius: 10px;
}

.team-img {
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.team-text {
  padding: 10px;
  text-align: center;
}

.service-formbox {
  background: #2dac5e;
  padding: 20px;
}

.service-formbox input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 0px;
  margin-bottom: 10px;
}

input.service-submit {
  background: #26a9cd;
  color: white;
  margin-top: 20px;
  border: 1px solid #ffffff;
}

.header-area-text {
  /* text-align: center; */
}

.modal-content {
  background: #000000 !important
}

button.btn-popup {
  background: #ffffff;
  border: 0px;
  padding: 4px 2px;
  border-radius: 20%;
  width: 30px;
}

input.btn.btn-popup.mt-3 {
  background: #26a9cd;
  color: white;
}

.detail-text h2 {
  font-size: 32px;
}

.detail-text h3 {
  font-size: 26px;
}

.detail-text h4 {
  font-size: 24px;
}

.detail-text h5 {
  font-size: 26px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary {
  background: #000000 !important;
  border: none;
}

.servies-box:hover .servies-img img {
  transform: scale(1.2);
}

.servies-box .servies-img {
  overflow: hidden;
  border-radius: 10px;
}



/*Gallery css */


.gal-box {
    position: relative;
    width: 100%;
    border-radius: 10px;
    z-index: 9;
    overflow: hidden;
    transition: .4s ease;
}

.gallery-img img {
    width: 100%;
    height: 249px;
    object-fit: cover;
}

.gal-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    color: white;
    opacity: 0;
    transition: .4s ease;
    width: 80%;
    margin: auto;
    z-index: 8;
}

.gal-icon a {
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    background: #faad15;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .4s ease;
    color: white;
    z-index: 8;
}

.gal-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #26a8583d;
    transition: .4s ease;
    z-index: 1;
}

.gal-box:hover:before {
    height: 100%;
}
a.btn.btn-success {
    display: none;
}
.gal-box:hover .gal-text {
    opacity: 1;
}

.gal-box:hover .gal-icon a {
    opacity: 1;
}


.gal-box:hover img {
    transform: scale(1.2);
}

/* RESPONSIVE QUERY______ */

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

}

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

}

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

}

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

}

@media only screen and (max-width: 991px) {
.navbar-mean {
    display: none;
}
	.testimonial-box{
		margin-top: 30px ;
	}
	.footer_links li a {   
    margin: 0 0 4px 10px;  
}
.footer_box.footer-second {
    margin-left: 0px;
    margin-bottom: 20px;
}	
	.offcanvas-body .navbar-mean {
    display: block;
}
	.offcanvas-body .navbar-mean ul{
    flex-direction: column;
}
	.offcanvas-body .navbar-mean ul li{
	padding: 6px ;
}
.footer_contact li {  
  margin: 0px 0 6px 0;
}
.blog-card {   
    margin: 20px 0px;
}
.testimonial-icon img {  
    top: 61px;
   }
.c-info {  
    margin-bottom: 10px;
}
.container.area-boc .row {
    flex-direction: column-reverse;
}
	.contact-form .row { 
    flex-direction: inherit !important;
}
	.contact-form{
		margin-bottom: 20px;
	}
	.blog-sec {
    background: #ededed;
}
	.pb-6 {
    padding-bottom: 40px !important;
}
.pt-6 {
    padding-top: 40px !important;
}
	.testimonials-sec {   
    padding: 36px 0px !important;  
}
	a.btn.btn-success {
    display: block;
}
}


@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) {
  h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    h3 { font-size: 20px }
    h4 { font-size: 18px; }
    h5 { font-size: 16px; }
    h6 { font-size: 15px; }
    p { font-size: 15px  !important; }
    span, a, li, label { font-size: 15px !important; }
	.about-text h4 {
    font-size: 20px;
    margin-top: 0px;    
}
	.counter.about-counter {
    border: 2px solid #ffffff;
    margin-bottom: 20px;
}
	.footer_box {
    margin-bottom: 20px;
}
	.navbar-img img {
    width: 90px;  
}
	.headerSwiper .overlay {   
    background: rgba(0, 0, 0, 0.4);  
    margin-left: 0%;
}
	.headerSwiper .content {   
    max-width: 98%;    
}
	.header-contact ul li.mail {
    display: none !important;
}
	.mission-img {
    width: 100% !important;
}
	.about-img {
    margin: 20px 0px;
		
}
	.header-area-text {
    margin-top: 20PX;
}
	.about-img img {  
    height: 300px;   
}
	.about-img {
    margin-right: 0px;
}
	
	.headerSwiper .swiper-button-next, .headerSwiper .swiper-button-prev {
	display: none !important;
}
	.contact-form h3 {
    font-size: 27px;   
}
	.contact-form input {
    padding: 6px;
}
	.contact-form p {
    margin: 0;
}
	input, textarea{
		font-size: 13px !important;
	}
	
}

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

}

@media only screen and (max-width: 600px) {
.testimonials-sec {   
   background-position: unset;
}
}

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

}

@media only screen and (max-width: 480px) {
	.headerSwiper .swiper-slide{
		height: 460px
	}
}

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

}

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

}

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

}


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

}



input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary {
    background: #26a9cd !important;
    border: none;
    width: 100%;
    margin: 0px !important;
}



.pagination .page-numbers {
    color: #fff;
    background-color: #1a1a1a;
    padding: 4px 12px;
    margin: 2px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.pagination .current {
    background-color: var(--primary-color);
    font-weight: bold;
}
.pagination i {
    vertical-align: middle
}




