/*==================== Made By Angeles May ====================*/

/*Fuentes personalizadas */
@font-face {
  font-family: 'head_custom_font';
  src: url('../fonts/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'body_custom_font';
  src: url('../fonts/HubSpotSans-Book.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'custom_font';
  src: url('../fonts/beauty-font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {

  /*==================== COLORES BASE ====================*/
  --color-primary: #1e40af;
  --color-primary-hover: #2563eb;
  --color-secondary: #171d26;
  --color-secondary-hover: #202732;
  --color-shadow: #7DBBF9;
  --color-white: #ffffff;
  --color-dark-blue: #111827;
  --color-black: #27313b;
  --color-gray-light: #F4F6F6;
  --color-gray-dark: #2e2e2e;

 /*==================== FUENTES ====================*/
  --font-heading: 'head_custom_font', sans-serif;
  --font-body: 'body_custom_font', sans-serif;
   --custom-font: 'custom_font', sans-serif;

  /*==================== TAMAÑOS DE TEXTO ====================*/
  --font-xs: 0.75rem;     /* 12px */
  --font-sm: 0.875rem;    /* 14px */
  --font-base: 1.2rem;      /* 16px */
  --font-lg: 1.125rem;    /* 18px */
  --font-xl: 1.25rem;     /* 20px */
  --font-2xl: 1.5rem;     /* 24px */
  --font-3xl: 2rem;       /* 32px */
  --font-4xl: 2.5rem;     /* 40px */
  --font-5xl: 3rem;       /* 48px */
  --font-6xl: 3.5rem;     /* 56px */

/*==================== SOMBRAS ====================*/
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);

  /*==================== Z-INDEX ====================*/
  --z-dropdown: 1000;
  --z-modal: 1050;
  --z-tooltip: 1100;
}

/* Tipografía base */
  html,body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    background-color: #ffffff;
    overflow-x: hidden;
  }

/* Tipografía de encabezados */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.1em;
}

h1 {
  font-size: var(--font-6xl);
  line-height: 4.563rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
}

h2 {
  font-size: var(--font-5xl);
  line-height: 2.75rem;
  font-weight: 400;
}

h3 {
  font-size: var(--font-4xl);
  font-weight: 400;
}

h4 {
  font-size: var(--font-3xl);
  font-weight: 400;
}

h5 {
  font-size: var(--font-2xl);
  font-weight: 400;
}

h6 {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Enlaces */
a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-primary);
  text-decoration: none;
}

/*Botones*/

.btn_primary{
  color: var(--color-white);
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 14px 28px;
  transition: color 0.3s ease;
}

.btn_primary:hover{
  color: var(--color-white);
  background: var(--color-primary-hover);
}

.btn_white{
  background: var(--color-white);
  border-radius: 5px;
  color: var(--color-dark-blue);
  cursor: pointer;
  padding: 14px 28px;
  transition: color 0.3s ease;
}

.btn_white:hover{
  color: var(--color-dark-blue);
  background: var(--color-white);
}

.outline_primary_btn{
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 5px;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.outline_primary_btn:hover{
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.outline_white_btn{
  color: var(--color-white);
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: 5px;
  cursor: pointer;
  padding: 14px 28px;
  transition: color 0.3s ease;
}

.outline_white_btn:hover{
  color: var(--color-dark-blue);
  background: var(--color-white);
}

.outline_secondary_btn{
  color: var(--color-dark-blue);
  background: transparent;
  border: 2px solid var(--color-dark-blue);
  border-radius: 5px;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.outline_secondary_btn:hover{
  color: var(--color-white);
  background: var(--color-dark-blue);
}


.top_icons{
  color: var(--color-primary);
}

header.custom-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: var(--color-white);
  box-shadow: rgba(136, 165, 191, 0.25) 4px 2px 10px, rgba(255, 255, 255, 0.6) -4px -2px 10px;
}

#iql_jb{
  padding-top: 0 !important;
}

.custom-nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: var(--color-white);
  box-shadow: rgba(136, 165, 191, 0.25) 4px 2px 10px, rgba(255, 255, 255, 0.6) -4px -2px 10px;
}


.nav-brand {
    max-height: 50px;
    height: auto;
    width: auto;
}
.item_navegation .nav-link{
  color: var(--color-dark-blue);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0px 20px;
}

.item_navegation .nav-link:hover{
  color: var(--color-primary);
}

.navbar-toggler {
  border: none;
  background-color: var(--color-primary);
  padding: 0.4rem 0.75rem;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.badge-new {
    background: #153f9c;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 7px;
    border-radius: 50px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: normal;
    white-space: nowrap;
}

.badge-new .flame-gif {
    width: 15px;
    height: 15px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}


/* MegaMenu */
.dropdown-menu.mega-menu.show {
    margin-top: 15px;
    width: 600px;
    border: none !important;
    border-radius: 0;
    background: var(--color-white);
    padding: 20px;
}

.mega-menu .dropdown-header {
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 10px;
    padding: 0;
}

.mega-menu .dropdown-item {
    color: var(--color-dark-blue);
    padding: 12px 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.mega-menu .dropdown-item:hover {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

/* Ajuste general dropdown */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    padding: 0;
}

/*Main Hero*/
.main_hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  width: 100%;
  background: url('../img/bg-home-hero.jpg') no-repeat center center;
  background-size: cover;
  margin-top: 74px;
}

.main_hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 45, 102, 0.94), rgba(3, 86, 211, 0.94));
  z-index: 0;
}

.main_hero .container {
  position: relative;
  z-index: 1;
}

.main_hero > .container,
.main_hero .row,
.main_hero .col-lg-6 {
  height: 100%;
}

.main_hero .text_col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.main_hero .hero_img_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}


.main_hero .hero_img {
  max-height: 90%;
  width: auto;
  object-fit: contain;
  display: block;
}

.main_hero h1{
  font-size: var(--font-xl);
  line-height: 1.2em;
  color: var(--color-white);
}

.main_hero h2{
  font-size: 50px;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--color-white);
}

.main_hero p{
  color: var(--color-white);
  font-size: 17px;
}


.title-highlight{
  color: #dc2626;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* SECCIÓN PRINCIPAL */
.sts_sect {
  position: relative;
  overflow: hidden;
  background-color: var(--color-dark-blue);
  padding: 40px 0;
}

/* CONTADORES */
.counter {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.counter_text p {
  color: var(--color-white); 
}

.counter span {
  font-size: 1.5rem;
  margin-left: 4px;
}

/* CONTENEDOR DE CADA COUNTER */
.custom_counter {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  overflow: hidden;
}

.custom_counter:first-child {
  border-left: none;
}

.custom_counter:last-child {
  border-right: none;
}


/*LOGO SLIDER*/
.trust-section {
  background-color: var(--color-dark-blue);
  padding: 50px;
}

.trust-box h3{
  color: var(--color-white);
  font-size: var(--font-5xl);
}

.trust-text {
  max-width: 520px;
  color: var(--color-white);
}

.logo-slider {
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.logo-card {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 100px;
  flex-shrink: 0;
}

.logo-card img {
  max-height: 55px;
  max-width: 190px;
  object-fit: contain;
  opacity: 0.7;
  transition: .3s;
}

/**
.logo-card img:hover {
  opacity: 1;
}**/

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*SERVICES AREA*/

.services_section{
  padding: 80px 0;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;  

}

.service-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.service-label {
  padding: 16px 18px;
  font-size: 1.05rem;
  color: var(--color-black);
}

.section-tag {
  display: inline-block;
  padding: 8px 24px;
  margin-bottom: 24px;
  background: #eff6ff;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  border: 1px solid #dbeafe ;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.services_section h3{
  font-size: 25px;
  line-height: 1.2em;
  text-transform: capitalize;
}

.service-card h4{
  font-size: var(--font-xl);
  line-height: 1em;
  color: var(--color-dark-blue);
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 20px;
}

.services_tittle{
  margin-bottom: 30px;
}

.services_tittle h3{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 600;
  color: var(--color-dark-blue);
  
}

.what-we-do-section{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

.section-title{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 600;
  color: var(--color-dark-blue);
}

.icons_section{
  margin: 50px 0;
}

.icons_colum{
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.icon-circle{
  position: relative;
  top: -30px;
}

.icon-circle i{
  color: var(--color-white);
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.icon_tittle{
  font-size: var(--font-xl);
  font-weight: 600;
}

.hero-consultancy {
  overflow: hidden;
}

.hero-left {
  background: var(--color-primary);
  background-image: url(../img/bgn-dots.png) center left no-repeat;
  background-size: cover;
  padding: 4rem;
}

.hero-content {
  max-width: 520px;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.hero-subtitle::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #cbb57a;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: #cbb57a;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.hero-right {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultancy-inverted{
  background: var(--color-dark-blue);
}

.consultancy-inverted .hero-left {
  padding: 4rem;
  background: var(--color-dark-blue);
}


.why-work-with-us{
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-work-with-us h3{
  margin-bottom: 30px;
}

.emp-tal{
  padding: 80px 0;
}

.emp-tal h3{
  font-size: var(--font-5xl);
}

.feature-card {
  border-radius: 32px;
  min-height: 320px;
  position: relative;
}

.fcard-dark{
  background-color: var(--color-dark-blue);
}

.bg-teal {
  background-color: var(--color-primary);
}

.person-img {
  position: absolute;
  bottom: 0;
  max-height: 700px;
  z-index: 2;
  transform: translateY(0px);
}

/* Responsive */
@media (max-width: 991px) {
  .person-img {
    position: static;
    transform: none;
    display: block;
    margin: 0 auto;
  }
}

.iql_job{
  padding: 80px 0;
}

.iql_job h5{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.iql-bnf{
  margin-top: 20px;
}

.iql_icn i{
  color: var(--color-white);
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.iql-bnf h5{
  font-size: var(--font-xl);
  font-weight: 600;
  margin: 15px 0;
}

.iql-bnf .card{
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.home-faqs{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: url(../img/circle-shape.png) center left no-repeat;
  background-size: auto;    

}

.home-faqs h4{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.contact-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

.contact-section h4{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1em;
}

.icon-ctc{
  color: var(--color-white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.ctc_details{
  margin-top: 20px;
}

.frm_ctc{
  padding: 44px;
  border-radius: 20px;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/*-- About Us Page --*/

.aus_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.aus_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
  margin-top:74px;
}

.aus_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.aus_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.aus_header .breadcrumb-item.active {
    color: #fff;
}

.aus_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.our_history{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.our_history h2{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 600;
  color: var(--color-dark-blue);
}

.nav_pills_cont {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 25px;
  background-color: var(--color-white);
  overflow: hidden;

}

.nav_pills_cont::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0H0V40' fill='none' stroke='rgba(128,128,128,0.1)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 0;
}

.nav_pills_cont > * {
  position: relative;
  z-index: 1;
}

.vision-section {
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

.tabs_cnt{
  margin-bottom: 80px;
}

.content-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.content-left {
  width: 220px;
}

.divider {
  width: 1px;
  background: rgba(0,0,0,0.1);
  margin: 0 2rem;
}

.content-right p {
  font-size: 1rem;
  line-height: 1.6;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-tabs .nav-link {
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  color: #9aa0a6;
  font-weight: 500;
  border-radius: 0;
  font-size: var(--font-xl);
}

.vision-tabs .nav-link.active {
  color: var(--color-dark-blue);
  background: transparent;
  font-weight: 600;
}


.content-box {
  background: var(--color-dark-blue);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
}

.content-left {
  width: 180px;
}

.icn-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.icn-box i {
  font-size: 2.5rem;
  width: 100%;
  text-align: center;
  line-height: 1;
}

.divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 30px;
}

.content-right p {
  font-size: 18px;
  line-height: 1.6;
}

.am-bnf{
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.am_icn{
  color: var(--color-white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
  margin: 0 auto 12px;
}


.cta_about_us{
  padding: 100px 0;
  background: url(../img/bg-am.webp) top right no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data_cta{
  background: rgba(255, 255, 255, 0.90);
  padding: 44px;
  border-radius: 25px;
}

.data_cta h5{
  font-size: var(--font-3xl);
  font-weight: 600;
}

/*-STAFF LANDING-*/
.staff_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.staff_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
  margin-top:74px;
}

.staff_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.staff_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.staff_header .breadcrumb-item.active {
    color: #fff;
}

.staff_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.gtm_context{
  padding: 80px 0;
}

.gtm_context h2{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 600;
  color: var(--color-dark-blue);
}

.fts_section{
  margin-top: 50px;
}

.feat_jobboard{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

.feat_jobboard h4{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 600;
  color: var(--color-dark-blue);
}

.feat_dta{
  margin-top: 50px;
}

.cta_gt{
  padding: 80px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/bg-am.webp) center center no-repeat;
  background-size: cover;
  position: relative;
}

.cta_gt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 45, 102, 0.94), rgba(3, 86, 211, 0.94));
  z-index: 0;
}

.cta_gt .container {
  position: relative;
  z-index: 1;
}

.cta_gt h5{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 600;
  color: var(--color-white);
}

.cta_gt p{
  color: var(--color-white);
}

/*-- ACCORDEON --*/
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: visible;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button {
    background: var(--color-dark-blue) !important;
    color: #fff !important;
    border-radius: 1rem !important;
    font-size: 1.2rem;
    padding: 1.2rem;
    overflow: hidden;
}

.accordion-button.collapsed {
    background: #ffffff !important;
    color: var(--color-dark-blue) !important;
    box-shadow: none;
}

.accordion-body {
    min-height: 100px;
    line-height: 1.6;
}


.step-tag {
    background: #ffffff;
    padding: .3rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 30px;
}
.check-icon {
    color: #dc2626;
    margin-right: .6rem;
}

/*PAYROLL PAGE*/
.payroll_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.payroll_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
   margin-top:74px;
}

.payroll_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.payroll_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.payroll_header .breadcrumb-item.active {
    color: #fff;
}

.payroll_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.out_cont{
  padding: 80px 0;
}

.out_cont h2{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 600;
}

.serv_cont{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

.serv_cont h3{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 600;
}

.cta_cont{
  padding: 80px 0;
  background: var(--color-dark-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta_cont h4{
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
}

.map_section{
  gap: 0;
  padding: 0;
}

/*SOCIAL MEDIA LANDING*/
.sm_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.sm_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
   margin-top:74px;
}

.sm_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.sm_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.sm_header .breadcrumb-item.active {
    color: #fff;
}

.sm_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.sm_mga{
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm_mga h2{
  font-weight: 600;
  line-height: 1em;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
}

.sm-serv{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

.sm-serv h3{
  font-weight: 600;
  line-height: 1em;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
}

.cta-sm{
  padding: 80px 0;
  background: var(--color-dark-blue);
}

.cta-sm h4{
  font-weight: 600;
  line-height: 1em;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: capitalize;
  color: var(--color-white);
}

/*WEB LANDING*/
.wb_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.wb_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
   margin-top:74px;
}

.wb_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.wb_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.wb_header .breadcrumb-item.active {
    color: #fff;
}

.wb_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.web_mga{
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web_mga h2{
  font-weight: 600;
  line-height: 1em;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.bft-web{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}
.bft-rw{
  margin-bottom: 50px;
}

.bft-web h3{
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.portfolio-section{
  padding: 80px 0;
}

.portfolio-section h4{
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 80px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.card_wb{
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card_wb h5{
  font-size: var(--font-xl);
}

.cta-web{
  padding: 80px 0;
  color: var(--color-white);
  background: var(--color-dark-blue);
}

.cta-web h4{
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.jobboard-frame{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  gap: 0;
}

.frame-jobboard {
  width: 100%;
  min-height: 100%;
  border: none;
  overflow: hidden;
}

/*CONTACTO*/
.ctc_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.ctc_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
   margin-top:74px;
}

.ctc_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.ctc_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.ctc_header .breadcrumb-item.active {
    color: #fff;
}

.ctc_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/*HEPL CENTER*/

.hct_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.hct_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
   margin-top:74px;
}

.hct_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.hct_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.hct_header .breadcrumb-item.active {
    color: #fff;
}

.hct_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.help_ctr{
  padding: 80px 0;
}

.help_ctr h2{
  font-weight: 600;
  margin-bottom: 50px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.faqs_ctr{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

.faqs_ctr h3{
  font-weight: 600;
  margin-bottom: 50px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.trm_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.trm_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
   margin-top:74px;
}

.trm_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.trm_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.trm_header .breadcrumb-item.active {
    color: #fff;
}

.trm_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.trm_cnt{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
  
}

.trm_cnt h2{
  font-size: var(--font-2xl);
  font-weight: 600;
}

/*THANK YOU LANDING*/
.tK_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0;
  background-color: var(--color-dark-blue);
}

.tK_header h1{
  color: var(--color-white);
  font-weight: 600;
  text-transform: capitalize;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
  magin-top:74px
}

.tk_header p{
  color: var(--color-white);
}

/*PRIVACY POLICY*/
.pp_header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.pp_header h1{
  color: var(--color-white);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1em;
  margin-top:74px;
}

.pp_header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;

}

.pp_header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.pp_header .breadcrumb-item.active {
    color: #fff;
}

.pp_header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.prv-pol{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

.prv-pol h2{
  font-size: var(--font-2xl);
  font-weight: 600;
}

/*SERVICES LANDING*/
.serv_section{
  padding: 80px 0;
  background: url(../img/white-gradient.jpg) center center no-repeat;
  background-size: cover;
}

/*FOOTER*/

.footer_section {
  background: var(--color-white);
  padding: 80px 0 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer_section h6 {
  color: var(--color-dark-blue);
  margin-bottom: 15px;
}

.footer_section p,
.footer_section a {
  color: var(--color-dark-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_section a:hover {
  color: var(--color-primary);
}

.footer_section ul li {
  margin-bottom: 8px;
}

/* Logo footer */
.footer-logo {
  max-height: 60px;
  width: auto;
}

/* Social icons */
.footer_section .fa-brands {
  font-size: 16px;
  color: var(--color-dark-blue);
}

.footer_section .fa-brands:hover {
  color: var(--color-primary);
}

/* Footer bottom */
.footer_bottom {
  margin-top: 40px;
  padding: 15px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer_bottom p {
  color: var(--color-dark-blue);
}


#goTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
}

#goTopBtn:hover {
  background: var(--color-dark-blue);
  transform: translateY(0) scale(1.05);
}

#goTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
