/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
:root {
  --default-font: "Roboto Slab", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto Slab", sans-serif;
  --nav-font: "Roboto Slab", sans-serif;
  
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1B9948; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --highlight: #ffc511;
  --secondarycolor: #25245e;
  --bs-btn-bg: #064187;
  --black: #232323;
  --white: #ffffff;
  --red:#E63946;
  --lightbg:#FFFAF2;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529; /* The default color of the main navmenu links */
  --nav-hover-color: #e03a3c; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e03a3c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  overflow-x: hidden;

}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px;
  transition: all 0.5s;
  z-index: 99999;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}
@media (max-width: 1200px) {
  .header .logo img {
    max-height: 40px;
  }
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  padding: 0px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 1200px) {
  .header .btn-getstarted span {
    display: none;
  }
}
.btn-getstarted i {
  font-size: 20px;
  color: var(--accent-color);
  width: 44px;
  height: 44px;
  font-size: 16px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
  box-shadow: 1px 1px 3px #efefef;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.header .btn-getstarted:hover i {
  background-color: var(--accent-color);
  color: #fff;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: none;
}

@media (max-width: 1200px) {
  /* .header .logo {
    order: 1;
  } */

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 2;
    margin: 0;
    padding: 4px;
  }

  .header .navmenu {
    order: 3;
    align-items: center;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
 

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {

    color: var(--black);
    padding: 18px 16px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  
  }
 

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }



  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--white);
    background: var(--secondarycolor);
  }

  .navmenu .dropdown ul {
    border-top: 1px solid #e2e2e2;
    margin-top: 0px;
    /* margin: 0; */
    padding: 0px 0 0;
    background: var(--nav-dropdown-background-color);
    display: flex;
    flex-flow: column;
    position: absolute;
    visibility: hidden;
    left: 0px;
    top: 120%;
    opacity: 0;
    transition: 0.6s;
    border-radius: 0px;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
      rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    width: auto;
    border-bottom: 5px solid var(--secondarycolor);
  }

  .navmenu .dropdown ul li {
   
    width: 100%;
    border-right: solid rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul a {
    padding: 15px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-bottom: 1px solid #e2e2e2;
    transition: 0.6s;
    background-color: #fff;
  }
  .navmenu .dropdown ul a:hover {
    background-image: linear-gradient(to top, #f4f6f8 0%, white 100%);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--secondarycolor);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 50px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  /* .navmenu a,
  .navmenu a:focus {
    color: var(--secondarycolor);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  } */

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000;
    position: absolute;
    font-size: 43px;
    top: 70px;
    right: 30px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
    .mobile-nav-active .navmenu > ul li {
      padding: 10px 31px;
        text-align: center;
        text-transform: uppercase;
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--black);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
    z-index: 3;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  position: relative;
  z-index: 3;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.footer .credits a {
  text-decoration: underline;
  font-size: 13px;
  color: var(--highlight);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 0px 0;
  position: relative;
}



.section-bg .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
      #ct{
    width: 70% !important;
  }
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;

}

/* .section-title p {
  margin-bottom: 0;
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
  max-height: 50px;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondarycolor);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;

}

.about .content .about-btn {
  padding: 6px 12px 6px 12px !important;
  color: var(--default-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--white);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats  .impact i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 5px;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 0;
  min-height: 170px;
}


.stats .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 700;
  color:var(--accent-color);
  padding-right: 5px;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}
.impact-head h3{
     font-weight: 700;
    color: var(--accent-color);
    width: min-content;
    width: 100%;
   
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 23px;
    background-position: 109px;
    text-align: left;
  background-image: url(../img/send.png);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  color: var(--highlight);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.tabs .nav-link i {
  padding-right: 15px;
  max-width: 50px;
}
.icon-img:hover {
  fill: white;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: var(--highlight);
  border-color: var(--highlight);
}

.tabs .nav-link.active {
  background: var(--highlight);
  color: var(--heading-color);
  border-color: var(--highlight);
}

.tabs .nav-link.active h4 {
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}
.tabs .tab-pane h6 {
  color: var(--secondarycolor);
  font-weight: 600;
}
.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
      list-style-type: disc;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--white);
  padding: 30px;
  transition: 0.3s;
  border-radius: 8px;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;

}

.services .service-item .title a {
  color: var(--secondarycolor);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
  color: var(--black);
}

.services .service-item:hover {
  background-color: color-mix(in srgb, var(--white) 70%, white 5%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}
.portfolio .carousel-indicators {
  bottom: -30px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0 30px 0;
  border-radius: 20px;
  min-height: 205px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;

  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form input[type="number"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color) !important;
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form input[type="number"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/


.red-txt {
  color: var(--accent-color);
}
.card-bg {
  background: #f3f6ff !important ;
  border: none;
  transition: 0.6s;
}
.card-bg:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.carousel-indicators [data-bs-target] {
  background: var(--white);
  border-radius: 100%;
  height: 10px;
  width: 10px;
  border: none;
}
.btn-primary {
  background-color: var(--secondarycolor);
  border-color: var(--secondarycolor);
  font-size: 14px;
}
.btn.btn-link {
  background: none !important;
  color: var(--secondarycolor);
  margin-top: 0px;
  padding: 0;
}
.btn-link {
  text-decoration: none;
  color: var(--secondarycolor);
}
.scroll-down {
  border: 2px solid #999;
  border-radius: 20px;
  bottom: 60px;
  height: 50px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 30px;
  z-index: 999;
  cursor: pointer;
  transition: 0.2s ease;
}
.scroll-down::before {
  animation: scrollDownAnimation 2s infinite;
  background-color: #efe;
  border-radius: 100%;
  content: "";
  height: 6px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 10px;
  width: 6px;
}

#scroll-btn {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  /* overflow: clip; */
  z-index: 7;
  position: absolute;
  bottom: -31px;
  right: 50%;
}

#scroll-btn a {
  padding-top: 80px;
}
#scroll-btn a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
#scroll-btn a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#scroll-btn a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
#scroll-btn a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
@-webkit-keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.parallax {
  /* The image used */
  background-image: url("../img/missionbg.jpg") !important;

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}

.bigtext {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--highlight);
}

.career-page p {
  font-size: 19px;
  line-height: 42px;
}
.btn {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
 
}
.watsapp-container {
  position: fixed;
  bottom: 10%;
  right: 10px;
  max-width: 50px;
  z-index: 999;
}
.section-slider {
  max-height: calc(100vh - 216px);
 padding: 0;
 
  
 
  min-height: 100vh -216px;
}

.slider-caption {
  top: 50%;
  text-align: left;
  padding: 0;
  margin-top: -40px;
}
.section-slider .carousel-caption {
  top: 40%;
  transform: translate(0%, -50%);
  position: absolute;
  text-align: left;
  z-index: 3;
 
  bottom: auto;
}
.section-slider .carousel-caption h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
span.highlight {
  color: var(--highlight);
  font-size: 2em;
  text-transform: uppercase;
}
.home-info,
.home-info .highlight {
  display: none;
}
.service-glance {
  position: absolute;
  bottom: 10px;

  z-index: 999;
  display: flex;
  justify-content: center;
}
.service-glance p.title {
  display: none;
}
.service-glance-bx {
  z-index: 999;
  display: inline-block;
  position: relative;
  width: 290px;
  min-width: 290px;
  height: 290px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
  margin: 15px;
}

.service-glance-bx .image {
  height: 70%;
  filter: grayscale(50);
}
.service-glance-bx .image:hover {
  filter: grayscale(0);
  transition: all;
}


.service-glance-logo {
  height: 80px;
  width: 80px;
  border-radius: 20px;
  background-color: #fff;
  position: absolute;
  bottom: 30%;
  left: 30px;
  overflow: hidden;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
}

.logo img {
  height: 100%;
}

.main-text {
  position: absolute;
  color: #fff;
  font-weight: 900;
  left: 16px;
  bottom: 11px;
  z-index: 99999;
}
.main-text p {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-btn {
  font-size: 50px;
  position: absolute;
  color: #fff;
  right: 15px;
  bottom: 22%;
  border-radius: 100%;
  border: 1px solid #fff;
  animation: button-anim 2s ease 0s infinite normal forwards;
  z-index: 9999;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
}
.hero-btn:hover {
  opacity: 1;
  transition: all;
}

@keyframes button-anim {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

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

.hero-btn:hover {
  animation: none;
}

.hero-btn a {
  color: #fff;
}

@media (max-width: 961px) {

  .service-glance-bx {
    display: none;
  }
  .service-glance p.title {
    display: block;
    z-index: 999;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;

    margin-bottom: 191px;
  }
  .service-glance p span {
    color: var(--highlight);
    font-size: 28px;
    font-weight: 600;
  }
  .about .content .about-btn {
    padding: 8px 12px;
  }
  .map-holder {
    width: 100% !important;
  }
  .btn {
    margin-top: 15px;
  }
  .footer .footer-top {
    padding-top: 25px;
  }
  .footer .footer-about .logo {
    margin-bottom: 5px;
  }
  .footer .footer-links {
    margin-bottom: 5px;
  }

  .clients .swiper-slide img {
    max-height: 50px;
  }

  .section-title h2 {
    font-size: 24px;
  }
  .career-page p {
    font-size: 16px;
    line-height: 25px;
  }
  .services .service-item {
    padding: 14px 10px;
  }
  .services .service-item picture {
    width: 100% !important;
  }
  .services .service-item .title {
    margin-bottom: 10px;
  }
  .bigtext {
    font-size: 17px;
  }
  .contact .info-item {
    padding: 10px;
  }
  .tabs .nav-link i {
    text-align: center;
  }
  .tabs .nav-link i img {
    max-width: 60%;
  }
  .tabs .nav-link {
    padding: 12px;
   
  }

  span.highlight {
    color: var(--highlight);
    font-size: 24px;
  }
  .carousel.mainbg {
    display: none;
  }
  .carousel-caption h5{
    font-size: 32px !important;
  }

  .home-info,
  .home-info .highlight {
    display: block;
    margin: 0px auto;
  }
  .home-info h1 {
    text-align: left !important;
    color: var(--white);
    font-size: 16px;
  }
  .home-info h1 span {
    display: block;
  }
  .service-slide .card-bg {
    min-width: -webkit-fill-available !important;
  }
  .service-slide .card-bg .ps-4 {
    display: flex;
    flex-flow: column;
  }
}
.map-holder {
  width: max-content;
}
.map-holder iframe {
  width: 100%;
  height: 260px;
  border-radius: 8px;
}
@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
@media (max-width: 720px) {
  .btn-quote {
    margin-right: 0px;
    font-size: 11px !important;
    max-width: 116px !important;
    padding: 10px 5px;
  }
  .header .logo img {
    max-height: 34px;
  }
  span.highlight {
    font-size: 18px;
  }
  .btn-getstarted i {
    font-size: 14px;
    width: 34px;
    height: 34px;
  }
  .mobile-nav-toggle {
    margin-right: 0px;
  }
}
@media (max-width: 320px) {
  .no-pad {
    padding: 0;
  }
  .social-links-box .top-links {
    font-size: 12px !important;
  }
  span.highlight {
    font-size: 14px;
  }
  .home-info h1 {
    font-size: 12px;
  }
  .about .content .about-btn {
    padding: 6px 8px 6px 8px !important;
  }
}

.caption-animate .item.active .carousel-caption {
  opacity: 1 !important;
}

.caption-animate .item .carousel-caption.fadeInDown {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
    transition: transform 20000ms linear 0s;
  }

  100% {
    transform: scale(1.4);
    transition: transform 20000ms linear 0s;
  }
}
.social-links-box {
  background: var(--secondarycolor);
  /* background: linear-gradient(
    90deg,
    rgba(69, 123, 157, 1) 0%,
    rgba(69, 123, 157,  1) 100%
  ); */
  height: 40px;
}
.social-links-box p {
  color: var(--white);
}
.social-links-box p a {
  margin-right: 8px;
}
.social-links-box .top-links {
  color: var(--white);
  font-size: 13px;
}
.social-links-box .social-links a {
  color: var(--white);
  margin-left: 14px;
  font-size: 14px;
  align-items: center;
  display: flex;
}
.btn-quote {
  background-color: var(--red);
  border: 1px solid var(--red);
  color: var(--white) !important;
  border-radius: 25px;
  font-size: 12px;
  width: 160px;
  justify-content: center !important;
  align-self: center;
  height: 40px;
  text-transform: uppercase;
}
.btn-quote:hover {
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
  color: var(--white);
}

.section-slider video {
  z-index: 000;
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 1024px) {
  .service-glance-bx {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }
  .main-text p {
    font-size: 13px;
  }
  .hero-btn {
    font-size: 30px;
    right: 15px;
    bottom: 25%;
    height: 30px;
    width: 30px;
  }
}

.menu-bar{
  background: var(--highlight);
  min-height: 54px;
}
.info-separotor {
  font-size: 13px;
}
.info-separotor  .head-heading {
  text-transform: uppercase;
  font-weight: 600;

}
.info-separotor .header-icon-box {
min-height: 66px;
 
   padding: 10px 20px 0;
   white-space: nowrap;

}
/* .start-hidden {
  opacity: 0;
} */


.carousel-caption h5{
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--highlight);
  text-align: left;
}

.carousel-caption p{
  text-align: left;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

@keyframes fadeInFromTop {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate__fadeInFromTop {
  animation-name: fadeInFromTop;
  animation-duration: 2s;
  animation-fill-mode: both;
}
.btn-quote-dotted{
  display: inline;
 
  text-align: center;
  padding: 10px 20px;
  background: var(--red);
  border-radius: 30px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 5px;

}
.btn-quote-dotted:hover{
   color: var(--white);
   background-color: var(--secondarycolor);

}

@keyframes fadeOutToIn {
  0% {
    opacity: 0;     /* fade out start */
  }
  
  100% {
    opacity: 1;     /* fade in end */
  }
}

.fade-out-in {
  animation: fadeOutToIn 2s ease-in-out forwards;
}



#ct{height:110px; width:50%;border:1px solid var(--highlight);margin: 10px auto;text-align:center;position:relative;color:#000;padding:15px;}
#ct span{
  background: var(--bs-highlight-bg);
  color:var(--heading-color);
  padding:0 10px;
  font-size:20px;
  position:relative; 
  top:-28px;
  border-radius: 5px;
}
.corner{height:30px;
  width:30px;
  border-radius:50%;
  border:1px solid #fff;
  transform:rotate(-45deg);  
  position:absolute;
  background:#fff;
}

#left_top{
  top:-16px;
  left:-16px;
  border-color:transparent transparent #f1c40f transparent;
}
#right_top{
  top:-16px;
  right:-16px;
  border-color:transparent transparent transparent #f1c40f;
}
#left_bottom{
  bottom:-16px;
  left:-16px;
  border-color:transparent #f1c40f transparent transparent ;
}
#right_bottom{
  bottom:-16px;
  right:-16px;
  border-color:var(--highlight) transparent transparent transparent;
}
#ct p{font-size:18px}
#ct i{width: 100%; background: transparent; box-shadow: none; color: var(--heading-color);}
#ct blockquote {margin-top: -17px; margin-bottom: 0;}

.quotes-sec {
  background:var(--bs-highlight-bg);
  border-radius: 30px;
    position: relative;
 
  padding: 10px;

}

.rounded-img{border-radius: 10px;}
.quotes-sec .card{
  background: transparent;
  border: none;
}
.quotes-sec img{
  border-radius: 100% !important;
     
}
.yellow-bg{
  background: var(--bs-highlight-bg)
}
.list-items{
  list-style-type: disc !important;
  margin: 20px;
}
.border-left-0 {
  border-left: none !important;
}
.border-right-0 {
  border-right: none !important;
}
.tab-border-left{
  border-radius: 10px  0px 0px 10px !important;
}
.tab-border-right{
  border-radius: 0px  10px 10px 0px !important;
}
.footer-bg{
  background-image: url(../img/counter-bg.jpg);
  background-position:100%;
  position: relative;

}
.footer-bg::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: var(--black);
  opacity: .95;
  z-index: 1;
  width: 100%;
}
.contact-img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-container  i{
  font-size: 20px;
}
.quotes-sec  .carousel-control-prev-icon,
.quotes-sec .carousel-control-next-icon{
  background-image: none;
}
.quotes-sec  .carousel-control-prev-icon,
.quotes-sec  .carousel-control-next-icon {
  font-size: 30px;
  color: var(--highlight);
}

.programs{
  background-image: url(../img/programs-inner.jpg)  ;

  background-position: 0px -92px;

}

.campaigns{
  background-image: url(../img/Akshaya-Patra-Foundation-.jpg)  ;
  background-position: 0px 82px;

}
.partners{
  background-image: url(../img/ekatva_tribali.jpg)  ;
  background-position: 0px 42px;

}
.media{
  background-image: url(../img/ekatva_unearth.jpg)  ;
  background-position: 0px -180px;

}
.gallery{
  background-image: url(../img/gallery-bg.jpg)  ;
  background-position: 0px 0px;

}
.help{
  background-image: url(../img/kitchen.jpg)  ;
  background-position: 0px -180px;

}
.bgimg-inner{
    background-repeat: no-repeat;
  background-size: cover;


  background-attachment: fixed;

  position: relative;
}



.inner-header {
  min-height: 250px;
  margin-bottom: 50px;
  position: relative;
}
.header-title {
  padding: 20px 30px;
  /* background: rgba(37, 36, 94, 0.7); */
  display: flex;
  justify-content: center;
  align-items: center;
  
  text-align: center;
  flex-flow: column;



}
.header-title h3{
  color: var(--highlight);
    font-size: 45px;
  z-index: 3;
  font-weight: 800;
}
.header-title p{
  font-size: 28px;
  color: var(--surface-color);
  width: 70%;
}
.inner-header::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background: var(--secondarycolor);
    opacity: .7;
    z-index: 1;
    width: 100%;
}
.ekatva-cards .card{
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
  border: none;
  border-radius: 0;
  min-height: 400px;
  background: var(--lightbg);
}
.ekatva-cards .card-body{
  text-align: left;
  padding: 25px 30px 25px;
}
.ekatva-cards  .card-title{
  font-size: 19px;
}
.ekatva-cards .card-text{
  font-size: 16px;
}
.ekatva-cards .card img{
  border-radius: 3px 3px 0 0;
      -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .5s ease;
}
.ekatva-cards .card img:hover{
      -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: .5s ease;
}
.spacer{
height: 50px;
    width: 1px;
    background: #eee;
    padding: 0px;
    display: flex;
    align-self: center;
}
.goodwill-sec .card{
  border: none;
  align-items: center;


 
}
.goodwill-sec .card img{
  border-radius: 100%;
  max-width: 60%;
  filter: grayscale(1);
}
.goodwill-sec .card img:hover{
 
  filter: grayscale(0);
}
.highlight-txt{
  color: var(--highlight);
}
.bx-partner ul li{
  font-size: 20px;

}
.bx-partner img{
  border-radius: 100%;
  max-width: 300px;
}
.bx-partner ul li {
  list-style: none; /* remove default bullet */
  background: url('../img/fast-forward.png') no-repeat left center; /* center vertically */
  padding-left: 30px; /* space for the icon */
  line-height: 38px;
}
.mail a{
  color: var(--default-color);
}
.mail a:hover{
  text-decoration: underline;
}
.qrcode {max-width: 180px;}

#hero .carousel-item::before{
      z-index: 1;
    content: "";
    position: absolute;
    background-image: radial-gradient(black 1px, transparent 0);
    background-size: 2px 2px;
    background-position: -19px -19px;
    mix-blend-mode: overlay;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .5;

}
.bottombar {
  width: 100%;
  left: 0px;
  bottom: 0px;
  right: 0px;
  min-height: 65px;
  background-color: var(--nav-dropdown-color);
  visibility: hidden;

  z-index: 9;

}
.bottombar p{
  font-size: 16px;
  padding-right: 20px;
  margin-top: 20px;
  margin: 0;
  color: var(--white);

}
.scrolled .bottombar{
  visibility: visible;
}
.donate-icon{
    max-width: 37px;
    margin-right: 15px;
    margin-bottom: -10px;
}

.media-wrapper{
  text-align: left;
 
}
.media-wrapper .col{
  margin-bottom: 50px;
}
  
.media-wrapper .card-body{
  min-height: 150px;
}
.media-wrapper h3{
  margin-bottom: 24px;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  font-size: 22px;
}

.media-wrapper h3:after {
      content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 100%;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0px;
}
.media-wrapper .card-title{
  font-size: 18px;
}

.media-wrapper  .media-link:hover .card-body{
  background: var(--lightbg);
}
.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  background-color: transparent
}

.media-wrapper  .media-link:hover .image {
  opacity: 0.3;
  filter: grayscale(1);
}

.media-wrapper  .media-link:hover  .middle {
  opacity: 1;
}

.media-wrapper .text {
  background-color: #04AA6D;
  color: white;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 4px;
  white-space: nowrap;
}
.partner-wrapper .card img{
  filter: grayscale(1);
}
.partner-wrapper .card img:hover{
    filter: grayscale(0);
    cursor: pointer;
}








/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
    position: relative;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(3, 3, 3, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}


@media (max-width: 768px) {
  .section-title{
    padding-bottom: 20px;
  }
  .about-img{margin: 0;}
  .about .content p,  #mission .tab-content p, .contact p {
    font-size: 14px;
  }
  .contributor-box h3, .contributor-box h5{
    font-size: 16px;
    text-align: center;

  }
  .tabs .tab-content{
    margin: 0;
  }
  .tabs .tab-content .tab-pane{
    padding: 10px 0 !important;
  }
 
    .quotes-sec button{
      display: none;
    }
  .contributor-pic{
    text-align:center !important;
  }
  .contributor-box img{
    max-width: 25%;
  }
    .contributor-box .card-text{
      font-size: 14px;
      text-align: center;
    }
        #ct{
    width: 100% !important;
    height: max-content;
            box-shadow: 0px 0px 5px #ccc;
  }
#ct span, #mission .tab-content h5{
  font-size: 15px;
}
#ct p{
  font-size: 14px;
  margin: 0;
}


  .impact .col-sm-6{
    width: 50%;
  }
  .section-title h2{
    font-size: 16px;
    margin:0px 0px 14px;
  }
  .stats .stats-item span{
    font-size: 24px;
  }
  .stats .stats-item{
    min-height: min-content;
    width: 100%;
    padding: 30px 15px 15px 15px;
  }
 .stats .stats-item p, .tabs .tab-pane ul li,    .bx-partner ul li, .goodwill-sec h5, .footer .copyright p{
  font-size: 14px; background-size: 6%;
}

  .carousel-caption h5{
    font-size: 16px !important;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 24px;
  }
  .section-slider .carousel-caption{
    top: 50%;
  }
  .btn-quote-dotted{
    font-size: 11px;    padding: 8px 16px;
  }
  .carousel-caption p{
    font-size: 12px;
    display: none;
  }
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
  .footer .footer-about .logo span, .media-wrapper h3,.media-wrapper .card-title{
    font-size: 16px;
  }
  .bottombar{
    min-height: 48px;
    padding: 0px 12px;
  }
   .bottombar p{
    font-size: 12px;
    padding-right: 7px;
   }
   .scroll-top, .carousel-control-prev, .carousel-control-next{
    display: none !important;
   }
   .donate-icon{
    max-width: 25px;
    margin-right: 7px;
   }
   .btn-quote-dotted{margin-top: 0px;}
   .footer .footer-links ul li{padding: 5px 0;}
   .header-title h3{font-size: 24px;}
   .header-title p, .ekatva-cards .card-title{font-size: 16px;}
   .header-title{padding: 0;}
   .inner-header{min-height: 160px; margin-bottom: 24px;}
   .about h4{ font-size: 16px; line-height: 24px; width: 100% !important;}
   .goodwill-sec .card img{max-width: 90%;}
   .qrcode{max-width: 110px;}
   section, .section{padding: 20px 0;}
   .ekatva-cards .card{min-height: max-content;}
   #about{margin-top: -20px;}
   .yt-video iframe{width: 100%; height: 230px;}
   .header-title p{width: 100% !important;}
   .carousel-caption{left:10%; right: 10%;}
   .media-wrapper .card-text{font-size: 14px;}
   .media-wrapper .col{margin-bottom: 10px;}
   .quotes-sec .card-body{padding: 10px;}


  
   


}