/**
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@font-face {
    font-family: 'Ubuntu-Regular';
    src: url('../fonts/Ubuntu-Regular.eot');
    src: url('../fonts/Ubuntu-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Ubuntu-Regular.woff2') format('woff2'), url('../fonts/Ubuntu-Regular.woff') format('woff'), url('../fonts/Ubuntu-Regular.ttf') format('truetype'), url('../fonts/Ubuntu-Regular.svg#Ubuntu-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ubuntu-Light';
    src: url('../fonts/Ubuntu-Light.eot');
    src: url('../fonts/Ubuntu-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Ubuntu-Light.woff2') format('woff2'), url('../fonts/Ubuntu-Light.woff') format('woff'), url('../fonts/Ubuntu-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ubuntu-Medium';
    src: url('../fonts/Ubuntu-Medium.eot');
    src: url('../fonts/Ubuntu-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Ubuntu-Medium.woff2') format('woff2'), url('../fonts/Ubuntu-Medium.woff') format('woff'), url('../fonts/Ubuntu-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
:root {
    --default-font: "Ubuntu-Regular", 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: "Ubuntu-Regular", sans-serif;
    --nav-font: "Ubuntu-Medium", 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: #000000; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #003cff; /* 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. */
}

/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #1acc8d; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1acc8d; /* 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: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
    --background-color: #003cff;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #0c0091;
    --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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 {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

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

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #003cff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 14px 12px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

    .navmenu a,
    .navmenu a:focus {
        color: color-mix(in srgb, var(--nav-color), transparent 20%);
        font-size: 15px;
        padding: 0 6px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
        border-top: 1px solid transparent;
        border-radius: 4px 0 0;

    }

    .bg-light .navmenu a  {
        color: #003cff;
    }
        .bg-light .navmenu a:focus,
        .bg-light .navmenu a:hover {
            color: #003cff;
        }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        top: 1px;
        left: 0;
        background-color: #fff;
        visibility: hidden;
        width: 1px;
        transition: all 0.1s ease-in-out 0s;
    }
    .bg-light .navmenu > ul > li > a:before {
        background-color: #003cff;
    }
        .navmenu .active, .navmenu a:hover,
        .navmenu a:focus {
            /* border-top: 1px solid #fff; */
            border-radius: 4px 0 0;
             border-bottom: 1px solid #ffffff;
        }
    .bg-light .navmenu a.active, .bg-light .navmenu a:hover,
    .bg-light .navmenu a:focus {
        /* border-top: 1px solid #003cff; */
        border-radius: 4px 0 0;
        border-bottom: 1px solid #000000;
    }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility:hidden;
            height: 15px;
        }

  .navmenu li:hover>a,
  .navmenu a.active,
  .navmenu a.active:focus {
    color: var(--nav-color);
  }
    .bg-light .navmenu li:hover > a,
    .bg-light .navmenu a.active,
    .bg-light .navmenu a.active:focus {
        /* color: #003cff; */
        color:#000;
    }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 150px;
  }

  .navmenu .dropdown ul a {
    padding: 8px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .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(--nav-dropdown-hover-color);
  }

  .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;
  }
  .home-banner-title{
    padding-right: 50px;
  }
}
.btn {
    border-radius: 0px;
    font-family: 'Ubuntu-Medium', sans-serif;
    text-transform:uppercase;
}
.btn-success {
    background-color: #52d16d;
}
.btn-light{
    color:#003cff;
}
.navmenu a {
    padding-left: 6px;
}
/* Mobile Navigation */
@media (max-width: 1199px) {

    .text-md-start {
        text-align: left !important;
    }
    .btn-login{
      display: none !important;
    }
    .mobile-nav-toggle {
        /*color: var(--nav-color);*/
        color: #003cff;
        /* color: #ffffff; */
        margin: 0px;
        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: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        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;
        border-bottom: 1px solid #0707c7;
        color: #e9e9e9;
    }

  .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);
            color: #ffffff;
            background: #1acc8d;
        }

  .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: block ;
     /* dropdown kunal */
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    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;
        background: #003cff;
    }
  .hero .solution-title{
       font-size: 40px;
        line-height: 55px;
        text-align: center;
        padding-top: 70px;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 15px;
  position: relative;
}

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

.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(--heading-font);
}

.footer .social-links a {
  display: inline-block;
  align-items: center;
  justify-content: center;
 /* width: 30px;
  height: 30px;*/
  /*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: 15px;
  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 .cta {
        padding: 50px 0;
    }
        .footer .cta h4 {
            color: #1acc8d;
            font-size: 23px;
            margin-bottom: 20px;
            font-family: 'Ubuntu-Medium', sans-serif;
            font-weight: 400;
        }
        .footer .copyright {
            padding: 25px 0;
            /*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: 14px;
}
    .footer .credits a{
        color:#333;
    }
/* kunal new design footer */
.footer-main{
  font-size:14px;
  font-weight: 400;
   color:#000;
}
.footer-main .footer-subtitle1 a,.footer-first a{
  color:#000;
}
.footer-main .footer-social-links a{
   padding:0px 8px;
   color:#000;
}
.footer-first a:hover{
   color:blue;
}
.footer-main .footer-second strong {
        display:block;
        }
.footer-main .footer-second strong {
 padding:0px 6px ;
}
.footer-main .footer-subtitle2{
  font-size:14px !important;
}
.footer-mobile-view{
        display:none;
       }
/* end  design footer */
.career-footer .copyright {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.career-footer h3 {
    font-family: 'Ubuntu-Regular';
    font-weight: 500;
    color: #000;
}

.career-footer h6 {
    color: #000;
    font-weight: 600;
}

.career-footer p {
    font-family: 'Ubuntu-Light';
    font-size: 16px;
}
    /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
    #preloader {
        position: fixed;
        inset: 0;
        z-index: 999999;
        overflow: hidden;
        background: var(--background-color);
        transition: all 0.6s ease-out;
    }

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

.soltabtitle{
  font-size:1.2rem;
}
/*--------------------------------------------------------------
# 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;
  }
    .gro-one-footer .footer a {
        width: 40%;
        display: inline-block;
    }
     .text-sm-centers{
      text-align: center !important;;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {
    .flex-lg-row-reverse {
      flex-direction: row-reverse !important;
    }
    /* .hero h1, .carousel-caption h1 {
        font-size: 35px;
        line-height: 30px;
        text-align: center
    }

    .hero p, .carousel-caption p {
        font-size: 35px;
        line-height: 20px;
        margin-bottom: 20px;
    } */
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
    font-family: 'Ubuntu-Light', sans-serif;
}

    .section-title h2 {
        font-size: 50px;
        font-weight: 500;
        padding: 0;
        margin: 0;
        font-family: 'Ubuntu-Light', sans-serif;
        position: relative;
    }

.section-title h2::after {
 /* content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;*/
}

.section-title div {
  /*color: var(--heading-color);*/
  /*margin: 0;
  margin: 0;*/
  font-size: 26px;
  font-weight: 500;
  /*font-family: var(--heading-font);*/
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* kunal */
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 120px 0 0px 0;

   /* //kunal new */
  display: flex;
  align-items: center;
}
.media-hero{
  min-height: 50vh !important;
}
 .about-hero{
    min-height: 50vh !important;
  }
@media only screen and (min-width: 1368px) and (max-width: 2400) {
  .hero h1, .carousel-caption h1,.hero .banner-h1,.carousel-caption .banner-h1 {
    font-size: 35px;
    line-height: 40px;
    text-align: left;
  }
  .home-feacture-div{
          margin-bottom:50px;
        }
  .about-hero{
    min-height: 60vh !important;
  }
  .media-hero{
     min-height: 50vh !important;
  }
   .solution-hero{
     min-height: 40vh !important;
  }
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: center;
}

    .hero:before {
        content: "";
        /*background: color-mix(in srgb, var(--accent-color), transparent 28%);*/
        background: linear-gradient(190deg, #0140f3 0%, #0140f3 25%, #02258bbf 50%, rgb(0 0 0) 100%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }
.hero-one:before, .career-hero:before, .solution-hero:before, .media-hero:before {
    background: none !important;
}
.hero-one:after {
    content: "";
    /*background: url('../img/gro-one-slide-truck.png') no-repeat right bottom;*/
    background:none;
    position: absolute;
    right: 0px;
    inset: 0;
    z-index: 2;
    /* bottom:0px;*/
    bottom: -54px;
}
.gro-one-slider {
    position: relative;
}

    .gro-one-slider .slider-truck {
        position: absolute;
        right: 0;
        bottom: -37px;
        /* content: ''; */
        z-index: 1;
    }
.hero .slider-img1, .hero .slider-img2{
    width:80% !important;
}
.hero .slider-img2 {
    margin-left: -120px;
}
.hero .container {
    position: relative;
    z-index: 3;
}
#carouselhomebanner .carousel-caption {
    align-content: center;
    top: 15%;
}


.hero h1, .carousel-caption h1,.carousel-caption h1 p,.hero .banner-h1,.carousel-caption .banner-h1 ,.carousel-caption .banner-h1 p {
    margin: 0 0 20px 20px;
    font-size: 45px;
    font-family: 'Ubuntu-Medium', sans-serif;
    line-height: 65px;
    color: #fff;
}
.hero-one h1{
    margin-right:0px;
}
.hero h1 span, .carousel-caption h1 span,.carousel-caption h1 span p ,.hero .banner-h1 span,
.carousel-caption .banner-h1 span p ,.carousel-caption .banner-h1 span {
    color: #1acc8d;
    /*border-bottom: 4px solid var(--accent-color);*/
}
/* .hero p, .carousel-caption p kunal { */

.hero p, .carousel-caption p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 23px;
    font-weight: 400;
}

.hero .btn-get-started, .btn-get-started {
    color: #fff;
    background: #1acc8d;
    font-family: 'Ubuntu-Medium', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 0px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    margin: 0 0 20px 20px;
}

    .hero .btn-get-started:hover, .btn-get-started:hover {
        color: var(--contrast-color);
        background: #059652;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}
    .hero .btn {
        margin: 0 0 20px 20px;
    }
.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 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.career-hero{
    min-height: 70vh !important;
}
 .solution-hero {
    min-height: 80vh !important;
}
@media (max-width: 1199px) {
   .hero h1, .carousel-caption h1,.hero .banner-h1,.carousel-caption .banner-h1 {
        font-size: 30px;
        line-height: 40px;
        text-align: left;
        padding-top:10px;
        padding-right:10px;
  }
  .hero .media-title-banner{
    font-size: 35px;
        line-height: 44px;
        text-align: left;
        padding-top:72px;
        padding-right:0px;
  }
  .hero .career-title-banner{
     font-size: 34px;
      line-height: 46px;
     padding-top:60px;
  }
    .hero .h1groone{
        font-size: 40px;
        line-height: 55px;
        text-align: center;
        padding-top: 70px;
    }
}
@media (max-width: 640px) {
  /* .media-itemwrap img{
      height: 140px;
    } */
      .tababoutgrocreditnOne .slide-nav{
      justify-content: start !important;
    }
    .imgdetailh{
      height: auto;
    }
    .hero{
      max-height: 85vh;
    }
    .hero .hero-bg{
      object-fit:cover;
    }
    .hero h1, .carousel-caption h1,.hero .banner-h1,.carousel-caption .banner-h1 {
        font-size: 24px !important;
        line-height: 28px;
        text-align: center
    }
    .hero .banner-h1 {
        text-align: left
    }
     .about-title {
        font-size: 21px !important;
        line-height: 28px;
        text-align: center
    }

    .hero p, .carousel-caption p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
        .hero .solution-title {
        font-size: 24px !important;
        line-height: 35px;
        text-align: center;
        padding-top: 0px;
    }
      .hero .career-title-banner {
        font-size: 14px !important;
        line-height: 20px;
        text-align: center;
        padding-top: 0px;
        padding-right: 0px;
    }
        .hero .h1groone {
        font-size: 38px;
        line-height: 35px;
        text-align: center !important;
        padding-top: 12px;
    }


    .hero .btn-get-started, .carousel-caption .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
        margin: 0px auto
    }
    .hero-one:after {
        background-size: 50%;
    }
    .footer .footerline{
      display:block;
    }

      .footer-main .footer-second strong {
        display:none;
        }
        .footer-main .footer-second{
          margin-top:25px;
        }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
    0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}
.hero.about-hero p {
    margin: 0 0 20px 20px;
}

.about-hero ul, .solution-hero ul {
    list-style: none;
    margin: 0 0 20px 20px;
    padding: 0;
}
    .about-hero ul li, .solution-hero ul li{
        position: relative;
        padding-left: 20px;
    }
        .about-hero ul li:before, .solution-hero ul li:before {
            position: absolute;
            content: '';
            left: 2px;
            top: 8px;
            width: 8px;
            height: 8px;
            background: #1acc8d;
        }
        /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
        .about {
            /*padding-top: 100px;*/
        }
    .about h1,.about .label-title {
        font-family: 'Ubuntu-Light', sans-serif;
        font-size: 45px;
        color: #010101;
    }
    .about .label-title{
      line-height: 1.2;
      margin-bottom: .5rem;
    }
    
        .about h1 span,.about .label-title span {
            color: #36b34a;
            /*font-family: 'Ubuntu-Medium', sans-serif;
            font-weight: 900;*/
        }
        .about .content h3 {
            font-size: 16px;
            font-weight: 500;
            line-height: 19px;
            padding: 10px 20px;
            background: color-mix(in srgb, var(--accent-color), transparent 95%);
            color: var(--accent-color);
            border-radius: 7px;
            display: inline-block;
        }

.about .content h2 {
  font-weight: 700;
}
    .about .content h5{
        font-weight:700;
    }
    .about .content p:last-child {
        margin-bottom: 0;
    }
    .about .content ul li{
        position:relative;
        margin-bottom:20px;
    }
        .about .content ul li > i {
            position: absolute;
            left: 0px;
            top: 2px;
            color: #003cff;
            font-size: 20px;
        }
        .about .content ul li span {
            padding-left: 40px;
            display: block;
            padding-right: 30px;
        }
        .about .content .read-more {
            background: var(--accent-color);
            color: var(--contrast-color);
            font-family: var(--heading-font);
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 1px;
            padding: 12px 24px;
            border-radius: 5px;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}
#tababoutgrocreditnOne h4 {
    color: #003cff;
}
@media (max-width: 768px) {
    .about .icon-boxes .col-md-6:nth-child(2) .icon-box, .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

.aboutgro-one-highlight {
    background: #003cff;
    color: #fff;
}
    .aboutgro-one-highlight h1{
        color:#fff;
    }
    .aboutgro-one-highlight ul li{
        background:#fff;
    }
    /*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
    .features .features-item {
        background-color: var(--surface-color);
        display: flex;
        align-items: center;
        padding: 20px;
        transition: 0.3s;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        position: relative;
    }

        .features .features-item i {
            font-size: 32px;
            padding-right: 10px;
            line-height: 0;
            text-align: right;
            float: right;
        }

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  font-size: 16px;
  width:100%;
  text-align:left;padding-left:10px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}
/* kunal */

 .first-column .optimized-image-container, .third-column .optimized-image-container {
    width:100px;
  }

  .second-column .optimized-image-container {
     width:100%;
  }
.features .img-wrap{

    /* height:140px; */
    align-content:center;
}

.features h6 {
    font-family: Ubuntu-Regular;
    color: #000000; font-weight:900;
    font-size: 16px;
}
.features p {
    font-family: Ubuntu-Light;
    font-size:14px;
    margin-bottom: 0px;
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding: 0px 0 100px;
    margin-bottom: 80px;
    position: relative;
    border-bottom: 2px solid #7c8187;
    position: relative;
}

.stats .container {
    position: relative;
}
   /* .stats .container:after {
        background: url('../img/tuckbg.png') left bottom no-repeat ;
        background-size: contain;
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: -150px;
        content: ' ';
        height: 100px;
    }*/
.stats 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;
}

    .stats .stats-item {
        /*background-color: var(--surface-color);
  margin-top: -27px;*/
        padding: 10px 10px 10px 10px;
        width: 100%;
        position: relative;
        text-align: center;
        /*box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;*/
        font-family: 'Ubuntu-Medium', sans-serif;
        font-size: 36px;
        color: #000000;
        font-weight: 700;
    }

    .stats .stats-item span {
        /*font-size: 36px;*/
        display: inline-block;
        font-weight: 700;
        color: #000000;
    }

    .stats .stats-item p {
        padding: 0;
        margin: 0;
        font-family: 'Ubuntu-Light', sans-serif;
        font-size: 15px;
        font-weight: 100;
    }
.stats-about {
    background-color: #003cff;
    color: #fff;
    font-family: 'Ubuntu-Regular', sans-serif
}
    .stats-about .stats-item, .stats-about .stats-item span {
        color: #fff;
        font-family: 'Ubuntu-Regular', sans-serif;
        font-weight:400;
    }

#truck {
    bottom: -3px;
    position: absolute;
    animation: linear infinite;
    animation-name: run;
    animation-duration: 10s;
}

@keyframes run {
    0% {
        right: -400px; /* start left */
    }

    100% {
        right: 100vw; /* move to right end */
    }
}
@media (max-width: 1199px) {
   .stats {
    padding: 50px 0 50px;
    margin-bottom: 10px;
   }
}
/*--------------------------------------------------------------
# About Gro Section
--------------------------------------------------------------*/
.aboutgro, .aboutgro .section {
    background-color: #003cff;
    color:#fff;
}
    .aboutgro   h6, .aboutgro   h1{
        color: #fff;
    }
    .aboutgro{
        position:relative;
    }
        /* .aboutgro:before {
            position: absolute;
            left: 0px;
            top: 0px;
            bottom: 0px;
            content: '';
            background: url('../img/abtbg.png') left top no-repeat;
            background-size: cover;
            width: 50%;
            z-index: 1;
        } */
           .aboutgroimg{
           position: absolute;
            left: 0px;
            top: 0px;
            bottom: 0px;
            width: 50%;
            z-index: 1;
        }
        .aboutgro h1, .aboutgro .label-title {
            font-family: 'Ubuntu-Light', sans-serif;
            font-size: 60px;
        }
        .aboutgro p {
            font-family: 'Ubuntu-Light', sans-serif;
        }


.abt-ico-list li{
    position:relative;
    padding-left:70px;
    margin-bottom:25px;

}
.abt-ico-list img{
    background:#003cff;
    border-radius:50%;
    position:absolute;
    left:0px;
    top:0px;
}
.abt-ico-list h6{
    font-size:18px;
    font-family:"Ubuntu-Medium";
}
.abt-ico-list-mobile{
    text-align:center;
    padding:0px;
}
    .abt-ico-list-mobile h6 {
        font-size: 16px;
        font-family: "Ubuntu-Medium";
    }
    .abt-ico-list-mobile img {
        background: #003cff;
        border-radius: 50%;
        display: block;
        width: 70px;
        margin:10px auto;
    }
.abtgroOneApp{
    position:relative;
}
    .abtgroOneApp img{
        position:absolute;
        left:0px;top:0px;
        width:80px;
    }
    .abtgroOneApp div{
        padding-left:96px;
    }
.carouselItemaboutApp {
    padding: 0px 38px 45px;
}
.carousel-indicators .active {
    background-color: #003cff !important;
}

/*--------------------------------------------------------------
# About abtBlueprintforSuccess  Section
--------------------------------------------------------------*/
.abtcard {
    padding: 20px 20px;
}
    .abtcard .img-holder {
        background: #003cff;
        width: 130px;
        height: 130px;
        line-height: 130px;
        border-radius: 50%;
        margin: 15px auto;
    }
.abtcard h3{
    text-transform:uppercase;
}
    .abtcard p {
        color: #2c2c2c;
        font-family:'Ubuntu-Light', sans-serif;
        font-size:16px;
    }

.whychoosegro {
    border-top: 1px solid #003cff;
    border-radius: 8px 0px 0px;
    position:relative;
}
    .whychoosegro:before {
        content: '';
        position: absolute;
        background: #003cff;
        height: 19px;
        width: 1px;
        left: 0px;
        top: 0px;
    }
.whychoosegro .img-holder {
    width: 120px;
    height: 120px;
    margin: 10px auto;
    text-align: center;background:#003cff;
    border-radius:50%;
}
.keyfeatures p {
    padding: 4px 10px;
}
    /*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
    .details .features-item {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

.details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.details .features-item ul li:last-child {
  padding-bottom: 0;
}

.details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.details .features-item p:last-child {
  margin-bottom: 0;
}
#features{
    background:url('../img/bg2.png') bottom left no-repeat;
    background-size:100%;
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

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

    .testimonials .container, .testimonials .container-fluid {
        position: relative;
        z-index: 3;
    }

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}
/* //kunal */
.testimonials .testimonial-item .testimonial-img {
 /* width: 100px;
  border-radius: 50%;*/
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
  width:100%;
  height: 270px;
}
 .testimonials .testimonial-item .career-img{
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
  width:100%;
  height: 230px !important;
}

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

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

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.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(--default-color), transparent 40%);
  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: 8px auto 15px auto;
}

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

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
  display:none;
}
    .testimonials .swiper-slide {
        width: 33.33%;
        /*transform: translateX(16.65%);*/
        opacity: 0.3;
    }
        .testimonials .swiper-slide.swiper-slide-active {
            opacity: 1;
        }
        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: color-mix(in srgb, var(--default-color), transparent 50%);
            opacity: 0.5;
        }

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color:#003cff;
  opacity: 1;
}
.testimonials.bg-blue:before {
    background: #003cff;
}
@media (min-width: 992px) {
 .testimonials .testimonial-item p {
    width: 100%;
  }
 .aboutgroimg img{
      object-fit:cover;
    }
}
.careers-slide:before{
    background:none;
}
.careers-slide .swiper-slide {
    opacity: 1;
    padding: 6px;
}
.careers-slide .testimonial-item .testimonial-img {
    border: none;
}
.careers-slide .swiper-pagination {
    display:block
}
.careers-slide .testimonial-item p {
    font-style: normal;
}

/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/
.video {
    position: relative;
}
    .video img{
        width:100%;
    }
    /* .video:before {
        content: ' ';
        position: absolute;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0.7;
    } */
    .video a {
        position: absolute;
        display: block;
        text-align: center;
        align-content: center;
        top: 47%;
        left: 47%;
        color: #fff;
        font-size: 42px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.48);
        width: 60px;
        height: 60px;
        text-align: center;
    }

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

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

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

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

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

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

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

.pricing ul {
  padding: 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 li:last-child {
  padding-bottom: 0;
}

.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 .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

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

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {

  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
    .section-title h2, .aboutgro h1, .about h1,.about .label-title,.aboutgro .label-title {
                font-size: 1.8rem;
    }
    .section-title div{
        font-size:16px;
    }
    .aboutgro:before{
        display:none;
    }
    .aboutgroimg{
      display:none;
    }
    .aboutgro{
        padding-left:20px;
        padding-right:20px;
    }
    .footer .cta h4{
        font-size:18px;
    }
    .stats {
        padding: 10px 0 150px;
         margin-bottom: 00px;
    }
        .stats .container:after {
            bottom: -100px;
        }
    .stats-gro-one{
        border-bottom:none;
    }
    .hero-img img {
        width: 52% !important;
    }
    .hero .slider-img2 {
        margin-left: -30px;
    }
    .mobile-shadow {
        margin-left: 0px !important;
        width: 100%;
    }
    .contactOffice {
        border-right: none !important;
    }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
  /* kunal */
    .testimonials .swiper-slide {
        width: 100% !important;
        /*transform: translateX(16.65%);*/
        opacity: 1;
    }
     /* kunal */
    /* .testimonials .testimonial-item .testimonial-img {
        width:100%;
        height: 250px;
      } */
       .testimonials .testimonial-item .career-img{
          width:100%;
          height: 200px !important; ;
       }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  /*padding: 20px;*/
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

    .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 17px;
        line-height: 24px;
        /* margin: 0 30px 0 32px; */
        transition: 0.3s;
        cursor: pointer;
        padding: 20px 30px;
        background: #e0e0e0;
        margin:0px;
    }

        .faq .faq-container .faq-item h3 span {
            color: #333;
            padding-right: 5px;
        }

.faq .faq-container .faq-item h3:hover {
  color:#003cff;
}

.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-icon {
        position: absolute;
        top: 22px;
        left: 20px;
        font-size: 22px;
        line-height: 0;
        transition: 0.3s;
        color: var(--accent-color);
        color: #fff;
    }

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

    .faq .faq-container .faq-item .faq-toggle:hover {
        color: #fff;
    }

    .faq .faq-container .faq-active h3 {
        /*color: var(--accent-color);*/
        color: #fff;
        background: blue;
    }
        .faq .faq-container .faq-active h3:hover{
            color:#fff;

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  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 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 25%);
}
.contactOffice h6{
   font-family:Ubuntu-Medium;
   font-weight:500;
}
.contactOffice p{
    margin-bottom:35px;
}

/*--------------------------------------------------------------
# media page Section
--------------------------------------------------------------*/
/* kunal */
.media-itemwrap{
    margin-bottom:10px;
    padding:8px;
}
.media-itemwrap img {
    width: 100%;
    /* height: 200px; */
}
.imgdetailh{
  height: 500px;
}
.media-itemwrap h6 {
    color: #292929;
    margin: 12px 0;
    font-size:18px;
    font-family: 'Ubuntu-Medium';
}
    .media-itemwrap h6:hover{
        color:#003cff
    }
    .media-itemwrap p {
        margin-bottom: 15px;
        color: #292929;
    }

.blockquote {
    border-left: 5px solid #52d16d;
    padding: 10px 30px;
}
/*--------------------------------------------------------------
# Service page
--------------------------------------------------------------*/
.benefitssection {
    background: #003cff;
}
.divBenefits {
    margin-bottom: 10px;
}
    .divBenefits .img-holder{
        width:60px;
        height:60px;
        border:2px solid #fff;
        border-radius:50%;
        text-align:center;
        line-height:60px;
    }
    .divBenefits h6 {
        padding: 18px;
        font-size: 18px;
    }
    /*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
    .starter-section {
        /* Add your styles here */
    }



.owl-carousel .owl-item {
    transition: all 0.3s ease-in-out;
}

    .owl-carousel .owl-item .card {
        padding: 30px;
        position: relative;
    }

.owl-carousel .owl-stage-outer {
    overflow-y: auto !important;
    padding-bottom: 40px;
}

.owl-carousel .owl-item img {
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.owl-carousel .owl-item .card .name {
    position: absolute;
    bottom: -20px;
    left: 33%;
    color: #101c81;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: aquamarine;
    padding: 0.3rem 0.4rem;
    border-radius: 5px;
    box-shadow: 2px 3px 15px #3c405a;
}

.owl-carousel .owl-item .card {
    opacity: 0.2;
    transform: scale3d(0.8, 0.8, 0.8);
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item.active.center .card {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    height: 20px;
    background: #2a6ba3 !important;
    border-radius: 2px !important;
    opacity: 0.8;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    height: 13px;
    width: 13px;
    opacity: 1;
    transform: translateY(2px);
    background: #83b8e7 !important;
}

@media(min-width: 480.6px) and (max-width: 575.5px) {
    .owl-carousel .owl-item .card .name {
        left: 24%;
    }
      .tababoutgrocreditnOne .slide-nav{
      justify-content: start !important;
    }
    .imgdetailh{
      height: auto;
    }
    /* .media-itemwrap img{
      height: 140px;
    } */
}

@media(max-width: 360px) {
    .owl-carousel .owl-item .card .name {
        left: 30%;
    }
      .tababoutgrocreditnOne .slide-nav{
      justify-content: start !important;
    }
    .imgdetailh{
      height: auto;
    }
     /* .media-itemwrap img{
      height: 140px;
    } */
}

.gro-one-footer{
    background:url('../img/gro-one-footer.png') top left no-repeat;
    background-size:cover;
}
    .gro-one-footer .footer{
        color:#fff;
        background:transparent;
    }
    /* h1 replace label */
    .gro-one-footer h1,.footer .footer-h1{
        color:#fff;
        font-family:"Ubuntu-Light";
    }
    .footer .footer-h1{
      margin-top: 0;
      margin-bottom: .5rem;
      font-weight: 500;
      line-height: 1.2;
      font-size:2.5rem;
     
    }
   
     .footer .footer-h1-label{
      margin-top: 0;
      margin-bottom: .5rem;
      font-weight: 500;
      line-height: 1.2;
      font-size:2.5rem;
      font-family: var(--heading-font);
    }
        .gro-one-footer h1 span,.footer .footer-h1 span{
            color:#1acc8d;
            display:block;
        }
    .gro-one-footer  .cta h4 {
        color: #fff;
    }
.bg-grey-gradient {
    background: linear-gradient(180deg, rgb(245 245 245 / 70%), rgba(255, 255, 255, 0));
}
.carousel-indicators{
      margin-bottom: 1.5rem;
}
carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%; /* Makes the button circular */
    background-color: #000; /* Adjust color as needed */
}

carousel .carousel-indicators .active {
    background-color: #fff; /* Highlight active dot */
}
/*.slide-nav .nav-item {
    width: 20%;
}*/

.swiper-button-next, .swiper-button-prev{
    color:#fff;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 30%);
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 30%);
    right: auto;
}
.mobile-logo, .gro-one-app-about-mobile {
    display: none;
}
.carouselaboutappMobile{
    display:none;
}
.annualreportlist li div.report-list-item {
    background: #f8faff;
    padding: 15px;
    border-radius: 15px;
}
    .annualreportlist li div.report-list-item:hover {
        background: #e7ebf7;
    }
    .annualreportlist li div.report-list-item a {
        justify-content: start;
        align-items: center;
        display: flex;
        color: #000000;
    }
        .annualreportlist li div.report-list-item a:hover,
        .annualreportlist li div.report-list-item a:focus{
            color:#003cff;
        }
        .annualreportlist li div.report-list-item i {
            font-size: 45px;
            margin-right: 20px;
        }

   /* kunal */
     .third-column .right-column{
      flex-direction: row-reverse; /* flips left/right */
  }
  .slide-nav .nav-link {
    border: 1px solid #003cff;
    border-radius: 20px 20px 0px 0px;
    padding: 8px 40px;
    color: #333;
    font-family: 'Ubuntu-Medium';
    font-weight: 600;
    margin: 0 2px;
}
.slide-nav .nav-link.active{
    background:#003cff;
    color:#fff;
}
@media (min-width:2560px){
  .hero h1, .carousel-caption h1,.carousel-caption .banner-h1,.hero .banner-h1 {
        font-size: 60px;
        line-height: 85px;
        text-align: left;
  }

  .hero {
    min-height: 65vh !important;
  }
  .about-hero{
    min-height: 70vh !important;
  }
  .solution-hero{
    min-height: 70vh !important;
  }
  .gro-one-app-hero{
    min-height: 70vh !important;
  }
  .media-hero{
    min-height: 70vh !important;
  }
   .investor-hero{
    min-height: 90vh !important;
  }
   .career-hero,.contact{
    min-height: 65vh !important;
  }
   /* kunal new */
    .hero {
          margin-top:60px;
        }
       .gro-one-app-hero,.career-hero,.contact,.media-hero,.solution-hero,.about-hero{
          min-height: 90vh !important;
        }
  .hero p, .carousel-caption p {
    font-size: 28px;
    font-weight: 400;
}
    .hero .media-title-banner {
        font-size: 52px !important;
        line-height: 64px !important;
        text-align: left;
        padding-top: 0px;
        padding-right: 0px;
    }
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    }
    .about-home-gro{
      padding:100px 0px;
    }
     .home-gro-feature{
      padding-bottom:80px;
     }
     .home-feacture-div{
          margin-bottom:50px;
      }
       /* .footer .sitename,.footer .footerline{
        display:inline;
      } */
      /* .aboutgroimg {
          top: 0px !important;
      } */
        .gro-one-footer{
        background-position-x: center;
         background-position-y: center;
       }
}

@media screen and (max-width: 1367px) {
    .hero .slider-img1, .hero .slider-img2 {
        width: 60% !important;
    }
     /* #aboutgro{
    min-height: 650px !important;
  } */
  .about-hero{
    min-height: 80vh !important;
  }

}

@media only screen and (min-width: 1026px) and (max-width: 1366px) {
  .hero h1, .carousel-caption h1,.hero .banner-h1,.carousel-caption .banner-h1 {
    font-size: 35px;
    line-height: 40px;
    text-align: left;
    padding-right:70px;
  }
  .media-title-banner{
    text-align: left !important;
  }
  .home-feacture-div{
          margin-bottom:50px;
        }
     
    .about-hero{
      min-height: 90vh !important;
    }
    .gro-one-app-hero{
      min-height:90vh !important;
    }
    .solution-hero{
      min-height:90vh !important;
    }
    .media-hero {
        min-height: 90vh !important;
    }
     .investor-hero {
        min-height: 90vh !important;
    }
     .career-hero {
        min-height: 90vh !important;
    }
    .contact{
     min-height:90vh !important;
  }
   /* kunal new */
      .hero {
          margin-top:75px;
        }
   .gro-one-app-hero,.career-hero,.media-hero, .contact,.investor-hero,.solution-hero,.about-hero{
      min-height: 80vh !important;
    }

}
@media only screen and (min-width: 1048px) and (max-width: 1279px) {
  .gro-one-app-hero{
    min-height:62vh !important;
  }
  .solution-hero{
     min-height:55vh !important;
  }
  .investor-hero{
     min-height:60vh !important;
     top:40px;
  }
  .media-hero{
    min-height:50vh !important;
  }
  .contact{
     min-height:45vh !important;
  }
  /* kunal new */
   .hero {
          margin-top:90px;
        }
       .gro-one-app-hero,.career-hero,.media-hero, .contact,.investor-hero,.solution-hero,.about-hero{
          min-height: 90vh !important;
        }
  .hero .media-title-banner {
   
        padding-top: 0px !important;

    }
  .media-investor-file div{
    padding-top:20px !important;
  }
  .slide-nav .nav-link {

    padding: 8px 25px;

  }
}


.carouselaboutappMobile .slide-nav{
      justify-content: start !important;
    }
/* for Macbook pro */
    @media only screen and (min-width: 1600px) and (max-width: 2500px){
      /* .aboutgroimg {
          top: -250px !important;
        } */
        .aboutgro {
            position: relative;
            padding: 80px 0px;
        }
        .gro-one-app-hero{
          min-height: 70vh !important;
        }
         .about-hero {
            min-height: 60vh !important;
        }
          .solution-hero{
          min-height: 60vh !important;
        }
         .gro-one-app-hero{
          min-height: 60vh !important;
        } 
        .investor-hero{
            min-height: 60vh !important;
        }
        .media-hero, .contact {
              min-height: 60vh !important;
          }
         .career-hero {
        min-height: 65vh !important;
       }
       /* kunal new */
        .hero {
          margin-top:70px;
        }
       .gro-one-app-hero,.media-hero,.solution-hero,.career-hero,.media-hero,.about-hero,.contact,.investor-hero{
          min-height: 80vh !important;
        }
     .hero .media-title-banner {
        font-size: 44px;
        line-height: 60px;
        text-align: left !important;
        padding-top: 0px;
        padding-right: 0px;
    }
       .hero h1, .carousel-caption h1,.hero .banner-h1,.carousel-caption .banner-h1 {
            font-size: 48px;
            line-height: 65px;
            text-align: left;
        }
       .gro-one-footer{
        background-position-x: center;
         background-position-y: center;
       }
      .home-gro-feature{
        padding-bottom:80px;
      }
    }
     @media only screen and (min-width: 1370px) and (max-width: 1599px){

        .gro-one-app-hero{
          min-height: 65vh !important;
        }
        .solution-hero{
          min-height: 65vh !important;
        }
        .about-hero {
            min-height: 65vh !important;
        }
        .investor-hero{
            min-height: 65vh !important;
            /* top:40px; */
        }
        .media-investor-file div{
          padding-top:18px;
        }
         /* .media-hero, .contact, .career-hero {
              min-height: 65vh !important;
          } */
          /* kunal new */
           .hero {
          margin-top:90px;
        }
       .gro-one-app-hero,.career-hero,.media-hero, .contact,.investor-hero,.solution-hero,.about-hero{
          min-height: 65vh !important;
        }
        .hero h1, .carousel-caption h1,.hero .banner-h1,.carousel-caption .banner-h1 {
            font-size: 40px;
            line-height: 55px;
            text-align: left;
        }
         .home-banner-title {
            padding-right: 80px !important;
        }
          .hero .media-title-banner {
            padding-top: 0px !important;
          }
           .gro-one-footer{
            background-position-x: center;
            background-position-y: center;
          }
    }
 /* @media only screen and (min-width: 600px) and (max-width: 1024px){
  .investor-hero {
        min-height: 62vh;
        top:34px;
    }
    .media-investor-file{
      padding-top:100px;
    }
} */
@media only screen and (min-width: 992px) and (max-width: 1025px) {
  .hero {
    align-items: flex-start !important;
    padding-top: 120px !important;
    min-height: 90vh;
  }
  .about-hero{
    min-height: 100vh  !important;
  }
   .solution-hero{
    min-height: 100vh !important;
  }
   .gro-one-app-hero{
          min-height: 100vh !important;
        }
   .investor-hero{
       min-height: 41vh;
       top:34px;
    }
    .media-investor-file div{
      padding-top:20px;
    }
    .media-hero{
        min-height: 35vh !important;
    }
   .career-hero {
        min-height: 35vh !important;
    }
    .contact{
       min-height: 35vh !important;
    }
       /* kunal new */
       
       .gro-one-app-hero,.solution-hero,.about-hero, .media-hero{
          min-height: 110vh !important;
        }
     .hero .about-title,.h1groone{
        font-size: 45px !important;
        line-height: 60px !important;
        text-align: center;
        padding-top: 100px !important;
      }
      .hero .solution-title{
        font-size: 45px !important;
        line-height: 60px !important;
        text-align: left;
        padding-top: 100px !important;
      }
      .hero .media-title-banner {
        font-size: 35px !important;
        line-height: 44px;
        text-align: center;
        padding-top: 100px !important;
        padding-right: 0;
    }
      .stats .stats-item span{
      font-size: 23px !important;
    }
    .stats .stats-item{
      font-size: 33px !important;
    }
     /* #aboutgro{
    min-height: 650px !important;
  } */
  .slide-nav {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: center !important;
 }
 .carouselaboutappMobile .slide-nav{
      justify-content: center !important;
    }
    .slide-nav .nav-link {
        border: 1px solid #003cff;
        border-radius: 0;
        padding: 4px 20px;
        margin: 0 2px;
        /* min-width: 185px !important; */
         border-bottom: 0px;
    }
     .text-sm-centers{
      text-align: center !important;;
    }
    .stats {
      margin-bottom: 0px;
     }
        #carouselaboutapp {
        display: none;
    }
     .carouselaboutappMobile{
        display:block;
    }
      .home-feacture-div{
          margin-bottom:50px;
      }
       /* .footer .sitename,.footer .footerline{
        display:inline;
      } */
       .footer .footerline{
        display: block;
       }
       .footer .footertab{
         display: block;
         margin-left:50px !important;
         align-self: center;
       }
        .about-title {
        font-size: 45px !important;
        line-height: 60px !important;
        padding-top: 155px !important;
    }

       .hero .about-title-para{
        font-size:28px !important;
       }
       /* .solution-hero {
            min-height: 132vh !important;
        } */
}



    @media (min-width:992px){
  /* .hero {
    align-items: flex-start !important;
    padding-top: 100px !important;
    min-height: 90vh;
  }
   */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero h1, .carousel-caption h1,.hero .banner-h1,.carousel-caption .banner-h1 {
        font-size: 21px;
        line-height: 32px;
        text-align: left;
        padding-top: 0px;
        padding-right: 32px;
  }

  .hero .career-title-banner {
        font-size: 26px;
        line-height: 32px;
        text-align: left;
        padding-top: 0px;
        padding-right: 32px;
    }

      .hero .h1groone{
        font-size: 40px;
        line-height: 55px;
        text-align: center;
        padding-top: 70px;
    }
    .hero .about-title, .hero .solution-title{
       font-size: 36px;
        line-height: 55px;
        text-align: center;
        padding-top: 40px;
    }

      .text-sm-centers{
      text-align: center !important;;
    }
     .home-feacture-div{
          margin-bottom:15px;
      }
    .hero {
        align-items: flex-start !important;
        padding-top: 155px !important;
        min-height: 100vh;
    }
    .about-hero{
        min-height: 100vh !important;
      }
      .solution-hero {
          min-height: 100vh !important;
      }
      .gro-one-app-hero{
         min-height: 100vh !important;
      }
    .career-hero{
      min-height: 32vh !important;
    }
    /* kunal new */
     .about-hero, .solution-hero,.gro-one-app-hero{
        min-height: 100vh !important;
      }
     
    .aboutgroimg img{
      object-fit:cover;
    }
    .float-sm-start{
        float:left !important
    }
    .float-sm-end {
        float: right !important
    }
    .d-sm-flex{
        display:flex;
    }
    .stats .stats-item span{
      font-size: 23px !important;
    }
  .stats .stats-item{
    font-size: 33px !important;
  }
    .first-column {
        order: 2; /* Moves the first column to the second position */
        width:100%;
    }

   .solufontsize{
    font-size:12px;
   }
        .second-column {
            order: 1; /* Moves the second column to the first position */
            margin-bottom: 20px;
            text-align: center;
            width:100%;
        }
        .second-column img{
            width:92%;
            margin:0px auto;
        }
         .third-column {
            order: 3; /* Keeps the third column in its original third position */
            width:100%;
        }

    #features {
        background-position-y: 200px;
    }
    #features{
        padding-top:0px;
    }
    .features .img-wrap {
        height: auto;
        /* width: 45%; */
        align-content: center;
    }
    /* kunal */
     .third-column .right-column{
      flex-direction: row; /* flips left/right */
  }
     .first-column .optimized-image-container, .third-column .optimized-image-container {
    width:150px;
  }

  .features .img-wrap img{
      width:60%;
      margin:0px 10px;
      text-align:right

  }
  .features h6 {
      font-size: 14px;
      margin-bottom: 2px;
  }
  .stats .stats-item span {
      font-size: 28px;

  }
  .footer-main .footer-main-sub {
        padding:0px 10px !important;
        }
      .footer-main .footer-second strong {
        display:none;
        }
        .footer-mobile-view{
          display: none !important;
        }
        /* .footer-main .footer-second{
          margin-top:30px;
        } */
  /* #aboutgro{
    min-height: 570px !important;
  } */
  .slide-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center !important;
 }
    .slide-nav .nav-link {
        border: 1px solid #003cff;
        border-radius: 0;
        padding: 4px 20px;
        margin: 0 2px;
        min-width: 185px;
        white-space: nowrap;
         border-bottom: 0px;
    }
    .copyright .footertext{
      width:255px;
    }
    .copyright .footertab{
      width:185px;
      align-self: center;
    }
    #carouselaboutapp {
        display: none;
    }
     .carouselaboutappMobile{
        display:block;
    }
  .tababoutgrocreditnOne .slide-nav{
      justify-content: start !important;
    }
      /* .footer .sitename,.footer .footerline{
        display:block;
      } */
    .media-hero{
       min-height: 100vh !important;

    }
    .contact{
       min-height: 35vh !important;

    }
     .investor-hero{
       min-height: 40vh;
        top: 25px;
    }
     .media-investor-file{
      padding-top:5rem !important;
    }
     .gro-one-footer{
        background-position-x: center;
         background-position-y: center;
       }
}
@media (min-width:767px){
  /* .hero {
    align-items: flex-start !important;
    padding-top: 100px !important;
    min-height: 90vh;
  } */
     .tababoutgrocreditnOne .slide-nav{
      justify-content: start !important;
    }
   .hero .hero-bg {
    width: 100%;
    height: 100%;
    /* object-fit: fill; */

   }
    .home-feacture-div{
          margin-bottom:20px;
      }
      .hero .media-title-banner {
        font-size: 26px;
        line-height: 30px;
        text-align: left;
        padding-top: 0px;
        padding-right: 0px;
    }
   .home-feacture-div .ps-lg-3,.home-feacture-div .pe-lg-3{
          align-self: center;
      }
     /* .footer .sitename,.footer .footerline{
        display:block;
      } */
       .faq{
        padding:20px 0px 20px 0px !important;
       }
       .footer-mobile-view{
        display:block;
       }

}
@media (max-width:767px) {
    body{
        font-size:14px;
    }
    .gro-one-footer{
        background-position-x: left;
         background-position-y: left;
       }
    .d-sm-none{
        display:none !important;
    }
    .d-sm-block{
        display:block !important;
    }
    .float-sm-start{
        float:left !important
    }
    .float-sm-end {
        float: right !important
    }
    .d-sm-flex{
        display:flex;
    }
    .first-column {
        order: 2; /* Moves the first column to the second position */
    }
    .header .logo .logo-img {
        display: none;
    }
    .scrolled .header{
        padding-bottom:20px;
    }
    .mobile-logo {
        display: block;
    }
    .navmenu a {
        border-bottom: 1px solid #0707c7;
        color: #e9e9e9;
    }
        .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
            color: #ffffff;
            background: #1acc8d;
        }
        .second-column {
            order: 1; /* Moves the second column to the first position */
            margin-bottom: 20px;
            text-align: center
        }
        .second-column img{
            width:92%;
            margin:0px auto;
        }
         .third-column {
            order: 3; /* Keeps the third column in its original third position */
        }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .hero-img img.slider-img1, .hero-img img.slider-img2 {
        width: 52% !important;
    }
    .hero h1, .carousel-caption h1,.hero .banner-h1,.carousel-caption .banner-h1 {
        font-size: 35px;
        text-align: center;
    }
    .hero .banner-h1 {
        text-align: left;
    }
    .footer-first{
      padding-left:10px;
    }
    .footer-web-view{
      display:none !important;
    }

    #carouselhomebanner {
        margin-top: 30px;
    }
        #carouselhomebanner .carousel-caption {
        align-content: start;
        top: 0%;
        right: 4%;
        bottom: 1.25rem;
        left: 4%;
    }
      #carouselhomebanner .carousel-caption h1,#carouselhomebanner .carousel-caption .banner-h1 {
          margin-left: 0px;
          font-size: 24px;
          padding-top:70px;
      }
     #carouselhomebanner .home-banner-title{
       padding-top:90px;
      }
    .carousel-caption .btn-get-started {
        padding: 6px 20px;
    }
    .stats .stats-item {
        padding: 4px;
        font-size: 22px;
    }
        .stats .stats-item p{
            font-size:12px;
        }

        .home-feacture-div{
          margin-bottom:14px;
        }
        .home-feacture-div .ps-lg-3,.home-feacture-div .pe-lg-3{
          align-self: center;
      }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: var(--swiper-navigation-sides-offset, 3%);
        top: var(--swiper-navigation-top-offset, 38%);
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, 3%);
        top: var(--swiper-navigation-top-offset, 38%);
    }
    .testimonials,  .section {
        padding: 40px 0 20px 0;
    }
   
    #about {
        padding: 30px 0 20px 0 !important;
    }
   
    .imgdetailh{
      height: auto;
    }
      .media-investor-file div{
        padding-top:8px !important;
      }
     /* .media-itemwrap img{
      height: 140px;
    } */
    /* kunal */
    /* .hero {
        padding: 0px 0 0px 0;
        min-height: 70vh;
        align-items: start !important;
    } */
    .video a {
        top: 34%;
        left: 45%;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
    #features {
        background-position-y: 200px;
    }
    #features{
        padding-top:0px;
    }
    .features .img-wrap {
        height: auto;
        /* width: 45%; */
        align-content: center;
    }
    /* kunal */
     .third-column .right-column{
      flex-direction: row; /* flips left/right */
  }
     .first-column .optimized-image-container, .third-column .optimized-image-container {
    width:150px;
  }

     .features .img-wrap img{
            width:60%;
            margin:0px 10px;
            text-align:right

        }
    .features h6 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .footer .social-links a {
        padding: 0px 10px;
        font-size: 24px;
        margin-top: 10px;
    }
    .header {
        padding-bottom: 0;
        background:#fff;
        clear:both;
    }
        .header .container-fluid .btn-success {
            margin-top: 0px;
            margin-left: -11px;
            margin-right: -11px;
            display:block;
        }
    .scrolled .header .btn-success{
        display:none;
    }
    .mobile-nav-toggle{
        color:#003cff !important;
        margin:0px;
    }

        /*.gro-one-app-hero {
        height:90vh;
    }*/
        .gro-one-app-hero h1,.gro-one-app-hero .banner-h1 {
            margin: 0px;
            padding: 40px;
        }
    .hero-img .mobile-hand-img {
        width: 65%;
        margin-bottom: -65px;
        margin-left: 36px;
    }
    .gro-one-slider .slider-truck {
        width: 44%;
    }
    .gro-one-app-about-big-mobile {
        display: none;
    }
    .gro-one-app-about-mobile {
        display: block;
        margin-bottom: 20px;
    }
    .about .content ul li span {
        padding-right: 0px;
    }

    .slide-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content:center !important;
    }
     .slide-nav{
      justify-content: start !important;
    }
        .slide-nav .nav-link {
            border: 1px solid #003cff;
            border-radius: 0;
            padding: 4px 20px;
            margin: 0 2px;
            min-width: 180px;
            border-bottom:0px;
            white-space: nowrap;
        }

    #carouselaboutapp{
        display:none;
    }
    .carouselaboutappMobile{
        display:block;
    }
    .stats-home {
        padding: 0px 0px 60px;
        position: relative;
    }

    #truck img {
        width: 200px;
    }
    .aboutgro{
        padding:20px;
    }
    .aboutgro:before {
        display: none;
    }
     .aboutgroimg{
      display:none;
    }
    .mobile-nav-active .navmenu > ul{
        background:#003cff;
    }
    .whychoosegro.section {
        padding-top: 15px;
        padding-left: 8px;
    }
    .whychoosegro .section-title {
        padding-bottom: 20px;
    }
    .whychoosegro .img-holder {
        width: 90px;
        height: 90px;
    }
    .keyfeatures h6{
        margin-top:20px;
    }
    .keyfeatures p {
        padding: 2px 6px;
    }
     .hero {
    align-items: flex-start !important;
    padding-top: 100px !important;
    min-height: 90vh;
  }
  .about-hero{
    min-height: 85vh !important;
  }
  .solution-hero {
    min-height: 85vh !important;
  }
 .gro-one-app-hero {
    min-height: 85vh !important;
  }
     .media-hero{
       min-height: 85vh !important;
    }
     .career-hero{
        min-height: 28vh  !important;
    }
       .contact{
       min-height: 80vh !important;

    }
     .investor-hero{
       min-height: 31vh;
        top: 38px;
    }
      /* kunal new */
   
       .gro-one-app-hero,.media-hero,.solution-hero,.about-hero{
          min-height: 90vh !important;
        }
  /* } */
    .solution-hero:before, .media-hero:before {
        background: linear-gradient(190deg, #0140f312 0%, #0140f321 25%, #02258b8a 50%, rgb(0 60 255 / 67%) 100%)
    }
    .abtcard .img-holder {
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    .abtcard{
        padding:10px;
    }
    .soltabtitle{
        font-size: 1.1rem;
    }
    .abtcard p {
        font-size: 14px;
    }
        .abtcard h3 {
            font-size: 16px !important;
        }
        form{
            margin-top:15px;
        }
  .about  .icon-boxes{
    margin-top: 0px;
  }
  .pt-sm-5{
    padding-top: 20px;
  }
  .faq{
        padding:20px 0px 20px 0px !important;
       }
}






/* @media (min-width:662px){
    .hero h1, .carousel-caption h1 {
        font-size: 22px !important;
        text-align: center;
    }
} */

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Standard property */
}
.careers-slide{
  padding:30px 0 !important;
}