/*==================== Made By Angeles May ====================*/

/*Fuentes personalizadas */
@font-face {
  font-family: 'head_custom_font';
  src: url('../fonts/EuclidCircularA-Regular.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'body_custom_font';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /*==================== COLORES BASE ====================*/
  --color-primary: #006699;
  --color-accent: #f36f21;
  --color-secondary: #0092d7;
  --color-shadow: #DFEFFF;
  --color-white: #ffffff;
  --color-dark-blue: #14284B;
  --color-black: #0b0c0c;
  --color-gray-light: #efefef;
  --color-gray-dark: #2e2e2e;

 /*==================== FUENTES ====================*/
  --font-heading: 'head_custom_font', sans-serif;
  --font-body: 'body_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: 2.8rem;       /* 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: 18px;
    line-height: 1.6;
    color: #212529;
    background-color: #ffffff;
        
  
  }

/* Tipografía de encabezados */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-size: var(--font-2xl);
}

/* Enlaces */
a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-accent);
  text-decoration: none;
}

/*Botones*/

.btn_primary{
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
  font-family: var(--font-heading);
  font-size: var(--font-sm);
}

.btn_primary:hover{
  color: var(--color-white);
  background: var(--color-dark-blue);
}

.btn_secondary{
  color: var(--color-dark-blue);
  background: transparent;
  border: 1px solid var(--color-dark-blue);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.btn_secondary:hover{
  color: var(--color-white);
  background: var(--color-dark-blue);
}

.btn_fab{
  color: var(--color-black);
  background: transparent;
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
  font-family: var(--font-heading);
}

.btn_fab:hover{
  color: var(--color-dark-blue);
  background: var(--color-accent);
}


.btn_light {
  color: var(--color-dark-blue);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: var(--color-white);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.btn_light:hover{
  color: var(--color-white);
  background: var(--color-primary);
}


.btn_outline{
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.btn_outline:hover{
  color: var(--color-white);
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

#heroSlider {
    overflow: hidden;
  }

  #heroSlider .carousel-inner {
    height: 100vh;
    
  }

  #heroSlider .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px 0;
  }

  #heroSlider .carousel-item.active {
    position: relative;
  }

  .hero-height {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .slide_image {
    max-width: 80%;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
  }

  .carrusel_items{
      padding: 0 50px;
  }
  
  .carrusel_items h1,
  .carrusel_items p {
    text-align: center;
  }

  .slider_tittle{
    color: var(--color-white);
    font-size: 24px;
    font-family: var(--font-heading);
    text-transform: capitalize;

  }

  .slider_text{
    color: var(--color-white);
    font-size: 18px;
  }

  .slide_image{
    width: 80%;
    height: auto;
    margin-bottom: 50px;}
  

  .badge_bglight{
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: var(--color-white);
    border-radius: 12px;
    color: var(--color-primary);
  }

   /* Seccion About Home */
  .about-home{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
  }

  .about-home h2{
    color: var(--color-dark-blue);
    font-size: 30px;
    font-weight: 500;
  }

  .service_core_area{
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
  }

.service_core_area h3{
  color: var(--color-dark-blue);
  font-size: var(--font-3xl);
}

.service-card h4{
  font-size: var(--font-xl);
  color: var(--color-dark-blue);
  text-align: center;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

 .talent_pool_area{
    background: url("../img/bg-home.webp") no-repeat center center;
    background-size: cover;
    padding: 50px 0 0;
 }

 .talent_pool_area h3{
  color: var(--color-white);
  text-align: center;
  font-size: var(--font-3xl);
 }

 .faqs_area{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
 }
 
 .faqs_area small{
  display: flex;
  align-items: center;
  justify-content: center;

 }

 .faqs_img{
  display: none;
 }

 .faqs_area h4{
  text-align: center;
 }

 .blog_area small{
  display: flex;
  align-items: center;
  justify-content: center;
 }

  .blog_area h3{
  text-align: center;
 }


 .footer_hero{
  padding-top: 80px;
 }

 .footer_hero h5{
  color: var(--color-dark-blue);
  font-size: var(--font-3xl);
  margin-bottom: 30px;
  text-transform: capitalize;
 }

.aus-header {
position: relative;
display: flex;
align-items: center;
min-height: 350px;
background: url("../img/about-us.webp") no-repeat center center;
background-size: cover;
border-radius: 0;
color: white;
overflow: hidden;
}

.aus-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}

.aus-header h1{
  text-align: center;
}

.about_cer small{
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_cer h1{
  font-size: var(--font-3xl);
  color: var(--color-dark-blue);
  line-height: 3rem;
  text-align: center;
 }
 
 .mav-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/mav-cer.webp") no-repeat center center;
  background-size: cover;
  color: white;
  overflow: hidden;
  border-radius: 0;
 }

.mav-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.mav-header .container {
  position: relative;
  z-index: 1;
}

.mission_cer h1{
  font-size: var(--font-3xl);
  line-height: 2rem;
  color: var(--color-dark-blue);
  text-align: center;
}

.hww-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/hww-bg.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0;
  color: white;
  overflow: hidden;
}

.hww-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.hww-header .container {
  position: relative;
  z-index: 1;
}

.hww-header h1{
  text-align: center;
}

.hww-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hww-cer h2{
  font-size: var(--font-3xl);
  text-align: center;
}

.hww-cer a{
  display: block;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.hww-process h3{
  color: var(--color-dark-blue);
  font-size: var(--font-3xl);
  padding-top: 20px;
  text-align: center;
}

.hww-process small{
  display: flex;
  align-items: center;
  justify-content: center;
}

.dh-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/direct-hire-header.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0;
  color: white;
  overflow: hidden;
}

.dh-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.dh-header .container {
  position: relative;
  z-index: 1;
}

.dh-header h1{
  text-align: center;
}

.dh-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}

.direct-hiring{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.direct-hiring h2{
  font-size: var(--font-3xl);
  text-align: center;
}

.direct-hiring a{
  display: block;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.direct-hiring-features{
  padding: 30px 0;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.direct-hiring-features h2{
  font-size: 30px;
  text-align: center;
}

.cs-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/csolutions.webp") no-repeat top center;
  background-size: cover;
  border-radius: 0;
  color: white;
  overflow: hidden;
}

.cs-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.cs-header .container {
  position: relative;
  z-index: 1;
}

.cs-header h1{
  text-align: center;
}

.cs-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_section{
  padding: 50px 0 0px;
}

.card_profile{
  display: none;
}

.cs_tittle h3{
  text-align: center;
}

.iws-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/industries-bg.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0;
  color: white;
  overflow: hidden;
}

/* Overlay */
.iws-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.iws-header .container {
  position: relative;
  z-index: 1;
}

.iws-header h1{
  text-align: center;
}

.iws-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}

.iws-data{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 30px;}


.iws-data h2{
  font-size: var(--font-3xl);
}

.wwu-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/breadcrumb-contact.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 0;
  color: white;
  overflow: hidden;
}

.wwu-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.wwu-header .container {
  position: relative;
  z-index: 1;
}

.wwu-header h1{
  text-align: center;
}

.wwu-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_wwu{
  padding: 50px 0 30px;
}

.main_wwu h2{
  font-size: 30px;
  text-align: center;
}

.apply-steps span{
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-steps h3{
  font-size: var(--font-3xl);
  text-align: center;
}

 .talent_pool_area{
  background: url("../img/bg-home.webp") no-repeat center center;
    background-size: cover;
 }

 .talent_pool_area small{
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .talent_pool_area h3{
  color: var(--color-white);
 }

 .talent_pool_area p{
  color: var(--color-white);
 }



 .grl-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/contact_bg_header.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 0;
  color: white;
  overflow: hidden;
}

/* Overlay */
.grl-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.grl-header .container {
  position: relative;
  z-index: 1;
}

.grl-header h1{
  text-align: center;
}

.grl-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container{
  background-color: #f7f7f7;
  padding: 30px 10px;
}


.col1_img{
  display: none;
}

.mav-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/contact_bg_header.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 0;
  color: white;
  overflow: hidden;
}

/* Overlay */
.mav-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.mav-header .container {
  position: relative;
  z-index: 1;
}

.mav-header h1{
  text-align: center;
}

.mav-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}


/*CORE VALUES*/
.core-values-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/core-values.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0;
  color: white;
  overflow: hidden;
}

.core-values-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.core-values-header .container {
  position: relative;
  z-index: 1;
}

.core-values-header h1{
  text-align: center;
}

.core-values-header .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}



.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem !important;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

