/**
* Template Name: Mamba
* Template URL: https://bootstrapmade.com/mamba-one-page-bootstrap-template-free/
* 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 */
:root {
  --default-font: "Poppins",  sans-serif, -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: "Poppins",  sans-serif;
  --nav-font: "Poppins",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --secondary-color: #AD1A23; /* Secondary color throughout the website */
  --tertiary-color: #661420;
  --mid-pink: #c14c62;
  --heading-color: #2e4455; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #DE8C8D; /* 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. */
  --tone-color: #091520; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --secondaybg_color: #edecf1;
  --blue-color: #4b87ab;
  --navy-color: #165672;

 
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #AD1A23; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #FFE6E7; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #AD1A23; /* 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: #E8E8F0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #263746;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #385167;
  --contrast-color: #ffffff;
  --tone-color: #091520; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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);
}

#sme_holder{
  margin: auto;
}


*, *::before, *::after {
  box-sizing: border-box;
}

/* Core styles/functionality */
.tab {
  position: relative;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tab input:checked ~ .tab__content {
  max-height: 10rem;
}

/* Visual styles */
.accordion {
  color: #fff;
 /* border: 2px solid;*/
  border-radius: 0.5rem;
  overflow: hidden;
 
}

#accordion_holder{
  margin: auto;
}

.tab__label,
.tab__close {
  display: flex;
  color: white;
  background: var(--theme);
  cursor: pointer;
}
.tab__label {
  justify-content: space-between;
  padding: 1rem;
   background-color: var(--navy-color);
   margin: 10px 0 0 10px;
   border-radius: 12px;
}
.tab__label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
  margin-top: 15px;
}
.tab input:checked + .tab__label::after {
  transform: rotate(270deg);
}
.tab__content ul{
  
  padding: 20px 0 20px 40px;
  color: #201e28;
  background-color: #fff;
  font-weight: 400;
  margin: 0 10px 0 20px;
  font-size: 14px;

}
.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}


/* Arrow animation */
.tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce .5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-.25rem);
  }
}


.bee{
  text-align: center;
}


.bee i{
    background-color: var(--blue-color);
    color: var(--background-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;
}



.bee p{
margin: 0 0 20px 0;
text-align: center;
}

.bee a{
    color: var(--contrast-color);
    background: var(--navy-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 20px 0 10px 0;
    animation: fadeInUp 1s both 0.4s;
   
}

.bee h4{
  font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: var(--heading-color);
    text-align: center;
}

.bee h5{
    
margin: 0 0 0 20px;
font-size: 14px;
text-align: center;
color:#201e28;
font-weight: 300;
color: var(--background-color);
}

.bee img {
border-radius: 12px;
}

.core{
  background: var(--background-color);
    padding: 50px 30px;
    transition: all ease-in-out 0.3s;
    height: 100%;
    position: relative;
    box-shadow: 0px 2px 25px rgb(0 0 0 / 22%);
    border-radius: 12px;
}

.core i{
    background-color: var(--blue-color);
    color: var(--background-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;
}

.core h5{
font-size: 16px;
}

.core h4{
margin: 0 0 0 15px;
padding:0;
}

.core p{
margin-top: 26px;
}

.core ul{

  list-style-type: "✓ ";
  padding: 0 20px 0 20px;
  font-size: 14px;
  line-height: 30px;
}

.core li{
  padding: 0 20px 0 20px;
}

#core_bg{
  background-color: var(--navy-color);
}


#journey{
 background-color: var(--background-color);
}

#journey_bg{
 background-color: var(--secondaybg_color);
 border-radius: 12px;
 padding: 20px;
}

.journey_5{
    background-color: var(--blue-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 10px;
    text-transform: capitalize;
}

.journey_5 i{

    color: var(--background-color);
    width: 54px;
    height: 54px;
    font-size: 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.journey_5 h5{
  margin: 0 0 0 2px;
  color: var(--background-color);
}



.journey-item {
    background-color: var(--background-color);
    color: var(--background-color);
    margin-top: -27px;
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 0;
    font-size: 14px;
    margin-bottom: 40px;
}


.journey-item {
    background-color: var(--background-color);
    color: var(--background-color);
    margin-top: -27px;
    padding: 30px 10px 25px 10px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 0;
    font-size: 14px;
    margin-bottom: 40px;
    border: 1px solid #4b87ab;
}

.journey-item p {
    margin-top: 10px;
    padding: 12px;
    font-size: 14px;
    color: var(--tone-color);
  }


  .journey-item h4 {
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    color: var(--tone-color);
  }

  .journey i { 
    background-color: #d7d6d8;
    color: var(--background-color);
    width: 54px;
    height: 54px;
    font-size: 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
  }


     .box {
      
      color: white;
      padding: 40px 20px;
      text-align: center;
      border-radius: 10px;
      font-weight: bold;
    }


    a {
    color: var(--accent-color);
    text-decoration: none;
}



.hero .btn-get-consult {
    color: var(--contrast-color);
 
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    background: #4b87ab;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    animation: 1s ease 0.4s 1 normal both running fadeInUp;
}


#sme_join{
    background-image: url(assets/img/join-sme.jpg);
    background-attachment: fixed;
    background-size: cover;
    color: var(--background-color);
    width: 100%;
    position: relative;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 35px;
    z-index: 0;
    padding: 60px 30px 25px;
}


.processes-slider {
  position: relative;
 
 /* margin: 80px auto;*/

  padding: 30px;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
    background-color: #edecf1;

}

.processes {
  display: none;
  animation: fade 1s ease-in-out;
}



.processes.active {
  display: block;
}

.processes img {
  width: 100%;
  height: 80%;
  border-radius: 12px;
  
}

.processes p {
  font-size: 20px;
  color: var(--navy-color);
  font-weight: 600;
  margin-top: 35px;


}

.processes h4 {
  font-size: 14px;
  color: #777;
}

@keyframes fade {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Controls */
button.prev,
button.next {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  color: #333;
  border: none;
  /*padding: 5px ;*/
  cursor: pointer;
  border-radius: 100%;
}

button.prev { left: 10px; }
button.next { right: 10px; }

button:hover {
  color: #55a2d0;

}

#five{
  margin:auto;
  color: #091520;
}