

/*
Author: Xpeedstudio
Author URI: http://xpeedstudio.com
*/

/*==========================================
 01.  PREDIFINEED (FROM 1 TO 780 )
 02.  PRELOADER - LINE NO 786
 03.  NAVIGATION - LINE NO 930
 04.  HOME - LINE NO 1150
 05.  THU FEATURE - LINE NO 1280
 06.  THU FLIDE - LINE NO 1355
 07.  THU SERVICE - LINE NO 1385
 08.  PORTFOLIO - LINE NO 1444
 09.  THU SOLUTION - LINE NO 1620
 10.  THU TEAM - LINE NO 1658
 11.  THU CLIENTS FEEDBACK - LINE NO 1730
 12. THU BLOG - LINE NO 1848
 13. THU SUBCRIBS - LINE NO 1935
 14. FOOTER - LINE NO 2020
==========================================*/




/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html,
body {
    font-size: 14px;
    color: #797979;
    width: 100%;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    font-weight: 400;
    width:100%;
    font-family: 'Raleway', sans-serif;
}

/*------------------------------------------------------------------*/
/*   IE10 in Windows 8 and Windows Phone 8 Bug fix
/*-----------------------------------------------------------------*/

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }





/*
    Page Content
------------------------------------------*/

.page-content, 
section { overflow: hidden; }

/*
    On Scroll Animations 
------------------------------------------*/

/*.animated { visibility: hidden; }
.visible { visibility: visible; }*/

/*
    Spacing & Alignment 
------------------------------------------*/


/* ===================================
   SECCIÓN DE BENEFICIOS
=================================== */

.beneficios{
    position:relative;
    z-index:10;

    width:100%;
    padding:75px 25px;

    background:
        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #ffffff 50%,
            #eef3fa 100%
        );
}

.beneficios-contenedor{
    width:100%;
    max-width:1300px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

/* Tarjetas */

.beneficio-card{
    position:relative;
    overflow:hidden;

    min-height:270px;
    padding:38px 32px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    background:#ffffff;

    border:1px solid rgba(6, 38, 95, 0.08);
    border-radius:22px;

    box-shadow:
        0 18px 45px rgba(0, 30, 80, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Línea decorativa superior */

.beneficio-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(
        90deg,
        #f4bd00,
        #ffd84c
    );
}

/* Fondo decorativo */

.beneficio-card::after{
    content:"";

    position:absolute;
    right:-60px;
    bottom:-60px;

    width:150px;
    height:150px;

    border-radius:50%;

    background:rgba(6, 38, 95, 0.04);

    transition:transform 0.4s ease;
}

.beneficio-card:hover{
    transform:translateY(-10px);

    border-color:rgba(244, 189, 0, 0.4);

    box-shadow:
        0 25px 55px rgba(0, 30, 80, 0.17);
}

.beneficio-card:hover::after{
    transform:scale(1.4);
}

/* Iconos */

.beneficio-icono{
    position:relative;
    z-index:2;

    width:72px;
    height:72px;
    margin-bottom:25px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#00256C;
    color:#ffffff;

    border-radius:20px;

    font-size:32px;

    box-shadow:
        0 12px 24px rgba(6, 38, 95, 0.25);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.beneficio-card:hover .beneficio-icono{
    background:#f4bd00;
    color:#00256C;
    transform:rotate(-5deg) scale(1.08);
}

/* Contenido */

.beneficio-contenido{
    position:relative;
    z-index:2;
}

.beneficio-contenido span{
    display:block;
    margin-bottom:8px;

    color:#d9a900;

    font-size:12px;
    font-weight:900;
    letter-spacing:1.5px;
}

.beneficio-contenido h3{
    margin:0 0 14px;

    color:#00256C;

    font-size:25px;
    font-weight:900;
    line-height:1.1;
}

.beneficio-contenido p{
    margin:0;

    color:#677285;

    font-size:16px;
    line-height:1.65;
}


/* ===================================
   TABLET
=================================== */

@media (max-width:1000px){

    .beneficios-contenedor{
        grid-template-columns:repeat(2, 1fr);
    }

    .beneficio-card:last-child{
        grid-column:1 / -1;
    }

}


/* ===================================
   CELULAR
=================================== */

@media (max-width:768px){

    .beneficios{
        padding:55px 18px;
    }

    .beneficios-contenedor{
        grid-template-columns:1fr;
        gap:20px;
    }

    .beneficio-card,
    .beneficio-card:last-child{
        grid-column:auto;
    }

    .beneficio-card{
        min-height:auto;
        padding:30px 25px;

        align-items:center;
        text-align:center;
    }

    .beneficio-icono{
        width:65px;
        height:65px;
        margin-bottom:20px;

        font-size:28px;
    }

    .beneficio-contenido h3{
        font-size:23px;
    }

    .beneficio-contenido p{
        font-size:15px;
    }

}


html{
    scrollbar-width:thin;
    scrollbar-color:#f4bd00 #00256C;
}

::-webkit-scrollbar{
    width:9px;
}

::-webkit-scrollbar-track{
    background:#00256C;
}

::-webkit-scrollbar-thumb{
    background:#f4bd00;
    border-radius:10px;
    border:2px solid #00256C;
}

::-webkit-scrollbar-thumb:hover{
    background:#ffffff;
}

/*=============================
        HEADER
=============================*/

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 50px;

    background: transparent;
    transition: .35s;
    z-index: 9999;
}
.header.scrolled{
    background: #00256C;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

.logo img{
    height:40px;
    transition:.3s;
}

.header.scrolled .logo img{
    height:40px;
}


/*=============================
      BOTON MENU
=============================*/


.logo{
    order: 2;
    margin-left: auto;
}

.logo img{
    height: 50px;
}

@media (max-width:768px){

    .logo img{
        height:40px;
    }

}
.menu-btn{
    display:block;
    background:none;
    border:none;
    color:white;
    font-size:22px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    order:1;
}
.menu-btn:hover{

    color:#00D2FF;

}

/*=============================
      MENU LATERAL
=============================*/

.side-menu{

    position:fixed;

    top:0;

    left:-350px;

    width:320px;

    height:100%;

    background:white;

    z-index:10001;

    transition:.4s;

    padding:35px;

    overflow:auto;

}

.side-menu.active{

    left:0;

}

/*=============================
      FONDO OSCURO
=============================*/

.menu-overlay{

    position:fixed;

    width:100%;

    height:100%;

    left:0;

    top:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:10000;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/*=============================
      CABECERA MENU
=============================*/

.menu-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.menu-top h2{

    color:#00256C;

    margin:0;

    font-weight:700;

}

.menu-top span{

    font-size:28px;

    cursor:pointer;

}

/*=============================
      OPCIONES
=============================*/

.side-menu ul{

    list-style:none;

    padding:0;

    margin:0;

}

.side-menu ul li{

    margin:18px 0;

}

.side-menu ul li a{

    color:#333;

    text-decoration:none;

    font-size:20px;

    transition:.3s;

}

.side-menu ul li a:hover{

    color:#00256C;

}

/*=============================
      CONTACTO
=============================*/

.menu-contacto{

    margin-top:45px;

    border-top:1px solid #ddd;

    padding-top:30px;

}

.menu-contacto a{

    display:block;

    color:#555;

    margin-bottom:18px;

    text-decoration:none;

    transition:.3s;

}

.menu-contacto a:hover{

    color:#00256C;

}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}
/* Contenedor de todas las diapositivas */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Cada producto */
.hero-slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;
    z-index: 0;

    transition: opacity 0.7s ease;
}

.slide-producto-1 {
    background-image: url("../images/fondo.png");
}

.slide-producto-2 {
    background-image: url("../images/fondo1.png");
}

.slide-producto-3 {
    background-image: url("../images/fondo2.png");
}

/* Producto visible */
.hero-slide.activo {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 1300px;
    height: 100%;
    margin: auto;
}

.hero-text {
    position: relative;
    width: 100%;
    height: 100%;

    color: white;
    z-index: 5;
}

.categoria {
    position: absolute;
    top: 25%;
    left: 50%;

    display: block;

    color: white;
    font-size: clamp(18px, 1.7vw, 27px);
    font-weight: 700;
    white-space: nowrap;

    transform: translateX(-50%);
}

.hero-titulo {
    position: absolute;
    top: 30%;
    left: 50%;

    width: 100%;
    margin: 0;

    color: white;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    white-space: nowrap;

    transform: translateX(-50%);
}

.hero-precio {
    position: absolute;
    top: 51%;
    left: 18%;
}

.precio-titulo {
    margin: 0 0 5px;

    color: white;
    font-size: 27px;
    font-weight: 300;
}

.precio {
    margin-bottom: 25px;

    color: white;
    font-size: 60px;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -4px;
}

.btn-cotizar {
    display: inline-block;
    padding: 9px 23px;

    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;

    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    background-color: transparent;
    transition: 0.3s;
}

.btn-cotizar:hover {
    color: white;
    border-color: white;
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-producto {
    position: absolute;
    right: 5%;
    bottom: 0;

    width: 40%;
    max-width: 520px;

    z-index: 2;
}

.hero-producto img {
    display: block;
    width: 100%;
    max-height: 580px;
    object-fit: contain;
}

@media (max-width: 768px) {

    .hero {
        height: 750px;
        min-height: 750px;
    }

    .hero-content {
        height: 100%;
    }

    .categoria {
        top: 17%;
        width: 90%;

        font-size: 14px;
        text-align: center;
        white-space: normal;
    }

    .hero-titulo {
        top: 22%;
        width: 90%;

        font-size: 40px;
        line-height: 1.05;
        white-space: normal;
    }

    .hero-precio{
    position:absolute !important;

    top:45% !important;
    left:50% !important;

    width:100% !important;

    transform:translateX(-50%) !important;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center !important;
}

.precio-titulo{
    width:100%;
    text-align:center !important;
}

.precio{
    width:100%;
    text-align:center !important;
}

.btn-cotizar{
    margin:0 auto;
}

    .hero-titulo{

    width:90%;

    left:50%;

    top:24%;

    transform:translateX(-50%);

    text-align:center;

    font-size:52px;
}

.carousel-flecha{

    top:62%;
}
    .precio {
        margin: 8px 0 20px;

        font-size: 50px;
        letter-spacing: -2px;
    }

    .hero-producto{

    position:absolute;

    left:50%;
    right:auto;

    bottom:20px;

    width:90%;
    max-width:360px;

    transform:translateX(-50%);
}


.hero-producto{

    left:50% !important;
    right:auto !important;

    transform:translateX(-50%) !important;

}

    .hero-producto img {
        max-height: 320px;
    }

    .carousel-flecha {
        top: 52%;

        width: 38px;
        height: 60px;

        font-size: 30px;
    }

    .carousel-indicadores {
        bottom: 12px;
    }

    .btn-cotizar{

    display:inline-flex;

    justify-content:center;
    align-items:center;
}

}



/* Estado inicial de los elementos */
.hero-slide .categoria,
.hero-slide .hero-titulo,
.hero-slide .hero-precio,
.hero-slide .hero-producto {
    opacity: 0;
}

/* Texto pequeño */
.hero-slide.activo .categoria {
    animation: aparecerCategoria 0.7s ease forwards;
}

/* Título principal */
.hero-slide.activo .hero-titulo {
    animation: aparecerTitulo 0.8s ease 0.2s forwards;
}

/* Precio y botón */
.hero-slide.activo .hero-precio {
    animation: aparecerPrecio 0.8s ease 0.45s forwards;
}

/* Imagen del equipo */
.hero-slide.activo .hero-producto {
    animation: aparecerProducto 1s ease 0.3s forwards;
}

.hero,
.hero-carousel {
    background-color: #00256c;
}

@keyframes aparecerCategoria {

    from {
        opacity: 0;
        transform: translate(-50%, -25px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }

}

@keyframes aparecerTitulo {

    from {
        opacity: 0;
        transform: translate(-50%, 35px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }

}

@keyframes aparecerPrecio {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes aparecerProducto {

    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}


.carousel-flecha {
    position: absolute;
    top: 55%;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 75px;
    padding: 0;

    border: none;

    color: white;
    font-size: 42px;
    font-weight: 300;

    background-color: transparent;
    cursor: pointer;

    transform: translateY(-50%);
    transition: 0.3s;
}

.carousel-flecha:hover {
    color: #00d9ff;
    background-color: rgba(0, 0, 0, 0.15);
}

.carousel-anterior {
    left: 5px;
}

.carousel-siguiente {
    right: 5px;
}

.carousel-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;

    z-index: 20;

    display: flex;
    gap: 10px;

    transform: translateX(-50%);
}

.carousel-punto {
    width: 11px;
    height: 11px;
    padding: 0;

    border: 1px solid white;
    border-radius: 50%;

    background-color: transparent;
    cursor: pointer;

    transition: 0.3s;
}

.carousel-punto.activo {
    background-color: white;
    transform: scale(1.2);
}

.custom-navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:20px 50px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    transition:.35s;

    background:transparent;

    z-index:9999;

}

.custom-navbar.scrolled{

    background:#00256C;

    box-shadow:0 4px 15px rgba(0,0,0,.25);

    padding:15px 50px;

}

.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    line-height: 60px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    transition: .3s;
}

.whatsapp-float:hover{
    background:#20ba5a;
    color:#fff;
    transform: scale(1.1);
    text-decoration:none;
}

.doble-carrusel{
    display: flex;
    justify-content: space-between;
    gap: 30px;

    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.carrusel{
    width: 48%;
}

.carrusel img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.doble-carrusel{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.carrusel{
    width: 48%;
}

.carrusel img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}


/* VERSION MOVIL */
@media (max-width: 768px){

    .doble-carrusel{
        flex-direction: column;
        align-items: center;
    }

    .carrusel{
        width: 100%;
        margin-bottom: 30px;
    }

    .carrusel img{
        height: auto;
    }

}

.business_item{
    text-align: center;
}

.titulo-productos{
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 30px;
}

.lista-productos{
    list-style: none;
    padding: 0;
}

.lista-productos li{
    font-size: 24px;
    margin: 15px 0;
}

.navbar-top a{
    color: rgb(255, 255, 255) !important;
}

.navbar-top i{
    color: rgb(255, 255, 255) !important;
}

.contacto-section{
    background: #f5f9ff;
    padding: 80px 0;
}

.contacto-box{
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
}

.contacto-titulo{
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.form-group{
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea{
    width: 100%;
    padding: 15px;
    border: 2px solid #dbeafe;
    border-radius: 10px;
    font-size: 18px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color: #2563eb;
}

.btn-contacto{
    width: 100%;
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 18px;
    font-size: 20px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-contacto:hover{
    background: #2563eb;
}

/* ===================================
   PRODUCTOS MÁS VENDIDOS
=================================== */

.productos-vendidos{
    width:100%;
    padding:90px 20px;
    background:#f5f7fb;
    overflow:hidden;
}

.productos-vendidos-contenedor{
    width:100%;
    max-width:1300px;
    margin:0 auto;
}

.productos-vendidos-encabezado{
    text-align:center;
    margin-bottom:45px;
}

.productos-vendidos-encabezado span{
    display:block;
    margin-bottom:8px;

    color:#f4bd00;
    font-size:15px;
    font-weight:800;
    letter-spacing:2px;
}

.productos-vendidos-encabezado h2{
    margin:0;

    color:#06265f;
    font-size:clamp(34px, 5vw, 58px);
    font-weight:900;
    line-height:1;
    text-transform:uppercase;
}

/* Estructura del carrusel */

.productos-carrusel{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
}

.productos-ventana{
    width:100%;
    overflow:hidden;
    padding:10px 5px 25px;
}

.productos-track{
    display:flex;
    transition:transform 0.6s ease;
    will-change:transform;
}

/* Tres productos en computadora */

.producto-card{
    flex:0 0 33.333333%;
    padding:0 12px;
    box-sizing:border-box;
}

.producto-card > img{
    display:block;
    width:100%;
    aspect-ratio:2 / 3;
    object-fit:cover;

    border-radius:20px 20px 0 0;
}

/* Información inferior */

.producto-card-info{
    padding:22px;

    background:#ffffff;
    border-radius:0 0 20px 20px;
    box-shadow:0 12px 30px rgba(0,24,70,.12);

    display:flex;
    justify-content:center;
    align-items:center;
}


.producto-boton{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:46px;
    padding:10px 24px;

    background:#f4bd00;
    color:#06265f;

    border-radius:8px;

    font-size:14px;
    font-weight:900;
    text-decoration:none;
    text-transform:uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.producto-boton:hover{
    background:#06265f;
    color:#ffffff;
    transform:translateY(-3px);
}

/* Flechas */

.productos-flecha{
    position:relative;
    z-index:5;

    flex:0 0 48px;
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;

    background:#06265f;
    color:#ffffff;

    font-size:24px;
    cursor:pointer;

    box-shadow:0 8px 20px rgba(0, 24, 70, 0.22);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.productos-flecha:hover{
    background:#f4bd00;
    color:#06265f;
    transform:scale(1.08);
}

.productos-flecha:disabled{
    opacity:0.4;
    cursor:not-allowed;
    transform:none;
}

/* Indicadores */

.productos-indicadores{
    display:flex;
    justify-content:center;
    gap:9px;
    margin-top:15px;
}

.productos-punto{
    width:10px;
    height:10px;

    padding:0;
    border:none;
    border-radius:50%;

    background:#b8c0cc;
    cursor:pointer;

    transition:all 0.3s ease;
}

.productos-punto.activo{
    width:28px;
    border-radius:10px;
    background:#f4bd00;
}


/* ===================================
   TABLET
=================================== */

@media (max-width:1000px){

    /* Dos productos en tablet */
    .producto-card{
        flex-basis:50%;
    }

}


/* ===================================
   CELULAR
=================================== */

@media (max-width:768px){

    .productos-vendidos{
        padding:65px 10px;
    }

    .productos-vendidos-encabezado{
        margin-bottom:30px;
    }

    .productos-vendidos-encabezado h2{
        font-size:36px;
    }

    .productos-carrusel{
        gap:0;
    }

    /* Un producto en teléfono */
    .producto-card{
        flex-basis:100%;
        padding:0 8px;
    }

    .producto-card-info{
        min-height:auto;
    }

    .productos-flecha{
        position:absolute;
        top:42%;

        width:42px;
        height:42px;
        flex-basis:42px;

        font-size:20px;

        transform:translateY(-50%);
    }

    .productos-flecha:hover{
        transform:translateY(-50%);
    }

    .productos-anterior{
        left:14px;
    }

    .productos-siguiente{
        right:14px;
    }

}


.widget_ab_item_text a{
    color: white;
    text-decoration: none;
}

.widget_ab_item_text a:hover{
    color: #60a5fa;
}

.widget_about p,
.widget_about h6,
.widget_about a,
.widget_about i{
    color: white !important;
}

.widget_newsletter p,
.widget_newsletter h6,
.widget_newsletter a,
.widget_newsletter i{
    color: white !important;
}

.widget_newsletter .list-inline i{
    font-size: 35px;
    margin-right: 10px;
    transition: 0.3s;
}

.widget_newsletter .list-inline i:hover{
    transform: scale(1.2);
}

.carousel-control i{
    font-size: 40px;
    color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control{
    background: transparent !important;
}

.roomy-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.roomy-80 {
    padding-top: 100px;
    padding-bottom: 80px;
}

.roomy-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.roomy-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.roomy-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.roomy-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}


/*text color*/

.text-muted{}
.text-primary{color: #00a885 !important;;}
.text-finence{color:#13A0B2 !important;;}
.text-mega{color:#00a885 !important;;}
.text-white{color:#fff !important;;}
.text-black{color:#000 !important;}
.text-warning{}
.text-danger{}
.disabled{
    cursor: not-allowed;
}

/*bacground color*/
.lightbg {
    background-color: #f2f2f2;
}
.bg-primary{background-color: #00a885;}
.bg-finence{background-color:#13A0B2;}
.bg-mega{background-color:#1b1b1b;}
.bg-grey{background-color: #f5f5f5;}
.bg-black{background-color: #222222;}
.bg-white{background-color: #fff;}
.bg-blue{background-color: #00256C}

img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -user-select: none;
    -webkit-user-drag: none;
    -user-drag: none;
}
a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}
a,
button,
a span {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
a {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn:focus,
.btn:active {
    outline: inherit;
    background-color: transparent;
}
*,
*:before,
*:after {
    box-sizing: border-box;
    /*    direction: rtl;*/
}

p {
    margin: 0 0 15px;
}

.clear {
    clear: both;
}

img {
    max-width: 100%;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    outline: none;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background-color: transparent;
    background-image: none;
    color: rgb(0, 0, 0);
}

.form-control{
    border-radius: 0px;
    border:1px solid #ccc;
    box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
    width: 100%;
    height: 50px;
}

.form-control:focus {
    border-color: #bcefeb;
    outline: 0;
    box-shadow: inset 0 0px 0px rgba(0,0,0,.075),0 0 0px rgba(102,175,233,.6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    color:#1a1a1a;
    margin-bottom: 10px;
}

h1 {
    font-size: 3rem;
    line-height: 4rem;
}
h2 {
    font-size: 2.5rem;
    line-height: 3rem;
}
h3 {
    font-size: 1.500rem;
    line-height: 2rem;
}
h4 {
    font-size: 1.6rem;
    line-height: 2.2rem;
}
h5 {
    font-size: 1.125rem;
    line-height: 1.575rem
}
h6 {
    font-size: 1rem;
}



h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
p span{
    color:#00a885;
}

p {
    line-height: 1.5rem;
}
p:last-child {
    margin-bottom: 0px;
}
/*colors*/
.w100 {
    font-weight: 100;
}

.w200 {
    font-weight: 200;
}

.w300 {
    font-weight: 300;
}

.w400 {
    font-weight: 400;
}

.w500 {
    font-weight: 500;
}

.w600 {
    font-weight: 600;
}

.w700 {
    font-weight: 700;
}

.w800 {
    font-weight: 800;
}


/*
Section
*/

.parallax-section {
    max-width: 100%;
    color: #ffffff;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

/*all overlay*/

.overlay {
    background-color: rgba(41, 39, 34, 0.50);
    width: 100%;
    height:100%;
    position: absolute;
    left:0;
    top: 0;
}


.no-padding {
    padding: 0 !important;
    margin:0 !important;
}
.left-no-padding {
    padding-left: 0 !important;
}
.right-no-padding {
    padding-right: 0 !important;
}
.fluid-blocks-col {
    padding: 70px 40px 0 80px;
}
.fluid-blocks-col-right {
    padding: 70px 80px 0 40px;
}


/*
Separator
*/
.separator_left{
    width:85px;
    height:2px;
    margin:20px 0px;
    background: #00a885;
}
.separator_auto{
    width:85px;
    height:2px;
    margin:20px auto;
    background: #00a885;
}
.separator_small{
    width:30px;
    height:2px;
    margin:20px 0px;
    background: #00a885;
}

/*
Button
*/
.btn{
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    font-size:14px;
    font-weight: 600;
    border:1px solid;
    padding: 1rem 4rem;
}
.btn-primary{
    color: #fff;
    background-color: #00256C;
    border:1px solid;
    border-color: #00a885;

}
.btn-primary:hover{
    background-color: #eee;
    border-color: #eee;
    color:#00a885;
}

.btn-default{
    color: #fff;
    background-color: transparent;
    border:1px solid;
    border-color: #b6b6b6;
}
.btn-default:hover{
    color: #fff;
    background-color: #00a885;
    border-color: #00a885;
}


/*
socail icon
--------------------------------*/
/*
Extra height css
*/
.m-0{
    margin:0 !important;
}
.m-top-0{
    margin-top:0;
}
.m-r-0{
    margin-right: 0;
}
.m-l-0{
    margin-left: 0;
}
.m-b-0{
    margin-bottom: 0;
}

.m-r-15{
    margin-right: 15px;
}
.m-l-15{
    margin-left: 15px; 
}
.m-top-10 {
    margin-top: 10px;
}
.m-top-20 {
    margin-top: 20px;
}
.m-top-30 {
    margin-top: 30px;
}
.m-top-40 {
    margin-top: 40px;
}
.m-top-50 {
    margin-top: 50px;
}
.m-top-60 {
    margin-top: 60px;
}
.m-top-70 {
    margin-top: 70px;
}
.m-top-80 {
    margin-top: 80px;
}
.m-top-90 {
    margin-top: 90px;
}
.m-top-100 {
    margin-top: 100px;
}
.m-top-110 {
    margin-top: 110px;
}
.m-top-120 {
    margin-top: 120px;
}

.m-t-b-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}
.m-t-b-120 {
    margin-top: 120px;
    margin-bottom: 120px;
}

.m-bottom-10 {
    margin-top: 10px;
}

.m-bottom-20 {
    margin-bottom: 20px;
}
.m-bottom-30 {
    margin-bottom: 30px;
}

.m-bottom-40 {
    margin-bottom: 40px;
}

.m-bottom-60 {
    margin-bottom: 60px;
}

.m-bottom-70 {
    margin-bottom: 70px;
}

.m-bottom-80 {
    margin-bottom: 80px;
}

.m-bottom-90 {
    margin-bottom: 90px;
}

.m-bottom-100 {
    margin-bottom: 100px;
}

.m-bottom-110 {
    margin-bottom: 110px;
}

.m-bottom-120 {
    margin-bottom: 120px;
}

.m_t__b{
    margin: 14rem 0;
}
.p_t__b{
    padding: 6rem 0;
}

p-0{
    padding:0 !important;
}

.p-l-15{
    padding-left: 15px;
}

.p-r-15{
    padding-right: 15px;
}

.p-top-10 {
    padding-top: 10px;
}
.p-top-20 {
    padding-top: 1.33rem;
}

.p-bottom-20 {
    padding-bottom: 1.33rem;
}

.p-top-30 {
    padding-top: 1.875rem;
}

.p-bottom-30 {
    padding-bottom: 1.875rem;
}

.p-top-40 {
    padding-top: 2.66rem;
}

.p-bottom-40 {
    padding-bottom: 2.66rem;
}

.p-top-60 {
    padding-top: 5rem;
}

.p-bottom-60 {
    padding-bottom: 5rem;
}

.p-top-80 {
    padding-top: 5.714rem;
}

.p-bottom-80 {
    padding-bottom: 5.714rem;
}

.p-top-90 {
    padding-top: 6.429rem;
}

.p-bottom-90 {
    padding-bottom: 6.429rem;
}
.p-top-100 {
    padding-top: 100px;
}

.p-bottom-100 {
    padding-bottom: 100px;
}
.p-top-110 {
    padding-top: 110px;
}

.p-bottom-110 {
    padding-bottom: 110px;
}

.p-bottom-0 {
    padding-bottom: 0;
}

.p_l_r{
    padding-left: 5.714rem;
    padding-right: 5.714rem;
}

/*padding*/
.padding-twenty {
    padding: 10px 0;
}
.padding-fourty {
    padding: 20px 0;
}
.padding-sixty {
    padding: 30px 0;
}
.padding-eighty {
    padding: 40px 0;
}

/*border*/
.no-border-top{
    border-top:0px solid transparent !important;
}
.no-border-rigth{
    border-right:0px solid transparent !important;
}

/*for placeholder changes*/

input[type="email"].form-control::-webkit-input-placeholder {
    color: #797979;
    background-color: transparent;
}

input::-webkit-input-placeholder ,
input::-moz-placeholder ,
input:-ms-input-placeholder ,
input::placeholder ,
input::-webkit-input-placeholder ,
input::-moz-placeholder ,
input::-ms-input-placeholder {
    color: #cdcdcd;
}
textarea::-webkit-input-placeholder,
textarea::-moz-input-placeholder,
textarea::-ms-input-placeholder{
    color: #cdcdcd;
    padding: 5px;
}

.transform_scal_rotate:hover img{ 
    -webkit-transform: scale(1.1) rotate(4deg); 
    transform: scale(1.1) rotate(4deg); 
}

.culmn{
    width:100%;
    overflow: hidden;
}
.fix{
    overflow: hidden;
}
/*heading title all area*/
.head_title{
    padding-bottom: 2.143rem;
    overflow: hidden;
}
.head_title h2{
    font-weight: 700;
    font-size:2.250rem;
}
.head_title h5{
    font-weight: 400;
    font-size:1.125rem;
    color:#999999;
}

/*End off pridifain css*/



/*Preloader*/
#loading{
    background-color: #00256C;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    left:0;
    z-index: 9999;
}
#loading-center{
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 50px;
    width: 50px;
    margin-top: -25px;
    margin-left: -25px;
    -ms-transform: rotate(45deg); 
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); 
    -webkit-animation: loading-center-absolute 1.5s infinite;
    animation: loading-center-absolute 1.5s infinite;

}
.object{
    width: 25px;
    height: 25px;
    background-color: #FFF;
    float: left;

}


#object_one {
    -webkit-animation: object_one 1.5s infinite;
    animation: object_one 1.5s infinite;
}
#object_two {
    -webkit-animation: object_two 1.5s infinite;
    animation: object_two 1.5s infinite;
}
#object_three {
    -webkit-animation: object_three 1.5s infinite;
    animation: object_three 1.5s infinite;
}
#object_four {
    -webkit-animation: object_four 1.5s infinite;
    animation: object_four 1.5s infinite;
}


@-webkit-keyframes loading-center-absolute {
    100% { -webkit-transform: rotate(-45deg); }

}

@keyframes loading-center-absolute {
    100% { 
        transform:  rotate(-45deg);
        -webkit-transform:  rotate(-45deg);
    }
}



@-webkit-keyframes object_one {
    25% { -webkit-transform: translate(0,-50px) rotate(-180deg); }
    100% { -webkit-transform: translate(0,0) rotate(-180deg); }

}

@keyframes object_one {
    25% { 
        transform: translate(0,-50px) rotate(-180deg);
        -webkit-transform: translate(0,-50px) rotate(-180deg);
    } 
    100% { 
        transform: translate(0,0) rotate(-180deg);
        -webkit-transform: translate(0,0) rotate(-180deg);
    }
}


@-webkit-keyframes object_two {
    25% { -webkit-transform: translate(50px,0) rotate(-180deg); }
    100% { -webkit-transform: translate(0,0) rotate(-180deg); }
}

@keyframes object_two {
    25% { 
        transform: translate(50px,0) rotate(-180deg);
        -webkit-transform: translate(50px,0) rotate(-180deg);
    } 
    100% { 
        transform: translate(0,0) rotate(-180deg);
        -webkit-transform: translate(0,0) rotate(-180deg);
    }
}

@-webkit-keyframes object_three {
    25% { -webkit-transform: translate(-50px,0) rotate(-180deg); }
    100% { -webkit-transform: translate(0,0) rotate(-180deg); }
}

@keyframes object_three {
    25% { 
        transform:  translate(-50px,0) rotate(-180deg);
        -webkit-transform:  translate(-50px,0) rotate(-180deg);
    } 
    100% { 
        transform: translate(0,0) rotate(-180deg);
        -webkit-transform: rtranslate(0,0) rotate(-180deg);
    }
}


@-webkit-keyframes object_four {
    25% { -webkit-transform: translate(0,50px) rotate(-180deg); }
    100% { -webkit-transform: translate(0,0) rotate(-180deg); }
}

@keyframes object_four {
    25% { 
        transform: translate(0,50px) rotate(-180deg); 
        -webkit-transform: translate(0,50px) rotate(-180deg);  
    } 
    100% { 
        transform: translate(0,0) rotate(-180deg);
        -webkit-transform: translate(0,0) rotate(-180deg);
    }
}
/*End off Preloader*/


/*
Nav Menu style
==================*/

.navbar-brand {
    padding: 25px 15px;
}
.navbar-brand > img {
    height: 80px;
    width: auto;
}



.navbar-callus li a{
    font-size:14px;
    padding: 10px;
    color:#444444;
    display: inline-block;
}
.navbar-callus li a i{
    font-size:13px;
    color:#1abc9c;
    margin-right: 5px;
}


.carruseles-verticales{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:60px;
}

.carrusel{
    width:600px;
    max-width:100%;
    text-align:center;
}

.carrusel img{
    width:100%;
    height:auto;
}

.btn-container{
    margin-top:20px;
}

.btn-container .btn{
    padding:12px 30px;
}

.carrusel-titulo{
    color: #00256C; /* Azul */
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

html {
    scroll-behavior: smooth;
}

.imagen-hover{
    position: relative;
    overflow: hidden;
}

.imagen-hover img{
    width: 100%;
    display: block;
    transition: all 0.4s ease;
}

.texto-hover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,123,255,0.85);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: all 0.4s ease;

    text-align: center;
    color: white;
    padding: 20px;
}

.imagen-hover:hover img{
    filter: blur(4px);
    transform: scale(1.05);
}

.imagen-hover:hover .texto-hover{
    opacity: 1;
}

.carousel-control{
    z-index: 1000;
}


.custom-navbar{

    background:#00256C;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 50px;

    min-height:90px;

}

.navbar-logo img{

    width:150px;

}

.navbar-contacto{

    display:flex;

    align-items:center;

    gap:25px;

    flex:1;

    justify-content:center;

}

.navbar-contacto a{

    color:#fff;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}

.navbar-contacto a:hover{

    color:#00C3FF;

}

.navbar-contacto i{

    margin-right:6px;

}

.navbar-menu{

    display:flex;

    list-style:none;

    margin:0;

    padding:0;

    gap:35px;

}

.navbar-menu li a{

    color:#fff;

    text-decoration:none;

    font-size:20px;

    font-weight:500;

    transition:.3s;

}

.navbar-menu li a:hover{

    color:#00C3FF;

}

@media(max-width:991px){

.navbar-contacto{

    display:none;

}

}

.navbar-socail li a{
    font-size:16px;
    padding: 10px;
    color:#aaaaaa;
    display: inline-block;
}
.navbar-socail li a:hover{
    background-color: #3765a3;
    color:#fff;
}

/* ===== NAVBAR ===== */

.custom-navbar{
    background-color: #00256C;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
}

/* ===== LOGO ===== */

.navbar-logo{
    height: 80px;
    width: auto;
}

/* ===== MENÚ PC ===== */

.navbar-menu{
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* Links */
.navbar-menu li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Hover */
.navbar-menu li a:hover{
    color: #d6d6d6;
}

/* ===== BOTÓN ===== */

.menu-toggle{
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* ===== CHECKBOX OCULTO ===== */

#menu-toggle{
    display: none;
}

/* ===== BOTÓN ===== */



/* ===== BOTÓN ===== */

.menu-toggle{
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    user-select: none;
}
/* ===== TELÉFONO ===== */

@media (max-width: 768px){

    /* Navbar vertical */
    .custom-navbar{
        flex-direction: column;
        align-items: center;
    }

     /* Mostrar botón */
    .menu-toggle{
        display: block;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    /* Menú oculto */
    .navbar-menu{
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 15px;
        gap: 15px;
    }

    /* Mostrar menú */
    .navbar-menu.active{
        display: flex;
    }
}


/* ===== SECCIÓN ===== */

.about-section{
    padding: 60px 10%;
    background-color: #f5f5f5;
}

/* ===== TÍTULO ===== */

.about-title{
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #00256C;
}

/* ===== CONTENEDOR ===== */

.about-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* ===== TEXTO ===== */

.about-text{
    width: 50%;
}

.about-text p{
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

/* ===== IMAGEN ===== */

.about-image{
    width: 50%;
}

.about-image img{
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px){

    .about-container{
        flex-direction: column;
    }

    .about-text,
    .about-image{
        width: 100%;
    }

    .about-title{
        font-size: 32px;
    }

}

/*
Home Section style
==================*/

.home{
    background: url(../images/1.png) no-repeat scroll  center center;
    background-size: cover;
    position: relative;
    padding-top: 300px;
    padding-bottom: 190px;
    width:100%;
}
.main_home .home_text h2{
    font-size:36px;
    font-weight: 400;
}
.main_home .home_text h1{
    font-size:48px;
    font-weight: 700;
}
.main_home .home_text h3{
    font-size:24px;
    font-weight: 400;
}
.main_home .slick-dots li button::before {
    font-family: slick;
    font-size: 8px;
    line-height: 7px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 10px;
    height: 10px;
    content: "";
    text-align: center;
    opacity: 0.9;
    color: white;
    border:1px solid #fff;
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
}
.main_home .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}
.main_home .slick-dots li.slick-active button:before{
    opacity: 1;
    background-color: #00a885;
}
.main_home .slick-dots{
    bottom: -200px;
}

.work_container .slick-arrow ,
.main_home .slick-arrow{
    font-size:3rem;
    color:#fff;
    top:30%;
    position: absolute;
    z-index: 90;
    cursor: pointer;  
}
.main_home .nextprevleft{
    left:-3%;
}
.main_home .nextprevright{
    right:-3%;
}
.home_btns{
    margin-left:-10px;
}
.home_btns a{
    margin-left:10px;
}


/* ===== CONTENEDOR ===== */

.carousel-container{
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
}

/* ===== SLIDES ===== */

.carousel-slide{
    display: none;
}

.carousel-slide img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* ===== EFECTO ===== */

.fade{
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect{
    from{
        opacity: 0.4;
    }

    to{
        opacity: 1;
    }
}

/* ===== BOTONES ===== */

.prev,
.next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 50%;
}

/* Izquierda */
.prev{
    left: 15px;
}

/* Derecha */
.next{
    right: 15px;
}

/* Hover */
.prev:hover,
.next:hover{
    background-color: rgba(0,0,0,0.8);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px){

    .carousel-slide img{
        height: 300px;
    }

}



/*
Featured section style
========================*/

.features_item .f_item_icon{
    float: left;
    width:15%;
    display: inline-block;
    margin-right: 15px;
}
.features_item .f_item_icon i{
    font-size:4rem;
    color:#00256C;
}
.features_item .f_item_text{
    display: inline-block;
    width:75%;
}
.features_item .f_item_text p{
    font-size:14px;
}

/*Business Section*/
.main_business{}
.business_item{}
.business_item h2{
    font-size:26px;
    font-weight: 800;
}
.business_item li{
    font-size:18px;
    font-weight: 300;
    line-height: 2rem;
}
.business_item li i{
    font-size:12px;
    margin-right: 5px;

}

.business_img img{
    width: 80%;
    max-width: 700px;
    height: auto;
    margin: auto;
}
.business_item p{
    color:#333333;
    line-height: 2rem;
    font-size:14px;
    font-weight: 500;
}
.business_item .business_btn{
    margin-left:-10px;
}
.business_item .business_btn a{
    margin-left:10px;
}
.business_item .business_btn .btn-default{
    color:#444444;
}


.slid_shap{
    height: 40px;
    border-radius: 4px 4px 0px 0px;
    width:100%;
}
.business_slid {
    box-shadow: 0px 0px 8px -1px;
    border-radius: 4px 4px 0px 0px;
}

.business_slid .business_items{
    background-color: #fff;
    margin: 0;
}

.business_slid .slick-arrow{
    position: absolute;
    top:29%;
    z-index: 1;
    cursor:pointer;
    width:30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size:20px;
    transition: all 0.6s;
    color:#fff;
}
.business_slid .nextprevleft{
    left:5.9%;
}
.business_slid .nextprevright{
    right:6%;
}
.business_slid .nextprevleft:hover,
.business_slid .nextprevright:hover{
    /*    width:25px;
        height: 25px;
        line-height: 25px;*/
    /*text-align: center;*/
    background-color: #ddd;
    border-radius: 50%;
}

.business_slid .slick-dots {
    position: absolute;
    top: -36px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}



/*
work Section style
=====================*/

/*.slides{
    width:100%;
    height: auto;
}*/
/*#owl-demo .item{
    width:350px;
    height:350px;
}
#owl-demo .item img{
    display: block;
    width: 100%;
    height: 300px;
}*/



.main_product .carousel-control{
    background-color: #fff;
    color:#333;
    border-radius: 50%;
    width:50px;
    height: 50px;
    line-height: 50px;
    font-size:1rem;
    text-align: center;
    top:30%;
}
.main_product .carousel-control:hover{
    background-color: #00a885;
    color:#fff;
}
.main_product .carousel-control.left{
    left:-1.4%;
    box-shadow: -1px 0px 0px 0px;
}
.main_product .carousel-control.right {
    right:-1.4%;
    box-shadow: 1px 0px 0px 0px;
}

.main_product .port_img{
    position: relative;
    overflow: hidden;
}

.main_product .port_img img{
    width:100%;
}
.main_product .port_overlay{
    width:100%;
    height: 100%;
    background-color: rgba(0,168,133,0.60);
    position: absolute;
    left:0;
    top:0;
    padding-top: 35%;
    opacity: 0;
    transition: all 0.2s;
}
.main_product .port_overlay a{
    width:40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    color:#fff;
    border:1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    font-size:2rem;
    bottom: -150px;
    position: relative;
}
.main_product .port_img:hover .port_overlay a{
    bottom:0;
}
.main_product .port_img:hover .port_overlay{
    opacity: 1;
}




/*Test Section
======================*/
.main_test{
    width: 100%;
    display: block;
}
.test_item{
    padding: 40px;
    transition: all 0.6s;
    border:1px solid transparent;
}
.test_item:hover{
    border:1px solid #ddd;
    background-color: #fff;
}
.test_item:hover .item_img i{
    color:#fff;
    background-color: #00a885;
}

.main_test .item_img{
    float: left;
    display: inline-block;
    width:20%;
    margin-right: 10%;
}
.main_test .item_text{
    display: inline-block;
    width:70%;
}
.item_img{
    position: relative;
}
.item_img i{
    background-color: #fff;
    position: absolute;
    right: -25%;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ddd;
    border-radius: 50%;
    box-shadow: 1px 0px 0px 0px #ddd;
}





/*call to action
=========================*/

.action_btn .btn-default:hover{
    background-color: #fff;
    color:#00a885;
}
.action-lage{
    position: relative;
    width:100%;

}
.action-lage:before{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #00a885;
    left:50%;
    top:0%;
    z-index: 3;
    margin-left:-15px;

}



/* ===================================
   FOOTER
=================================== */

.footer{
    width:100%;
    padding:70px 25px 0;

    background:#111116;
    color:#9696a5;
}

.footer-contenedor{
    width:100%;
    max-width:1300px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1.05fr 1fr 0.9fr 1.25fr;
    gap:65px;
}

/* COLUMNAS */

.footer-columna{
    min-width:0;
}

.footer-columna h3{
    margin:0 0 28px;

    color:#f3f3ff;

    font-size:25px;
    font-weight:800;
    line-height:1.1;
}

.footer-columna a{
    display:block;
    width:max-content;
    max-width:100%;

    margin-bottom:16px;

    color:#9696a5;

    font-size:16px;
    line-height:1.5;
    text-decoration:none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-columna a:hover{
    color:#f4bd00;
    transform:translateX(4px);
}

.footer-columna p{
    margin:30px 0 0;

    color:#9696a5;

    font-size:16px;
    line-height:1.65;
}

/* LOGO */

.footer-logo{
    display:block;

    width:100%;
    max-width:270px;
    height:auto;
}

/* REDES SOCIALES */

.footer-redes{
    display:flex;
    align-items:center;
    gap:12px;

    margin-top:35px;
}

.footer-redes a{
    width:54px;
    height:54px;
    margin:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,0.28);
    border-radius:50%;

    color:#ffffff;

    font-size:20px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-redes a:hover{
    background:#f4bd00;
    border-color:#f4bd00;
    color:#06265f;

    transform:translateY(-4px);
}

/* HORARIO */
.footer-horario{
    margin-bottom:28px;
}



.footer-horario p{
    margin:0;

    color:#9696a5;

    font-size:15px;
    line-height:1.7;
}
/* MAPA */

.footer-mapa-contenedor{
    width:100%;
    height:310px;

    overflow:hidden;

    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
}

.footer-mapa-contenedor iframe{
    display:block;

    width:100%;
    height:100%;

    border:0;
}

/* PARTE INFERIOR */

.footer-inferior{
    width:100%;
    max-width:1300px;
    margin:55px auto 0;
    padding:25px 0;

    border-top:1px solid rgba(255,255,255,0.10);
}

.footer-inferior p{
    margin:0;

    color:#777785;

    font-size:14px;
}


/* ===================================
   TABLET
=================================== */

@media (max-width:1050px){

    .footer-contenedor{
        grid-template-columns:repeat(2, 1fr);
        gap:50px;
    }

}


/* ===================================
   CELULAR
=================================== */

@media (max-width:768px){

    .footer{
        padding:55px 20px 0;
    }

    .footer-contenedor{
        grid-template-columns:1fr;
        gap:45px;
    }

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

    .footer-logo{
        max-width:230px;
    }

    .footer-columna h3{
        margin-bottom:20px;
        font-size:23px;
    }

    .footer-mapa-contenedor{
        height:250px;
    }

    .footer-inferior{
        margin-top:40px;
        text-align:center;
    }

}


/* ==================================
   WIDGET DE WHATSAPP
================================== */

.whatsapp-widget{
    position:fixed;
    right:24px;
    bottom:24px;

    z-index:9999;

    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:16px;
}

/* Ventana */

.whatsapp-widget{
    position:fixed;
    right:24px;
    bottom:24px;

    z-index:9999;
}

.whatsapp-panel{
    position:absolute;
    right:0;
    bottom:78px;

    width:370px;

    overflow:hidden;

    background:#f4fbf7;
    border-radius:24px;

    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.25);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transform:
        translateY(25px)
        scale(0.96);

    transform-origin:bottom right;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.whatsapp-panel.activo{
    opacity:1;
    visibility:visible;
    pointer-events:auto;

    transform:
        translateY(0)
        scale(1);
}

/* Encabezado */

.whatsapp-header{
    min-height:78px;
    padding:16px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:#00256C;
    color:#ffffff;
}

.whatsapp-header-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.whatsapp-header-info > i{
    font-size:34px;
}

.whatsapp-header-info div{
    display:flex;
    flex-direction:column;
}

.whatsapp-header-info strong{
    font-size:18px;
    line-height:1.2;
}

.whatsapp-header-info span{
    margin-top:3px;

    font-size:13px;
    opacity:0.8;
}

.whatsapp-cerrar{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,0.15);
    color:#ffffff;

    font-size:18px;
    cursor:pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.whatsapp-cerrar:hover{
    background:#f4bd00;
    color:#00256C;

    transform:rotate(90deg);
}

/* Contenido */

.whatsapp-contenido{
    min-height:185px;
    padding:22px;

    display:flex;
    align-items:flex-start;

    background:
        linear-gradient(
            rgba(244,251,247,0.94),
            rgba(244,251,247,0.94)
        );
}

.whatsapp-mensaje{
    position:relative;

    width:100%;
    padding:18px 20px;

    background:#ffffff;

    border-radius:5px 18px 18px 18px;

    box-shadow:
        0 6px 16px rgba(0,0,0,0.10);

    color:#39404b;
}

/* Pico de la burbuja */

.whatsapp-mensaje::before{
    content:"";

    position:absolute;
    top:0;
    left:-12px;

    width:0;
    height:0;

    border-top:14px solid #ffffff;
    border-left:14px solid transparent;
}

.whatsapp-mensaje p{
    margin:0 0 10px;

    font-size:15px;
    line-height:1.55;
}

.whatsapp-mensaje p:last-of-type{
    margin-bottom:12px;
}

.whatsapp-saludo{
    color:#00256C;
    font-weight:800;
}

.whatsapp-mensaje span{
    display:block;

    color:#8b929c;

    font-size:12px;
}

/* Parte inferior */

.whatsapp-footer{
    padding:0 22px 22px;

    display:flex;
    justify-content:flex-end;

    background:#f4fbf7;
}

.whatsapp-abrir{
    min-height:52px;
    padding:12px 22px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:#25d366;
    color:#ffffff;

    border-radius:28px;

    font-size:16px;
    font-weight:800;
    text-decoration:none;

    box-shadow:
        0 8px 18px rgba(37, 211, 102, 0.28);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.whatsapp-abrir:hover{
    background:#1fbd5b;
    transform:translateY(-3px);
}

.whatsapp-abrir i{
    font-size:20px;
}

/* Botón flotante */

.whatsapp-boton{
    min-width:62px;
    height:62px;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border:none;
    border-radius:32px;

    background:#25d366;
    color:#ffffff;

    font-size:17px;
    font-weight:800;

    cursor:pointer;

    box-shadow:
        0 10px 28px rgba(37,211,102,0.34);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.whatsapp-boton i{
    font-size:29px;
}

.whatsapp-boton:hover{
    background:#1fbd5b;

    transform:translateY(-4px);

    box-shadow:
        0 15px 34px rgba(37,211,102,0.40);
}


/* ==================================
   CELULAR
================================== */

@media (max-width:768px){

    .whatsapp-widget{
        right:14px;
        bottom:16px;

        left:14px;

        align-items:flex-end;
    }

    .whatsapp-panel{
        width:100%;
        max-width:390px;
    }

    .whatsapp-boton{
        width:60px;
        min-width:60px;
        height:60px;

        padding:0;

        border-radius:50%;
    }

    .whatsapp-boton span{
        display:none;
    }

}


/* ==================================
   SECCIÓN DE LOGOS DE EQUIPOS
================================== */

.logos-equipos{
    position:relative;
    width:100%;
    padding:65px 20px;
    background:#ffffff;
}

.logos-equipos__contenedor{
    width:100%;
    max-width:1170px;
    margin:0 auto;
}

.logos-equipos__lista{
    display:grid;
    grid-template-columns:repeat(6, minmax(0, 1fr));
    align-items:center;
    gap:30px;
}

/* Contenedor individual */

.logo-equipo{
    position:relative;

    min-width:0;
    min-height:80px;
    padding:15px;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* Imagen */

.logo-equipo img{
    display:block;

    width:auto;
    max-width:100%;
    height:30px;

    object-fit:contain;

    -webkit-filter:grayscale(100%);
    filter:grayscale(100%);

    opacity:0.7;

    transition:
        filter 0.4s ease,
        opacity 0.4s ease;
}

/* Recuperar color */

.logo-equipo:hover img{
    -webkit-filter:grayscale(0%);
    filter:grayscale(0%);

    opacity:1;
}

/* Tablet */

@media (max-width:991px){

    .logos-equipos__lista{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:30px 20px;
    }

}


/* Celular */

@media (max-width:575px){

    .logos-equipos{
        padding:45px 15px;
    }

    .logos-equipos__lista{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:25px 15px;
    }

    .logo-equipo{
        min-height:65px;
        padding:10px;
    }

    .logo-equipo img{
        height:26px;
    }

}


/* ==========================================
   CATÁLOGO DE PATINES HIDRÁULICOS
========================================== */

.catalogo-patines{
    width:100%;
    background:#f5f7fb;
    color:#10213d;
}

.catalogo-contenedor{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding-left:24px;
    padding-right:24px;
}


/* ==========================================
   ENCABEZADO
========================================== */

.catalogo-encabezado{
    position:relative;
    overflow:hidden;

    padding:90px 0 85px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(25,82,170,.45),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #031d4b 0%,
            #073478 100%
        );

    color:#ffffff;
}

.catalogo-encabezado::before{
    content:"";

    position:absolute;
    top:-130px;
    right:-130px;

    width:380px;
    height:380px;

    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
}

.catalogo-encabezado::after{
    content:"";

    position:absolute;
    right:70px;
    bottom:-180px;

    width:420px;
    height:420px;

    border:1px solid rgba(255,255,255,.09);
    border-radius:50%;
}

.catalogo-encabezado .catalogo-contenedor{
    position:relative;
    z-index:2;
}

.catalogo-etiqueta{
    display:inline-block;

    margin-bottom:15px;
    padding:8px 16px;

    border:1px solid rgba(255,255,255,.28);
    border-radius:50px;

    background:rgba(255,255,255,.08);

    color:#f4bd00;

    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.catalogo-encabezado h1{
    margin:0 0 18px;

    color:#ffffff;

    font-size:clamp(42px, 6vw, 76px);
    font-weight:900;
    line-height:1;
    letter-spacing:-2px;
    text-transform:uppercase;
}

.catalogo-encabezado p{
    max-width:670px;
    margin:0;

    color:rgba(255,255,255,.82);

    font-size:18px;
    line-height:1.7;
}


/* ==========================================
   ZONA DE PRODUCTOS
========================================== */

.catalogo-productos{
    padding:75px 0 95px;
}

.catalogo-superior{
    margin-bottom:36px;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
}

.catalogo-contador{
    display:block;
    margin-bottom:7px;

    color:#65728a;

    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.catalogo-superior h2{
    margin:0;

    color:#08285e;

    font-size:34px;
    font-weight:900;
    line-height:1.2;
}


/* Buscador */

.catalogo-buscador{
    width:100%;
    max-width:340px;
}

.catalogo-buscador input{
    width:100%;
    min-height:52px;

    padding:13px 20px;

    border:1px solid #d8dfeb;
    border-radius:28px;

    background:#ffffff;
    color:#14213b;

    font-family:inherit;
    font-size:15px;

    outline:none;

    box-shadow:0 7px 22px rgba(11,39,86,.06);

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.catalogo-buscador input:focus{
    border-color:#0b397f;

    box-shadow:
        0 0 0 4px rgba(11,57,127,.10),
        0 8px 24px rgba(11,39,86,.10);
}


/* ==========================================
   CUADRÍCULA
========================================== */

.catalogo-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:34px;
}


/* ==========================================
   TARJETA DEL PRODUCTO
========================================== */

.tarjeta-patin{
    position:relative;

    min-width:0;
    overflow:hidden;

    background:#ffffff;

    border:1px solid rgba(10,45,100,.09);
    border-radius:22px;

    box-shadow:
        0 13px 36px rgba(6,35,85,.09);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.tarjeta-patin:hover{
    transform:translateY(-10px);

    border-color:rgba(15,64,140,.18);

    box-shadow:
        0 24px 48px rgba(6,35,85,.16);
}


/* Imagen */

.tarjeta-patin__imagen{
    position:relative;

    width:100%;
    aspect-ratio:1 / 1;

    overflow:hidden;

    background:#061f55;
}

.tarjeta-patin__imagen::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(3,23,57,.18),
            transparent 40%
        );

    pointer-events:none;
}

.tarjeta-patin__imagen img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}

.tarjeta-patin:hover .tarjeta-patin__imagen img{
    transform:scale(1.045);
}


/* Información */

.tarjeta-patin__contenido{
    padding:25px;
}

.tarjeta-patin__datos{
    margin-bottom:24px;

    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:8px;
}

.dato-equipo{
    min-width:0;

    padding:12px 8px;

    text-align:center;

    background:#f3f6fb;
    border-radius:12px;
}

.dato-equipo span{
    display:block;

    margin-bottom:5px;

    color:#7b8799;

    font-size:11px;
    font-weight:700;
    line-height:1.2;
    text-transform:uppercase;
}

.dato-equipo strong{
    display:block;

    color:#08285e;

    font-size:13px;
    font-weight:800;
    line-height:1.3;
}


/* Botón */

.boton-ver-equipo{
    width:100%;
    min-height:50px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:12px 20px;

    background:#082d68;
    color:#ffffff;

    border:2px solid #082d68;
    border-radius:28px;

    font-size:15px;
    font-weight:800;
    text-decoration:none;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.boton-ver-equipo span{
    font-size:20px;

    transition:transform .3s ease;
}

.boton-ver-equipo:hover{
    background:#f4bd00;
    border-color:#f4bd00;
    color:#08285e;

    transform:translateY(-2px);
}

.boton-ver-equipo:hover span{
    transform:translateX(5px);
}


/* Sin resultados */

.catalogo-sin-resultados{
    display:none;

    margin-top:35px;
    padding:35px;

    background:#ffffff;

    border-radius:18px;

    color:#647087;

    font-size:17px;
    text-align:center;

    box-shadow:
        0 12px 30px rgba(6,35,85,.08);
}

.catalogo-sin-resultados.visible{
    display:block;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .catalogo-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:28px;
    }

    .catalogo-encabezado{
        padding:75px 0;
    }

}


/* ==========================================
   CELULAR
========================================== */

@media (max-width:650px){

    .catalogo-contenedor{
        padding-left:16px;
        padding-right:16px;
    }

    .catalogo-encabezado{
        padding:65px 0;
    }

    .catalogo-encabezado h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .catalogo-encabezado p{
        font-size:16px;
    }

    .catalogo-productos{
        padding:55px 0 75px;
    }

    .catalogo-superior{
        align-items:stretch;
        flex-direction:column;
        gap:22px;
    }

    .catalogo-superior h2{
        font-size:29px;
    }

    .catalogo-buscador{
        max-width:none;
    }

    .catalogo-grid{
        grid-template-columns:1fr;
        gap:26px;
    }

    .tarjeta-patin__contenido{
        padding:20px;
    }

}


/* ==========================================
   CELULARES PEQUEÑOS
========================================== */

@media (max-width:390px){

    .tarjeta-patin__datos{
        grid-template-columns:1fr;
    }

    .dato-equipo{
        display:flex;
        align-items:center;
        justify-content:space-between;

        padding:12px 15px;

        text-align:left;
    }

    .dato-equipo span{
        margin:0;
    }

}