* {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  box-sizing: border-box;
  
}
 html {

}

body {
  min-height:100vh;
  overflow-x: hidden;
  background-color: var(--ax-bg);
}

/* inicio contacto */
.titulo-principal{
  font-weight: 600;
  color: var(--ax-color-title);
}

.imagen-disenio-1{
  width: 100%;  
}
.contacto img{
  height: 200px;
}

/* Global skin CSS for page footer and basic variables */
:root{
  --ax-bg:#050A14; /* dark navy background - adjust to palette */
  --ax-bg-btn:#0F1A2A;
  --ax-bg-input:#111D30;
  --ax-bg-btn-text:#2563EB;
  --ax-color-title:#4A9EFF;
  --ax-accent:#2f6dff; /* primary accent blue */
  --ax-accent-2:#1ea7a4; /* secondary accent */
  --ax-muted:#9aa6b2; /* muted text */
  --ax-text:#dfe9f3; /* main text */
  --ax-footer-padding:18px;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* Optional: import fonts (change to your preferred fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* Footer styles */
.ax-footer{
  background: linear-gradient(180deg,var(--ax-bg), #030814 60%);
  color:var(--ax-text);
  padding:var(--ax-footer-padding) 20px;
  font-family:var(--font-sans);
}
.ax-footer .container{max-width:1200px;margin:0 auto;display:flex;gap:40px;align-items:flex-start;justify-content:space-between}
.ax-footer .col{min-width:160px}
.ax-footer .logo{flex:0 0 180px}
.ax-footer .strategic{flex:1}
.ax-footer .contact{flex:0 0 260px}
.ax-footer .follow{flex:0 0 180px}
.ax-footer img{display:block;width:100%;max-width:160px;height:auto;margin-bottom:12px;object-fit:contain}
.ax-footer h4{color:var(--ax-accent);margin:0 0 12px;font-size:14px;letter-spacing:1px}
.ax-footer p, .ax-footer a, .ax-footer li{color:var(--ax-muted);margin:6px 0;font-size:14px}
.ax-footer .contact{line-height:1.6}
.ax-footer .social{display:flex;gap:12px;margin-top:8px}
.ax-footer .social a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,0.06);color:var(--ax-text);text-decoration:none}
.ax-footer .social a:hover{background:rgba(47,109,255,0.06);border-color:rgba(47,109,255,0.18)}

/* Strategic column specific styling: white text */
.ax-footer .strategic h4,.ax-footer .strategic .strategic-txt{color:#ffffff}
.ax-footer .strategic .strategic-title{font-size:16px;margin-bottom:8px}
.ax-footer .copyright{opacity:0.6;text-align:center;font-size:13px}

/* Responsive */
@media (max-width:900px){
  .ax-footer .container{flex-direction:column;align-items:center;text-align:center;gap:20px}
  .ax-footer .col{width:100%}
  .ax-footer .logo{order:0;display:flex;justify-content:center;flex:0 0 auto}
  .ax-footer img{margin:0 auto;max-width:120px}
  .ax-footer .social{justify-content:center}
}

/* Utility */
.ax-footer .muted{color:var(--ax-muted)}

/* Small tweak for very small devices: scale captcha if used inside footer */
.ax-footer .g-recaptcha{transform-origin:0 0}


.ax-nav{border-bottom:0;position:relative;z-index:999}
.ax-nav .ax-inner{position:relative;max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:14px 20px;gap:12px;border-bottom:0.01px solid var(--ax-accent);background-color:transparent}
.ax-nav .logo img{height:48px;display:block}
.ax-nav .nav-links{list-style:none;margin:0 auto;padding:0;display:flex;gap:28px;align-items:center}
.ax-nav .nav-links li{white-space:nowrap}
.ax-nav .nav-links a{color:#cfe6ff;text-decoration:none;font-weight:500;opacity:0.95;transition:color .18s ease}
.ax-nav .nav-links a:hover{opacity:60}
/* Active nav link color */
.ax-nav .nav-links a.active,
.ax-nav .nav-links a[aria-current="page"] {
    color: var(--ax-accent) !important;
}
/* Ensure open/mobile menu keeps default color for non-active links */
.ax-nav .nav-links.open a:not(.active){
    color: #cfe6ff;
}
.ax-nav .cta{background:var(--ax-bg-btn);color:var(--ax-color-title);padding:10px 18px;border-radius:4px;text-decoration:none;font-weight:600;display:inline-flex;align-items:center;gap:10px;box-shadow:0 4px 16px rgba(15,78,168,0.18);position:absolute;right:24px;top:40px;z-index:1000;min-width:0}
.ax-nav .cta .arrow{display:inline-block;transform:translateX(2px);}
.ax-nav .cta img{max-width:100%;height:auto;display:block}
.ax-nav .nav-links{transform:translateX(-120px)}
/* Hamburger */
.ax-toggle{display:none;background:transparent;border:0;padding:8px;cursor:pointer;height:36px}
.ax-toggle .bar{display:block;width:22px;height:2px;background:#cfe6ff;margin:3px 0;border-radius:2px;transition:transform .25s ease,opacity .25s ease}

/* Mobile behavior */
@media(max-width:800px){
    .ax-toggle{display:flex;flex-direction:column;align-items:center}
    .ax-nav .ax-inner{flex-wrap:wrap}
    /* Remove horizontal margin on small screens */
    .ax-nav .ax-inner{margin:0}
    /* Make menu drop below the nav and center it */
    .ax-nav .nav-links{display:none;position:absolute;top:calc(100% + 1px);left:50%;transform:translateX(-50%);width:auto;max-width:800px;flex-direction:column;gap:12px;padding:12px 16px;box-shadow:0 8px 20px rgba(0,0,0,0.06);border-radius:4px;align-items:center;z-index:1050}
    .ax-nav .nav-links.open{display:flex !important;flex-direction:column;width: 100vh;align-items:center;justify-content:center; background-color:var(--ax-bg);border:1px solid rgba(255,255,255,0.06)}
    /* When menu opens, push CTA a bit lower for spacing */
    .ax-nav .cta.menu-open{top:250px}
    /* Keep CTA fixed on mobile but don't let it grow; move it slightly lower */
    .ax-nav .cta{order:3;width:auto;justify-content:center;margin-top:0;position:absolute;right:16px;top:120px;z-index:1100;padding:10px 14px;font-size:14px}
    .ax-nav .logo{order:1}
    .ax-toggle{order:2}
    /* Slightly smaller logo on narrow screens */
    .ax-nav .logo img{height:40px}
}

/* Desktop: fix CTA to the right and slightly lower */
@media(min-width:801px){
    .ax-nav .cta{position:absolute;right:0px;top:54px;z-index:1000}
}
@media(min-width:801px) and (max-width:1200px){
    .ax-nav .ax-inner{margin:0 16px}

    /* Slightly shift nav links to the left on medium viewports (not on small/mobile) */
    .ax-nav .nav-links{transform:translateX(-100px)}
}

/* Banner principal extends behind transparent nav */
.slider-principal{position:relative;overflow:visible;margin-top:-80px}
.slider-principal .carousel-item{position:relative;min-height:calc(70vh + 80px)}
.fondo-imagen-principal{position:absolute;top:-1px;width:100%;height:100vh;z-index:0;overflow:hidden}
.fondo-imagen-principal img{width:100%;height:100%;object-fit:cover;display:block}
/* Banner text overlay container (supports HTML: h2, p) */
.banner-text{position:absolute;left:100px;bottom:530px;background-color: transparent;color:var(--ax-text);z-index:12;max-width:40%;font-family:var(--font-sans);text-shadow:0 6px 18px rgba(0,0,0,0.45)}
.banner-text h2{margin:0 0 8px;background-color: transparent;font-size:clamp(100px,2.4vw,36px);line-height:1.05;font-weight:1400;color:var(--ax-color-title)}
.banner-text p{margin:0;font-size:clamp(30px,1.4vw,18px);background-color: transparent;line-height:1.4;display:inline-block;padding:8px 12px;border-radius:6px;}
.banner-text a{color:var(--ax-bg-btn-text);text-decoration:underline}

/* Rotator for multiple H2 inside .banner-text: show one at a time with fade */
.banner-text{position:relative}
.banner-text.rotator{min-height:3.6rem}
.banner-text.rotator h2{position:absolute;left:0;top:-90px;width:100%;opacity:0;transform:translateY(8px);transition:opacity .6s ease, transform .6s ease;pointer-events:none}
.banner-text.rotator h2.active{opacity:1;transform:translateY(0);pointer-events:auto}
.banner-text.rotator h2:not(.active){visibility:hidden}
.banner-content{background-color:transparent;}banner-btn
/* responsive image wrapper: hidden on desktop, shown on small screens */
.fondo-imagen-responsive{position:absolute;left:0;top:100px;width:100%;height:calc(50vh + 60px);z-index:0;overflow:hidden;display:none}
.fondo-imagen-responsive img{width:100%;height:100%;object-fit:cover;display:block;display:none}
/* hide banner text inside responsive wrapper on desktop; show only under 800px */
.fondo-imagen-responsive .banner-text{display:none}
.banner-btn a { text-decoration: none; }   
.banner-btn .arrow, .banner-btn .arrow i {
    background-color: transparent !important;
}
.cta .arrow, .cta .arrow i  {
    background-color: transparent !important;
}
.bct {background: var(--ax-color-title); color: var(--ax-text) !important;padding:10px 16px;border-radius:6px;text-decoration:none;display:inline-block;margin-right:8px}
.dow { background: var(--ax-bg-btn);color: var(--ax-color-title) !important;padding:10px 16px;border-radius:6px;text-decoration:none;display:inline-block}
.banner-btn{display:flex;gap:12px;margin-top:12px;align-items:center;z-index:13; background-color:transparent}

.about-section {
position: relative;
}

/* Texto pequeño superior */
.mini-title {
    font-size: 24px;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 30px;
    color: var(--ax-color-title);
}


.mini-title {
    position: relative;
    display: inline-block;
    font-weight: 400;
    padding-bottom: 12px;
}

/* Primera palabra */
.mini-title strong {
    font-weight: 700;    
    font-size: 28px;
}

/* Línea completa */
.mini-title::before {
    content: "";
    position: absolute;
    left: -100vw;
    bottom: 0;
    width: calc(100vw + 100%);
    height: 1px;
    background: var(--ax-color-title);
}

/* Parte gruesa al final */
.mini-title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 15px;
    height: 3px;
    background: var(--ax-color-title);
    border-radius: 5px;
}


/* Título principal */
.about-title {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    margin: 0;
    max-width: 520px;
    color: var(--ax-text);
    text-align: right;
}

/* Contenido derecho */
.about-content {
    padding-left: 40px;
    border-left: 1px solid rgba(255,255,255,0.3);
    color: var(--ax-muted);
}

.about-content p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 520px;
}

/* Botón */
.read-more {
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;    
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    width: fit-content;
    text-decoration: none;
    gap: 10px;
    color: var(--ax-color-title);
}


.read-more .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) and (max-height: 700px) {

    .banner-text{bottom:360px !important;background-color: transparent;color:var(--ax-text);z-index:12;max-width:40%;font-family:var(--font-sans);text-shadow:0 6px 18px rgba(0,0,0,0.45)}
    .banner-text h2{margin:0 0 8px;background-color: transparent;font-size:clamp(130px,2.4vw,26px);line-height:1.05;font-weight:1300;color:var(--ax-color-title)}
}

@media (max-width: 1200px) and (max-height: 1400px) {

     .banner-text{bottom:700px;background-color: transparent;color:var(--ax-text);z-index:12;max-width:40%;font-family:var(--font-sans);text-shadow:0 6px 18px rgba(0,0,0,0.45)}
    .banner-text h2{margin:0 0 8px;background-color: transparent;font-size:clamp(90px,2.4vw,12px);line-height:1.05;font-weight:1300;color:var(--ax-color-title)}
    .banner-text.rotator h2{top: -40px!important;}
}
@media (max-width: 1200px) and (max-height: 1000px) {

     .banner-text{bottom:560px;background-color: transparent;color:var(--ax-text);z-index:12;max-width:40%;font-family:var(--font-sans);text-shadow:0 6px 18px rgba(0,0,0,0.45)}
    .banner-text h2{margin:0 0 8px;background-color: transparent;font-size:clamp(100px,2.4vw,26px);line-height:1.05;font-weight:1300;color:var(--ax-color-title)}
}

@media (max-width:450px) and (max-height:900px){
    
}

/* Tablets */
@media (max-width: 991px) {

    .about-title {
        font-size: 54px;
        max-width: 100%;
        
    text-align: left;
    }

    .about-content {
        padding-left: 25px;
         border-left: none;
    }

    .about-content p {
        font-size: 20px;
    }
}

/* Móviles */
@media (max-width: 767px) {

    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .mini-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mini-title strong {
        font-size: 22px;
    }

    .about-title {
        font-size: 42px;
        line-height: 1.1;
    }

    .about-content {
        border-left: none;
        padding-left: 0;
        margin-top: 30px;
    }

    .about-content p {
        font-size: 18px;
        line-height: 1.6;
    }

    .read-more {
        font-size: 18px;
    }

    .read-more span {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .about-title {
        font-size: 34px;
    }    

    .about-content p {
        font-size: 16px;
    }
}
@media (max-width: 380px) {

    .fondo-imagen-responsive{height:calc(53vh + 60px)!important;}
}


  /* responsive banner and header */
    @media(max-width:800px){
      .fondo-imagen-responsive{display:block;position:relative;top:0;height:calc(40vh + 60px)}
      .fondo-imagen-responsive .banner-text{display:block;position:absolute;left:16px;bottom:20px;z-index:12}
      .fondo-imagen-responsive img{display:block}
      .banner-text{left:16px;bottom:40px;max-width:90%}
      .banner-text h2{font-size:clamp(48px,6vw,32px)}
      .banner-text.rotator {padding-top:6px}
      .banner-text p{font-size:14px;padding:6px 10px;line-height:1.3}
      .banner-btn{margin-top:10px;display:flex;gap:8px}
      .slider-principal{margin-top:-60px}
      .slider-principal .carousel-item{min-height:calc(40vh + 60px)}
      .fondo-imagen-principal{display:none}
      .fondo-imagen-responsive .banner-text{position:absolute;left:16px;bottom:20px;z-index:12}
      .fondo-imagen-responsive .banner-btn{margin-top:6px;font-size:11px}
      .banner-text.rotator h2{top: -40px!important;}
      .banner-text.rotator {top:210px;}      
    }
     @media(max-width:1300px){
      .banner-text{max-width:61%;bottom:470px;}
      .banner-text.rotator h2{top: -60px!important;}

     }
     @media(max-width:1100px){
      .banner-text{max-width:70%;bottom:800px;}
    }

    @media(max-width:1100px) and (max-height:1300px){        
      .banner-text {bottom:630px!important;}
    }

     
    @media(max-width:940px){
    .banner-text{max-width:80%;}
    }

    @media(max-width:801px) and (max-height:1300px){
    .slider-principal .carousel-item{min-height:calc(40vh + 125px)}    
    }

     @media (max-width: 980px) and (max-height: 450px){

        .fondo-imagen-principal{
                min-height:calc(40vh + 400px);
        }

        .banner-text h2{font-size:clamp(48px,6vw,22px); top: -40px!important;}
        .banner-text p{font-size:22px;padding:6px 10px;line-height:1.3}
        .slider-principal .carousel-item{min-height:calc(60vh + 120px)}
        .fondo-imagen-responsive{height:calc(60vh + 320px)!important;}
        
    }

    @media(max-width:662px){
    .banner-text.rotator h2{top:0px;}
    }

  
/* our services */

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    overflow: hidden;
    position: relative;
    /* IMAGEN DE FONDO */
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-color: transparent;
    color: var(--ax-text);
}

/* =========================================
   LEFT CONTENT
========================================= */


.services-title {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 30px;
}

.choose-text {
    font-size: 15px;
    display: block;
    margin-bottom: 15px;
    color: var(--ax-color-title);
}
.services-row{
  background-color: transparent;
}

/* =========================================
   DOTS
========================================= */

.services-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255,255,255,0.35);
    transition: 0.3s ease;
}

.services-dots .dot.active {
    background: var(--ax-color-title);
    transform: scale(1.15);
}

/* =========================================
   SLIDER
========================================= */

.services-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.services-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.services-slider.dragging {
    cursor: grabbing;
    transition: none !important;
}

/* =========================================
   CARD
========================================= */

.service-card {
    min-width: calc(50% - 13px);
    border-radius: 20px;
    padding:  35px 35px 35px 0px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
    user-select: none;
}

/* =========================================
   IMAGE
========================================= */

.service-image {
    width: 170px;
    min-width: 170px;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.service-image img {
    width: 100%;
    max-width: 170px;
    object-fit: contain;
    display: block;
    background-color: transparent;
}

/* =========================================
   CONTENT
========================================= */

.service-content {
    width: 100%;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--ax-color-title);
}

/* About Mission/Vision specific styles */
.about-mv-card {
    padding: 24px;
    border-radius: 16px;
}
.about-mv-card .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 12px;
}
.about-mv-card .service-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
    color: var(--ax-color-title);
}
.about-mv-card .service-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ax-muted);
    max-width: 520px;
}

@media (max-width: 991px) {
    .about-mv-card {
        padding: 18px;
    }
    .about-mv-card .service-content h3 {
        font-size: 20px;
    }
    .about-mv-card .service-content p {
        font-size: 15px;
        padding: 0 8px;
    }
}

.service-content ul {
    margin: 0 0 28px 18px;
    padding: 0;
}

.service-content ul li {
    font-size: 17px;
    line-height: 1.6;

    margin-bottom: 8px;
}

/* =========================================
   LINK
========================================= */

.service-link {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--ax-color-title);
}

.service-link span {
    font-size: 22px;
    line-height: 1;
}

/* =========================================
   BOTTOM IMAGE
========================================= */

.services-bottom-image {
    margin-top: 80px;

    width: 100%;
}

.services-bottom-image img {
    width: 100%;
    display: block;

    border-radius: 24px;

    object-fit: cover;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1400px) {
    .services-title {
        font-size: 42px;
    }
}

@media (max-width: 1199px) {

    .services-title {
        font-size: 42px;
    }

    .service-card {
        padding:  24px 24px 24px 0px;
    }

    .service-image {
        width: 140px;
        min-width: 140px;
    }
}

@media (max-width: 991px) {

    .services-title {
        font-size: 42px;
    }

    .service-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .services-bottom-image {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {

    .services-title {
        font-size: 34px;
        line-height: 1.1;
    }

    .service-card {
        padding:  24px 24px 24px 0px;    
    }

    .service-image {
        width: 120px;
        min-width: 120px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content ul li {
        font-size: 15px;
    }

    .service-link {
        font-size: 15px;
    }

    .services-bottom-image {
        margin-top: 45px;
    }

    .services-bottom-image img {
        border-radius: 18px;
    }
}

@media (max-width: 480px) {

    .services-title {
        font-size: 30px;
    }

    .service-image {
        width: 95px;
        min-width: 95px;
    }

    .service-content h3 {
        font-size: 21px;
    }
}
/* Intro centering and h2 width limit */
.intro-center {
    text-align: center;
}
.intro-center h2.services-title {
    max-width: 520px;
    margin: 0 auto;
    display: block;
    width: 100%;
}
.intro-center p {
    margin: 0 auto;
    text-align: center;
    padding: 0.5rem 1rem;
    color: var(--ax-muted);
}
@media (max-width: 767px) {
    .intro-center h2.services-title {
        max-width: 100%;
        padding: 0 12px;
        font-size: clamp(20px, 6vw, 34px);
    }
    .intro-center p {
        padding: 0 14px;
        font-size: 15px;
    }
}

/* our approach*/
/* =========================================
   APPROACH SECTION
========================================= */

.approach-section {
    position: relative;
    overflow: hidden;
    color: var(--ax-text);
}

/* =========================================
   TITLE
========================================= */



/* =========================================
   PROCESS WRAPPER
========================================= */

.approach-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

/* =========================================
   ITEM
========================================= */

.approach-item {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   TOP & BOTTOM TEXT
========================================= */

.approach-text {
    font-size: 18px;
    line-height: 1.45;
    text-align: center;

    min-height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0.9;
}

.top-empty,
.bottom-empty {
    visibility: hidden;
}

/* =========================================
   CIRCLE
========================================= */

.approach-circle-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.approach-circle-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    object-fit: contain;
}

.circle-rotate {
     transform: rotateX(180deg);
}

.circle-normal {
    transform:  translateY(15px);
}

/* =========================================
   CONTENT INSIDE CIRCLE
========================================= */

.approach-circle-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.approach-circle-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.approach-circle-content .step-number{
  color: var(--ax-color-title);
}

/* =========================================
   ICON
========================================= */

.step-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

/* =========================================
   ARROWS
========================================= */

.approach-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.approach-arrow .arrow {
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .approach-process {
        gap: 10px;
    }

    .approach-item {
        width: 220px;
    }

    .approach-circle-wrapper {
        width: 210px;
        height: 210px;
    }

    .step-number {
        font-size: 42px;
    }

    .approach-circle-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 991px) {

    .approach-process {
        flex-direction: column;
        gap: 25px;
    }

    .approach-arrow {
        margin: 0;
    }

    .approach-arrow .arrow i {
        transform: rotate(90deg);
    }

    .approach-item {
        width: 100%;
        max-width: 360px;
    }

    .approach-text {
        min-height: auto;
        margin-bottom: 20px;
        color: var(--ax-muted);
    }

    .top-empty,
    .bottom-empty {
        display: none;
    }

    .bottom-text {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {

    .approach-circle-wrapper {
        width: 180px;
        height: 180px;
    }

    .step-number {
        font-size: 34px;
    }

    .approach-circle-content h3 {
        font-size: 22px;
    }

    .step-icon {
        width: 42px;
        height: 42px;
    }

    .approach-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .approach-circle-wrapper {
        width: 160px;
        height: 160px;
    }

    .step-number {
        font-size: 30px;
    }

    .approach-circle-content h3 {
        font-size: 20px;
    }
}

/* =========================================
   SERVICES CARDS GRID
========================================= */
.services-cards-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
}
.services-cards-grid .service-card {
    min-width: 0; /* override slider min-width */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
}
.services-cards-grid .service-image {
    width: 140px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-cards-grid .service-image img {
    max-width: 140px;
    object-fit: contain;
}
.services-cards-grid .service-content h3 {
    text-align: left;
}

@media (max-width: 1199px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    .services-cards-grid .service-card {
        flex-direction: row;
        gap: 16px;
    }
    .services-cards-grid .service-image {
        width: 95px;
        min-width: 95px;
    }
    .services-cards-grid .service-image img {
        max-width: 95px;
    }
}

/*contact us*/

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    color: var(--ax-text);
    overflow: hidden;
}

/* =========================================
   LEFT SIDE
========================================= */

.contact-left {
    text-align: center;
}

.contact-left h2 {
    font-size: 42px;
    line-height: 1.05;
    font-weight: 400;

    margin-bottom: 40px;
}

.contact-left p {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.85;
}

/* =========================================
   FORM
========================================= */

.contact-form-wrapper {
    border-left: 1px solid rgba(255,255,255,0.2);

    padding-left: 30px;
    padding-right: 30px;
}

.contact-input {
    height: 72px;

    background: var(--ax-bg-input) !important;

    border: none !important;

    border-radius: 14px !important;

    padding: 20px 24px !important;

    font-size: 20px !important;

    box-shadow: none !important;
    color: var(--ax-text) !important;
}



.contact-textarea {
    height: 170px !important;

    resize: none;
}
.captcha-row{
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================
   BUTTON
========================================= */

.contact-btn {
    min-width: 210px;
    height: 64px;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--ax-color-title);
    color: var(--ax-text);
    margin: auto;
    font-size: 28px;
    font-weight: 600;
    padding: 0 30px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-btn .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* =========================================
   RIGHT INFO
========================================= */

.contact-info {
    border-left: 1px solid rgba(255,255,255,0.2);

    padding-left: 20px;
}

.contact-info h3 {
    font-size: 52px;
    margin-bottom: 18px;
    color: var(--ax-color-title);
}

.contact-info h4 {
    font-size: 30px;
    font-weight: 700;

    margin-bottom: 10px;
}

.contact-description {
    font-size: 20px;
    line-height: 1.45;

    margin-bottom: 30px;
}

/* =========================================
   CONTACT ITEM
========================================= */

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 20px;
}

.contact-icon {
    width: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.contact-item span {
    font-size: 20px;
}

/* ICONOS CONTACTO */
.contact-icon {
    width: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 100%;
    max-width: 28px;

    object-fit: contain;
    display: block;
}

/* ICONOS SOCIALES */
.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition: 0.3s ease;
}

.contact-social a img {
    width: 34px;
    height: 34px;

    object-fit: contain;
    display: block;
}

.contact-social a:hover {
    transform: translateY(-3px);
}

/* =========================================
   SOCIAL
========================================= */

.contact-social {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: 35px;
}

.contact-social a {
    font-size: 38px;

    text-decoration: none;

    transition: 0.3s ease;
}

.contact-social a:hover {
    transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .contact-left h2 {
        font-size: 42px;
    }

    .contact-info h3 {
        font-size: 32px;
    }

    .contact-info h4 {
        font-size: 24px;
    }

    .contact-input {
        font-size: 18px !important;
    }
}

@media (max-width: 991px) {

    .contact-left {
        text-align: left;
    }

    .contact-left h2 {
        font-size: 44px;
    }

    .contact-form-wrapper {
        border-left: none;

        padding-left: 0;
        padding-right: 0;
    }

    .contact-info {
        border-left: none;

        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .contact-left h2 {
        font-size: 34px;
    }

    .contact-left p {
        font-size: 17px;
    }

    .contact-input {
        height: 60px;

        font-size: 16px !important;
    }

    .contact-textarea {
        height: 140px !important;
    }

    .contact-btn {
        width: 50%;
        font-size: 22px;
    }

    .contact-info h3 {
        font-size: 34px;
    }

    .contact-info h4 {
        font-size: 22px;
    }

    .contact-description {
        font-size: 17px;
    }

    .contact-item span {
        font-size: 16px;
    }

    .contact-social a {
        font-size: 30px;
    }
}