/**
* Template Name: eBusiness
* Template URL: https://bootstrapmade.com/ebusiness-bootstrap-corporate-template/
* Updated: Jun 23 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  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: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0d3035; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #18d26e; /* 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: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #036dda; /* 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: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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: #0f0000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .logo h1 span {
  color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  font-style: italic;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 17px;
  font-weight: 500;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .logo h1 {
    font-size: 24px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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: 15px 14px;
  }

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

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

  .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;
    bottom: -15px;
    left: 0;
    background-color: var(--nav-dropdown-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

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

  .navmenu .dropdown ul a {
    padding: 10px 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;
  }
}

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

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

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--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;
  }

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

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

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

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #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;
  }
}

/*--------------------------------------------------------------
# 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);
  }
}


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

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 121px;
  position: relative;
  overflow: hidden;
  padding-bottom: 119px;
}

.hero .hero-content h2 {
  font-size: 3.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .hero .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 2rem;
  }
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
  }
}

.hero .hero-content .hero-btns .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .hero-content .hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  /*color: var(--accent-color);*/
}

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


.hero .hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  /*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);*/
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.hero .hero-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero .hero-content .hero-btns {
    justify-content: center;
  }

}


/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

.features .feature-card {
  height: 100%;
}

.features .feature-card .project-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.features .feature-card .project-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .features .feature-card .project-visual img {
    height: 250px;
  }
}

.features .feature-card .project-visual .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 144, 231, 0.85), rgba(54, 144, 231, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.features .feature-card .project-visual .project-overlay .overlay-content {
  display: flex;
  gap: 20px;
}

.features .feature-card .project-visual .project-overlay .overlay-content a {
  width: 48px;
  height: 48px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.features .feature-card .project-visual .project-overlay .overlay-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.features .feature-card .project-visual:hover img {
  transform: scale(1.05);
}

.features .feature-card .project-visual:hover .project-overlay {
  opacity: 1;
  visibility: visible;
}

.features .feature-card .project-details {
  padding: 20px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  justify-content: center;
  padding-left: 3rem;
  padding-right: 3rem ;
}



.features .feature-card .project-details .project-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .features .feature-card .project-details .project-title {
    font-size: 1.35rem;
  }
}

.features .feature-card .project-details .project-description {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0px;
  line-height: 1.7;
  /*flex-grow: 1;*/
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#services {
  padding: 60px 0 60px 0;
}
.services .service-item {
  position: relative;
  padding: 60px 30px 80px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent-color);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.services .service-item .service-icon {
  width: 72px;
  height: 72px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 34px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.services .service-item .service-icon i {
  line-height: 1;
}

.services .service-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.services .service-item h3 a span {
  display: inline-block;
  color: var(--accent-color);
}

.services .service-item h3 a:hover {
  color: var(--accent-color);
}

.services .service-item p {
  color: var(--default-color);
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.services .service-item .card-action {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.services .service-item .card-action i {
  transition: transform 0.3s ease;
}

.services .service-item .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-item:hover .service-icon {
  transform: scale(1.1);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-item:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 50px 25px 70px;
  }

  .services .service-item h3 {
    font-size: 22px;
  }

  .services .service-item .service-icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}

.services .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-case .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
  border-bottom: 3px solid #fff;
  width: 100%
}
.technology-used .icon-box{
    padding:30px !important;
}
.services-case .icon-box:hover {
  transform: translateY(-5px);
}

.services-case .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services-case .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}

.services-case .title a {
  color: #111;
}

.services-case .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services-case .icon-box-pink .icon i {
  color: #ff689b;
}

.services-case .icon-box-pink:hover {
  border-color: #ff689b;
}

.services-case .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services-case .icon-box-cyan:hover {
  border-color: #3fcdc7;
}

.services-case .icon-box-green .icon i {
  color: #41cf2e;
}

.services-case .icon-box-green:hover {
  border-color: #41cf2e;
}

.services-case .icon-box-blue .icon i {
  color: #2282ff;
}

.services-case .icon-box-blue:hover {
  border-color: #2282ff;
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding: 0;
}

.hero-2 .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

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

.hero-2 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

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

.hero-2 .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero-2 h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero-2 h2 {
    font-size: 30px;
  }
}

.hero-2 p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero-2 h2,
  .hero-2 p {
    max-width: 60%;
  }
}

.hero-2 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

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

.hero-2 .carousel-control-prev,
.hero-2 .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero-2 .carousel-control-prev:focus,
.hero-2 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-2 .carousel-control-prev:hover,
.hero-2 .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero-2 .carousel-control-prev,
  .hero-2 .carousel-control-next {
    width: 5%;
  }
}

.hero-2 .carousel-control-next-icon,
.hero-2 .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero-2 .carousel-indicators {
  list-style: none;
}

.hero-2 .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}





/*--------------------------------------------------------------
# User For Section
--------------------------------------------------------------*/
.used-for{
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.infos {
    color: #fff;
    padding: 2px;
    border-radius: 14% / 50%;;    
    width: 300px;
    position: absolute;
    z-index: 4;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 18px 5px;
}
.pic {
    display: grid;
    place-content: center;
    place-items: center;
}
.pic .grain {  
    position: absolute;
    border-radius: 100%;
    padding: 2px;
    justify-content: center;    
    height: 150%;
    width: 150%;
    background-color: #fff;
    display: inline-block;
}
.pic i {
    font-size: 29px;
    place-items: center;
    border-radius: 100%;
    color: #fff;
    position: absolute;
}
.infos h2 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.infos p {
    font-size: 13px;
}

.dataRight {
    text-align: right;
}
.data1 {
    background-color: #006685;
    fill: #006685;
    top: -11%;
    left: 9%;
}
.data2 {
    background-color: #00a9bc;
    fill: #00a9bc;
    /*top: 38%;
    left: 5%;*/
}
.data3 {
    background-color: #01bf7f;
    fill: #01bf7f;
    bottom: -9%;
    left: 8%;
}
.data4 {    
    background-color: #ffb901;
    fill: #ffb901;
    top: -11%;
    right: 9%;
}
.data5 {
    background-color: #ff8e16;
    fill: #ff8e16;
    /*top: 38%;*/
    right: 0%;
}
.data6 {
    background-color: #fe4059;
    fill: #fe4059;
    bottom: -9%;
    right: 8%;
}
/* Inner circles */
.content {
    display: grid;
    height: 100%;
    width: 100%;
}
.centerContent {
    grid-area: 1 / 1;    
    align-items: center;
    display: grid;
    position: relative;
}
.innerCircle {
    place-content: center;
    position: relative;
    z-index: 3;
}
.circle1, .circle2{
    border-radius: 10rem;
    width: 13rem;
    height: 13rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 18px 5px;
    opacity: 1;
    grid-area: 1 / 1;
    position: relative;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    background-color: #f1f1f1;
}
.circle2 {
    width: 10rem;
    height: 10rem;
    left: 1.5rem;  
    flex-direction: column;
    text-transform: uppercase;
    color: #04243c;
}
.circle2 p {
    /*font-size: 1.5em;*/
    font-weight: bold;
    text-align: center;
}
.circle2 span {
    font-size: 1em;
    letter-spacing: 2px;
}

/* hoops */
.sliceCircle {
    display: grid;
    align-items: center;      
    display: grid;
    position: relative;
    place-content: center;
    z-index: 1;
}

.sliceWrapper {
    position: relative;
    padding: 0;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    list-style: none;
    overflow: hidden;    
    grid-area: 1 / 1;
    margin-bottom: 0 !important;
}

.sliceWrapper2 {
    background: #fff;
    width: 26rem;;
    height: 26rem;;
    position: relative;
    left: 2rem;;      
}

.sliceWrapper3 { 
    width: 19rem;
    height: 19rem;
    left: 15rem;
}

.sliceWrapper4 { 
    width: 150px;
    height: 150px;
    left: 125px;
}

.slice {
    position: absolute;
    left: -100%;
    width: 200%;
    height: 200%;
}

.sliceWrapper li {
    overflow: hidden;
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    transform-origin: 0% 100%;
}

.sliceWrapper li:first-child {
    /*transform: rotate(30deg) skewY(150deg);*/
    transform: rotate(15deg) skewY(155deg);
}

.sliceWrapper li:nth-child(2) {
    /*transform: rotate(90deg) skewY(150deg);*/
    transform: rotate(72deg) skewY(150deg);
}

.sliceWrapper li:nth-child(3) {
    /*transform: rotate(150deg) skewY(150deg);*/
    transform: rotate(131deg) skewY(170deg);
}

.sliceWrapper li:nth-child(4) {
    /*transform: rotate(210deg) skewY(150deg);*/
    transform: rotate(196deg) skewY(150deg);
}

.sliceWrapper li:nth-child(5) {
    /*transform: rotate(270deg) skewY(150deg);*/
    transform: rotate(245deg) skewY(150deg);
}

.sliceWrapper li:nth-child(6) {
    /*transform: rotate(330deg) skewY(150deg);*/
    transform: rotate(305deg) skewY(160deg);
}

.sliceWrapper li:first-child .slice {
    background: #ffb901;
}

.sliceWrapper li:nth-child(2) .slice {
    background: #ff8e16;
}

.sliceWrapper li:nth-child(3) .slice {
    background: #fe4059;
}

.sliceWrapper li:nth-child(4) .slice {
    background: #01bf7f;
}

.sliceWrapper li:nth-child(5) .slice {
    background: #00a9bc;
}

.sliceWrapper li:nth-child(6) .slice {
    background: #006685;
}

.container hr {
    border-top: 4px solid #6c7170;
    position: relative;
    grid-area: 1 / 1;
    width: 50%;
    margin: auto;
}
.hr2{
    transform: rotate(45deg);
    width: 10%;
}
.hr3{
    transform: rotate(-45deg);
}
.align-center {
    align-content: center;
    text-align: center;
}

@media (max-width: 1399px) {
  .data1 {
    left: 5%;
    top: -9%;
  }
  .data2 {
    left: -2%;
  }
  .data3 {
    left: 5%;
    bottom: -8%;
  }
  .data4{
    right: 5%;
    top: -9%;
  }
  .data5 {
    right: -2%;
  }
  .data6 {
    right: 5%;
    bottom: -8%;
  }
}

@media (min-width: 320px) {}
@media (min-width: 768px) {}
@media (max-width: 1199px) {
  .container hr {
    width: 60%;
  }
  .infos {
    width: 270px;
  }
  .infos h2 {
    font-size: 18px;
  }
  .pic i {
    font-size: 26px;
  }
  .data1 {
    left: 0% !important;
    top: -8% !important;
  }
  .data2 {
    left: -8% !important;
  }
  .data3 {
    left: 0% !important;
    bottom: -8% !important;
  }
  .data4 {
    right: 0% !important;
    top: -8% !important;
  }
  .data5 {
    right: -8% !important;
  }
  .data6 {
    right: 0% !important;
    bottom: -8% !important;
  }
}
@media (max-width: 1150px) {
  .infos {
        width: 230px !important;
        padding: 1px;
    }
    .used-for .col-sm-9 {
      width: 70% !important;
    }
    .used-for .col-sm-3 {
      width: 30% !important;
    }
    .pic i {
      font-size: 22px !important;
    }
    .data1 {
      left: 3% !important;
      top: -8% !important;
    }
    .data2 {
      left: -5% !important;
    }
    .data3 {
      left: 3% !important;
      bottom: -8% !important;
    }
    .data4 {
      right: 3% !important;
      top: -8% !important;
    }
    .data5 {
      right: -5% !important;
    }
    .data6 {
      right: 3% !important;
      bottom: -8% !important;
    }
}

@media (max-width: 1000px) {
 .desktop {
  display: none;
 }
}

/*title*/
.f-34 {
    font-size: 34px;
}
.section-title .subtitle {
    font-size: 20px;
    line-height: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 7px 12px;
    border-radius: 4px;
    display: inline-block;
    /* background: var(--color-primary-opacity-1); */
    color: #8680ff;
    /*text-transform: uppercase;*/
    position: relative;
}
.section-title .subtitle::before {
    content: "";
    pointer-events: none;
    user-select: none;
    position: absolute;
    inset: 0px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(55deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 15%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.05) 55%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(black, black) content-box content-box, linear-gradient(black, black);
    -webkit-mask-composite: xor;
    animation: overlayAnimate 6s ease 10s infinite reverse;
}
.pres-line-separator-wrapper.text-center .line-separator.line-left {
    background-image: linear-gradient(-90deg, #5237f9, rgba(33, 38, 45, 0));
}
.pres-line-separator-wrapper.text-center .line-separator.line-right {
    background-image: linear-gradient(90deg, #5237f9, rgba(33, 38, 45, 0));
}
.line-separator {
    position: relative;
    background-image: linear-gradient(90deg, #5237f9, rgba(33, 38, 45, 0));
    width: 50px;
    height: 1px;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
}
.pres-line-separator-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    margin: 0 -15px;
    /* justify-content: center; */
}
.mb--10 {
    margin-bottom: 10px !important;
}