/* ///////////////////////////// common css /////////////////////////////////// */
img {
  width: 100%;
  height: 100%;
}

.row {
  --bs-gutter-x: 0rem !important;
}

:root {
  --base-duration: 500ms;
  --color-1: #2c3e50;
  --color-2: #1abc9c;
  --color-3: #2ecc71;
}

/* ///////////////////////////// common css /////////////////////////////////// */
/* /////////////////////////// banner start ///////////////////////////////////////// */
.banner-slider .owl-carousel .owl-nav.disabled {
  display: block !important;
}

.owl-carousel .owl-dots.disabled {
  display: block !important;
}

/* Each Slide */
.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slide Image */
.slide-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Dark Overlay on Image */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));

  z-index: 1;
}

/* Text Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
  color: white;
  z-index: 2;
  /* Ensure text is above overlay */
}

/* Heading Styles */
.slide-content h4 {
  font-size: 18px;
  font-weight: 400;
}

.slide-content h1 {
  font-size: 48px;
  font-weight: 700;
}

/* Gradient Effect for "GLOBAL" */
.slide-content span {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #ffffff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.slide-content p {
  font-size: 18px;
  margin-top: 10px;
  line-height: 1.6;
}

/* Button Styling */
.quote-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #034177;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  transition: 0.7s;
}

/* Make the button stand out on hover */
.quote-btn:hover {
  background: white;
  color: #034177;
}

.banner-slider .owl-nav {
  position: absolute;
  top: 50%;
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: white !important;
}

.banner-slider .owl-nav .owl-prev {

  margin-left: 50px !important;
  background-color: #034177 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  transition: 0.7s !important;
}

.banner-slider .owl-nav .owl-prev:hover {
  background-color: white !important;
  color: #034177;
  transition: 0.9s;
}

/* Right Navigation Button */
.banner-slider .owl-nav .owl-next {
  margin-right: 50px !important;
  background-color: #034177 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
}

.banner-slider .owl-nav .owl-next:hover {
  background-color: white !important;
  color: #034177;
  transition: 0.9s;
}

/* /////////////////////////// banner end ///////////////////////////////////////// */
/* /////////////////////////// main cards section ///////////////////////////////////////// */
.A_pro_space {
  text-align: center;
  padding: 30px 0px;
}

/* .A_pro_content {
  font-size: 34px;
  font-weight: bold;
  color: #034177;
  text-transform: uppercase;
  position: relative;
  display: inline-block !important;
  overflow: hidden;
  padding: 5px 10px;
  border-radius: 10px 40px;
}

Wave Effect
.A_pro_content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  background: linear-gradient(150deg, #034177, #cccaca);
  transition: top 0.5s ease-in-out;
  z-index: -1;
}

.A_pro_content:hover::before {
  top: 0;
}

.A_pro_content:hover {
  color: #fff;
  transition: color 0.5s ease-in-out;
}

Floating Animation
@keyframes floatText {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(0);
  }
}


.A_pro_content {
  animation: floatText 2s infinite ease-in-out;
} */

.A_pro_space {
  text-align: center;
  position: relative;
}

.A_pro_content {
  font-size: 24px;
  font-weight: bold;
  color: #034177;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px 40px;
}

/* Underline Effect */
.A_pro_content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px;
  background-color: #034177;
}

/* Moving Dot Effect */
.A_pro_content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  animation: moveDot 3s linear infinite;
}

@keyframes moveDot {
  0% {
    left: 0%;
  }

  100% {
    left: 100%;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;600&display=swap");

html {
  box-sizing: border-box;
  font-size: 100%;
}

/* html,
body {
  height: 100%;
} */

*,
*:before,
*:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.main_cards {
  -webkit-text-size-adjust: 100%;
  font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 100%;
  font-family: "Fira Sans", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  /* height: 100vh; */
  color: #1f1d42;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0;
}

.card-hover {
  width: 360px;
  height: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 32px -10px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  color: #fff;
}

.card-hover:hover .card-hover__extra {
  transform: translateY(0);
  transition: transform 0.35s;
}

.card-hover:hover .card-hover__content {
  background-color: #0460B0;
  bottom: 100%;
  transform: translateY(100%);
  padding: 50px 60px;
  transition: all 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-hover:hover .card-hover__link {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: all 0.3s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-hover:hover img {
  transform: scale(1);
  transition: 0.35s 0.1s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-hover__content {
  width: 100%;
  text-align: center;
  background-color: #034177;
  padding: 0 60px 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0);
  transition: all 0.35s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
  will-change: bottom, background-color, transform, padding;
  z-index: 1;
}

.card-hover__content::before,
.card-hover__content::after {
  content: "";
  width: 100%;
  height: 120px;
  background-color: inherit;
  position: absolute;
  left: 0;
  z-index: -1;
}

.card-hover__content::before {
  top: -80px;
  clip-path: ellipse(60% 80px at bottom center);
}

.card-hover__content::after {
  bottom: -80px;
  clip-path: ellipse(60% 80px at top center);
}

.card-hover__title {
  font-size: 15px;
  margin-bottom: 1em;
}

.card-hover__name {
  font-size: 1.5rem;
  margin-bottom: 1em;
}


.card-hover__title span {
  color: #ffffff;
}

.card-hover__text {
  font-size: 0.75rem;
}

.card-hover__link {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translate(-50%, 10%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  opacity: 0;
  padding: 10px;
  transition: all 0.35s;
}

.card-hover__link:hover svg {
  transform: translateX(4px);
}

.card-hover__link svg {
  width: 18px;
  margin-left: 4px;
  transition: transform 0.3s;
}

.card-hover__extra {
  height: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  background-color: #86b971;
  padding: 80px;
  bottom: 0;
  z-index: 0;
  color: #dee8c2;
  transform: translateY(100%);
  will-change: transform;
  transition: transform 0.35s;
}

.card-hover__extra span {
  color: #034177;
}

.card-hover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  transform: scale(1.2);
  transition: 0.35s 0.35s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

/* /////////////////////////// main cards section ///////////////////////////////////////// */
/* /////////////////////////// about us  section ///////////////////////////////////////// */
.pr-40 {
  padding-right: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.section-padding {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h5 {
  color: #034177;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.7px;
  margin: 0 auto;
  padding: 7px 20px;
  display: inline-table;
  border-bottom: 1px dashed;
}

.section-title h2 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 38px;
  padding: 7px 20px;
  line-height: 1.3;
  color: black;
  font-family: 'Roboto', sans-serif;
}

.A_about_img {
  overflow: hidden;
}

.icon {
  position: relative;
}

.single-feature {
  display: flex;
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: -10px -10px 10px #034177;
  box-shadow: 12px 13px 10px #034177;
  width: 176px;
  margin: auto;
  height: 100%;
}

.icon img {
  max-width: 50px;
  margin-bottom: 10px;
}

.single-feature h4 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.A_about_discription {
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #333;
  line-height: 26px;
  letter-spacing: 0.5px;
  font-family: 'Roboto', sans-serif;
}

.list {
  list-style: disc;
  padding-left: 30px;
  font-size: 14px;
}

.list li {
  margin-bottom: 15px;
}

/* /////////////////////////// about us section ///////////////////////////////////////// */
/* /////////////////////////// our service section ///////////////////////////////////////// */
.A_services_margin {
  padding: 50px 0px 40px;
}

.witr_section_title {
  margin-bottom: 45px;
}

.witr_section_title_inner h2 {
  font-size: 16px;
  display: inline-block;
  color: #034177;
  padding: 0px 0px 10px;
}

.witr_section_title_inner h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin: auto;
}

.witr_section_title_inner h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin: auto;
}

/* //////////////////////////////////////////////////////////////////////////////////////// */
figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 375px;
  min-width: 375px;
  height: 550px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  overflow: hidden;
  margin: 20px auto;
}

figure:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

figure:hover h1 {
  opacity: 0;
  transform: scale(0.7);
}

figure:hover img {
  transform: scale(1.25);
}

figure:hover figcaption {
  bottom: 0;
  top: 40%;
  /* transform: translateY(100%); */
}

figure h1 {
  position: absolute;
  top: 25px;
  left: 20px;
  margin: 0;
  padding: 0;
  color: black;
  font-size: 40px;
  font-weight: 100;
  line-height: 1;
  opacity: 1;
  transform: scale(1);
  transition: 0.25s ease;
  z-index: 999;
}

figure img {
  height: 100%;
  transition: 0.25s;
}

figure figcaption {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  /* transform: translateY(100%); */
  margin: 0;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  color: white;
  line-height: 1;
  transition: 0.25s;
}

figure figcaption h3 {
  margin: 0 0 20px;
  padding: 0;
}

figure figcaption p {
  font-size: 14px;
  line-height: 1.75;
}

figure figcaption button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
  padding: 10px 30px;
  background-color: #034177;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

/* /////////////////////////// our service section ///////////////////////////////////////// */
/* /////////////////////////// news and blog section ///////////////////////////////////////// */
.news_blog {
  font-family: "Source Sans Pro", sans-serif;
  background-color: whitesmoke;
  color: #252525;
  overflow: hidden;
  margin: 20px 0;
  padding: 40px 40px 0;
}

.news-carosal .item {
  position: relative;
  width: 100%;
  height: 400px;
  perspective: 1000px;
  /* Enables 3D effect */
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

.news-carosal .item:hover .flip-card {
  transform: rotateY(180deg);
}

/* Front Side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Back Side (Hidden by Default) */
.flip-card-back {
  background: linear-gradient(to top right, #bfbfc0, #034177);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: white;
  transform: rotateY(180deg);
  width: 100% !important;
}

.flip-card-back h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.flip-card-back p {
  font-size: 14px;
  opacity: 0.9;
  padding: 0 15px;
}

.news-carosal.owl-carousel .owl-dots .owl-dot.active span,
.news-carosal.owl-carousel .owl-dots .owl-dot:hover span {
  background: #034177;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}

.news-carosal.owl-carousel .owl-dots .owl-dot span {
  background: #034177;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

.news-carosal.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 30px;
}

/* /////////////////////////// news and blog section ///////////////////////////////////////// */
/* /////////////////////////// our customer section ///////////////////////////////////////// */
.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
  height: 300px;
}

#customers-testimonials .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
  height: 150px;
  overflow: hidden;
}

.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #034177;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  transform: scale3d(1.0, 1.0, 1);
}

.customer .owl-item img {
  transform-style: preserve-3d;
  /* max-width: 90px; */
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #034177;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #034177;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

/* /////////////////////////// our customer section ///////////////////////////////////////// */
/* /////////////////////////// certificate  section ///////////////////////////////////////// */
.A_certificate {
  width: 100%;
  /* background-color: #e5ebea; */
  margin: 20px auto;
  padding: 20px;
}

.A_certi_img {
  padding: 20px;
  width: 200px;
  height: 200px;
  aspect-ratio: 3/2;
}

.A_certi_img:hover {
  transform: scale(1.1);
  transition: transform 0.7s ease;
}

/* /////////////////////////// certificate  section ///////////////////////////////////////// */
/* /////////////////////////// footer  section ///////////////////////////////////////// */
footer {
  background-color: #034177;
  color: #f0f0f0;
  padding: 50px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: #034177;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section ul li a i {
  margin-right: 5px;
  color: #034177;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  /* background-color: #333; */
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #fff;
  color: #034177;
  transform: translateY(-3px);
}

.social-link a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #034177;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.social-link a:hover {
  background-color: #fff;
  color: #034177;
  transform: translateY(-3px);
  border: 1px solid #034177
}

.newsletter h4 {
  margin-bottom: 15px;
}

.newsletter form {
  display: flex;
}

.newsletter input {
  flex-grow: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
}

.newsletter button {
  background-color: #034177;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background: transparent;
  color: #034177;
  border: 2px solid #034177;
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  /* border-top: 1px solid #333; */
  position: relative;
}

.newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  /* margin: 0 auto; */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.newsletter input[type="email"] {
  flex: 1;
  padding: 16px 15px;
  border: none;
  outline: none;
  font-size: 14px;

}

.newsletter button {
  background: #034177;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 6px;

}



/* Back to top button styling */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  /* Hidden by default */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #EEF0F6;
  /* Using your theme color */
  color: #000;
  text-align: center;
  line-height: 40px;
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background-color: #EEF0F6;
  /* Darker shade for hover */
  transform: translateY(-3px);
  color: #034177;
}

.back-to-top i {

  margin-top: 17px;
}

/* Add animation for better UX */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.back-to-top.show {
  display: block;
  animation: fadeIn 0.5s;
}

/* /////////////////////////// footer  section ///////////////////////////////////////// */
/* /////////////////////////// All media quary ///////////////////////////////////////// */
@media only screen and (max-width: 1440px) {
  .card-hover {
    width: 280px !important;
  }

  .card-hover__content {
    padding: 0 30px 30px !important;
  }

  .card-hover:hover .card-hover__content {
    padding-top: 30px !important;
  }

  .A_about_img {
    /* display: none !important; */
    /* background-image: none !important; */
    background-position: -100px center !important;
  }

  .A_about_img_col {
    width: 0px !important;
  }
}

@media only screen and (max-width: 1400px) {
  figure {
    width: 290px !important;
    min-width: 290px !important;
    height: 400px !important;
  }
}

@media(max-width:1199px) {
  .single-feature {
    width: 150px;
  }

  .card-hover {
    width: 380px !important;
  }

}

@media only screen and (max-width: 1024px) {
  .banner-slider .owl-nav .owl-prev {
    width: 30px !important;
    height: 30px !important;
    margin-left: 30px !important;
  }

  .banner-slider .owl-nav .owl-next {
    margin-right: 30px !important;
    height: 30px !important;
    width: 30px !important;
  }

  .card-hover {
    width: 380px !important;
  }

  .card-hover__content {
    padding: 0 60px 60px !important;
  }

  /* .section-padding {
    max-width: 550px !important;
  } */

  .single-feature h4 {
    font-size: 12px;
  }

  .single-feature {
    width: 140px;
  }

  figure {
    width: 290px !important;
    min-width: 290px !important;
    height: 400px !important;

  }

  figure h1 {
    font-size: 36px;
  }



  figure:hover figcaption {
    bottom: 0;
    top: 0%;
    /* transform: translateY(100%); */
  }

  .footer-container {
    max-width: 900px !important;
  }

  .A_about_img {
    background-position: -270px center !important;
  }
}

@media only screen and (max-width: 991px) {
  .A_about_img {
    /* display: none !important; */
    /* background-image: none !important; */
    min-height: 250px;
    height: 400px !important;
    background-position: 0px -70px !important;
  }

}

@media only screen and (max-width: 768px) {
  .slide-content h1 {
    font-size: 38px;
  }

  .quote-btn {
    padding: 8px 18px;
  }

  .card-hover {
    width: 340px !important;
  }

  .card-hover__content {
    padding: 0 30px 30px !important;
  }

  .A_justify_content_center {
    justify-content: center !important;
  }

  figure {
    width: 330px !important;
    min-width: 330px !important;
    height: 400px !important;
  }

  .A_certi_img {
    padding: 20px;
    width: 200px;
    height: 200px;
  }

  .footer-container {
    /* flex-direction: column; */
    max-width: 800px !important;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .back-to-top {
    right: 10px;
  }

  .A_about_img {
    /* display: none !important; */
    /* background-image: none !important; */
    min-height: 250px;
    height: 400px !important;
    background-position: 0px -70px !important;
  }

  .about_img_div {
    overflow: hidden;
    max-height: 300px;
  }

  .A_nav-container {
    padding: 0px 16px !important;
  }

  .A_nav-container .social-links a {
    margin-right: 0px !important;
  }
  .A_pro_content{
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .single-feature {
    width: 100% !important;
  }
}

@media only screen and (max-width: 425px) {
  .slide-content {
    width: 75%;
    left: 70px;

  }

  .banner-slider .owl-nav .owl-prev {

    margin-left: 10px !important;
  }

  .banner-slider .owl-nav .owl-next {
    margin-right: 10px !important;

  }

  .slide-content h1 {
    font-size: 25px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .quote-btn {
    padding: 6px 12px;
    margin-top: 0;
  }

  .slide-content span {
    font-size: 30px;
  }

  .section-padding {
    max-width: 350px !important;
    padding: 30px 0;
  }

  .witr_section_title_inner h1 {
    font-size: 24px !important;
  }

  .witr_section_title_inner h3 {
    font-size: 24px !important;
  }

  figure {
    width: 400px !important;
    min-width: 400px !important;
    height: 500px !important;
  }

  .back-to-top {
    right: 10px;
    bottom: 50px;
  }

  .section-title h5 {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .A_certi_img {
    width: 150px;
    height: 150px;
    /* object-fit: cover; */
  }

  .A_about_img {
    /* display: none !important; */
    /* background-image: none !important; */
    min-height: 250px;
    height: 300px !important;
    background-position: 0px -20px !important;
  }

  .about_img_div {
    overflow: hidden;
    max-height: 250px;
    height: 250px;
  }
}

@media(max-width: 424px) {
  .slide-content {
    width: 75%;
    left: 50px;

  }

  figure {
    width: 320px !important;
    min-width: 320px !important;
    height: 500px !important;
    margin: 20px auto;

  }

  .back-to-top {
    right: 10px;
    bottom: 80px;
  }

  .section-padding {
    max-width: 320px !important;
  }

  .single-feature {
    width: 100% !important;
  }

  .card-hover {
    width: 300px !important;
  }
}

@media (max-width: 374px) {
  .slide-content {
    width: 75%;
    left: 44px;
  }

  .slide-content h1 {
    font-size: 20px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .quote-btn {
    font-size: 14px;
  }



  .card-hover__content {
    padding: 0 20px 20px !important;
  }

  .section-padding {
    max-width: 280px !important;
  }

  .single-feature {
    width: 100% !important;
  }

  .card-hover {
    width: 280px;
  }

  figure {
    width: 295px !important;
    min-width: 295px !important;
    height: 480px !important;
  }
}




/* /////////////////////////// All media quary ///////////////////////////////////////// */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 9999;
}

/* From Uiverse.io by AbanoubMagdy1 */
.loader {
  --dim: 3rem;
  width: var(--dim);
  height: var(--dim);
  position: relative;
  animation: spin988 2s linear infinite;
}

.loader .circle {
  --color: #034177;
  --dim: 1.2rem;
  width: var(--dim);
  height: var(--dim);
  background-color: var(--color);
  border-radius: 50%;
  position: absolute;
}

.loader .circle:nth-child(1) {
  top: 0;
  left: 0;
}

.loader .circle:nth-child(2) {
  top: 0;
  right: 0;
}

.loader .circle:nth-child(3) {
  bottom: 0;
  left: 0;
}

.loader .circle:nth-child(4) {
  bottom: 0;
  right: 0;
}

@keyframes spin988 {
  0% {
    transform: scale(1) rotate(0);
  }

  20%,
  25% {
    transform: scale(1.3) rotate(90deg);
  }

  45%,
  50% {
    transform: scale(1) rotate(180deg);
  }

  70%,
  75% {
    transform: scale(1.3) rotate(270deg);
  }

  95%,
  100% {
    transform: scale(1) rotate(360deg);
  }
}