/**
* Template Name: Altai Finance
* Updated: July 09 2025
* Author: The Eclick Team
* License: https://www.eclicksoftwares.com/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://www.eclicksoftwares.com/
--------------------------------------------------------------*/
@import url(../css/fontawesome.min.css);
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
        --default-font: "Roboto", sans-serif;
        --heading-font: "Raleway", sans-serif;
        --nav-font: "Poppins", sans-serif;
        --small-heading-font: "Inter", sans-serif;
        --large-extra-heading-font: "Raleway", sans-serif;
        --button-font: "Roboto", sans-serif;
        --large-heading-font: "Inter", sans-serif;
        --ui-styling-font: "Inter", sans-serif;
        --setHeight: 150px;
}

/* 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;
        /* button Background color */
        --button-background-color: #8C368D;
        /* button Background color Light */
        --button-light-background-color: #F4C900;
        /* button Background color Dark */
        --button-dark-background-color: #004aad;
        /* website light Background color  */
        --light-background-color: #EFEFEF;
        /* website light Background color  */
        --dark-background-color: #8C368D;
        /* website dark Background color  */
        --very-dark-background-color: #661E67;
        /* website dark Background color  */
        --nav-light-background-color: #F0F0F0;
        /* website very dark Background color  */
        --very-light-background-color: #0AA24D;
        /* website very light Background color  */
        /* website very dark Background color  */
        --border-color: #CFCFCF;
        /* light border color  */
        --dark-border-color: #909090;
        /* dark border color  */
        --default-color: #444444;
        /* Default color used for the majority of the text content across the entire website */
        --heading-color: #2a2c39;
        /* Color for headings, subheadings and title throughout the website */
        --accent-color: #000000;
        /* 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: #312f2f;
        /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
        --white-color: #fff;
        --nav-hover-color: #023375; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #2F2F2F;
        /* The default color of the main navmenu links */
        /* 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: #FFFFFF;
        /* Used for navigation links of the dropdown items in the navigation menu. */
        --nav-dropdown-hover-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);
        scroll-behavior: smooth;
}

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

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

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

figure {
        padding: 0;
        margin: 0;
}

img {
        max-width: 100%;
        height: auto;
}

.container {
        max-width: 1440px;
}

.owl-dots {
        text-align: center;
        padding-top: 15px;
}

.owl-dots button.owl-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        display: inline-block;
        background: #ccc;
        margin: 0 3px;
        transition: 0.8s;
}

.owl-dots button.owl-dot.active {
        background-color: #000;
        width: 30px;
        border-radius: 10px;
        transition: 0.8s;
}

/* css starts here */
/* header_section_start */
header {
        padding: 20px 0;
        background-color: #fff;
}

.headerSection {
        display: flex;
        justify-content: space-between;
        align-items: center;
}
.headerSection nav{
        padding: 0;
        margin: 0;
}
.headerSection nav ul{
        padding: 0;
        margin: 0;
}
.headerSection nav ul li{
        position: relative;
        padding: 0;
        margin: 0;
}
nav .menu li a {
        padding: 8px 20px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        border-radius: 50px;
        text-transform: uppercase;
}
nav .menu li.current-menu-item a,
nav .menu li a:hover
{
        color: var(--nav-hover-color);
}
.headerSection nav ul li ul{
        display: none;
        position: absolute;
        left: 0;
        top: 40px;
        width: 220px;
        background: #f0f0f0;
        padding: 5px 20px;
        border-radius: 15px;
        z-index: 99;
}
.headerSection nav ul li ul:before{
        position: absolute;
        left: 8%;
        top: -18px;
        content: "\F235";
        font-family: bootstrap-icons !important;
        font-weight: 900;
        color: #f0f0f0;
        font-size: 20px;
}
.headerSection nav ul li ul li{
        border-bottom: 1px solid #ccc;
        display: block;
}
.headerSection nav ul li ul li:last-child{
        border-bottom: none;
}
.headerSection nav ul li:hover ul{
        display: block;
}
.headerSection nav ul li ul li a{
        text-transform: none;
        padding: 10px 0;
        margin: 0;
}
.headerSection nav ul li.menu-item-has-children:after{
        content: "\F282";
        font-family: bootstrap-icons !important;
        font-weight: 900;
        position: absolute;
        right: 2px;
        top: 10px;
        font-size: 13px;
}
.headerSection figure {
        width: 200px;
}

nav ul {
        display: flex;
}

/* header_section_end */

/* Banner_section_start */
.heroBannerSection .hero_content {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
}
.homeBannerSlider .owl-nav{
        position: absolute;
        top: 45%;
        z-index: 9;
        font-size: 50px;
        color: #fff;
        left: 0;
        right: 0;
}
.homeBannerSlider .owl-nav .owl-prev{
        position: absolute;
        left: 10%;
}
.homeBannerSlider .owl-nav .owl-next{
        position: absolute;
        right: 10%;
}
.heroBannerSection h1 {
        font: 700 48px / 60px var(--heading-font);
        color: #fff;
        margin-bottom: 30px;
}
.heroBannerSection p{
        max-width: 40%;
        margin: 0 auto 30px auto;
        font: normal 17px var(--default-font);
        line-height: 27px;
        color: var(--background-color);
        text-align: center;
}

.heroBannerSection .heroSlider figure::before {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        content: "";
}
.heroAction a {
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        animation-delay: 0.8s;
        color: var(--white-color);
        border: 2px solid var(--white-color);
        font-family: var(--button-font);
}

.heroAction a:hover {
        background: #023375;
}

.hero_content h1 span {
        text-decoration: underline;
}

.hero_content p {
        max-width: 38%;
        margin: 0 auto 30px auto;
        color: #fff;
}

.owl-nav {
        display: flex;
        justify-content: space-between;
}

.owl-carousel .owl-nav button.owl-prev {
        position: absolute;
        top: 39%;
        left: 14%;
        color: #fff;
        font-size: 48px;
}

.owl-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 39%;
        right: 14%;
        color: #fff;
        font-size: 48px;
}

/* Banner_section_end */

/* smallBusiness_starts_here */
.smallBusiness {
        margin: 120px 0 0 0;
}
.smallBusiness .row{
        align-items: center;
}
.section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        position: relative;
}

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

.section-title p {
        color: var(--heading-color);
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: var(--heading-font);
}

.section-title {
        padding-bottom: 30px;
}

.smallBusiness h4,
.abocon h3,
.abocon h4 {
        font-size: 24px;
        padding: 0 60px 20px 0;
        margin: 0;
        line-height: 34px;
}

.abocon p {
        font-family: var(--default-font);
        margin: 0 0 40px 0;
        font-size: 17px;
        line-height: 27px;
        padding-right: 37px;
}

.buttonGroup a {
        background: #004aad;
        color: var(--contrast-color);
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        padding: 10px 28px;
        border-radius: 5px;
        transition: 0.3s;
        display: inline-block;
        align-items: center;
        justify-content: center;
        color: #fff;
        gap: 8px;
}

#gform_wrapper_2 {
        border: 1px solid #ccc;
        padding: 50px 30px;
        border-radius: 30px;
}

form #input_2_3 {
        width: 70%;
}


/* smallBusiness_ends_here */


/* financeProdicts_starts_here */
.financeProdicts {
        margin: 120px 0 0 0;
}
.financeProdicts article figure{
        border-radius: 15px;
        overflow: hidden;
        margin: 0 0 30px 0;
}
.financeProdicts article img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.finance_content {
        text-align: center;
}

.finance_content p {
        font-size: 17px;
        font-family: var(--default-font);
        color: var(--default-color);
}

.finance_content aside {
        padding: 0 93px;
}

.finance_content h2 {
        margin: 10px 0;
}

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

.buttonGroup:hover i {
        transform: translate(5px, 0);
}

.buttonGroup a:hover {
        background: color-mix(in srgb, #023375, transparent 20%);
        color: #fff;
}

/* financeProdicts_ends_here */

/* howItWorks_starts_here */
.howItWorks {
        margin: 120px 0 0 0;
}
.workprosess .row{
        align-items: center;
}

.workprosess aside.ChooseProduct{
        padding: 0 30px 0 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        position: relative;
        background-color: #fff;
        border: 1px solid #0c244d;
}
.workprosess aside.ChooseProduct .prosessName,
.workprosess aside.ChooseProduct .prosessContent
{
        color: var(--accent-color);
}
.workprosess aside {
        background-color: #004aad;
        padding: 0 30px 0 35px;
        transition: all ease-in-out 0.3s;
        border-radius: 5px;
        height: 170px;
        position: relative;
        margin: 0 0 25px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
}
.workprosess aside .prosessCounter{
        position: absolute;
        width: 40px;
        height: 40px;
        background-color:#004aad;
        border-radius: 50%;
        right: 7px;
        top: 5px;
        color: #fff;
        text-align: center;
        line-height: 40px;
        font-weight: 700;
        font-size: 18px;
}
/* .workprosess aside:hover {
        transform: translateY(-10px);
} */

.workprosess aside .prosessIcon {
        position: absolute;
        left: -12px;
        top: calc(50% - 12px);
}

.workprosess aside .prosessIcon i {
        font-size: 15px;
        transition: 0.5s;
        color: #000;
}
.workprosess aside.counter4,
.workprosess aside.counter5,
.workprosess aside.counter6
 {
        background: #5c9be6;
}
.counter2:before,
.counter3:before,
.counter5:before,
.counter6:before
{
        position: absolute;
        width: 38px;
        height: 3px;
        left: -44px;
        top: calc(50% - 2px);
        content: "";
        background: #000;
        z-index: 9;
}
.counter1:before,
.counter4:before
{
        position: absolute;
        width: 12px;
        height: 3px;
        left: -19px;
        top: calc(50% - 2px);
        content: "";
        background: #000;
        z-index: 9;
}
.workprosess aside.ChooseProduct:after{
       position: absolute;
        right: -26px;
        top: -16px;
        width: 3px;
        height: 198px;
        content: "";
        background: #000;
}
.ChooseProduct:before
{
        position: absolute;
        width: 23px;
        height: 3px;
        right: -23px;
        top: calc(50% - 2px);
        content: "";
        background: #000;
        z-index: 9;
}

.howItWorks .prosessName {
        font-weight: 700;
        margin: 0px 0 2px 0;
        font-size: 25px;
        transition: ease-in-out 0.3s;
        font-family: var(--heading-font);
        color: #fff;
}

.howItWorks .prosessContent {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
        font-family: var(--default-font);
        color: #fff;
}

.howItWorks .section-title {
        padding-bottom: 60px;
}

/* howItWorks_ends_here */

/* qualifySection_section_start */
.nectar-shape-divider-wrap.nectar-shape-top {
        bottom: inherit;
        top: 0;
        transform: rotate(180deg);
}

.nectar-shape-divider-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9;
        width: calc(100% + 4px);
}

.nectar-shape-divider-wrap[data-style="fan"] svg polygon:nth-child(2) {
        opacity: 0.15;
}

.nectar-shape-divider-wrap[data-style="fan"] svg rect {
        opacity: 0.3;
}

.nectar-shape-divider {
        height: 100% !important;
        width: 102%;
}

.qualifySection {
         /* padding: 200px 0 200px 0;
        background: #004aad; */
        padding: 100px 0;
        background: #e8e8e8;
        position: relative;
        z-index: 1;
        margin: 0 0 80px 0;
        margin: 120px 0 0 0;
        overflow: hidden;
}

.qualifySection h2 {
        color: var(--accent-color);
        text-align: center;
        margin-bottom: 73px;
        font-size: 45px;
        font-weight: 700;
        font-family: var(--heading-font);
}

.qualifySection .qualifyList h4 {
        font: 700 25px var(--default-font);
        line-height: normal;
        line-height: normal;
        line-height: 30px;
        color: var(--accent-color);
        display: block;
        text-align: left;
        margin-bottom: 20px;
}

.qualifySection .qualifyLlistContent p {
        color: var(--accent-color);
        text-align: left;
        font: 400 18px var(--default-font);
        line-height: normal;
        line-height: normal;
        line-height: normal;
        line-height: 27px;
}

.qualifySection .row {
        justify-content: center;
}

/* qualifySection_section_end */

/* what_we_do section_starts_here */
.whatWeDo {
        margin: 120px 0 0 0;
}
.whatWeDo .row{
        align-items: center;
}
/* what_we_do section_ends_here */

/* contact_us_section_starts_here */
.contactSection {
        margin: 100px 0 100px 0;
}
.contactSection figure{
        height: 100%;
        margin: 0 30px 0 0;
}
.contactSection figure img{
        width: 100%;
        height: 100%;
        object-fit: cover;
}
.contactSection h3 {
        padding: 0;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
}

.contactSection ul li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-top: 30px;
}

.contactSection ul li i {
        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;
        background: #ebeff4;
}

.contactSection ul li i:hover {
        background: #023375;
        color: #ffffff;
}

/* contact_us_section_ends_here */

/* inner_banner_starts_here */
.innerBanner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}
/* inner_banner_ends_here */


/* financing-request-form_starts_here */
.financing-request-form {
        margin: 100px 0;
        
}

.financing-request-form .container {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        max-width: 900px;
        border-radius: 30px;
        padding: 50px;
        position: relative;
}

.financing-request-form .gform_heading {
        text-align: center;
        position: absolute !important;
        top: 50px !important;
        right: 0 !important;
        left: 0 !important;
        margin-top: -80px !important;
}

.financing-request-form .gform_heading h2 {
	display: inline-block;
	margin: 0 auto 30px auto;
	padding: 11px 28px;
	background: #023375;
	color: #fff;
	border-radius: 7px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 30px;
}
.gravityContactForm .gform_heading{
        display: none;
}
.gravityContactForm #gform_3{
        padding:20px 0 0 0;
}


/* financing-request-form_ends_here */

/* css ends here */

.good_Industry{
        background-color:#f9fafc;
        padding: 80px 0;
        margin: 120px 0 0 0;
}
.good_Industry h2{
        text-align: center;
        color: var(--heading-color);
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: var(--heading-font);
}
.good_Industry h2 span{
        display: block;
        font-size: 16px;
        color: #444444;
        font-weight: 500;
        margin: 0 0 10px 0;
}
.good_Industry .industryPC{
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
}
.good_Industry .industryPC p{
        padding: 20px 0 30px 0;
        font-size: 18px;
        line-height: 28px;
}
.practicesLogoList ul {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 15px;
}
.practicesLogoList li{
        background-color: #f9fafc;
        padding: 15px 30px;
        border: 1px solid #ccc;
        border-radius: 10px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--white-color);
  background-color:#004aad;
  font-size: 14px;
  text-align: center;
  padding: 50px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
  color: var(--white-color);
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--button-dark-background-color);
  color: var(--white-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

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

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}
.footer .credits a{
    color: #fff;
    text-decoration: underline;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--button-dark-background-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--white-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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--button-dark-background-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

.innerBannerSection {
        position: relative;
}
.innerBannerSection figure{
        position: relative;
}
.innerBannerSection figure:before{
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        content: "";
}
.innerBannerSection .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
}
.innerBannerSection .container h1{
        text-align: center;
        font: 700 50px var(--heading-font);
        line-height: 60px;
        color: var(--background-color);
        padding: 0;
        margin: 0;
        text-transform: uppercase;
}
.innerBannerSection .container h1 span{
        display: block;
        font: 700 18px var(--heading-font);
        line-height: 30px;
        color: var(--background-color);
}
.financeProdicts.productsSection {
        margin: 120px 0;
}
.aboutContainer{
        background-color: #e8e8e8;
        padding: 80px 0;
        text-align: center;
}
.aboutContainer h4{
        text-align: center;
        font: 700 35px var(--heading-font);
        line-height: 45px;
        color: var(--heading-color);
        padding: 0;
        margin: 0; 
}
.aboutContainer p{
        font: 400 18px var(--heading-font);
        line-height: 28px;
        color: var(--heading-color);
        padding: 15px 0 0 0;
        margin: 0; 
}
.about_our_team {
        /* display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px; */
        text-align: center;
}
.about_our_team li
{
        display: inline-block;
        width: 23.5%;
        margin: 0 5px;
}
.about_our_team li figure {
	  background: #e8e8e8;
	  height: 350px;
	  overflow: hidden;
}
.about_our_team li figure img{
	  mix-blend-mode: darken;
}
.about_our_team li h3{
        font-size: 20px;
        padding:15px 0;
        margin: 0 0 0 0;
        font-weight: 700;
        height: 80px;
}
.about_our_team li .contactEmail a{
        display: inline-block;
        border: 1px solid #ccc;
        padding: 10px 25px;
        border-radius: 30px;
        animation-delay: 0.8s;
}
.about_our_team li .contactEmail a:hover{
        animation-delay: 0.8s;
        background-color: var(--button-dark-background-color);
        color: var(--white-color);
        border: 1px solid var(--button-dark-background-color);
}
.aboutTeamSection{
        padding: 80px 0;
}
.aboutTeamSection h4{
        text-align: center;
        padding: 0 0 60px 0;
        font: 700 40px var(--heading-font);
        line-height: 45px;
        color: var(--heading-color);
}
.aboutTeamSection h4 span{
        display: block;
        font: 700 17px var(--heading-font);
        line-height: 25px;
        color: var(--heading-color);
        text-transform: uppercase;
}
.singelContainer{
        position: relative;
}
.singelContainer .container{
        position: relative;
        background: #fff;
        max-width: 1000px;
        padding: 50px;
        margin: -140px auto 0 auto;
        border-radius: 20px;
}
.singelContainer .container .applyButton{
        text-align: center;
}
.singelContainer .container .applyButton a{
        background-color: var(--button-dark-background-color);
        font: 700 25px var(--heading-font);
        line-height: 35px;
        color: var(--white-color);
        padding: 15px 50px;
        display: inline-block;
        margin: -30px 0 0 0;
        top: -58px;
        position: relative;
        border-radius: 30px;
        animation-delay: 0.8s;
}
.singelContainer .container .applyButton a:hover{
        background-color: var(--white-color);
         color: var(--accent-color);
}
.faQsection{
        padding: 100px 0;
}
.applyNowForm{
        border: 1px solid #ccc;
        margin: 80px 0 50px 0;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
}
.applyNowForm h4{
        text-align: center;
        border: 1px solid #ccc;
        display: inline-block;
        margin: -19px auto 0 auto;
        padding: 15px 40px;
        position: relative;
        top: -44px;
        background: #fff;
        border-radius: 30px;
}
.applyNowForm article{
        text-align: left;
}

/* ====faQ section ==== */
.faQsection{
        padding: 100px 0;
        margin: 0;
}
.faQsection #tabs-nav{
        padding: 0;
        margin: 0 0 50px 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
}
.faQsection #tabs-nav li{
        padding: 0;
        margin: 0;
}
.faQsection #tabs-nav li a{
        border: 1px solid #ccc;
        background-color: #fff;
        padding: 15px 50px;
        border-radius: 30px;
        font-size: 20px;
        display: block;
}
.faQsection #tabs-nav li.active a{
        border: 1px solid var(--button-dark-background-color);
        background-color: var(--button-dark-background-color);
        color: #fff;
}
.faQsection #tabs-content{
        max-width:900px;
        margin: 0 auto;
}
.faQsection #tabs-content .faqsLists li article{
        display: none;
        padding: 0 0 0 44px;
}
.faQsection #tabs-content .faqsLists li {
        border-bottom: 1px solid #ccc;
        font-size: 18px;
        line-height: 20px;
        color: var(--default-color);
}
.faQsection #tabs-content .faqsLists li:last-child{
        border-bottom: none;
}
.faQsection #tabs-content .faqsLists li a{
        display: block;
        padding:15px 0;
        position: relative;
}
.faQsection #tabs-content .faqsLists li a span{
        display: inline-block;
        margin: 0 10px 0 0;
        background-color: #5c9be6;
        font-weight: 700;
        font-size: 18px;
        line-height: 20px;
        color: var(--white-color);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-align: center;
        line-height: 35px;
}
.faQsection #tabs-content .faqsLists li article p{
        font: 400 17px var(--heading-font);
        line-height: 25px;
        color: var(--heading-color);
        padding: 0 0 15px 0;
        margin: 0;
}
.faQsection #tabs-content .faqsLists li a i{
        position: absolute;
        right: 0;
        top: 20px;
        font-size: 30px;
}
.faQsection #tabs-content .faqsLists li a.listHide i:before{
        content: "\F2EA";
        font-family: bootstrap-icons !important;
        font-weight: 900;
}

/* ====faQ section end==== */
.toggleMenu{
        display: none;
}
.toggleClose{
        display: none;
}
.md-g{
        margin: 0;
}


@media screen and (max-width:767px){
img{
        max-width: 100%;
        height: 100%;
} 	
.toggleMenu{
        display: block;
        font-size: 25px;
        color: #555;
} 
.headerSection nav .menu-header-menu-container {
        display: none;
        position: fixed;
        width: auto;
        left: 0;
        top: 0;
        bottom: 0;
        background: #004aad;
        z-index: 999;
        right: 0;
}
.headerSection figure {
        width: 30%;
}
header {
        padding: 10px 0;
}
.ChooseProduct::before,
.counter1::before, 
.counter4::before,
.counter2::before, 
.counter3::before, 
.counter5::before, 
.counter6::before,
.workprosess aside .prosessIcon i
{
        display: none;
}
.workprosess aside{
        margin: 0 0 10px 0;
        height: 120px;
        padding: 0 25px;
}
.howItWorks .section-title {
        padding-bottom: 30px;
}
.finance_content aside {
        padding: 0 0;
}
.financeProdicts,
.howItWorks,
.smallBusiness
{
        margin: 50px 0 0 0;
}
.smallBusiness h4, 
.abocon h3, 
.abocon h4 {
        font-size: 17px;
        padding: 0 0px 20px 0;
        margin: 0;
        line-height: 25px;
}
.smallBusiness{
        text-align: center;
}
.abocon p {
        font-family: var(--default-font);
        margin: 0 0 40px 0;
        font-size: 17px;
        line-height: 27px;
        padding-right: 0;
}
.smallBusiness .buttonGroup a{
        display: block;
}

.hero_content p {
        max-width: inherit;
        margin: 0 auto 0px auto;
        color: #fff;
        font-size: 13px;
        line-height: 16px;
}
.heroBannerSection h1 {
        font: 700 25px / 30px var(--heading-font);
        color: #fff;
        margin-bottom: 10px;
}
.heroAction,
.heroBannerSection .owl-carousel .owl-nav
{
        display: none;
}
.smallBusiness .row{
        flex-direction: column-reverse;
}
.smallBusiness figure{
        margin: 0 0 40px 0;
        border-radius: 15px;
        overflow: hidden;
}
.financeProdicts article{
        margin: 0 0 30px 0;
}
.qualifySection{
        margin: 40px 0 0 0;
        padding: 150px 0;
}
.qualifySection h2{
        font-size: 30px;
        margin-bottom: 30px;
}
.qualifySection .qualifyList h4,
.qualifySection .qualifyLlistContent p{
        text-align: center;
}
.whatWeDo {
        margin: 50px 0 0 0;
        text-align: center;
}
.whatWeDo .row{
        flex-direction: column-reverse;
}
.howItWorks{
        overflow: hidden;
}
.whatWeDo figure{
        border-radius: 10px;
        overflow: hidden;
        margin: 0 0 30px 0;
}
.good_Industry{
        margin: 50px 0 0 0;
        padding: 40px 0;
}
.practicesLogoList li{
        padding: 10px;
}
.contactSection {
        margin: 50px 0 50px 0;
}
.footer .social-links a{
        background-color: #000;
}
.headerSection nav ul{
        display: block;
        padding: 50px 20px 0 20px;
}
nav .menu li{
        border-bottom: 1px solid #ccc;
}
nav .menu li:last-child{
        border-bottom: none;
}
nav .menu li a{
        color: #fff;
        padding: 15px 0;
}
nav .menu li.current-menu-item a, 
nav .menu li a:hover{
        color: #fff;
}
.menu-header-menu-container span{
        position: absolute;
        right: 20px;
        top: 20px;
}
.menu-header-menu-container span a{
        display: block;
        background-color: #fff;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
}
.innerBannerSection .container h1{
        font: 700 25px var(--heading-font);
        line-height: 30px;
}
.innerBannerSection .container h1 span{
        font: 700 12px var(--heading-font);
        line-height: 20px;
}
.aboutTeamSection {
        padding: 30px 0;
}
.aboutTeamSection h4 {
        padding: 0 0 30px 0;
        font: 700 35px var(--heading-font);
        line-height: 40px;
}
.about_our_team {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
}
.about_our_team li {
	  display: inline-block;
	  width: auto;
	  margin: 0 5px;
}	
.about_our_team li h3 {
        font-size: 14px;
        padding: 10px 0;
        margin: 0 0 0 0;
        font-weight: 700;
        height: 57px;
}
.ourTeamContent{
        font-size: 14px;
}
.about_our_team li .contactEmail a{
        padding: 5px 25px;
}
.aboutContainer {
        padding: 40px 0;
}
.aboutContainer h4{
        font: 700 20px var(--heading-font);
        line-height: 30px;
}
.aboutContainer p{
        font: 400 16px var(--heading-font);
        line-height: 25px;
}
.financeProdicts.productsSection {
        margin: 50px 0;
}
.faQsection {
        padding: 50px 0;
        margin: 0;
}
.faQsection #tabs-nav li a{
        padding: 10px 50px;
        border-radius: 10px;
        font-size: 15px;
        display: block;
        line-height: 18px;
}
.faQsection #tabs-nav{
        margin: 0 0 20px 0;
}
.faQsection #tabs-content .faqsLists li a span{
        display: none;
}
.faQsection #tabs-content .faqsLists li{
        font-size: 15px;
        line-height: 20px;
}
.faQsection #tabs-content .faqsLists li a{
        padding-right: 50px;
}
.faQsection #tabs-content .faqsLists li article{
        padding: 0 0 0 0;
}
.faQsection #tabs-content .faqsLists li article p{
        font: 400 15px var(--heading-font);
        line-height: 23px;
        color: var(--heading-color);
        padding: 0 0 15px 0;
        margin: 0;
}
.faQsection #tabs-content .faqsLists li a i{
        top: 10px;
}
.singelContainer .container{
        margin: 0 auto 0 auto;
}
.singelContainer .container{
        padding: 20px;
}
.singelContainer .container .applyButton a {
        background-color: var(--button-dark-background-color);
        font: 700 18px var(--heading-font);
        line-height: 35px;
        color: var(--white-color);
        padding: 10px 50px;
        display: inline-block;
        margin: 0 0 30px 0;
        top: 0;
        position: relative;
        border-radius: 30px;
        animation-delay: 0.8s;
}
.financing-request-form .container{
        padding: 50px 20px 20px 20px;
}
.financing-request-form .gform_heading h2{
        font-size: 18px;
        padding: 11px 28px;
}
.financing-request-form .container{
        border-radius: 0;
        box-shadow: none;
}
.financing-request-form {
        margin: 50px 0;
}
}
@media only screen and (min-width:769px) and (max-width:1024px){
img{
        max-width: 100%;
        height: auto;
}
.headerSection figure {
        width: 140px;
}
.about_our_team li {
	  display: inline-block;
	  width: 41.5%;
	  margin: 0 5px;
}	
.heroBannerSection h1 {
        font: 700 35px / 35px var(--heading-font);
        color: #fff;
        margin-bottom: 20px;
}
.hero_content p{
        max-width: 100%;
}
.smallBusiness,
.financeProdicts,
.howItWorks,
.whatWeDo
{
         margin: 80px 0 0 0;
}
.smallBusiness h4, 
.abocon h3, 
.abocon h4 {
  font-size: 17px;
  padding: 0 0 20px 0;
  margin: 0;
  line-height: 25px;
}
.finance_content aside {
        padding: 0 0;
}
.finance_content p{
        font-size: 16px;
}
.workprosess aside.ChooseProduct{
        padding: 0 15px 0 15px;
}
.howItWorks .prosessName{
        font-size: 14px;
}
.howItWorks .prosessContent{
        line-height: 16px;
        font-size: 12px;
}
.workprosess aside{
        padding: 0 15px 0 15px; 
        height: 112px;
}
.workprosess aside.ChooseProduct::after{
        height: 140px;
}
.workprosess aside .prosessIcon{
        top: calc(50% - 12px);
}
.qualifySection{
        margin: 50px 0 0 0;
        padding: 50px 0;
}
.qualifySection h2{
        margin-bottom: 33px;
}
.qualifySection .qualifyList h4,
.qualifySection .qualifyLlistContent p
{
        text-align: center;
}
.good_Industry{
        padding: 0;
}
.about_our_team{
        grid-template-columns: repeat(3, 1fr);
}
.innerBannerSection .container h1{
        font: 700 40px var(--heading-font);
        line-height: 50px;
}
.financeProdicts.productsSection {
        margin: 50px 0;
}
.singelContainer .container{
        margin: 0 auto 0 auto;
}
}
@media only screen and (min-width:1300px) and (max-width:1366px){
.singelContainer .container{
        margin: -70px auto 0 auto;
}  
.container{
        max-width: 1240px;
}    

}
@media only screen and (min-width:1280px) and (max-width:1366px){
.about_our_team li figure{
        height: 305px;
}  
}
@media only screen and (min-width:1300px) and (max-width:1680px){
.singelContainer .container{
        margin: -70px auto 0 auto;
}  
.container{
        max-width: 1240px;
}    

}









