/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Aug 15 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: "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"; */
  --default-font: "Mulish", sans-serif;
  --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: #444444;
  --default-color-text: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --default-white: #ffffff;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ACC251;
  /* 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. */
}

/* 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.905);
  --nav-color-black: #2B4B7F;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ACC251;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ACC251;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

.hero-trans-letter {
  --default-color: #ffffff;
  --heading-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(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 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: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

.btn-light {
  background-color: var(--accent-color);
}

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

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

/* Index Page Header
------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
}

.header.light {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.scrolled .header.light {
  --background-color: rgba(255, 255, 255, 0.8);
}

.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

.contact-page {
  background: no-repeat url("../img/bg-contact.png");
  background-size: cover;
  background-position: center;
}

/*--------------------------------------------------------------
# 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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .text-dark a,
  .text-dark a:focus {
    color: var(--nav-color-black);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 600;
    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;
    transition: 0.3s;
  }

  .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 {
    background-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;
  }

  .light {
    color: #acc251 !important;
  }

  .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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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;
  }

  .cases img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  /* background: no-repeat url("../img/bg-footer.png"); */
  /* background-size: 100%; */
  color: var(--default-color);
  background: linear-gradient(181deg, #1d1f99, #0b0c45 30%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0 0 0;
}

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

.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 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  /* background-color: color-mix(in srgb, var(--default-color) 5%, white 10%); */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  /* background-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 {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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: color-mix(in srgb, var(--footer-background-color) 90%, white 15%); */
  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: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

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

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

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

.footer .copyright .container {
  display: flex;
  justify-content: space-around;
}

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

.footer .copyright a {
  color: #ffffff;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  /* background: #ffffff; */
  background: linear-gradient(181deg, #1d1f99, #0b0c45 30%);
  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);
  }
}

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

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

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

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

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

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

.page-title .heading {
  padding: 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 95%);
  padding: 20px 0;
}

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

.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); */
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.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: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 120px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: no-repeat url("../img/bg-hero.jpg"); */
  background: no-repeat url("../img/bg-hero.webp");
  background-size: cover;
  background-position: 50% 85%;
}

.custom-shape-divider-bottom-1740697011 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1740697011 svg {
  position: relative;
  display: block;
  width: calc(142% + 1.3px);
  height: 132px;
}

.custom-shape-divider-bottom-1740697011 .shape-fill {
  fill: #FFFFFF;
}

.img-hero {
  width: 90%;
  margin: auto;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

.hero:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 30%); */
  position: absolute;
}

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

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  background-image: linear-gradient(90deg, #B5CE4E, #3098D2);
  color: transparent;
  background-clip: text;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 34px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-white));
}

.hero a {
  background-color: #ACC251 !important;
  border-color: #ACC251 !important;
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 40px;
    text-align: center;
  }

  .hero p {
    font-size: 20px;
    text-align: center;
  }

  .hero {
    text-align: center;
  }

  .cases img {
    width: 100%;
  }

  .descriptionEfi {
    text-align: center;
  }

  .descriptionEfi3 {
    text-align: center;
  }

  .title-sec-our-software {
    font-size: 30px !important;
  }

  .title-our-1 {
    font-size: 35px !important;
  }

  .title-our-2 {
    font-size: 35px !important;
  }

  .subtitle-our {
    font-size: 30px !important;
  }

  .our-software p {
    font-size: 22px !important;
  }

  .hero-successstories .title-hero-stories {
    font-size: 75px !important;
  }

  .container-imgs span {
    font-size: 30px !important;
  }

  .hero-successstories {
    min-height: 90vh !important;
  }

  .experience-success h2 {
    padding: 20px;
  }

  .hero-marketplace h2 {
    font-size: 55px !important;
  }

  .hero-marketplace p {
    font-size: 25px !important;
  }

  .hero-marketplace p span {
    font-size: 25px !important;
  }

  .gallery-market h2 {
    font-size: 45px !important;
  }

  .technologies .card-body img {
    width: 80% !important;
  }

  .hstack-custom {
    flex-direction: column !important;
  }

  .hero-banking h2 {
    font-size: 40px !important;
  }

  .hero-banking h2 span {
    font-size: 40px !important;
  }

  .hero-banking p {
    font-size: 20px !important;
  }

  .corebanking-page {
    background-size: cover !important;
  }

  .core-flex-col {
    flex-direction: column !important;
  }

  .hero-coop h2 {
    font-size: 35px !important;
  }

  .hero-coop h2 span {
    font-size: 35px !important;
  }

  .union-credit {
    font-size: 25px !important;
  }

  .border-left-right {
    border: none !important;
  }

  .border-right {
    border: none !important;
  }

  .hero-coop p {
    font-size: 20px !important;
  }

  .coop-title-1 {
    text-align: center;
    font-size: 30px;
  }

  .img-cartera-banking {
    width: 100%;
  }

  .title-academy {
    font-size: 40px !important;
    margin-top: 20px;
  }

  .title-academy span {
    font-size: 40px !important;
  }

  .subtitle-academy {
    font-size: 22px !important;
  }

  .title-academy-cards {
    order: 2;
  }

  .desc-academy-cards {
    order: 3;
  }

  .img-academy-cards {
    order: 1;
  }

  .title-infra {
    font-size: 50px !important;
  }

  .subtitle-infra {
    font-size: 20px !important;
  }

  .infra-section-info h3 {
    font-size: 25px !important;
  }

  .infra-section-info h3 span {
    font-size: 25px !important;
  }

  .title-card-infra {
    text-align: center;
  }

  .infra-oracle {
    font-size: 40px !important;
    margin-inline: 10px;
  }

  .infra-oracle span {
    font-size: 40px !important;
  }

  .oracle-cards {
    font-size: 20px !important;
  }

  .partners-efisys {
    width: 250px !important;
  }

  .partners-oracle {
    width: 350px !important;
  }

  .partners-by {
    width: 20px !important;
  }

  .hero-academy {
    background: linear-gradient(180deg, #d9d9d9 0%, #f9f9f9 50%) !important;
  }

  .hero-successstories {
    background: linear-gradient(180deg, #ffffff 50%, #ffffff39 75%, #ffffff00 100%);
  }

  .societies,
  .financial,
  .popular {
    font-size: 50px !important;
  }

  .mobile_means {
    content-visibility: visible !important;
  }

  .mobile_coops {
    content-visibility: visible !important;
  }

  .desktop_means {
    content-visibility: hidden !important;
  }

  .desktop_coops {
    content-visibility: hidden !important;
  }

  .title-date {
    font-size: 26px !important;
  }

  .title-sec-info-lab {
    font-size: 40px !important;
  }

  .title-sec-info-lab2 {
    font-size: 40px !important;
  }

  .des-info-lab {
    font-size: 19px !important;
    text-align: justify !important;
  }

  .btn-more-info {
    margin-block: 20px;
  }

  .title-lab-connect {
    font-size: 53px !important;
  }

  .subtitle-lab-connect {
    font-size: 22px !important;
    width: 75% !important;
  }

  .title-agenda {
    font-size: 38px !important;
  }

  .hour-agenda {
    font-size: 19px !important;
  }

  .desc-agenda {
    font-size: 19px !important;
  }

  .title-co-hosts {
    font-size: 40px !important;
  }

  .subtitle-co-hosts {
    font-size: 22px !important;
    width: 75% !important;
  }

  .co-hosts {
    padding-bottom: 0px !important;
  }

  .price {
    padding: 0px !important;
  }

  .desc-including {
    font-size: 18px !important;
  }

  .more-info-txt{
    font-size: 24px!important;
  }

  .more-info{
    margin-bottom: 40px!important;
  }

  .efisysLab {
  background: no-repeat url("../img/section-labs-mobile.jpg") !important;
  background-size: cover !important;
}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about {
  background: no-repeat url("../img/bg-section2.png"), url("../img/bgSection2.png");
  background-size: 50%, cover;
  background-position: center, center;
  padding: 24px 0;
}

.about p {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title-center-about {
  text-align: center;
  color: #0B0D4A;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.5px;
}

.title-center-about span {
  text-align: center;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.5px;
  background-image: linear-gradient(90deg, #B5CE4E, #3098D2);
  color: transparent;
  background-clip: text;
}

.titles-about {
  font-size: 35px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-align: center;
  background-image: linear-gradient(90deg, #B5CE4E, #3098D2);
  color: transparent;
  background-clip: text;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Cases Section
--------------------------------------------------------------*/
.cases .container h3 {
  text-align: center;
  font-size: 70px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -1.4px;
}

.cases {
  background: linear-gradient(181deg, rgba(255, 255, 255, 0.50) 0.64%, rgba(255, 255, 255, 0.50) 10.92%, #378EE1 48.94%, #152441 99.39%);
}

.cases .testimonial {
  color: var(--default-white);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.testimonial-autor {
  border-radius: 63px;
  border: #1733BC solid 2px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*--------------------------------------------------------------
# Description Efi Section
--------------------------------------------------------------*/

.descriptionEfi {
  background: no-repeat url("../img/bgSection3.png");
  background-size: cover;
  background-position: center;
}

.vh-70 {
  height: 70vh;
}

.descriptionEfi .logo-description {
  width: 185px;
  height: 43px;
}

.descriptionEfi p {
  color: #0E1F71;
  text-align: justify;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 47px;
}

.descriptionEfi p span {
  background-image: linear-gradient(90deg, #B5CE4E, #3098D2);
  color: transparent;
  background-clip: text;
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

/*--------------------------------------------------------------
# Description Efi Section
--------------------------------------------------------------*/
.descriptionEfi2 {
  background: no-repeat url("../img/bgcorebanking.png");
  background-size: cover;
  background-position: center;
}

.min-vh-60 {
  min-height: 60vh;
}

.contain-gif {
  text-align: center;
}

.anim-ic {
  width: 50%;
  min-height: 250px;
}

.descriptionEfi2 h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.descriptionEfi2 h3 span {
  background: var(--a1, linear-gradient(90deg, #041A3D 31.39%, #001373 69.31%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.descriptionEfi2 p {
  margin-top: 40px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: var(--a1, linear-gradient(90deg, #041A3D 31.39%, #001373 69.31%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*--------------------------------------------------------------
# Description Efi Section
--------------------------------------------------------------*/

.ic-logos {
  margin-block: 80px;
  width: 183.987px;
  height: 43.665px;
  flex-shrink: 0;
}

.contain-logos {
  justify-content: center;
  text-align: center;
  border-radius: 44px;
  background: var(--COLOR-COLOR-BASIC-Color-white, #FFF);
  box-shadow: 8px 10px 7.2px 3px rgba(0, 0, 0, 0.25);
}

.img-products {
  position: absolute;
  left: 10%;
}

.products-efisys {
  background: url("../img/bg-products.png"), url("../img/bgcorebanking.png");
  /* url("../img/bgcorebanking.png") */
  background-size: contain, cover;
  background-position: 24% 43%, center;
  background-repeat: no-repeat, no-repeat;
}


.descriptionEfi3 h3 {
  font-size: 65px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background: linear-gradient(91deg, #B5CE4E 9.66%, #3098D2 47.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.descriptionEfi3 p {
  color: var(--PRIMARY4001, #2B4B7F);
  text-align: justify;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.descriptionEfi3 a {
  background-color: #ACC251 !important;
  border-color: #ACC251 !important;
  color: var(--SHADES-50, #FFF);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


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

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

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

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

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

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

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

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

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

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

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

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

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

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

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

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  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 {
  position: relative;
  z-index: 3;
}

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

.testimonials .testimonial-item {
  text-align: center;
}

.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;
}

.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: 0 auto 15px auto;
}

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

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

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

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }

  .cases img {
    width: 100%;
  }
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 150px 0;
}

.contact h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}

.container-form {
  border-radius: 30px;
  background-color: #fff;
  color: #001373;
}

.contact .info-item+.info-item {
  margin-top: 40px;
  background: rgba(rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255), 0);
}

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

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

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

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

.contact .form-label {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

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

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]: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 input[type=tel]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color-text), 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: 4px;
}

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

.btn-primary {
  background-color: #ACC251 !important;
  border-color: #ACC251 !important;
}

.btn-primary :enabled {
  opacity: 0 !important;
}


/* .connect-us {
  border-style: solid;
  border-radius: 49px;
  border-image: linear-gradient(to right, #B5CE4E 0%, #3098D2 100%) 1;
} */

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

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

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

.inner-headings {
  border: 0px solid;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
}

.inner-headings span {
  position: relative;
  animation: anim 10s ease infinite;
}

@keyframes anim {

  0%,
  100% {
    top: 0;
  }

  30% {
    top: 0%;
  }

  33% {
    top: -60px;
  }

  63% {
    top: -60px;
  }

  66% {
    top: -130px;
  }

  96% {
    top: -130px;
  }
}

.policy-policies {
  background: no-repeat url("../img/bgcorebanking.png");
  background-size: cover;
  background-position: center;
}

.policy-policies {
  padding: 150px 0 0 0;
}

.sub-item {
  margin-left: 15px;
}

.sub-sub-item {
  margin-left: 30px;
}

.policy-policies h3 {
  color: #151515;
}

.text-justify {
  text-align: justify;
}

.subtitles-policies {
  font-weight: 700;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.customers {
  padding: 150px 0;
}

.customers-page {
  background: no-repeat url("../img/efisys-customer-bg.jpeg");
  background-size: cover;
  background-position: top;
}

.efisysLab {
  background: no-repeat url("../img/section-labs.jpg");
  background-size: cover;
  background-position: center;
  height: 85vh;
}

.dateAndPlace {
  background: linear-gradient(45deg, #77CBFF 0%, #132CAA 100%);
  padding: 0px;
}

.title-date {
  font-family: Poppins;
  text-transform: uppercase;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 112.586%;
  color: #fff;
}

.dateAndPlace .vr {
  background-color: #ffffff;
  opacity: 1 !important;
  width: 4px;
}

.info-lab {
  background: linear-gradient(155deg, #B5CE4E, #3098D2);
}

.title-sec-info-lab {
  font-family: Poppins;
  font-weight: 600;
  font-size: 50px;
}

.title-sec-info-lab2 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 50px;
  font-style: italic;
  border-radius: 73.5px;
  border: 3px solid #fff;
  text-wrap: nowrap;
  padding-inline: 28px;
  padding-block: 9px;
  background: rgba(255, 255, 255, 0.2);
}

.des-info-lab {
  font-family: Poppins;
  font-weight: 400;
  font-size: 25px;
}

.btn-more-info {
  color: #1A2D4C;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 900;
  background-color: #fff;
  border: none;
  border-radius: 50px;
}

.btn-more-info2 {
  color: #ffffff;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 900;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50px;
}


.lab-connect {
  background-color: #F8F8F8;
}

.title-lab-connect {
  font-family: Poppins;
  font-size: 89px;
  font-weight: 900;
  background: var(--azul, linear-gradient(133deg, #091863 10%, #2D8FCC 53%, #B5CE4E 75%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle-lab-connect {
  font-family: Poppins;
  font-size: 27px;
  font-weight: 200;
  width: 40%;
  margin: auto;
  color: #000;
}

.img-card-lab {
  width: 114px;
  height: 126px;
}

.card-lab-connect {
  background-color: #fff;
  border: 1px solid #3098D2;
  border-radius: 40px;
  box-shadow: 29px 29px 41px -29px rgba(0, 0, 0, 0.5);
}

.title-card-lab {
  color: #1A2D4C;
  font-family: Poppins;
  font-size: 22px;
  font-weight: 900;
  display: -webkit-box;
  /* Required for line-clamp to work */
  -webkit-line-clamp: 2;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
  /* Required for line-clamp */
  overflow: hidden;
  /* Hides the extra text */
  text-overflow: ellipsis;
  /* Adds the '...' at the end */
}

.descrp-card-lab {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
}

.agenda {
  background: #fff;
}

.contain-title-agenda {
  width: fit-content;
  background: linear-gradient(133deg, #F2F4F5 0%, #E0E0E4 100%);
  border-radius: 40px;
}

.title-agenda {
  font-family: Poppins;
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(45deg, #132CAA 7%, #0095FF 47%, #7DC5ED 81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container-agenda {
  background: linear-gradient(90deg, #77CBFF 0%, #132CAA 100%);
  border-radius: 50px;
}

.card-agenda {
  background-color: #fffdfd36;
  border-radius: 0 20px 20px 0;
  flex-grow: 1;
}

.vr-agenda {
  background: linear-gradient(90deg, #B5CE4E 0%, #3098D2 100%);
  width: 20px;
  height: 100%;
  border-radius: 20px 0 0 20px;
  /* border-radius: 20px ; */
}

.hour-agenda {
  font-family: Poppins;
  font-size: 40px;
  font-weight: 600;
  color: #2B4B7F;
  background-color: #F4EEEE;
  border-radius: 20px;
}

.desc-agenda {
  font-family: Poppins;
  font-size: 35px;
  font-weight: 600;
  color: #ffffff;
}

.hr-co-hosts {
  background: linear-gradient(90deg, #B5CE4E 0%, #3098D2 50%);
  height: 8px;
  width: 50%;
  margin: auto;
  border: none;
  opacity: 1;
  border-radius: 20px;
}

.title-co-hosts {
  font-family: Poppins;
  font-size: 84px;
  font-weight: 900;
  color: #4D4D4D;
}

.subtitle-co-hosts {
  font-family: Poppins;
  font-size: 27px;
  font-weight: 200;
  width: 40%;
  margin: auto;
  color: #000;
}

.card-hosts {
  background-color: #fff;
  border: 1px solid #999999;
  border-radius: 40px;
  box-shadow: 29px 29px 41px -29px rgba(0, 0, 0, 0.5);
  max-height: 140px;
  align-items: center;
}

.card-host-title {
  width: fit-content;
  color: #ffffff;
  font-family: Poppins;
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(165deg, #B5CE4E 0%, #3098D2 100%);
  border-radius: 32px;
}

.card-host-description {
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 300;
}

.img-hosts {
  max-height: 140px;
  max-width: 420px;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.customers h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  background: linear-gradient(264deg, #1733BC 38.34%, #0095FF 95.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.customers {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 38.34%, rgba(0, 0, 0, 0.35) 95.37%);
}

.customers span {
  text-align: justify;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.customers p {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.customers a {
  border-radius: 62px;
  background: linear-gradient(263deg, #0095FF 5.52%, #1733BC 65.48%);
}

.img-customer {
  width: 100%;
  margin: auto;
  transform: translatey(0px);
  animation: pulse 6s ease-in-out infinite;
}

.price-bg {
  background: linear-gradient(90deg, #091863 0%, #0095FF 57%, #B5CE4E 100%);
  border-radius: 36px 36px 21px 21px;
  padding: 0px;
}

.title-price {
  font-family: Poppins;
  font-size: 55px;
  font-weight: 900;
  display: grid;
  display: block;
}

.subtitle-hotel {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  display: block;
}

.price-hotel {
  font-family: Poppins;
  font-size: 64px;
  font-weight: 900;
  display: block;
}

.price-room {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  display: block;
}

.img-hotel {
  width: 100%;
  border-radius: 0 0 21px 21px;
}

.title-hotel {
  color: #000000;
  font-family: Poppins;
  font-size: 40px;
  font-weight: 600;
  background-color: #FFFFFF;
  border-radius: 40px;
  border: 1px Solid #999999;
  box-shadow: 18px 23px 34px -13px rgba(0, 0, 0, 0.25);
}

.including {
  position: relative;
  top: -60px;
  z-index: 800;
  background-color: #fff;
  border-radius: 40px;
  border: 1px Solid #999999;
  box-shadow: 18px 23px 34px -13px rgba(0, 0, 0, 0.25);
}

.title-including {
  font-family: Poppins;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
  background: linear-gradient(45deg, #3098D2 0%, #1733BC 73%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.desc-including {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 900;
  color: #4C4C4C;
}

.desc-including>ul>li {
  margin-block: 12px;
}

.more-info {
  background: linear-gradient(45deg, #000000 0%, #1733BC 43%, #0095FF 100%);
}

.more-info-txt {
  text-align: center;
  color: #FFF;
  font-family: Poppins;
  font-size: 40px;
  font-weight: 400;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.our-software {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 38.34%, rgba(0, 0, 0, 0) 95.37%), no-repeat url("../img/our-software-bg.png");
  background-size: 25%;
  background-position: center, 15% 10%;
}

.our-software::after {
  background-color: #0095FF;
}

.title-sec-our-software {
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 112.316%;
  border-radius: 73.5px;
  border: 3px solid var(--azul, #1733BC);
  text-wrap: nowrap;
  padding-inline: 28px;
  padding-block: 9px;
}

.title-our-1 {
  font-size: 75px;
  font-style: normal;
  font-weight: 900;
  line-height: 112.586%;
  background: var(--azul, linear-gradient(264deg, #1733BC 38.34%, #0095FF 95.37%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-our-2 {
  font-size: 75px;
  font-style: normal;
  font-weight: 900;
  line-height: 112.586%;
  background: var(--degradado, linear-gradient(90deg, #B5CE4E 18.72%, #3098D2 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-software span {
  text-align: right;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 112.316%;
  /* 53.912px */
}

.text-right {
  text-align: right;
}

.our-software .vr {
  background-color: #0095FF;
  opacity: 1 !important;
  width: 4px;
}

.our-software p {
  text-align: justify;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.societies {
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.financial {
  background: var(--blanvco1, linear-gradient(270deg, #EEEDED 0%, #FFF 48.23%, #EEEDED 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.popular {
  background: var(--blanvco1, linear-gradient(270deg, #EEEDED 0%, #FFF 48.23%, #EEEDED 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.sofipo-link {
  background-color: #FCFCFE;
  border-radius: 30px;
  padding-block: 25px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.sofipo-img {
  width: 80% !important;
  max-height: 50px;
  margin: auto;
}

.bg-customers {
  background: no-repeat url("../img/bg-customer.png");
  background-position: center;
  background-size: cover;
}

.scroller {
  max-width: 100%;
  max-height: 675px;
}

.scroller__inner img {
  width: 250px;
  height: auto;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.test {
  background: red !important;
}

@media screen and (max-width: 568px) {
  .scroller__inner img {
    width: 120px;
    height: auto;

  }
}

.marketplace-page {
  background: no-repeat url("../img/efisys-marketplace-bg.jpeg");
  background-size: cover;
  background-position: top right;
}

.hero-marketplace {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-marketplace img {
  width: 210px;
  height: 49px;
  margin-bottom: 3rem;
}

.hero-marketplace h2 {
  text-align: right;
  font-size: 93.6px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.872px;
  background: linear-gradient(91deg, #B5CE4E 12.18%, #3098D2 99.55%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-marketplace p {
  color: var(--PRIMARY-500, #1A2D4C);
  text-align: right;
  font-size: 31.102px;
  font-style: normal;
  font-weight: 300;
  line-height: 141.344%;
  /* 43.96px */
}

.hero-marketplace p span {
  color: var(--PRIMARY-500, #1A2D4C);
  font-size: 36.285px;
  font-style: normal;
  font-weight: 800;
  line-height: 141.344%;
}

.gallery-market {
  padding: 30px !important;
}

.gallery-market h2 {
  width: 80%;
  margin: auto;
  color: #1C48AC;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.96px;
}

.marketplace-back .btn {
  background-color: #F2F4F5;
  border-radius: 30px;
  filter: drop-shadow(5px 5px 10px #000000);
  color: #1A2D4C;
  text-align: center;
  font-size: 23.523px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  /* 47.046px */
  padding: 0px 25px;
}


.icon-back {
  background: var(--lin, linear-gradient(223deg, var(--CORRECTO-600, #B5CE4E) 12.06%, #3098D2 76.61%));
  background-clip: text;
}

.market-container {
  background-color: #FFF;
  border-radius: 59px;
  padding: 45px;
}

.market-img-tech {
  max-width: 490px;
  width: 100%;
}

.market-border {
  border-radius: 59px;
  border: 2px dashed var(--degradado, #B5CE4E);
}

.services-m {
  color: var(--PRIMARY-500, #1A2D4C);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.48px;
  width: 80%;
  margin: auto;
  display: block;
  border-radius: 25px;
  background: #F6F5F5;
  margin-block: 20px;
}

.text-left {
  text-align: left;
}

.contact-m {
  text-align: left;
  display: block;
  color: var(--PRIMARY-500, #1A2D4C);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.48px;
  margin-block: 15px;
  display: inline-block;
  overflow-wrap: anywhere;
  display: inline-block;
  text-align: left;
}

.market-place-services {
  text-align: left;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.96px;
  background: var(--degradado, linear-gradient(90deg, #B5CE4E 18.72%, #3098D2 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hstack-custom {
  align-items: baseline !important;
}

.social-net {
  color: #000;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.3px;
}

.market-place-services-2 {
  color: var(--PRIMARY-500, #1A2D4C);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.64px;
}

.market-description {
  color: var(--DARKMODE-400, #3B3B3B);
  text-align: justify;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.technologies h2 {
  text-transform: uppercase;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 141.344%;
  background: var(--lin, linear-gradient(223deg, var(--CORRECTO-600, #1733BC) 12.06%, #091863 76.61%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.technologies .card {
  border-radius: 30px;
  background: #F2F4F5;
  text-align: center;
  box-shadow: 7.155px 6.36px 12.481px 0.795px rgba(0, 0, 0, 0.25);
}

.technologies .card-title {
  color: var(--PRIMARY-500, #1A2D4C);
  font-size: 19.079px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.success-stories-page {
  background: no-repeat url("../img/efisys-successstories-bg.jpeg");
  background-size: cover;
  background-position: top center;
}

.hero-successstories {
  width: 100%;
  min-height: 95vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-successstories .subtitle-hero-stories {
  color: #FFF !important;
}

.hero-successstories .title-hero-stories {
  font-size: 90px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.7px;
  background: var(--lin, linear-gradient(223deg, var(--CORRECTO-600, #1733BC) 12.06%, #091863 76.61%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.hero-successstories .subtit-successstories {
  color: #1733BC;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.8px;
  border-radius: 55px;
  background: linear-gradient(91deg, #DFDEDE 0%, #F4F2F2 99.66%);
  padding-inline: 25px;
  padding-block: 10px;
  margin-top: 20px;
}

.container-imgs {
  margin-bottom: 20px;
}

.container-imgs img {
  height: 100%;
  max-width: 100px;
  max-height: 100px;
}

.container-imgs span {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
  border-radius: 55px;
  background-color: #1733BC;
  padding-inline: 25px;
  padding-block: 10px;
}

.bienestar-success-stories h2 {
  color: #999;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.64px;
}

.bienestar-success-stories img {
  width: 80%;
}

.experience-success h2 {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.64px;
  border-radius: 55px;
  background: #0B1B6F;
}

.experience-success h3 {
  color: #0B1B6F;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}

.experience-success p {
  color: var(--PRIMARY4001, #2B4B7F);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.36px;
}

.success-img p {
  color: #848282;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 25px;
}

.success-img image {
  width: 100%;
}

.accordion-item {
  margin-block: 20px;
}

.accordion-header {
  background: transparent;
}

.accordion-button {
  color: #0B1B6F;
  text-align: justify;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-dash-circle%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M8%2015A7%207%200%201%201%208%201a7%207%200%200%201%200%2014m0%201A8%208%200%201%200%208%200a8%208%200%200%200%200%2016%22%2F%3E%3Cpath%20d%3D%22M4%208a.5.5%200%200%201%20.5-.5h7a.5.5%200%200%201%200%201h-7A.5.5%200%200%201%204%208%22%2F%3E%3C%2Fsvg%3E");
  transform: rotate(360deg);
  background-size: auto;
  background-position: center;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-size: auto;
  background-position: center;
}

.accordion-body {
  color: #1A2D4C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: 0.36px;
}

.results {
  margin-block: 220px;
}

.results h2 span {
  color: var(--COLOR-COLOR-BASIC-Color-dark-gray, #999);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
}

.results img {
  width: 80%;
}

.results h3 {
  color: #0B1B6F;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}

.results p {
  color: var(--PRIMARY4001, #2B4B7F);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.36px;
}

.experience-success-2 {
  background-color: #F1F1F1;
  border-radius: 30px;
}

.experience-success-2 img {
  max-width: 183px;
}

.manager-headline {
  font-size: 24px;
  color: #001373;
  text-align: center;
}

.manager-textbox {
  background-color: #F1F1F1;
  border-radius: 30px;
  box-shadow: 0 -3px 0 0 #303f9f;
  position: relative;
}

.manager-textbox h3 span {
  color: #23619C;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  border-radius: 55px;
  border: 1px solid var(--lin, #1733BC);
  margin: 15px;
  padding: 10px;
}

.manager-text {
  margin-top: 40px;
  padding-top: 90px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.manager-text p {
  color: var(--PRIMARY4001, #2B4B7F);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.36px;
}

#manager .teaser-header-what {
  padding-left: 0px;
}

.manager-portrait {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.academy-page {
  background: no-repeat url("../img/bg-hero-academy.png");
  background-size: cover;
  background-position: top;
}

.hero-academy {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-hero-mini {
  max-width: 245px;
}

.title-academy {
  color: #0B0841;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title-academy span {
  background: var(--azul1, linear-gradient(264deg, #1733BC 57%, #8598F3 95.32%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.subtitle-academy {
  color: #000;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-academy {
  background: no-repeat url("../img/section-academy-bg.png");
  background-size: cover;
  background-position: top;
}

.title-academy-cards {
  color: var(--azul4, #1947C7);
  text-align: center;
  font-size: 23.685px;
  font-style: normal;
  font-weight: 700;
  line-height: 81%;
  /* 19.185px */
}

.desc-academy-cards {
  width: 80%;
  margin: auto;
  color: var(--azul3, #1C2C4C);
  text-align: center;
  font-size: 19.333px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.952px;
  /* 108.373% */
}

.img-academy-cards {
  width: 70%;
  margin: auto;
}

.section-academy-2 {
  background-color: #f1f1f1;
}

.section-academy-2 h2 {
  color: var(--azul3, #1C2C4C);
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 123%;
  /* 54.12px */
}

.section-academy-2 h2 span {
  background: var(--azul2, linear-gradient(90deg, #0173F0 39.48%, #0D46A2 57%, #142F78 66.27%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 44px;
  font-style: normal;
  font-weight: 900;
  line-height: 123%;
}

.subtitle-academy-2 {
  width: 80%;
  margin: auto;
  color: #44447F;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title-academy-cards-2 {
  color: var(--azul3, #1C2C4C);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 81%;
  /* 16.2px */
}

.desc-academy-cards-2 {
  color: var(--azul3, #1C2C4C);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
}

.infra-page {
  background: no-repeat url("../img/bg-admon-infraestructura.png");
  background-size: cover;
  background-position: top;
}

.hero-infra {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-infra {
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  background: linear-gradient(0deg, #0F2574 0%, #0F2574 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-infra span {
  background: linear-gradient(192deg, #0F2574 -24.32%, #4363D6 76.04%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle-infra {
  color: #182D79;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.section-infra {
  margin-bottom: 0;
  padding: 0;
}

.infra-sec-2 {
  background: no-repeat url("../img/bg-section-infra-2.png");
}

.infra-section-info h3 span {
  color: #192D76;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.infra-section-info h3 {
  width: 80%;
  margin: auto;
  color: #0F2574;
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.title-card-infra {
  display: flex;
  border-radius: 35px;
  border: 2px solid #9EC54A;
}

.title-infra-cards {
  color: #12218C;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-right: 20px;
}

.img-infra-ic {
  width: 64px;
  height: 64px;
  padding: 10px;
}

.desc-infra-cards {
  color: #0F1979;
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-infra-2 {
  background: rgb(0, 17, 172);
  background: linear-gradient(153deg, rgba(0, 17, 172, 1) 0%, rgba(9, 9, 121, 1) 53%, rgba(2, 0, 36, 1) 90%);
  padding: 0px;
}

.custom-shape-divider-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top svg {
  width: 100%;
}

.infra-oracle {
  color: #FFF;
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.75px;
}

.infra-oracle span {
  display: block;
  color: #FFF;
  font-size: 45px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.oracle-cards {
  color: #FFF;
  text-align: justify;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.partners-efisys {
  width: 312px;
}

.partners-by {
  width: 30px;
}

.partners-oracle {
  width: 417px;
}

.corebanking-page {
  background: no-repeat url("../img/bg-corebanking.png");
  background-size: 150%;
  background-position: top;
}

.hero-banking {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 150px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banking h2 {
  color: var(--COLOR-COLOR-BASIC-Color-white, #FFF);
  font-size: 49.275px;
  font-style: normal;
  font-weight: 250;
  line-height: normal;
}

.hero-banking h2 span {
  font-size: 49.275px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: var(--blanco, linear-gradient(270deg, #FFF 0%, #DCDCDC 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banking p {
  color: #FFF;
  text-align: justify;
  font-size: 24.638px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title-card-core {
  display: flex;
  border-radius: 19.815px;
  border: 0.991px solid var(--Miscellaneous-Floating-Tab---Text-Selected, #007AFF);
  padding-block: 15px;
  padding-inline: 40px;
}

.title-core-cards {
  color: #FFF;
  font-family: Mulish;
  font-size: 22.787px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 20px;

}

.img-core-ic-1 {
  width: 64.399px;
  height: 41.612px;
}

.img-core-ic-2 {
  width: 45.575px;
  height: 51.519px;
}

.desc-core-cards {
  color: #0F1979;
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.banking-section-2 p {
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.banking-section-2 ul li {
  color: #FFF;
  font-family: Mulish;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 127.075%;
  /* 31.769px */
}

.mods-corebanking {
  background: linear-gradient(rgb(9 17 80) 0%, rgb(11 15 76) 53%, rgb(10 12 71) 90%);
  padding: 0;
}

.mods-corebanking h2 {
  color: #FDFDFF;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.mods-corebanking p {
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 29.247px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.desc-corebanking {
  background: rgb(11, 9, 79);
  background: linear-gradient(90deg, rgba(11, 9, 79, 1) 0%, rgba(21, 45, 171, 1) 100%);
  padding: 0;
}

.desc-corebanking h2 span {
  color: #FFF;
  font-family: Mulish;
  font-size: 31.842px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  border-radius: 19.901px;
  border: 1.327px solid var(--COLOR-COLOR-BASIC-Color-white, #FFF);
  padding: 13px 51px;
  display: inline-block;
}

.desc-corebanking h3 span {
  width: 100%;
  color: var(--SHADES-50, #FFF);
  text-align: center;
  font-family: Mulish;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 27px;
  border: 3px solid #0095FF;
  padding: 15px 0px;
  display: inline-block;
}

.modal-title {
  font-family: Mulish;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  background: var(--lin, linear-gradient(223deg, var(--CORRECTO-600, #1733BC) 12.06%, #091863 76.61%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#modalDescription {
  background: var(--lin, linear-gradient(223deg, var(--CORRECTO-600, #1733BC) 12.06%, #091863 76.61%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Mulish;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.modal-content {
  border-radius: 27.29px;
}

.border-container-modal {
  margin: 20px;
  border-radius: 27.29px;
  border: 1.092px solid var(--lin, #1733BC);
}

/* nav mini marketplace */
.nav_market ul,
ol {
  list-style: none;
}

.nav_market {
  margin: 0 auto;
  /*Centramos automaticamente*/
  display: flex;
  justify-content: center;
}

.a-options {
  width: 100%;
  color: var(--PRIMARY-500, #1A2D4C);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  padding: 10px 12px;
  display: block;
  border-radius: 35px;
  border: 2px dashed var(--degradado, #B5CE4E);
}

.nav_market li a {
  color: var(--PRIMARY-500, #1A2D4C);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  padding: 10px 12px;
  display: block;
}

.nav_market li a:hover {
  background: linear-gradient(101deg, #B5CE4E 18.64%, #3098D2 96.28%);
  border-radius: 20px;
}

.nav_market li ul {
  width: 330px;
  background: linear-gradient(101deg, #B5CE4E 18.64%, #3098D2 96.28%);
  border-radius: 20px;
  display: none;
  position: absolute;
  z-index: 100;
}

.nav_market li:hover>ul {
  display: block;
}

.nav_market li ul li {
  width: 330px;
  left: -35px;
  position: relative;
}

.nav_market li ul li a {
  color: #fff;
}

.nav_market li ul li a:hover {
  background: var(--lin, linear-gradient(223deg, var(--CORRECTO-600, #1733BC) 12.06%, #091863 76.61%));
}

.nav_market li ul li ul {
  /* right:-140px; */
  right: 0;
  top: 0px;
}

.contain-wave-relative {
  position: relative;
}

.contain-wave {
  position: absolute;
  right: 0;
  top: 100%;
  overflow: hidden;
}

.contain-wave-relative-down {
  position: relative;
}

.contain-wave-down {
  overflow: hidden;
  bottom: 0;
  position: absolute;
}

.wave-style {
  float: left;
  width: 50%;
  max-width: 231px;
}

.wave-style-right {
  float: right;
  width: 50%;
  max-width: 231px;
}

.wave-top-left {
  float: left;
  width: 50%;
  max-width: 218px;
}

.hero-coop {
  background-image: url("../img/efisys-coop-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 150px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-coop h2 {
  color: #FFF;
  text-align: center;
  font-size: 51.429px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero-coop h2 span {
  background: linear-gradient(91deg, #B5CE4E 57.71%, #3098D2 81.4%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Mulish;
  font-size: 51.429px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.union-credit {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 28px;
  border-radius: 33.214px;
  border: 1.071px solid var(--degradado, #B5CE4E);
}

.card-coops {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-coops img {
  width: 77px;
  height: 86px;
}

.card-coops span {
  color: #075EDF;
  text-align: center;
  font-family: Mulish;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 15px;
}

.border-right {
  border-style: solid;
  border-image: linear-gradient(180deg, #B5CE4E 18.72%, #3098D2 100%)1;
  border-width: 0 1px 0 0;
}

.border-left-right {
  border-style: solid;
  border-image: linear-gradient(180deg, #B5CE4E 18.72%, #3098D2 100%)1;
  border-width: 0 1px 0 1px;
}

.hero-coop p {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contain-wave-down-right {
  overflow: hidden;
  bottom: 0;
  right: 0;
  position: absolute;
}

.contain-wave-top-left {
  position: absolute;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.wave-bottom-right {
  width: 50%;
  max-width: 231px;
  float: right;
}

.wave-bottom-right-index {
  width: 80%;
  max-width: 231px;
  float: right;
}

.coop-section-2 {
  background: linear-gradient(90deg, rgba(9, 24, 99, 1) 0%, rgba(23, 51, 188, 1) 50%);
  padding: 0;
}

.coop-title-1 {
  color: #FFF;
  font-family: Mulish;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.coop-title-1 span {
  background: linear-gradient(90deg, #B5CE4E 53.15%, #1A9FEA 83.06%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Mulish;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.info-coop {
  width: 100%;
}

.desc-coop {
  padding: 0;
}

.coop-title {
  color: var(--degradado, #FFF);
  text-align: center;
  font-family: Mulish;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  border-radius: 41px;
  border: 2px solid var(--fondo2, #DAE6FB);
  padding: 13px 51px;
  display: inline-block;
}

.desc-coop h3 span {
  width: 100%;
  color: var(--SHADES-50, #FFF);
  text-align: center;
  font-family: Mulish;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 27px;
  border: 3px solid #9EC54A;
  padding: 15px 0px;
  display: inline-block;
}

.means-payments-page {
  background: no-repeat url("../img/bg_means_payments.png");
  background-size: cover;
  background-position: top right;
}

.hero-means-payments {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-means-payments h2 {
  text-align: right;
  letter-spacing: 1.872px;
  font-size: 96px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  background: linear-gradient(269deg, #1B2CBD 2.53%, #1B2C4C 121.73%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-means-payments p {
  color: #1B2C4C;
  text-align: right;
  font-family: Mulish;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.mobile_means {
  content-visibility: hidden;
}

.desktop_means {
  content-visibility: visible;
}

.mobile_coops {
  content-visibility: hidden;
}

.desktop_coops {
  content-visibility: visible;
}

@media only screen and (max-width: 500px) {
  .g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
  }
}
