/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'WF Visual Sans,Arial,sans-serif';
    overflow-x: hidden;
    background-color: black;
    font-weight: 600;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

/* Mobile header spacing closer to edges */
@media (max-width: 600px) {
    header { padding: 8px 12px; }
    .logo img { padding: 1rem !important; margin-left: 0rem !important;  } 
    .hamburger { margin-right: .5rem; }

    .ent-text-content h1 {
        font-size: 2.3rem !important;
       
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ajusta el ancho para asegurarte de que se vea bien en todas las pantallas */
    max-width: 1200px;

    
}
/* Estado con blur y fondo translúcido al hacer scroll */
header.blurred {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(10, 10, 10, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 3000;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    background-color: #20bd5a;
}
.whatsapp-float i {
    font-size: 28px;
    line-height: 1;
}
@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float i {
        font-size: 26px;
    }
}

.logo {
    width: 200px; /* Ajusta el tamaño del logo (duplicado 100%) */
    height: auto; 
}

.logo img {
    width: 100%;
    height: auto; /* Asegura que la imagen no se deforme */
    display: block; 
    padding: 1.5rem;
    margin-left: 1.5rem;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: auto;
}

.botonNav {
    color: #fff;
    border-radius: .75rem;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    transition: background-color .25s, color .25s;
    font-weight: 400;
}

.botonNav:hover {
    background-color: rgba(255, 255, 255, 0.14);
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.auth-buttons button {
    padding: 0.25rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5rem;
    cursor: pointer;
}

.login {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 4px;
    width: 25px;
    background-color: #fff;
    margin: 3px 0;
    transition: transform .25s ease, opacity .25s ease;
}

/* Hamburger -> X */
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Media Queries */

@media (max-width: 768px) {
    .logo{ padding: .5rem; }
    /* Overlay fullscreen menu */
    ul.nav-links { display: none; }
    ul.nav-links.active {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.96);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 24px;
        z-index: 3000;
    }
    ul.nav-links.active a {
        color: #fff;
        font-size: 1.5rem;
        text-decoration: none;
    }

    nav {
        position: relative;
    }

    /* Mostrar el ícono de hamburguesa en pantallas pequeñas */
    .hamburger {
        display: flex;
        margin-right: 2.5rem;
        
    }
    body.no-scroll { overflow: hidden; }

    .auth-buttons {
        display: none; /* Puedes ocultar los botones de autenticación o moverlos al menú desplegable si es necesario */
    }

    /* Menú desplegable */
    ul.nav-links.show {
        display: flex;
    }
}
/* Hero Section */
.hero-section1 {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 60%;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 0;
}

.hero-tagline {
    opacity: 1;
    color: #fffc;
    letter-spacing: .7px;
    text-transform: uppercase;
    font-family: DM Mono, sans-serif;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.225rem;
}

.hero-title {
    color: #ffffff;
    letter-spacing: -2px;
    margin: 0 0 1.25rem 0;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.15;
}

.hero-description {
    opacity: 1;
    color: #fffc;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 300;
    line-height:2rem;
    
}

.discover-btn {
    padding: .75rem 1.5rem;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: filter .2s ease, transform .2s ease;
}







/* SECTION 2 */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    background-color: rgb(21, 25, 30);
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1200px;
    color: #fff;
    transition: transform 0.3s ease;
}

.hero-section:hover {
    transform: scale(1.05); /* Efecto zoom cuando se pasa el mouse */
}

.hero-section .content {
    max-width: 60%;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 16px;
    margin-bottom: 30px;
}



/* Accounts Section */
.accounts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-card, .profile-card {
    background-color: transparent;
    padding: 20px;
    border-radius: 1.5rem;
    color: #fff;
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.account-card p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.account-card span {
    color: #9b9b9b;
    font-size: 14px;
}

.profile-card h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.owner-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.owner-info img {
    border-radius: 50%;
}

.owner-info p {
    font-size: 16px;
    font-weight: bold;
}

.owner-info span {
    font-size: 14px;
    color: #9b9b9b;
}




/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
    }

    .hero-section .content {
        max-width: 100%;
        text-align: center;
    }

    .accounts {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .account-card, .profile-card {
        width: 100%;
        max-width: 350px;
    }
}
















/* Añade esto a tu archivo styles.css */

body {
    margin: 0;
    overflow-x: hidden; /* Evitar scroll horizontal */
}

header {
    position: absolute; /* Cambiar a posición absoluta */
    width: 100%;
    transition: top 1.3s ease; /* Suavizar la desaparición */
    z-index: 10; /* Asegúrate de que el header esté por encima del video */
}

.hero-section1 {
    position: relative;
    height: 100vh; /* Asegura que ocupa toda la pantalla */
    overflow: hidden; /* Ocultar el desbordamiento */
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que cubre toda la sección */
    transition: transform 1.3s ease, border-radius 1.3s ease; /* Transiciones suaves */
}

.shrink {
    transform: scale(0.8); /* Reducir tamaño al 60% */
    border-radius: 30px; /* Cambiar el radio de los bordes */
}

.hidden {
    top: -100px; /* Mover el menú hacia arriba */
}

header {
    position: fixed;
    height: auto;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 0;
    z-index: 10;
    transition: backdrop-filter 0.5s ease, background-color 0.5s ease;
}

header.blur {
    backdrop-filter: blur(24px); /* Adjust the blur amount as needed */
    -webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
    
    transition: backdrop-filter 1s ease, -webkit-backdrop-filter 1s ease; /* Transición en 1 segundo */
}

/* Cuando el estado cambia y se aplica el desenfoque */
header.blur.active {
    -webkit-backdrop-filter: blur(24px); /* Aplica el desenfoque */
    backdrop-filter: blur(24px); /* Aplica el desenfoque */
}

.section-container {
    display: flex;
    gap: 20px;
  }
  
  .card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
  }
  
  .card h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #cccccc;
  }
  
  .card h2 {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
  }
  
  .card p {
    font-size: 16px;
    color: #aaaaaa;
  }
  
  .process {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .process-item {
    background-color: #333333;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
  }
  
  .invoice {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    
  }
  
  .invoice-text {
    font-size: 14px;
    color: #bbbbbb;
    text-align: right;
  }
  
  .invoice-amount {
      text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-top: 2rem;
  }
  
  .invoice-status {
    background-color: rgb(30, 65, 25);
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    width: auto;
    display: flex;
    text-align: center;
    margin: auto;
    margin-top: 2rem;
    
  }
  
  .discover-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 14px;
    width: fit-content;
  }
  .products-section {
    text-align: center;
    padding: 50px 0;
    padding-bottom: 0;
    background-color: #ffffff;
    color: #111111;
    margin-top: 5rem;
  }
  
  .products-section h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 10px;
  }
  
  .products-section h1 {
    font-size: 36px;
    font-weight: 600;
    color: #111111;
  }
  .testimonials-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 20px;
    padding: 50px 0;
    background-color: #000;
    width: 60%; /* Ancho del 60% */
    margin: 0 auto; /* Centrar la sección */
}

.testimonial {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 1.5rem;
    text-align: left;
    position: relative;
    
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-author h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 12px;
    color: #ccc;
}

/* Responsive para pantallas medianas */
@media (max-width: 1024px) {
    .testimonials-section {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas para tablets */
        width: 80%; /* Ajustar el ancho en pantallas medianas */
    }
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .testimonials-section {
        grid-template-columns: 1fr; /* 1 columna para móviles */
        width: 90%; /* Ajustar el ancho en pantallas pequeñas */
    }
}


.logos-section {
    overflow: hidden; /* Oculta el contenido que se desborda */
    position: relative;
}

.marquee-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee-logo {
    height: 4rem; /* Ajusta la altura según sea necesario */
    margin: 2rem 4rem; /* Espaciado entre logos */
}

@keyframes scroll {
    0% { transform: translateX(0); } /* Arranca ocupando el ancho */
    100% { transform: translateX(-100%); } /* Recorre hasta salir por la izquierda */
}

.marquee-bottom-train{
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}
.marquee-wrapper{
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    padding-top: 2rem;
    padding-bottom: 1rem;
}
.overflow-hidden{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.logos-section {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff;
}

.logos-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  color: #111111;
}

/* Service Card */
.service-card-section {
    background: #f6f8ff;
    padding: 60px 20px;
    color: #111111;
}

.service-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.service-card-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    font-size: .85rem;
    font-weight: 600;
}

.service-card-title {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
}

.service-accent {
    background: linear-gradient(90deg, #2f6bff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card-description {
    color: #334155;
    font-size: 1rem;
}

.service-card-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #111111;
}
.service-card-list li {
    margin: .5rem 0;
}

.service-card-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: filter .2s ease, transform .2s ease;
}
.service-card-cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* Comunidad */
.community-section {
    padding: 0px 20px 0 20px;
    background: transparent;
}
.community-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a0a;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 24px;
    padding: 40px 40px 40px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    height: 70vh;
}
.community-card::after{
    /* halo morado/azul a la derecha */
    content:"";
    position:absolute;
    inset:0;
    background:
      radial-gradient(700px 300px at 85% 100%, rgba(168,85,247,0.35), transparent 60%),
      radial-gradient(500px 260px at 100% 0%, rgba(59,130,246,0.5), transparent 65%);
    pointer-events:none;
    mix-blend: screen;
}
/* Paletas por sección (variaciones de color) */
#seguridadyenergia .community-card::after{
    background:
      radial-gradient(700px 300px at 85% 100%, rgba(252,211,77,0.38), transparent 60%), /* amber */
      radial-gradient(520px 280px at 100% 0%, rgba(244,63,94,0.55), transparent 65%),   /* rose */
      radial-gradient(420px 240px at 60% 10%, rgba(234,88,12,0.35), transparent 70%);   /* orange accent */
}
#redesyfibraoptica .community-card::after{
    background:
      radial-gradient(720px 320px at 85% 100%, rgba(34,197,94,0.38), transparent 60%),  /* green */
      radial-gradient(520px 260px at 100% 0%, rgba(59,130,246,0.45), transparent 65%),  /* blue */
      radial-gradient(420px 260px at 0% 100%, rgba(20,184,166,0.35), transparent 70%);   /* teal accent */
}
#desarrollodesoftwareyia .community-card::after{
    background:
      radial-gradient(720px 320px at 85% 100%, rgba(168,85,247,0.45), transparent 60%),  /* violet */
      radial-gradient(520px 260px at 100% 0%, rgba(236,72,153,0.6), transparent 65%),    /* pink */
      radial-gradient(420px 240px at 0% 100%, rgba(56,189,248,0.35), transparent 70%);   /* sky accent */
}

/* Mobile fine-tuning: make the white headline fit in ~3 lines */
@media (max-width: 600px) {
    .ent-text-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        letter-spacing: -0.3px;
        text-align: center;
        margin-bottom: 16px;
    }
}
.community-content{
    position: relative;
    z-index: 1;
    color: #ffffff;
   
}
.community-title{
    font-size: 2.6rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 16px;
    width: 100%;
}
.community-highlight-blue{
    background: linear-gradient(90deg,#1e90ff,#40a0ff);
    -webkit-background-clip:text;
    background-clip:text;
    color: transparent;
}
.community-highlight-purple{
    background: linear-gradient(90deg,#a855f7,#c084fc);
    -webkit-background-clip:text;
    background-clip:text;
    color: transparent;
}
.community-desc{
    color:#d1d5db;
    max-width: 620px;
    margin-bottom: 22px;
}
.community-services{
    color:#d1d5db;
    margin: 0 0 20px 0;
    padding-left: 1.25rem;
    text-align: left;
}
.community-services li{
    margin: 6px 0;
}
.community-cta{
    display:inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition: transform .2s ease, filter .2s ease;
}
.community-cta:hover{
    transform: translateY(-1px);
    filter: brightness(1.05);
}
.community-visual{
    position: relative;
    z-index: 1;
    display:flex;
    align-items:center;
    justify-content:center;
}
.phone-mock{
    position: relative;
    width: 360px;
    max-width: 100%;
    aspect-ratio: 9 / 14;
    background: #111827;
    border: 10px solid #0a0a0a;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    overflow: hidden;
}
.phone-notch{
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 42%;
    height: 16px;
    background: #0a0a0a;
    border-radius: 12px;
}
.phone-screen{
    position: absolute;
    inset: 28px 10px 10px 10px;
    background: #0b0f1a;
    border-radius: 18px;
    overflow: hidden;
}
.phone-badge{
    background:#1d4ed8;
    color:#fff;
    font-weight:700;
    padding: 10px 14px;
    border-radius: 10px;
    width: fit-content;
    margin: 16px auto 10px auto;
}
.phone-card{
    background:#ffffff;
    margin: 8px 14px;
    border-radius: 10px;
    padding: 12px;
}
.phone-card-title{
    color:#111827;
    font-weight:700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.avatars-row{
    display:flex;
    gap:6px;
}
.avatar-dot{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg,#60a5fa,#a78bfa);
}
.bubble-avatar{
    position: absolute;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #0a0a0a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.bubble-left{ left: -28px; bottom: 22px; }
.bubble-right{ right: -18px; top: 8px; }

@media (max-width: 1024px){
    .community-card{
        grid-template-columns: 1fr;
        padding: 32px;
        text-align: center;
    }
    .community-desc{
        margin-left: auto;
        margin-right: auto;
    }
    .community-visual{
        margin-top: 16px;
    }
    .bubble-left{ left: 6px; bottom: -10px; width: 64px; height: 64px; }
    .bubble-right{ right: 6px; top: -10px; width: 64px; height: 64px; }
}

/* Notebook (1025px - 1440px): achicar todo para que entre en pantalla sin scroll */
@media (min-width: 1025px) and (max-width: 1440px) {
    .supercharge-hero-section {
        padding: 22px 14px;
        margin-top: 1.5rem;
    }
    .supercharge-hero-content h1 {
        font-size: 1.65rem;
        margin-bottom: 10px;
    }
    .supercharge-button-group {
        gap: 10px;
        margin-bottom: 16px;
    }
    .supercharge-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .community-section {
        padding: 0 12px 0 12px;
    }
    .community-card {
        height: auto;
        min-height: auto;
        padding: 20px 24px;
        margin-bottom: 28px;
        gap: 12px;
    }
    .community-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    .community-cta {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    .phone-mock {
        width: 230px;
        border-width: 5px;
    }
    .phone-screen {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        inset: 16px 5px 5px 5px;
    }
    .phone-badge {
        padding: 5px 8px;
        font-size: 0.75rem;
        margin: 8px auto 6px auto;
    }
    .phone-card {
        padding: 6px 8px;
        margin: 4px 8px;
    }
    .phone-card-title {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }
    .phone-card li {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    .bubble-avatar {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }
    .bubble-left { left: -18px; bottom: 10px; }
    .bubble-right { right: -10px; top: 2px; }
}

/* Contact strip (footer simplificado) */
.contact-strip{
    height: 30vh;
    min-height: 220px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-strip-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    color: #fff;
}
.contact-logo{
    height: 64px;
}
.contact-socials a{
    color: #fff;
    font-size: 28px;
    margin: 0 8px;
}
.contact-cta{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
@media (min-width: 900px) {
    .service-card {
        grid-template-columns: 1fr; /* listo para imagen futura si se desea 1fr 1fr */
        padding: 40px 48px;
    }
    .service-card-title {
        font-size: 2.6rem;
    }
}



@media (min-width: 768px) and (max-width: 1500px) {
    .hero-title {
        
        font-size: 3.5rem !important;
        
        line-height: 4.5rem;
    }
    .hero-description{
        /* width:75% !important; */
        margin: auto!important;

    }
}


@media (max-width: 768px) {
    .login{
        display: none ;
    }
    .discover-btn{
        display: none;
    }
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem;
}

.hero-tagline {
    opacity: 1;
    color: #fffc;
    letter-spacing: .7px;
    text-transform: uppercase;
    font-family: DM Mono, sans-serif;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.225rem;
}

.hero-title {
    color: #ffffff;
    letter-spacing: -3.6px;
    margin: 0 0 2rem 0;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 4.5rem;
}

.hero-description {
    opacity: 1;
    color: #fffc;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.75rem;
}

.discover-btn {
    padding: .75rem 1.5rem;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: filter .2s ease, transform .2s ease;
}
.hamburger {
    
    flex-direction: column;
    cursor: pointer;
    margin-left: auto; 
}
}

@media (max-width: 450px) {
.hero-title{
    text-align: start;
    font-size: 2.4rem;
}
.hero-description{
    text-align: start;
    font-size: 1rem;
}
}

/* Mobile optimizations */
@media (max-width: 600px) {
    .hero-content { padding: 1.25rem; }
    .hero-title { font-size: 2.2rem; line-height: 1.15; margin-bottom: 0.75rem; letter-spacing: -0.5px; font-weight: 700; }
    .hero-description { font-size: 1rem; line-height: 1.5rem; margin-bottom: 1rem; }

    .community-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 16px;
        height: auto;
        min-height: 0;
        text-align: center;
    }
    .community-title { font-size: 2rem; }
    .community-desc { margin-left: auto; margin-right: auto; }
    .community-visual { margin-top: 8px; }
    .phone-mock { width: 260px; border-width: 8px; }
    .bubble-avatar { width: 56px; height: 56px; border-width: 4px; }
    .bubble-left { left: 4px; bottom: -6px; }
    .bubble-right { right: 4px; top: -6px; }

    .contact-strip { height: auto; min-height: 180px; padding: 16px 0; }
    .contact-strip-container { flex-direction: column; gap: 12px; justify-content: center; }

    /* Service card text inside the phone - improve readability */
    .phone-screen { overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .phone-badge { padding: 8px 12px; font-size: .85rem; }
    .phone-card { padding: 10px; }
    .phone-card-title { font-size: .85rem; margin-bottom: 6px; text-align: left; }
    .phone-card { text-align: left; }
    .phone-card li { font-size: .82rem; line-height: 1.35; text-align: left; }
    /* Smaller CTA on mobile */
    .community-cta { padding: 10px 16px; font-size: .9rem; }
}

@media (max-width: 380px) {
    .phone-mock { width: 240px; }
    .phone-badge { font-size: .8rem; }
    .phone-card-title { font-size: .8rem; }
    .phone-card li { font-size: .78rem; }
    .community-cta { padding: 8px 14px; font-size: .85rem; }
}
@media (max-width: 768px) {
    .products-section h1 {
        font-size: 1.5rem;
    }

    .section-container {
        flex-direction: column;
        gap: 10px;
        /* margin: auto !important; */
    }

    .card {
        padding: 15px;
        max-width: 100%;
        margin: 2rem;
    }

    .card h4 {
        font-size: 1rem;
    }

    .card h2 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .process-item, .invoice-text, .invoice-amount, .invoice-status p {
        font-size: 0.9rem;
    }

    .discover-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* //slider// */
/* General Styles */
.slider-container {
    text-align: center;
    padding: 20px;
    position: relative;
}

h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: start;
    width: 35%;
}

.slider {
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.slider-items {
    display: flex;
    transition: transform 0.5s ease;
    height: 30rem;
    justify-content: space-between;
}

.card {
    min-width: 25%;
    background-color: #000;
    padding: 20px;
    margin: 10px;
    box-sizing: border-box;
    text-align: left;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #ffffff;
}

.card p {
    font-size: 24px;
    margin: 20px 0;
    color: #ffffff;
}

.read-more {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 20px;
}

/* Estilos para los bordes de color */
.card {
    transition: background-color 0.3s, box-shadow 0.3s; /* Agrega una transición suave para el fondo y la sombra */
    box-shadow: 0px 0px 24px -11px rgba(0, 0, 0, 0.75); /* Sombra predeterminada */
}

/* Grubhub */
.grubhub {
    border-color: #ff5c00;
}

.grubhub:hover {
    background-color: #ff5c00; /* Color de fondo para Grubhub */
    color: white; /* Cambia el color del texto, si lo deseas */
    box-shadow: 0px 0px 24px -11px rgba(255, 92, 0, 0.75); /* Sombra para Grubhub */
}

/* NCR */
.ncr {
    border-color: #0056ff;
}

.ncr:hover {
    background-color: #0056ff; /* Color de fondo para NCR */
    color: white; /* Cambia el color del texto, si lo deseas */
    box-shadow: 0px 0px 24px -11px rgba(0, 86, 255, 0.75); /* Sombra para NCR */
}

/* Dropbox Sign */
.dropbox-sign {
    border-color: #a800ff;
}

.dropbox-sign:hover {
    background-color: #a800ff; /* Color de fondo para Dropbox Sign */
    color: white; /* Cambia el color del texto, si lo deseas */
    box-shadow: 0px 0px 24px -11px rgba(168, 0, 255, 0.75); /* Sombra para Dropbox Sign */
}

/* Refokus */
.refokus {
    border-color: #00ff5c;
}

.refokus:hover {
    background-color: #00ff5c; /* Color de fondo para Refokus */
    color: white; /* Cambia el color del texto, si lo deseas */
    box-shadow: 0px 0px 24px -11px rgba(0, 255, 92, 0.75); /* Sombra para Refokus */
}


/* Botones de navegación */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent !important;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}

/* ---- Responsive Mobile Adjustments ---- */
@media screen and (max-width: 768px) {
    /* Ajustes en pantallas menores a 768px (tablets y móviles grandes) */
    h2 {
        width: 100%;
        font-size: 2rem;
        text-align: center;
    }

    .slider {
        width: 100%;
    }

    .slider-items {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        min-width: 45%;
        margin: 10px;
    }
}

@media screen and (max-width: 480px) {
    /* Ajustes en pantallas menores a 480px (móviles pequeños) */
    h2 {
        font-size: 1.8rem;
    }

    .slider-items {
        flex-direction: column; /* Tarjetas en columna */
        align-items: center;
    }

    .card {
        min-width: 80%; /* Las tarjetas ocupan casi todo el ancho */
        margin: 20px 0;
    }

    .card p {
        font-size: 3rem; /* Reducimos el tamaño del texto en móvil */
    }

    .read-more {
        font-size: 1rem; /* Enlaces más pequeños en móviles */
    }

    .prev, .next {
        display: none; /* Ocultamos las flechas en pantallas muy pequeñas */
    }
}

.slider-container {
    text-align: center;
    padding: 20px;
    position: relative;
}

.slider {
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.slider-items {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: space-between;
    height: 30rem;
}

.card {
    min-width: 22%;
    background-color: #000;
    padding: 20px;
    margin: 10px;
    box-sizing: border-box;
    text-align: start;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 25rem;
}

/* Estilos de texto y colores */
.card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #ffffff;
}

.card p {
    font-size: 24px;
    margin: 20px 0;
    color: #ffffff;
}

.read-more {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 20px;
}

/* Bordes de color por tarjeta */
.grubhub {
    border-color: #ff5c00;
}

.ncr {
    border-color: #0056ff;
}

.dropbox-sign {
    border-color: #a800ff;
}

.refokus {
    border-color: #00ff5c;
}

/* Flechas de navegación */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .slider-items {
        flex-direction: column; /* Apilar tarjetas verticalmente */
        height: auto; /* Ajustar altura */
    }
    
    .card {
        min-width: 100%; /* Tarjetas toman todo el ancho */
        margin: 10px 0; /* Espaciado entre las tarjetas */
    }
    
    h2 {
        width: 100%; /* Ajustar el ancho del título */
        font-size: 2rem; /* Tamaño más pequeño para el título en móvil */
    }
}

@media (max-width: 768px) {
    .ejemplo4-section-div-h1{
        font-size: 3rem !important;
        margin-top: 4rem;
    } 
}

/* ejemplo section 4  */
.ejemplo4-section-div-h1{
    color: #ffffff;
    font-size: 4.5rem;
}
.ejemplo4-section {
    margin: auto;
    text-align: center;
    margin-top: 10rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: bold;
}

p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.ejemplo4-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #0F3258;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ejemplo4-button:hover {
    background-color: #0056b3;
}



/* //box// */
.composable-cms {
    display: flex;
    justify-content: space-between;
    padding: 100px;
    position: relative;
    height: 50vh;
    margin: 0;
    border: 3px solid rgb(21, 21, 21);
    margin-left: 23rem;
    margin-right: 22rem;
    padding-left: 3rem;
  }
  @media (max-width: 1024px) {
    .composable-cms {
    margin-left: 1rem;
    margin-right: 1rem;
    }
  }
  @media (max-width: 450px) {
    .composable-cms{
        flex-direction: column;
        height: auto;
        
    }
    .content{
        width: 100% !important;
    }
    .box-container{
        margin: 0 !important;
    }

  }
  .content {
    max-width: 450px;
    margin: auto;
    margin-top: -2rem;
    
    
  }
  
  h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
 
  .learn-more {
    font-size: 1.1em;
    color: #fff;
    text-decoration: none ;
    padding-bottom: 5px;
    font-weight: 3  00;
  }
  
  .box-container {
    position: relative;
    width: 100%;
    margin-left: 2rem;
    
  }
  
  .box {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1.2em;
    width: fit-content;
    color: #fff;
    box-shadow: 0 0 10px #ff6b00;
    position: absolute;
  }
  
  .box.airtable {
    bottom: 0px;
    left: 150px;
  }
  
  .box.edw {
    bottom: 70px;
    left: 300px;
  }
  
  .box.hubspot {
    bottom: 120px;
    left: 500px;
  }
  
  .box.dam {
    bottom: 70px;
    left: 700px;
  }

  .h4.is-composable {
    max-width: 12.5rem;
    font-feature-settings: "ss01" 0, "ss02" 0, "ss03" 0;
    font-size: 2rem;
}
.h4 {
    letter-spacing: -.01em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: WF Visual Sans, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}
.u-text-gray200 {
    color: #898989;
    font-family: WF Visual Sans Text, Arial, sans-serif;
    font-weight: 200;
}


[gradient-border]::after{
content: '';
top: -1px;
left: -1px;
height: calc(100% + 2px);
width: calc(100% + 2px);
position: absolute;
border-radius: 4px;
border: 1px solid transparent;
background: linear-gradient(to top right, rgb(0, 108, 250) 80%, rgb(150, 190, 255) 100%) border-box;

-webkit-mask: /*4*/
  linear-gradient(#fff 0 0) padding-box, 
  linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
z-index: 2;
}


@font-face {
    font-family: webflow-icons;
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==)format("truetype");
    font-weight: 400;
    font-style: normal
}

[class^=w-icon-],[class*=\ w-icon-] {
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    font-family: webflow-icons!important
}

.w-icon-slider-right:before {
    content: "î˜€"
}

.w-icon-slider-left:before {
    content: "î˜"
}

.w-icon-nav-menu:before {
    content: "î˜‚"
}

.w-icon-arrow-down:before,.w-icon-dropdown-toggle:before {
    content: "î˜ƒ"
}

.w-icon-file-upload-remove:before {
    content: "î¤€"
}

.w-icon-file-upload-icon:before {
    content: "î¤ƒ"
}

* {
    box-sizing: border-box
}

html {
    height: 100%
}

body {
    color: #333;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    font-family: Arial,sans-serif;
    font-size: 14px;
    line-height: 20px
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block
}

html.w-mod-touch * {
    background-attachment: scroll!important
}

.w-block {
    display: block
}

.w-inline-block {
    max-width: 100%;
    display: inline-block
}

.w-clearfix:before,.w-clearfix:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-clearfix:after {
    clear: both
}

.w-hidden {
    display: none
}

.w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block
}

input.w-button {
    -webkit-appearance: button
}

html[data-w-dynpage] [data-w-cloak] {
    color: #0000!important
}

.w-code-block {
    margin: unset
}

pre.w-code-block code {
    all: inherit
}

.w-optimization {
    display: contents
}

.w-webflow-badge,.w-webflow-badge * {
    z-index: auto;
    visibility: visible;
    box-sizing: border-box;
    float: none;
    clear: none;
    box-shadow: none;
    opacity: 1;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    background: 0 0;
    border: 0 #0000;
    border-radius: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    list-style-type: disc;
    transition: none;
    display: block;
    position: static;
    inset: auto;
    overflow: visible;
    transform: none
}

.w-webflow-badge {
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 0 0 1px #0000001a,0 1px 3px #0000001a;
    visibility: visible!important;
    z-index: 2147483647!important;
    color: #aaadb0!important;
    opacity: 1!important;
    background-color: #fff!important;
    border-radius: 3px!important;
    width: auto!important;
    height: auto!important;
    margin: 0!important;
    padding: 6px!important;
    font-size: 12px!important;
    line-height: 14px!important;
    text-decoration: none!important;
    display: inline-block!important;
    position: fixed!important;
    inset: auto 12px 12px auto!important;
    overflow: visible!important;
    transform: none!important
}

.w-webflow-badge>img {
    visibility: visible!important;
    opacity: 1!important;
    vertical-align: middle!important;
    display: inline-block!important
}

h1,h2,h3,h4,h5,h6 {
    margin-bottom: 10px;
    font-weight: 700
}

h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 44px
}

h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px
}

h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px
}

h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px
}

h5 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px
}

h6 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px
}

p {
    margin-top: 0;
    margin-bottom: 10px
}

blockquote {
    border-left: 5px solid #e2e2e2;
    margin: 0 0 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px
}

figure {
    margin: 0 0 10px
}

figcaption {
    text-align: center;
    margin-top: 5px
}

ul,ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px
}

.w-list-unstyled {
    padding-left: 0;
    list-style: none
}

.w-embed:before,.w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-embed:after {
    clear: both
}

.w-video {
    width: 100%;
    padding: 0;
    position: relative
}

.w-video iframe,.w-video object,.w-video embed {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

button,[type=button],[type=reset] {
    cursor: pointer;
    -webkit-appearance: button;
    border: 0
}

.w-form {
    margin: 0 0 15px
}

.w-form-done {
    text-align: center;
    background-color: #ddd;
    padding: 20px;
    display: none
}

.w-form-fail {
    background-color: #ffdede;
    margin-top: 10px;
    padding: 10px;
    display: none
}

label {
    margin-bottom: 5px;
    font-weight: 700;
    display: block
}

.w-input,.w-select {
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block
}

.w-input::placeholder,.w-select::placeholder {
    color: #999
}

.w-input:focus,.w-select:focus {
    border-color: #3898ec;
    outline: 0
}

.w-input[disabled],.w-select[disabled],.w-input[readonly],.w-select[readonly],fieldset[disabled] .w-input,fieldset[disabled] .w-select {
    cursor: not-allowed
}

.w-input[disabled]:not(.w-input-disabled),.w-select[disabled]:not(.w-input-disabled),.w-input[readonly],.w-select[readonly],fieldset[disabled]:not(.w-input-disabled) .w-input,fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: #eee
}

textarea.w-input,textarea.w-select {
    height: auto
}

.w-select {
    background-color: #f3f3f3
}

.w-select[multiple] {
    height: auto
}

.w-form-label {
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
    display: inline-block
}

.w-radio {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block
}

.w-radio:before,.w-radio:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-radio:after {
    clear: both
}

.w-radio-input {
    float: left;
    margin: 3px 0 0 -20px;
    line-height: normal
}

.w-file-upload {
    margin-bottom: 10px;
    display: block
}

.w-file-upload-input {
    opacity: 0;
    z-index: -100;
    width: .1px;
    height: .1px;
    position: absolute;
    overflow: hidden
}

.w-file-upload-default,.w-file-upload-uploading,.w-file-upload-success {
    color: #333;
    display: inline-block
}

.w-file-upload-error {
    margin-top: 10px;
    display: block
}

.w-file-upload-default.w-hidden,.w-file-upload-uploading.w-hidden,.w-file-upload-error.w-hidden,.w-file-upload-success.w-hidden {
    display: none
}

.w-file-upload-uploading-btn {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: flex
}

.w-file-upload-file {
    background-color: #fafafa;
    border: 1px solid #ccc;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0;
    padding: 8px 9px 8px 11px;
    display: flex
}

.w-file-upload-file-name {
    font-size: 14px;
    font-weight: 400;
    display: block
}

.w-file-remove-link {
    cursor: pointer;
    width: auto;
    height: auto;
    margin-top: 3px;
    margin-left: 10px;
    padding: 3px;
    display: block
}

.w-icon-file-upload-remove {
    margin: auto;
    font-size: 10px
}

.w-file-upload-error-msg {
    color: #ea384c;
    padding: 2px 0;
    display: inline-block
}

.w-file-upload-info {
    padding: 0 12px;
    line-height: 38px;
    display: inline-block
}

.w-file-upload-label {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: inline-block
}

.w-icon-file-upload-icon,.w-icon-file-upload-uploading {
    width: 20px;
    margin-right: 8px;
    display: inline-block
}

.w-icon-file-upload-uploading {
    height: 20px
}

.w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto
}

.w-container:before,.w-container:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-container:after {
    clear: both
}

.w-container .w-row {
    margin-left: -10px;
    margin-right: -10px
}

.w-row:before,.w-row:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-row:after {
    clear: both
}

.w-row .w-row {
    margin-left: 0;
    margin-right: 0
}

.w-col {
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative
}

.w-col .w-col {
    padding-left: 0;
    padding-right: 0
}

.w-col-1 {
    width: 8.33333%
}

.w-col-2 {
    width: 16.6667%
}

.w-col-3 {
    width: 25%
}

.w-col-4 {
    width: 33.3333%
}

.w-col-5 {
    width: 41.6667%
}

.w-col-6 {
    width: 50%
}

.w-col-7 {
    width: 58.3333%
}

.w-col-8 {
    width: 66.6667%
}

.w-col-9 {
    width: 75%
}

.w-col-10 {
    width: 83.3333%
}

.w-col-11 {
    width: 91.6667%
}

.w-col-12 {
    width: 100%
}

.w-hidden-main {
    display: none!important
}

@media screen and (max-width: 991px) {
    .w-container {
        max-width:728px
    }

    .w-hidden-main {
        display: inherit!important
    }

    .w-hidden-medium {
        display: none!important
    }

    .w-col-medium-1 {
        width: 8.33333%
    }

    .w-col-medium-2 {
        width: 16.6667%
    }

    .w-col-medium-3 {
        width: 25%
    }

    .w-col-medium-4 {
        width: 33.3333%
    }

    .w-col-medium-5 {
        width: 41.6667%
    }

    .w-col-medium-6 {
        width: 50%
    }

    .w-col-medium-7 {
        width: 58.3333%
    }

    .w-col-medium-8 {
        width: 66.6667%
    }

    .w-col-medium-9 {
        width: 75%
    }

    .w-col-medium-10 {
        width: 83.3333%
    }

    .w-col-medium-11 {
        width: 91.6667%
    }

    .w-col-medium-12 {
        width: 100%
    }

    .w-col-stack {
        width: 100%;
        left: auto;
        right: auto
    }
}

@media screen and (max-width: 767px) {
    .w-hidden-main,.w-hidden-medium {
        display:inherit!important
    }

    .w-hidden-small {
        display: none!important
    }

    .w-row,.w-container .w-row {
        margin-left: 0;
        margin-right: 0
    }

    .w-col {
        width: 100%;
        left: auto;
        right: auto
    }

    .w-col-small-1 {
        width: 8.33333%
    }

    .w-col-small-2 {
        width: 16.6667%
    }

    .w-col-small-3 {
        width: 25%
    }

    .w-col-small-4 {
        width: 33.3333%
    }

    .w-col-small-5 {
        width: 41.6667%
    }

    .w-col-small-6 {
        width: 50%
    }

    .w-col-small-7 {
        width: 58.3333%
    }

    .w-col-small-8 {
        width: 66.6667%
    }

    .w-col-small-9 {
        width: 75%
    }

    .w-col-small-10 {
        width: 83.3333%
    }

    .w-col-small-11 {
        width: 91.6667%
    }

    .w-col-small-12 {
        width: 100%
    }
}

@media screen and (max-width: 479px) {
    .w-container {
        max-width:none
    }

    .w-hidden-main,.w-hidden-medium,.w-hidden-small {
        display: inherit!important
    }

    .w-hidden-tiny {
        display: none!important
    }

    .w-col {
        width: 100%
    }

    .w-col-tiny-1 {
        width: 8.33333%
    }

    .w-col-tiny-2 {
        width: 16.6667%
    }

    .w-col-tiny-3 {
        width: 25%
    }

    .w-col-tiny-4 {
        width: 33.3333%
    }

    .w-col-tiny-5 {
        width: 41.6667%
    }

    .w-col-tiny-6 {
        width: 50%
    }

    .w-col-tiny-7 {
        width: 58.3333%
    }

    .w-col-tiny-8 {
        width: 66.6667%
    }

    .w-col-tiny-9 {
        width: 75%
    }

    .w-col-tiny-10 {
        width: 83.3333%
    }

    .w-col-tiny-11 {
        width: 91.6667%
    }

    .w-col-tiny-12 {
        width: 100%
    }
}

.w-widget {
    position: relative
}

.w-widget-map {
    width: 100%;
    height: 400px
}

.w-widget-map label {
    width: auto;
    display: inline
}

.w-widget-map img {
    max-width: inherit
}

.w-widget-map .gm-style-iw {
    text-align: center
}

.w-widget-map .gm-style-iw>button {
    display: none!important
}

.w-widget-twitter {
    overflow: hidden
}

.w-widget-twitter-count-shim {
    vertical-align: top;
    text-align: center;
    background: #fff;
    border: 1px solid #758696;
    border-radius: 3px;
    width: 28px;
    height: 20px;
    display: inline-block;
    position: relative
}

.w-widget-twitter-count-shim * {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
    text-align: center;
    color: #999;
    font-family: serif;
    font-size: 15px;
    line-height: 12px;
    position: relative
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
    display: block;
    position: relative
}

.w-widget-twitter-count-shim.w--large {
    width: 36px;
    height: 28px
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 18px
}

.w-widget-twitter-count-shim:not(.w--vertical) {
    margin-left: 5px;
    margin-right: 8px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
    margin-left: 6px
}

.w-widget-twitter-count-shim:not(.w--vertical):before,.w-widget-twitter-count-shim:not(.w--vertical):after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 0
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
    border-width: 4px;
    border-color: #75869600 #5d6c7b #75869600 #75869600;
    margin-top: -4px;
    margin-left: -9px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -10px
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
    border-width: 4px;
    border-color: #fff0 #fff #fff0 #fff0;
    margin-top: -4px;
    margin-left: -8px
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -9px
}

.w-widget-twitter-count-shim.w--vertical {
    width: 61px;
    height: 33px;
    margin-bottom: 8px
}

.w-widget-twitter-count-shim.w--vertical:before,.w-widget-twitter-count-shim.w--vertical:after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 100%;
    left: 50%
}

.w-widget-twitter-count-shim.w--vertical:before {
    border-width: 5px;
    border-color: #5d6c7b #75869600 #75869600;
    margin-left: -5px
}

.w-widget-twitter-count-shim.w--vertical:after {
    border-width: 4px;
    border-color: #fff #fff0 #fff0;
    margin-left: -4px
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 22px
}

.w-widget-twitter-count-shim.w--vertical.w--large {
    width: 76px
}

.w-background-video {
    color: #fff;
    height: 500px;
    position: relative;
    overflow: hidden
}

.w-background-video>video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none!important
}

.w-background-video--control {
    background-color: #0000;
    padding: 0;
    position: absolute;
    bottom: 1em;
    right: 1em
}

.w-background-video--control>[hidden] {
    display: none!important
}

.w-slider {
    text-align: center;
    clear: both;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    background: #ddd;
    height: 300px;
    position: relative
}

.w-slider-mask {
    z-index: 1;
    white-space: nowrap;
    height: 100%;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden
}

.w-slide {
    vertical-align: top;
    white-space: normal;
    text-align: left;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative
}

.w-slider-nav {
    z-index: 2;
    text-align: center;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    height: 40px;
    margin: auto;
    padding-top: 10px;
    position: absolute;
    inset: auto 0 0
}

.w-slider-nav.w-round>div {
    border-radius: 100%
}



.w-slider-dot.w-active {
    background-color: #fff
}

.w-slider-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff
}

.w-slider-dot:focus.w-active {
    box-shadow: none
}

.w-slider-arrow-left,.w-slider-arrow-right {
    cursor: pointer;
    color: #fff;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    width: 80px;
    margin: auto;
    font-size: 40px;
    position: absolute;
    inset: 0;
    overflow: hidden
}

.w-slider-arrow-left [class^=w-icon-],.w-slider-arrow-right [class^=w-icon-],.w-slider-arrow-left [class*=\ w-icon-],.w-slider-arrow-right [class*=\ w-icon-] {
    position: absolute
}

.w-slider-arrow-left:focus,.w-slider-arrow-right:focus {
    outline: 0
}

.w-slider-arrow-left {
    z-index: 3;
    right: auto
}

.w-slider-arrow-right {
    z-index: 4;
    left: auto
}

.w-icon-slider-left,.w-icon-slider-right {
    width: 1em;
    height: 1em;
    margin: auto;
    inset: 0
}

.w-slider-aria-label {
    clip: rect(0 0 0 0);
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden
}

.w-slider-force-show {
    display: block!important
}

.w-dropdown {
    text-align: left;
    z-index: 900;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: relative
}

.w-dropdown-btn,.w-dropdown-toggle,.w-dropdown-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    position: relative
}

.w-dropdown-toggle {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-right: 40px;
    display: inline-block
}

.w-dropdown-toggle:focus {
    outline: 0
}

.w-icon-dropdown-toggle {
    width: 1em;
    height: 1em;
    margin: auto 20px auto auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0
}

.w-dropdown-list {
    background: #ddd;
    min-width: 100%;
    display: none;
    position: absolute
}

.w-dropdown-list.w--open {
    display: block
}

.w-dropdown-link {
    color: #222;
    padding: 10px 20px;
    display: block
}

.w-dropdown-link.w--current {
    color: #0082f3
}

.w-dropdown-link:focus {
    outline: 0
}

@media screen and (max-width: 767px) {
    .w-nav-brand {
        padding-left:10px
    }
}

.w-lightbox-backdrop {
    cursor: auto;
    letter-spacing: normal;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    color: #fff;
    text-align: center;
    z-index: 2000;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    background: #000000e6;
    outline: 0;
    font-family: Helvetica Neue,Helvetica,Ubuntu,Segoe UI,Verdana,sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    list-style: disc;
    position: fixed;
    inset: 0;
    -webkit-transform: translate(0)
}

.w-lightbox-backdrop,.w-lightbox-container {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    overflow: auto
}

.w-lightbox-content {
    height: 100vh;
    position: relative;
    overflow: hidden
}

.w-lightbox-view {
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: absolute
}

.w-lightbox-view:before {
    content: "";
    height: 100vh
}

.w-lightbox-group,.w-lightbox-group .w-lightbox-view,.w-lightbox-group .w-lightbox-view:before {
    height: 86vh
}

.w-lightbox-frame,.w-lightbox-view:before {
    vertical-align: middle;
    display: inline-block
}

.w-lightbox-figure {
    margin: 0;
    position: relative
}

.w-lightbox-group .w-lightbox-figure {
    cursor: pointer
}

.w-lightbox-img {
    width: auto;
    max-width: none;
    height: auto
}

.w-lightbox-image {
    float: none;
    max-width: 100vw;
    max-height: 100vh;
    display: block
}

.w-lightbox-group .w-lightbox-image {
    max-height: 86vh
}

.w-lightbox-caption {
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #0006;
    padding: .5em 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden
}

.w-lightbox-embed {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0
}

.w-lightbox-control {
    cursor: pointer;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 4em;
    transition: all .3s;
    position: absolute;
    top: 0
}

.w-lightbox-left {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
    display: none;
    bottom: 0;
    left: 0
}

.w-lightbox-right {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
    display: none;
    bottom: 0;
    right: 0
}

.w-lightbox-close {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
    background-size: 18px;
    height: 2.6em;
    right: 0
}

.w-lightbox-strip {
    white-space: nowrap;
    padding: 0 1vh;
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto hidden
}

.w-lightbox-item {
    box-sizing: content-box;
    cursor: pointer;
    width: 10vh;
    padding: 2vh 1vh;
    display: inline-block;
    -webkit-transform: translate(0,0)
}

.w-lightbox-active {
    opacity: .3
}

.w-lightbox-thumbnail {
    background: #222;
    height: 10vh;
    position: relative;
    overflow: hidden
}

.w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0
}

.w-lightbox-thumbnail .w-lightbox-tall {
    width: 100%;
    top: 50%;
    transform: translateY(-50%)
}

.w-lightbox-thumbnail .w-lightbox-wide {
    height: 100%;
    left: 50%;
    transform: translate(-50%)
}

.w-lightbox-spinner {
    box-sizing: border-box;
    border: 5px solid #0006;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    animation: .8s linear infinite spin;
    position: absolute;
    top: 50%;
    left: 50%
}

.w-lightbox-spinner:after {
    content: "";
    border: 3px solid #0000;
    border-bottom-color: #fff;
    border-radius: 50%;
    position: absolute;
    inset: -4px
}

.w-lightbox-hide {
    display: none
}

.w-lightbox-noscroll {
    overflow: hidden
}

@media (min-width: 768px) {
    .w-lightbox-content {
        height:96vh;
        margin-top: 2vh
    }

    .w-lightbox-view,.w-lightbox-view:before {
        height: 96vh
    }

    .w-lightbox-group,.w-lightbox-group .w-lightbox-view,.w-lightbox-group .w-lightbox-view:before {
        height: 84vh
    }

    .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh
    }

    .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh
    }

    .w-lightbox-left,.w-lightbox-right {
        opacity: .5;
        display: block
    }

    .w-lightbox-close {
        opacity: .8
    }

    .w-lightbox-control:hover {
        opacity: 1
    }
}

.w-lightbox-inactive,.w-lightbox-inactive:hover {
    opacity: 0
}

.w-richtext:before,.w-richtext:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-richtext:after {
    clear: both
}

.w-richtext[contenteditable=true]:before,.w-richtext[contenteditable=true]:after {
    white-space: initial
}

.w-richtext ol,.w-richtext ul {
    overflow: hidden
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,.w-richtext .w-richtext-figure-selected[data-rt-type=video] div:after,.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,.w-richtext .w-richtext-figure-selected[data-rt-type=image] div {
    outline: 2px solid #2895f7
}

.w-richtext figure.w-richtext-figure-type-video>div:after,.w-richtext figure[data-rt-type=video]>div:after {
    content: "";
    display: none;
    position: absolute;
    inset: 0
}

.w-richtext figure {
    max-width: 60%;
    position: relative
}

.w-richtext figure>div:before {
    cursor: default!important
}

.w-richtext figure img {
    width: 100%
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
    opacity: .6
}

.w-richtext figure div {
    color: #0000;
    font-size: 0
}

.w-richtext figure.w-richtext-figure-type-image,.w-richtext figure[data-rt-type=image] {
    display: table
}

.w-richtext figure.w-richtext-figure-type-image>div,.w-richtext figure[data-rt-type=image]>div {
    display: inline-block
}

.w-richtext figure.w-richtext-figure-type-image>figcaption,.w-richtext figure[data-rt-type=image]>figcaption {
    caption-side: bottom;
    display: table-caption
}

.w-richtext figure.w-richtext-figure-type-video,.w-richtext figure[data-rt-type=video] {
    width: 60%;
    height: 0
}

.w-richtext figure.w-richtext-figure-type-video iframe,.w-richtext figure[data-rt-type=video] iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.w-richtext figure.w-richtext-figure-type-video>div,.w-richtext figure[data-rt-type=video]>div {
    width: 100%
}

.w-richtext figure.w-richtext-align-center {
    clear: both;
    margin-left: auto;
    margin-right: auto
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image>div,.w-richtext figure.w-richtext-align-center[data-rt-type=image]>div {
    max-width: 100%
}

.w-richtext figure.w-richtext-align-normal {
    clear: both
}

.w-richtext figure.w-richtext-align-fullwidth {
    text-align: center;
    clear: both;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block
}

.w-richtext figure.w-richtext-align-fullwidth>div {
    padding-bottom: inherit;
    display: inline-block
}

.w-richtext figure.w-richtext-align-fullwidth>figcaption {
    display: block
}

.w-richtext figure.w-richtext-align-floatleft {
    float: left;
    clear: none;
    margin-right: 15px
}

.w-richtext figure.w-richtext-align-floatright {
    float: right;
    clear: none;
    margin-left: 15px
}

.w-nav {
    z-index: 1000;
    background: #ddd;
    position: relative
}



[data-nav-menu-open] {
    text-align: center;
    background: #c8c8c8;
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: visible;
    display: block!important
}

.w--nav-link-open {
    display: block;
    position: relative
}

.w-nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden
}

.w-nav-overlay [data-nav-menu-open] {
    top: 0
}

.w-nav[data-animation=over-left] .w-nav-overlay {
    width: auto
}

.w-nav[data-animation=over-left] .w-nav-overlay,.w-nav[data-animation=over-left] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    right: auto
}

.w-nav[data-animation=over-right] .w-nav-overlay {
    width: auto
}

.w-nav[data-animation=over-right] .w-nav-overlay,.w-nav[data-animation=over-right] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    left: auto
}

.w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative
}

.w-nav-button:focus {
    outline: 0
}

.w-nav-button.w--open {
    color: #fff;
    background-color: #c8c8c8
}

.w-nav[data-collapse=all] .w-nav-menu {
    display: none
}

.w-nav[data-collapse=all] .w-nav-button,.w--nav-dropdown-open,.w--nav-dropdown-toggle-open {
    display: block
}

.w--nav-dropdown-list-open {
    position: static
}

@media screen and (max-width: 991px) {
    .w-nav[data-collapse=medium] .w-nav-menu {
        display:none
    }

    .w-nav[data-collapse=medium] .w-nav-button {
        display: block
    }
}

@media screen and (max-width: 767px) {
    .w-nav[data-collapse=small] .w-nav-menu {
        display:none
    }

    .w-nav[data-collapse=small] .w-nav-button {
        display: block
    }

    .w-nav-brand {
        padding-left: 10px
    }
}

@media screen and (max-width: 479px) {
    .w-nav[data-collapse=tiny] .w-nav-menu {
        display:none
    }

    .w-nav[data-collapse=tiny] .w-nav-button {
        display: block
    }
}

.w-tabs {
    position: relative
}

.w-tabs:before,.w-tabs:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-tabs:after {
    clear: both
}

.w-tab-menu {
    position: relative
}

.w-tab-link {
    vertical-align: top;
    text-align: left;
    cursor: pointer;
    color: #222;
    background-color: #ddd;
    padding: 9px 30px;
    text-decoration: none;
    display: inline-block;
    position: relative
}

.w-tab-link.w--current {
    background-color: #c8c8c8
}

.w-tab-link:focus {
    outline: 0
}

.w-tab-content {
    display: block;
    position: relative;
    overflow: hidden
}

.w-tab-pane {
    display: none;
    position: relative
}

.w--tab-active {
    display: block
}

@media screen and (max-width: 479px) {
    .w-tab-link {
        display:block
    }
}

.w-ix-emptyfix:after {
    content: ""
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.w-dyn-empty {
    background-color: #ddd;
    padding: 10px
}

.w-dyn-hide,.w-dyn-bind-empty,.w-condition-invisible {
    display: none!important
}

.wf-layout-layout {
    display: grid
}

.w-code-component>* {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

:root {
    --black: #080808;
    --white: white;
    --webflow-blue: #146ef5;
    --gray-400: #898989;
    --gray-500: #757575;
    --webflow-blue-600: #0055d4;
    --gray-200: #d8d8d8;
    --gray-600: #5a5a5a;
    --gray-100: #f0f0f0;
    --gray-900: #171717;
    --app-white: #e0e0e0;
    --gray-300: #ababab;
    --app-grey: #1e1e1e;
    --gray-700: #363636;
    --gray-800: #222;
    --brand-boilerplate-components---webflow-blue: #146ef5;
    --brand-boilerplate-components---blue-600: #0055d4;
    --brand-boilerplate-components---gray-400: #898989;
    --brand-boilerplate-components---black: #080808;
    --brand-boilerplate-components---white: white;
    --brand-boilerplate-components---gray-200: #d8d8d8;
    --brand-boilerplate-components---gray-800: #222;
    --brand-boilerplate-components---gray-900: #171717;
    --brand-boilerplate-components---gray-600: #5a5a5a;
    --brand-boilerplate-components---gray-700: #363636;
    --brand-boilerplate-components---blue-400: #3b89ff;
    --brand-boilerplate-components---gray-100: #f0f0f0;
    --brand-boilerplate-components---gray-300: #ababab;
    --brand-boilerplate-components---gray-500: #757575
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: WF Visual Sans Text,Arial,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 4em;
    line-height: 1.4
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3em;
    font-weight: 400;
    line-height: 1.4
}

h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.5em;
    font-weight: 400;
    line-height: 1.4
}

h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2em;
    font-weight: 400;
    line-height: 1.4
}

h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.4
}

h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.46em;
    font-weight: 400;
    line-height: 1.4
}

p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.01rem
}

a {
    text-decoration: none
}

a:focus-visible {
    outline-color: var(--webflow-blue);
    outline-offset: 2px;
    outline-width: 2px;
    outline-style: solid
}

a[data-wf-focus-visible] {
    outline-color: var(--webflow-blue);
    outline-offset: 2px;
    outline-width: 2px;
    outline-style: solid
}

label {
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .4rem;
    font-size: 1em;
    display: block
}

blockquote {
    border-left: .3em solid #e2e2e2;
    margin-bottom: 1em;
    padding: 1em 2em 1em 1.7em;
    font-size: 1.2em;
    line-height: 1.6
}

.h2 {
    letter-spacing: .01em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.04
}

.h2.u-mb-32 {
    margin-bottom: 2rem
}

.c {
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto
}

.c.is-guides {
    height: 100%
}

.c.is--hero {
    z-index: 10;
    padding-bottom: 100vh;
    position: relative
}

.c.is--miw {
    flex-direction: column;
    align-items: center;
    height: 100%;
    display: flex;
    position: relative
}

.c.is--features {
    z-index: 10;
    position: relative
}

.c.is--gl-placeholder {
    display: none
}

.v-pad_2 {
    padding: 2em 0
}

.css-global {
    width: 0;
    height: 0;
    position: fixed;
    inset: 0% 0% auto;
    overflow: hidden
}

.embed {
    position: fixed;
    inset: 0% 0% auto
}

.s.cc-hero {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: column;
    display: flex;
    overflow: clip visible
}

.s.cc-hero.u-d-none {
    display: none
}

.page-w {
    width: 100%;
    position: relative
}

.page-w.overflow-hidden {
    overflow: clip
}

.v-pad_10 {
    padding-top: 10em;
    padding-bottom: 10em
}

.v-marg_4 {
    margin-bottom: 4rem
}

.v-marg_2 {
    margin-bottom: 2rem
}

.v-marg_1 {
    margin-bottom: 1rem
}

.v-marg_3 {
    margin-bottom: 3rem
}

.v-marg_5 {
    margin-bottom: 5rem
}

.v-marg_6 {
    margin-bottom: 6rem
}

.v-marg_7 {
    margin-bottom: 7rem
}

.v-marg_8 {
    margin-bottom: 8rem
}

.v-marg_9 {
    margin-bottom: 9rem
}

.v-marg_10 {
    margin-bottom: 10rem
}

.max-width_20 {
    width: 20%;
    max-width: 100%
}

.max-width_25 {
    width: 25%;
    max-width: 100%
}

.max-width_30 {
    width: 30%;
    max-width: 100%
}

.max-width_50 {
    width: 50%;
    max-width: 100%
}

.max-width_60 {
    width: 60%;
    max-width: 100%
}

.v-pad_1 {
    padding-top: 1em;
    padding-bottom: 1em
}

.v-pad_3 {
    padding-top: 3em;
    padding-bottom: 3em
}

.v-pad_4 {
    padding-top: 4em;
    padding-bottom: 4em
}

.v-pad_5 {
    padding-top: 5em;
    padding-bottom: 5em
}

.v-pad_6 {
    padding-top: 6em;
    padding-bottom: 6em
}

.v-pad_7 {
    padding-top: 7em;
    padding-bottom: 7em
}

.v-pad_8,.v-pad_9 {
    padding-top: 8em;
    padding-bottom: 8em
}

.b-pad_1,.b-pad_2 {
    padding-bottom: 1em
}

.b-pad_3 {
    padding-bottom: 3em
}

.b-pad_4 {
    padding-bottom: 4em
}

.b-pad_5 {
    padding-bottom: 5em
}

.b-pad_6 {
    padding-bottom: 6em
}

.b-pad_7 {
    padding-bottom: 7em
}

.b-pad_8 {
    padding-bottom: 8em
}

.b-pad_9,.b-pad_10 {
    padding-bottom: 9em
}

.t-pad_1 {
    padding-top: 1em
}

.t-pad_2 {
    padding-top: 2em
}

.t-pad_3 {
    padding-top: 3em
}

.t-pad_4 {
    padding-top: 4em
}

.h-pad_1 {
    padding-left: 1em;
    padding-right: 1em
}

.h-pad_2 {
    padding-left: 1.9em;
    padding-right: 2em
}

.h-pad_3 {
    padding-left: 2.9em;
    padding-right: 3em
}

.h-pad_4 {
    padding-left: 4em;
    padding-right: 4em
}

.pad_1 {
    height: 100%;
    padding: 1em
}

.pad_2 {
    height: 100%;
    padding: 2em
}

.pad_3 {
    height: 100%;
    padding: 3em
}

.pad_4 {
    height: 100%;
    padding: 4em
}

.guides {
    z-index: 999999999;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0% 0% auto
}

.grid-main {
    grid-column-gap: 1.25em;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid
}

.grid-main.is-overlay {
    height: 100%
}

.grid-block {
    background-color: #146ef51a;
    padding: 0
}

.css-breakpoints {
    width: 0;
    height: 0;
    position: fixed;
    inset: 0% 0% auto;
    overflow: hidden
}

.placeholder-nav {
    z-index: 100;
    background-color: var(--black);
    color: #fff;
    border-bottom: 1px solid #ffffff1a;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    margin-bottom: -5rem;
    padding: 1rem;
    display: flex;
    position: sticky;
    inset: 0% 0% auto
}

.styles__logo-embed-obe {
    justify-content: center;
    align-items: center;
    width: 9rem;
    display: flex
}

.highlight-overlay-inner {
    z-index: 5;
    filter: blur(1px);
    background-color: #000;
    border-radius: 2px;
    width: 100%;
    height: 100%;
    position: relative
}

.button-icon_right {
    margin-left: .75em;
    display: inline-block
}

.button-inner {
    z-index: 10;
    align-items: center;
    display: flex;
    position: relative
}

.highlight-overlay-glow {
    background-image: radial-gradient(circle farthest-side,#fff,#fff0);
    width: 5rem;
    height: 5rem;
    position: absolute
}

.highlight-overlay {
    z-index: 0;
    opacity: .6;
    mix-blend-mode: color-dodge;
    background-color: #000;
    justify-content: center;
    align-items: center;
    padding: 2px;
    display: flex;
    position: absolute;
    inset: 0%
}

.u-d-inline-block {
    display: inline-block
}

.h3 {
    letter-spacing: -.01em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: 2.313rem;
    font-weight: 600;
    line-height: 1.04
}

.h3.u-mb-8 {
    margin-bottom: .5rem
}

.h4 {
    letter-spacing: -.01em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3
}

.h4.is-composable {
    max-width: 12.5rem
}

.caption {
    letter-spacing: .04em;
    text-transform: uppercase;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.3;
    display: block
}

.h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: 5.313rem;
    font-weight: 600;
    line-height: 1.04
}

.h1.hero-title {
    text-wrap: balance;
    font-size: 6vw
}

.h1.alt-1 {
    line-height: 1.06
}

.h0 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: 8rem;
    font-weight: 600;
    line-height: 1.04
}

.h6 {
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: .9375rem;
    font-weight: 500;
    line-height: 1.3
}

.paragraph-xl {
    letter-spacing: -.01em;
    font-size: 1.5rem;
    line-height: 1.6
}

.styles__selector-callout {
    color: #146ef5;
    background-color: #146ef514;
    border: .1em solid #146ef5;
    border-radius: .2em;
    margin-left: .2em;
    margin-right: .2em;
    padding-left: .5em;
    padding-right: .5em;
    font-size: .85em;
    font-weight: 500;
    line-height: 1.7;
    display: inline-block;
    position: relative;
    top: -1px
}

.styles__selector-callout.cc-html-tag {
    color: #fff;
    background-color: #d13591;
    border-color: #0000
}

.h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3
}

.button {
    background-color: var(--webflow-blue);
    color: #fff;
    font-variation-settings: "opsz" 50;
    cursor: pointer;
    background-image: none;
    border-radius: 4px;
    padding: 1rem 1.5rem;
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color .3s cubic-bezier(.165,.84,.44,1),box-shadow .3s cubic-bezier(.165,.84,.44,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 4px #08080814,0 1px 2px #08080833,inset 0 6px 12px #ffffff1f,inset 0 1px 1px #fff3
}

.button:hover {
    background-color: #0055d4;
    box-shadow: 0 1px 1px #08080814,0 1px 1px #08080833,inset 0 6px 12px #ffffff1f,inset 0 1px 1px #fff3
}

.button:active {
    box-shadow: none
}

.button:focus-visible {
    outline-offset: 2px;
    outline: 2px solid #146ef5
}

.button[data-wf-focus-visible] {
    outline-offset: 2px;
    outline: 2px solid #146ef5
}

.button.cc-white {
    color: #000;
    background-color: #fff;
    box-shadow: inset 0 -6px 12px 0 #0808080a,0 1px 2px #08080833,0 4px 4px #08080814
}

.button.cc-white:hover {
    background-color: #f0f0f0;
    box-shadow: inset 0 -6px 12px 0 #0808080a,0 1px 1px #08080833,0 1px 1px #08080814
}

.button.cc-white:active {
    box-shadow: inset 0 10px 2rem -1rem #0009,inset 0 0 0 #fff3,inset 0 0 0 0 #0003
}

.button.cc-white:focus-visible {
    outline-color: #d8d8d8
}

.button.cc-white[data-wf-focus-visible] {
    outline-color: #d8d8d8
}

.button.cc-text-only {
    box-shadow: none;
    background-color: #0000;
    background-image: none;
    padding-left: 0;
    padding-right: 0;
    transition: color .3s cubic-bezier(.165,.84,.44,1),background-color .3s cubic-bezier(.165,.84,.44,1),box-shadow .3s cubic-bezier(.165,.84,.44,1);
    display: flex;
    overflow: visible
}

.button.cc-text-only:hover {
    color: #444
}

.button.cc-text-only:focus-visible {
    outline-offset: 2px;
    outline: 2px solid #146ef5
}

.button.cc-text-only[data-wf-focus-visible] {
    outline-offset: 2px;
    outline: 2px solid #146ef5
}

.button.cc-text-only.cc-text-white {
    color: #fff
}

.button.cc-text-only.cc-text-white:hover {
    color: #f5f5f5
}

.button.cc-text-only.ts_card {
    transition-property: none
}

.button.cc-black {
    background-color: #222;
    box-shadow: 0 4px 4px #08080814,0 1px 2px #08080833,inset 0 4px 16px #ffffff14,inset 0 1px 1px #fff3
}

.button.cc-black:hover {
    background-color: #080808;
    box-shadow: 0 1px 1px #08080833,0 1px 1px #08080814,inset 0 4px 16px #ffffff14,inset 0 1px 1px #fff3
}

.button.cc-black:focus-visible {
    outline-color: #171717
}

.button.cc-black[data-wf-focus-visible] {
    outline-color: #171717
}

.button.is--comment {
    flex: none;
    padding: .3rem;
    font-size: .6875rem;
    font-weight: 400
}

.button-group {
    grid-column-gap: 2rem;
    grid-row-gap: .7rem;
    align-items: center;
    display: flex
}

.button-group.cc-text-only {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem
}

.button-group.cc-text-only.is-dark {
    background-color: var(--white)
}

.button-group.is--loc {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem
}

.button-group.alt-1 {
    margin-bottom: .75rem
}

.button-icon_top-right {
    margin-left: .75em;
    line-height: 1.1;
    display: inline-block;
    position: relative;
    top: .1em
}

.cta_card-w {
    z-index: 1;
    position: relative;
    overflow: hidden
}

.cta_card-content {
    z-index: 5;
    align-items: flex-start;
    min-height: 30em;
    padding: 2rem 2.5rem;
    display: flex;
    position: relative
}

.cta_card-text-w {
    max-width: 40%
}

.span-grey-60 {
    color: var(--gray-400)
}

.cta_card-ellipse {
    background-color: var(--gray-500);
    opacity: .3;
    filter: blur(200px);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: -25% -25% auto auto
}

.cta_card-ellipse.is--backlight {
    inset: 0%
}

.rel {
    position: relative
}

.button_group-w {
    grid-row-gap: 2rem;
    flex-direction: column;
    flex: none;
    display: flex
}

.paragraph-xxl {
    letter-spacing: -.01em;
    font-size: 2.125rem;
    line-height: 1.5
}

.new_paragraph {
    margin-bottom: 1em;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6
}

.eyebrow {
    font-variation-settings: "opsz" 100;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: .9375rem;
    font-weight: 500;
    line-height: 1.3
}

.eyebrow.u-text-center {
    text-align: center
}

.paragraph-s {
    font-size: .875rem;
    line-height: 1.6
}

.paragraph-l {
    font-size: 1.125rem;
    line-height: 1.6
}

.hl_subheadline-w {
    max-width: none;
    margin-bottom: 2rem
}

.hl_subheadline-w.is--started {
    max-width: 50%;
    margin-bottom: 0
}

.hl_subheadline-w.is--features {
    max-width: 50%
}

.hl_subheadline-w.is--enterprise {
    max-width: 37rem
}

.hl_subheadline-w.is--hero {
    max-width: 53%
}

.hl_subheadline-w.is--hero.alt-1 {
    max-width: none;
    margin-bottom: 0
}

.hl_subheadline-w.is--hero.alt-2 {
    max-width: 72%
}

.hl_headline-w {
    max-width: 56vw;
    margin-bottom: 2rem
}

.hl_headline-w.is--features {
    max-width: 90%
}

.hl_headline-w.is--trusted {
    max-width: 70%;
    margin-bottom: 0
}

.hl_headline-w.is--growth {
    max-width: none
}

.hl_headline-w.is--enterprise {
    max-width: 70%;
    margin-bottom: 0
}

.hl_headline-w.is--cta {
    flex: none;
    max-width: none;
    margin-bottom: 0
}

.hl_headline-w.alt-1 {
    text-wrap: balance;
    max-width: none;
    margin-bottom: 0
}

.hl_headline-w.alt-2 {
    max-width: 82vw;
    margin-bottom: 1rem
}

.gl-placeholder {
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    display: flex;
    position: relative
}

.intro-logos_oh {
    display: flex;
    overflow: visible
}

.intro-logos_w {
    flex-flow: row;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex
}

.intro-logos_logo {
    flex: 1;
    width: 100%;
    height: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    display: block
}

.intro-logos_logo.is--pwc {
    flex: none;
    width: 4.1rem;
    height: 3.4rem;
    position: relative;
    top: -.2rem
}

.intro-logos_logo.is--ideo,.intro-logos_logo.is--decathalon {
    height: 1.6rem
}

.hero_content-w {
    padding-top: 6rem;
    padding-bottom: 0
}

.hero_content-w.alt-1 {
    grid-column-gap: 4rem;
    grid-row-gap: 5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: end center;
    display: grid
}

.hero_content-w.alt-2 {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex
}

.miw_content-w {
    flex-direction: column;
    height: 100%;
    display: flex
}

.miw_content-track {
    height: 150rem;
    position: relative
}

.miw_img-trans {
    z-index: 10;
    position: relative
}

.miw_img-w {
    filter: brightness(70%);
    cursor: pointer;
    border-radius: 2px;
    transition: filter .6s;
    position: absolute;
    overflow: visible
}

.miw_img-w:hover {
    filter: brightness()
}

.miw_img-w.is--1 {
    z-index: 2;
    inset: 4rem auto auto;
    transform: translate(-27rem)
}

.miw_img-w.is--2 {
    z-index: 1;
    top: -2rem;
    bottom: auto;
    transform: translate(20rem)
}

.miw_img-w.is--3 {
    z-index: 1;
    top: 40rem;
    transform: translate(-23rem)
}

.miw_img-w.is--4 {
    z-index: 1;
    top: 33rem;
    transform: translate(30rem)
}

.miw_img-w.is--5 {
    z-index: 2;
    top: 80rem;
    transform: translate(-18rem)
}

.miw_img-w.is--6 {
    z-index: 2;
    top: 60rem;
    transform: translate(20rem)
}

.miw_img-w.is--7 {
    z-index: 1;
    top: 100rem;
    transform: translate(28rem)
}

.miw_img-w.is--8 {
    z-index: 1;
    top: 119.4rem;
    transform: translate(-30rem)
}

.miw_img-w.is--9 {
    z-index: 2;
    transition: filter .6s;
    top: 135rem;
    transform: translate(20rem)
}

.miw_img {
    border-radius: 4px;
    position: relative
}

.miw_img.is--1 {
    object-fit: cover;
    width: 100%;
    max-width: 15rem;
    height: 30rem
}

.miw_img.is--2 {
    object-fit: cover;
    width: 45.0625rem;
    max-width: none;
    height: 100%
}

.miw_overlay-track {
    z-index: 10;
    position: absolute;
    inset: 0 0% 0%
}

.miw_overlay-content {
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    position: sticky;
    top: 0
}

.miw_badge-w {
    background-color: var(--white);
    color: var(--black);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 37.5rem;
    padding: 2rem;
    transition: color .6s,background-color .6s;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px 40px #000c
}

.miw_badge-w:hover {
    background-color: var(--webflow-blue-600);
    color: var(--white)
}

.miw_base-shadow {
    z-index: 100;
    background-image: linear-gradient(to bottom,#08080800,var(--black)95%);
    height: 15em;
    position: absolute;
    inset: auto 0% -1px
}

.miw_badge-svg {
    flex: none;
    justify-content: flex-start;
    width: 26.5rem;
    height: 2.6rem;
    display: flex
}

.miw_badge-svg.is--w {
    flex: none;
    width: 6.4rem;
    height: 4rem;
    max-height: none;
    margin-right: 1rem
}

.swiper-w.is--trusted {
    position: relative
}

.swiper-wrapper {
    flex-direction: row;
    display: flex
}

.swiper-slide {
    flex: none;
    width: 30%;
    margin-right: 0;
    position: relative
}

.swiper-slide.is--gs {
    width: 30.1%;
    margin-right: 32px
}

.swiper-slide.is--trusted {
    width: 25rem
}

.swiper-slide.is--trusted:hover {
    z-index: 5
}

.gs_card-w {
    z-index: 10;
    border: 1px solid var(--gray-200);
    background-color: var(--white);
    color: var(--black);
    height: 100%;
    padding: 1.5rem;
    transition: border-color .3s cubic-bezier(.165,.84,.44,1),box-shadow .3s cubic-bezier(.165,.84,.44,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 #0000
}

.gs_card-w:hover {
    border-color: #0000;
    box-shadow: 0 1px 3px #0003,0 6px 8px #0808080a,0 16px 20px #08080808,32px 0 48px #08080805
}

.gs_card-content {
    z-index: 10;
    flex-direction: column;
    height: 100%;
    display: flex;
    position: relative
}

.gs_img-w {
    width: 100%;
    margin-bottom: 1rem
}

.gs_img-clip {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 61.5%;
    display: flex;
    position: relative;
    overflow: hidden
}

.gs_img {
    object-fit: cover;
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%
}

.caption_tag {
    background-color: var(--black);
    color: var(--white);
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: .2em;
    padding-left: .75em;
    padding-right: .75em;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.7;
    display: inline-block
}

.gs_tag-w {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    display: flex
}

.gs_content-w {
    grid-row-gap: 1em;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    display: flex
}

.gs_headline-flex {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6rem;
    display: flex
}

.swiper_arrow-w {
    grid-column-gap: 0rem;
    align-items: center;
    display: flex;
    transform: translate(1em)
}

.swiper_arr-w {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: color .2s;
    display: flex
}

.swiper_arr-w:hover {
    color: var(--webflow-blue)
}

.swiper_arr-svg {
    width: 1.375rem;
    height: 1.375rem
}

.gs_card-underlay {
    z-index: 1;
    background-color: var(--gray-600);
    opacity: .1;
    filter: blur(100px);
    border-radius: 100%;
    width: 200%;
    height: 80%;
    position: absolute;
    inset: auto 0% -40% -50%
}

.gs_card-outer {
    cursor: pointer;
    height: 100%;
    position: relative
}

.gs_card-drop {
    z-index: 0;
    background-color: var(--black);
    opacity: 0;
    filter: blur(3.125em);
    width: 60%;
    height: 80%;
    position: absolute;
    bottom: -5%;
    left: 20%
}

.footer_cta-img-w {
    height: 26rem;
    position: relative
}

.footer_cta-img-1 {
    object-fit: fill;
    width: 100%;
    height: 100%;
    position: relative
}

.gr_ellipse {
    z-index: -2;
    background-color: var(--gray-600);
    opacity: .2;
    filter: blur(30em);
    border-radius: 100%;
    width: 100rem;
    height: 70rem;
    position: absolute;
    inset: auto -40% -40% auto
}

.gr_ellipse.is--miw {
    inset: auto -50% 0% auto
}

.miw_mouse-track {
    position: relative
}

.miw_symbol-w {
    flex: none;
    width: 7.4rem;
    height: 4rem;
    position: relative;
    overflow: hidden
}

.miw_badge-inner {
    z-index: 10;
    align-items: center;
    display: flex;
    position: relative
}

.miw_arr-overlay {
    z-index: 10;
    justify-content: center;
    align-items: center;
    width: 6.4rem;
    display: flex;
    position: absolute;
    inset: 0%
}

.miw_arr-svg {
    width: 3rem;
    height: 3rem;
    transform: translate(-5em,4em)
}

.gs_card-fill {
    background-color: var(--gray-100);
    border-radius: 4px;
    position: absolute;
    inset: 0%
}

.s_content-w {
    padding-top: 10rem
}

.s_content-w.is--growth {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex
}

.s_content-w.is--enterprise {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10rem;
    display: flex
}

.s_content-w.is--features {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6rem;
    display: flex
}

.s_content-w.is--cta {
    padding-bottom: 7.5rem
}

.s_content-w.is--started {
    padding-bottom: 10rem
}

.ts_headline-flex {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6rem;
    display: flex
}

.ts_card-w {
    z-index: 1;
    position: relative;
    overflow: hidden
}

.ts_card-content {
    z-index: 5;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 30rem;
    padding: 2rem 2.5rem;
    display: flex;
    position: relative
}

.ts_card-svg-w {
    max-width: 60%
}

.ts_card-svg-w.is--4,.ts_card-svg-w.is--1 {
    max-width: 40%
}

.ts_card-svg-w.is--3 {
    max-width: 55%
}

.ts_card-svg-w.is--5 {
    max-width: 42%
}

.ts_card-stat-w {
    grid-row-gap: 1em;
    flex-direction: column;
    display: flex
}

.ts_card-link-w {
    flex-direction: column;
    flex: 0 auto;
    justify-content: flex-end;
    display: flex
}

.ts_card-link-w.is--grow {
    flex: 1
}

.ts_stat-text {
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1
}

.ts_underlay {
    z-index: 0;
    position: absolute;
    inset: 0%;
    box-shadow: 0 14px 20px 13px #fff3
}

.growth_card-text-w {
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: flex-start;
    max-width: 20rem;
    display: flex
}

.growth_card-text-w.is--collab {
    max-width: 30%
}

.growth_card-text-w.is--seo {
    max-width: 44%
}

.growth_card-text-w.is--local {
    max-width: 27%
}

.growth_card-text-w.is-composable {
    max-width: 22.5rem
}

.growth_card-content {
    z-index: 5;
    align-items: flex-start;
    min-height: 35rem;
    padding: 2rem 2.5rem;
    display: flex;
    position: relative
}

.growth_card-w {
    z-index: 1;
    text-align: left;
    position: relative;
    overflow: hidden
}

.growth_cards-w {
    grid-row-gap: 6rem;
    flex-direction: column;
    width: 100%;
    margin-top: 6rem;
    display: flex
}

.hl_horizontal-flex {
    grid-column-gap: 2rem;
    align-items: flex-end;
    display: flex
}

.u-auto_left {
    margin-left: auto
}

.u-auto_left.u-line_adjust {
    margin-bottom: .8rem
}

.ent_cards-w {
    margin-top: 4.5rem
}

.ent_cards-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    position: relative
}

.ent_card-content {
    z-index: 5;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 26rem;
    padding: 2rem 2.5rem;
    display: flex;
    position: relative
}

.ent_card-w {
    z-index: 1;
    background-color: var(--black);
    text-align: left;
    height: 100%;
    position: relative;
    overflow: hidden
}

.ent_card-text-w {
    z-index: 2;
    grid-row-gap: 1rem;
    flex-direction: column;
    max-width: 20em;
    display: flex;
    position: relative
}

.span-grey {
    color: var(--gray-200)
}

.ent_card-icon-w {
    width: 7rem;
    height: 7rem;
    margin-bottom: 3rem;
    position: relative
}

.ent_cards-inner {
    position: relative
}

.hero_powerline-w {
    z-index: -1;
    mix-blend-mode: lighten;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    position: absolute;
    inset: 0%
}

.hero_powerline-mask-w {
    z-index: 5;
    filter: blur(1px);
    width: auto;
    height: 100%;
    position: relative;
    inset: 0% 0% 0% auto
}

.powerline_content-w {
    width: auto;
    height: 110%;
    position: absolute;
    top: -5%
}

.hero_powerline-tracks {
    z-index: 0;
    opacity: 1;
    filter: blur(2px);
    width: auto;
    height: 100%;
    position: absolute;
    inset: 0% 0% 0% auto
}

.hero_powerline-orb {
    z-index: 10;
    opacity: 1;
    filter: none;
    mix-blend-mode: color-dodge;
    background-image: radial-gradient(circle farthest-side,#fff6,#ffffff69 32%,#ffffff03 100%,#fff0);
    justify-content: center;
    align-items: center;
    width: 7em;
    height: 7em;
    display: flex;
    position: absolute;
    top: 28%;
    left: 52%
}

.hero_powerline-orb.inner {
    opacity: 1;
    mix-blend-mode: normal;
    background-image: radial-gradient(circle farthest-side,#ffffffad,#ffffff69 29%,#ffffff03 100%,#fff0);
    width: 50%;
    height: 50%;
    inset: auto
}

.hero_powerline-orb.inner.is--test2 {
    mix-blend-mode: normal;
    width: 100%;
    height: 100%
}

.hero_powerline-orb.is--test-1 {
    filter: blur(20px)
}

.hero_powerline-orb.is--test-1.path_1 {
    left: 43%
}

.hero_powerline-orb.is--test-1.path_3 {
    left: 62%
}

.hero_powerline-orb.is--test-2 {
    opacity: 1;
    filter: none;
    mix-blend-mode: soft-light;
    background-image: radial-gradient(circle farthest-side,#fff,#ffffff69 32%,#ffffff03 100%,#fff0);
    left: 72%
}

.powerline_base-shadow {
    z-index: 100;
    background-image: linear-gradient(to bottom,#08080800,var(--black)95%);
    height: 5em;
    position: absolute;
    inset: auto 0% -1px
}

.powerline_base-shadow.is-top {
    background-image: linear-gradient(to top,#08080800,var(--black)95%);
    top: -1px;
    bottom: auto
}

.hero_powerline-backdrop {
    z-index: -1;
    background-color: var(--gray-900);
    position: absolute;
    inset: 0%
}

.gl_placeholder-img {
    width: 100%;
    height: 100%
}

.css-sliders {
    width: 0;
    height: 0;
    position: fixed;
    inset: 0% 0% auto;
    overflow: hidden
}

.growth_card-localize-w {
    z-index: 0;
    width: 65%;
    height: 80%;
    position: absolute;
    inset: auto 2.5rem 0% auto
}

.growth_button-w {
    background-color: var(--gray-900);
    flex: none;
    justify-content: center;
    align-items: center;
    min-height: 3rem;
    padding: .75rem 1rem;
    transition: box-shadow .2s,transform .2s;
    display: flex;
    position: relative;
    overflow: hidden
}

.localize_trigger-w {
    z-index: 10;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    right: 50%
}

.growth_button-icon {
    flex: none;
    width: 1.1rem;
    height: 1.1rem;
    display: flex
}

.growth_button-inner {
    z-index: 10;
    align-items: center;
    display: flex;
    position: relative
}

.growth_button-text {
    margin-left: .5rem;
    font-size: 1.375rem;
    line-height: 1
}

.growth_button-svg {
    width: 100%;
    height: 100%
}

.growth_button-highlight-w {
    cursor: pointer;
    flex: 1;
    align-items: center;
    display: flex;
    position: relative
}

.growth_button-highlight {
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%
}

.growth_card-loc-content {
    background-color: var(--gray-900);
    height: 110%;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: absolute;
    inset: 0%;
    overflow: hidden
}

.growth_loc-ui-nav {
    background-color: #0b0220;
    width: 100%;
    max-width: none;
    padding: 12px 20px
}

.growth_loc-ui-nav-content {
    justify-content: space-between;
    align-items: center;
    display: flex
}

.growth_loc-ui-brand {
    width: 16%
}

.growth_loc-ui-brand-svg {
    width: 100%;
    height: 100%
}

.growth_loc-links-w {
    align-items: center;
    height: 3em;
    font-size: 1vw;
    display: flex
}

.growth_loc-text {
    text-align: center;
    min-height: .7vw;
    font-size: .7rem
}

.growth_loc-text.is--hl {
    min-height: 4vw;
    font-size: 4vw;
    line-height: 1.2
}

.growth_loc-nav-links {
    grid-column-gap: 1.5rem;
    align-items: center;
    display: flex
}

.growth_loc-button {
    border: 1px solid var(--white);
    color: var(--black);
    text-align: center;
    background-color: #fff;
    border-radius: 20rem;
    min-width: 8vw;
    min-height: 2rem;
    padding: .5rem 1.1rem
}

.growth_loc-button.is--alt {
    color: var(--white);
    background-color: #0000
}

.growth_loc-ui-body {
    position: relative
}

.growth_loc_ui-body-content {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1rem 1rem;
    display: flex;
    position: absolute;
    inset: 0%
}

.growth_loc-ui-bg {
    width: 100%;
    height: 100%
}

.growth_loc-headline-w {
    max-width: 90%
}

.growth_loc-headline-w.is--mw60 {
    max-width: 60%
}

.growth_loc-headline-w.is--mw60.v-marg_1 {
    min-height: 2rem
}

.growth_loc-headline-w.is--hl {
    max-width: 100%;
    min-height: 10vw;
    margin-bottom: 1rem
}

.designer-w {
    z-index: 10;
    color: var(--app-white);
    background-color: #1e1e1e;
    flex-direction: column;
    flex: none;
    width: 85rem;
    font-family: Inter Reduced,sans-serif;
    font-size: .6rem;
    display: block;
    position: relative;
    overflow: hidden
}

.designer-w.is--collab {
    width: 91rem
}

.designer_top-w {
    z-index: 10;
    justify-content: space-between;
    height: 2.1875rem;
    display: flex;
    position: relative
}

.designer_left-w {
    width: 2.5625rem;
    height: 100%;
    position: relative
}

.designer-interior-w {
    display: flex
}

.designer_canvas-w {
    width: 100%;
    position: relative;
    overflow: hidden
}

.designer_canvas-w.is--ov {
    overflow: visible
}

.designer_right-w {
    width: 15rem
}

.designer_left-icon-group {
    flex-direction: column;
    width: 100%;
    display: flex
}

.designer_left-icon-w {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: .4rem;
    display: flex
}

.designer_left-icon-w:hover {
    background-color: #212121
}

.designer_left-icon-img {
    width: 100%;
    height: 100%
}

.designer_left-icon-img.is--more {
    width: .7rem;
    height: 100%
}

.designer_left-icon-divider {
    width: 100%;
    height: 1px
}

.designer_top-left-w {
    display: flex
}

.designer_top-icon-w {
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: .4rem;
    display: flex
}

.designer_top-icon-w:hover {
    background-color: #212121
}

.designer_top-button-w {
    grid-column-gap: .4rem;
    align-items: center;
    padding-top: .2rem;
    padding-bottom: .2rem;
    display: flex
}

.designer_button-w {
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    padding: .2rem .4rem;
    font-size: .7rem;
    line-height: 1;
    display: flex
}

.designer_button-w.is--branch {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: .3rem;
    font-size: .7rem
}

.designer_button-inner {
    grid-column-gap: .25rem;
    align-items: center;
    display: flex
}

.designer_button-icon-w {
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    display: flex
}

.designer_button-icon-w.is--chevron {
    flex: 0 auto;
    width: .7rem;
    height: auto
}

.designer_button-icon-svg {
    width: auto;
    height: auto
}

.designer_top-icon-img {
    width: 1.2rem;
    height: 1.2rem
}

.designer_top-center-w {
    justify-content: center;
    max-height: 100%;
    display: flex;
    position: absolute;
    inset: 0%
}

.designer_top-responsive-w {
    grid-column-gap: .4rem;
    align-items: center;
    padding: .4rem;
    font-size: .6rem;
    display: flex
}

.designer_spacer {
    height: 10rem
}

.designer_canvas-img {
    width: 100%
}

.designer_left-pannel-w {
    background-color: #1e1e1e;
    width: 15rem;
    position: absolute;
    inset: 0% auto 0% 0%
}

.designer_pannel-row {
    grid-row-gap: .5rem;
    flex-direction: column;
    justify-content: flex-start;
    padding: .6rem;
    display: flex
}

.designer_pannel-close-icon {
    width: 1.2rem;
    height: 1.2rem
}

.designer_pannel-close-icon.is--convo {
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    transition: opacity .2s
}

.designer_pannel-close-icon.is--convo:hover {
    opacity: .6
}

.designer_pannel-close-icon.is--more {
    opacity: .5;
    width: .8rem;
    height: .8rem
}

.designer_search-w {
    grid-column-gap: .2rem;
    color: var(--gray-300);
    width: 100%;
    padding: .1rem;
    font-size: .6rem;
    display: flex
}

.designer_search-icon {
    width: .9rem;
    height: .9rem
}

.designer_pannel-flex-sb {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex
}

.designer_pannel-flex-sb.gap_05 {
    grid-column-gap: .5rem
}

.designer_app-row {
    z-index: 5;
    grid-column-gap: .75rem;
    grid-row-gap: .5rem;
    background-color: var(--app-grey);
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: .4rem .6rem;
    line-height: 1;
    display: flex;
    position: relative
}

.designer_pannel-app-icon-w {
    width: 1.4rem;
    height: 1.4rem;
    overflow: hidden
}

.designer_pannel-app-img {
    width: 100%;
    height: 100%
}

.designer_app-row-w {
    align-items: center;
    padding: 1px;
    display: flex;
    position: relative;
    overflow: hidden
}

.designer_app-highlight {
    background-image: radial-gradient(circle closest-side at 50% 50%,var(--white),#fff0 99%);
    width: 4rem;
    height: 4rem;
    position: absolute;
    transform: translate(-4.1rem)
}

.designer_app-highlight.is--dummy {
    z-index: -1;
    width: 2rem;
    height: 2rem;
    top: auto;
    left: 0%;
    right: auto;
    transform: translate(-2.1rem)
}

.designer_pannel-empty-w {
    grid-row-gap: .75rem;
    text-align: center;
    flex-direction: column;
    padding: .6rem 1rem;
    display: flex
}

/*  */


.display-none {
    display: none
}


.new-g-nav_menu-dropdown_toggle:focus-visible {
    color: #fff;
    -webkit-text-stroke-color: #146ef5;
    box-shadow: inset 0 -3px #146ef5
}

.new-g-nav_menu-dropdown_toggle[data-wf-focus-visible] {
    color: #fff;
    -webkit-text-stroke-color: #146ef5;
    box-shadow: inset 0 -3px #146ef5
}

.new-g-nav_menu-dropdown_toggle.w--open {
    box-shadow: inset 0 -3px #146ef5
}

.new-g-nav_menu-content_block-ad {
    border-radius: 4px;
    flex: 1;
    max-height: 441px;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: opacity .2s;
    display: block;
    overflow: hidden
}

.new-g-nav_menu-content_block-ad:hover {
    opacity: .9
}

.new-g-nav_menu-section_link-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    transform: translateY(1px)
}

.new-g-nav_menu-section_link {
    color: #080808;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s,color .2s;
    display: flex
}

.new-g-nav_menu-section_link:hover,.new-g-nav_menu-section_link:focus {
    color: #146ef5
}

.new-g-nav_menu-container-bg {
    background-color: #fff;
    border-radius: .25rem;
    flex: 1;
    align-self: stretch;
    width: 100%;
    height: 100%;
    transition: all .2s cubic-bezier(.165,.84,.44,1);
    position: absolute;
    inset: 0% 0% 0% 50%;
    transform: translate(-50%);
    box-shadow: 0 20px 40px #08080808,0 10px 18px #08080808,0 4px 8px #0808080d,0 1px 2px #08080814
}

.new-g-nav_menu-dropdown_wrapper {
    align-items: center;
    display: flex;
    position: static
}

.new-g-nav_menu-dropdown_wrapper:focus {
    color: #146ef5;
    box-shadow: inset 0 -3px #4353ff
}

.new-g-nav-col {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
    margin-bottom: 0;
    display: flex
}

.new-g-nav_menu-content_block-ad-link {
    color: #fff;
    background-color: #080808;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    text-decoration: none;
    display: flex
}

.new-g-nav_menu-content_block-ad-link.cc-customer {
    justify-content: space-between;
    align-items: stretch
}

.new-g-nav_menu_container {
    z-index: 1;
    pointer-events: auto;
    justify-content: space-between;
    max-width: 1280px;
    margin: .5rem auto;
    padding: 1.6rem;
    display: flex;
    position: relative
}

.new-g-nav_menu_container.cc-small {
    max-width: 820px;
    position: relative
}

.new-g-nav_menu-content_block-ad-eyebrow {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    display: flex
}

.u-mt-48 {
    margin-top: 3rem
}

.one-tap-wrapper {
    z-index: 999;
    width: 1px;
    height: 1px;
    margin-right: 380px;
    position: absolute;
    inset: 8px 0 auto auto
}

.exp_g-modal-logos_wrapper {
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: auto auto auto auto auto 1fr 1fr;
    grid-auto-columns: minmax(100px,200px);
    grid-auto-flow: row;
    justify-content: center;
    align-items: flex-end;
    margin-top: 2em;
    display: flex
}

.exp_g-modal-logos_wrapper.cc-test {
    grid-column-gap: 3.75rem;
    grid-row-gap: 2rem;
    width: 28em;
    margin-left: auto;
    margin-right: auto
}

.exp_g-modal_embed {
    position: absolute;
    inset: 0%
}

.exp_g-modal_embed.experiment {
    z-index: 1;
    width: 100%;
    height: 610px;
    position: relative
}

.new-g-modal-login {
    background-color: #fff;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    padding-bottom: 80px;
    display: flex;
    overflow: scroll
}

.new-g-modal_trigger {
    display: none
}

.exp_g-modal-logos {
    flex-direction: column;
    align-items: stretch;
    padding-left: 40px;
    padding-right: 40px;
    display: flex
}

.new-g-modal-image-img {
    z-index: 2;
    width: 200%;
    max-width: none;
    display: block
}

.new-g-modal-image-img.cc-tablet {
    display: none
}

.new-g-modal-image-img.cc-desktop {
    width: auto;
    height: 90vh;
    position: absolute;
    inset: auto 0% 0% auto;
    transform: translate(32px)
}

.new-g-modal-image {
    background-color: #111;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
    padding-right: 80px;
    display: flex;
    position: relative
}

.exp_g-modal-logos_img.cc-low {
    transform: translateY(3px)
}

.new-g-modal_wrap {
    z-index: 2147483647;
    color: var(--black);
    justify-content: center;
    align-items: center;
    display: none;
    position: fixed;
    inset: 0%
}

.new-g-modal_x {
    z-index: 2;
    cursor: pointer;
    background-image: url(https://cdn.prod.website-files.com/6515a6d5f30daec433d0abe2/651716fc2b486642ab9f4cd2_x.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 21px 21px;
    width: 32px;
    height: 32px;
    position: absolute;
    inset: 16px 16px auto auto
}

.new-g-modal_x:hover {
    opacity: .5
}

.new-g-modal-box {
    z-index: 2;
    grid-column-gap: 0px;
    grid-row-gap: 16px;
    background-color: #080808;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    display: grid;
    position: relative
}

.g-footer-copyright {
    border-top: 1px solid #2b2b2b;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex
}

.g-footer-column {
    flex-direction: column;
    display: flex
}

.g-footer-list_item-link {
    color: var(--gray-400);
    align-items: center;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: color .12s cubic-bezier(.455,.03,.515,.955);
    display: flex
}

.g-footer-list_item-link:hover {
    color: var(--white)
}

.g-footer-list_item-link:focus-visible {
    color: var(--white);
    outline-style: none;
    text-decoration: underline
}

.g-footer-list_item-link[data-wf-focus-visible] {
    color: var(--white);
    outline-style: none;
    text-decoration: underline
}

.g-footer-list_item-link.cc-combo {
    align-items: center;
    display: flex
}

.u-text-gray400 {
    color: #898989
}

.g-brand-logo_footer {
    transition: color .2s;
    display: flex
}

.g-brand-logo_footer:hover {
    color: #898989
}

.g-footer-list_item {
    margin-bottom: 0;
    padding-left: 0
}

.g-footer_container {
    flex-direction: column;
    justify-content: space-between;
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: static
}

.g-footer-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    display: flex
}

.g-footer-list.cc-social {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row;
    margin-bottom: -.5rem
}

.g-footer-list_item-tag {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: var(--gray-400);
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: var(--gray-400);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: var(--gray-400);
    border-left-style: solid;
    border-left-width: 1px;
    border-left-color: var(--gray-400);
    letter-spacing: .1em;
    text-transform: uppercase;
    border-color: currentColor;
    border-radius: 4px;
    margin-left: .625rem;
    padding: .25rem .375rem;
    font-family: WF Visual Sans,Arial,sans-serif;
    font-size: .625rem;
    font-weight: 500;
    line-height: 1.3
}

.g-footer-brand {
    color: #fff
}

.g-footer-brand:hover {
    color: #888
}

.g-footer-brand:focus-visible {
    color: #888;
    outline-style: none
}

.g-footer-brand[data-wf-focus-visible] {
    color: #888;
    outline-style: none
}

.g-footer-section_title {
    margin-bottom: 20px;
    font-weight: 500
}

.g-footer-section_title.h6 {
    white-space: nowrap
}

.g-footer-column_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: space-between;
    display: flex
}

.g-footer-list_item-social {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    display: flex
}

.composable-button-icon {
    width: 1.5rem;
    height: 1.5rem
}

.composable-ripple {
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    border: 2px solid #0000;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    position: absolute;
    inset: -20px 0% 0% -20px
}

.composable-ripple.second {
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    top: -40px;
    left: -40px
}

.composable-ripple.fourth {
    width: calc(100% + 160px);
    height: calc(100% + 160px);
    top: -80px;
    left: -80px
}

.composable-ripple.third {
    width: calc(100% + 120px);
    height: calc(100% + 120px);
    top: -60px;
    left: -60px
}

.composable-cms-image-trigger {
    width: 1px;
    height: 1px;
    position: absolute;
    inset: 0%
}

.composable-api-text {
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    background-color: #171717;
    background-image: linear-gradient(#ffffff05,#fff0);
    border-radius: .25rem;
    padding: .75rem;
    position: absolute;
    inset: 2.5rem 2.5rem auto auto;
    box-shadow: inset 0 29px 23px -16px #0003,inset 0 1px 1px #fff3
}

.composable-button-text {
    z-index: 2;
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    cursor: pointer;
    background-color: #171717;
    border-radius: 2px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-right: .25rem;
    display: flex;
    position: relative
}

.composable-button {
    cursor: pointer;
    flex: none;
    justify-content: center;
    align-items: center;
    height: 36px;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
    box-shadow: 0 1px 6px 2px rgba(0, 108, 250, 0.6);

}

.composable-button:hover {
    z-index: 10
}

.composable-button.is-edw {
    width: 5.5rem;
    margin-bottom: 14rem;
    left: -2.75rem
}

.composable-button.is-dam {
    width: 5.5rem;
    margin-bottom: 12rem;
    left: -2.75rem
}

.composable-button.is-airtable {
    width: 7rem;
    margin-bottom: 8rem;
    left: -3.5rem
}

.composable-button.is-hubspot {
    width: 9.8rem;
    margin-bottom: 19rem;
    left: -4.9rem
}

.composable-gradient-line {
    z-index: 0;
    background: linear-gradient(to top right, rgb(0, 108, 250) 80%, rgb(150, 190, 255) 100%) border-box;

    width: 1px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    inset: -90px -1px 0% 0%
}

.composable-gradient-line.is-dam {
    height: 100px;
    top: -26px
}

.composable-gradient-line.is-edw {
    height: 150px;
    top: -53px
}

.opacity-40 {
    opacity: .4
}

.composable-button-radiating-border {
    position: absolute;
    inset: 0%;
    transform: scale(1)
}

.composable-image-wrapper {
    z-index: 2;
    aspect-ratio: 23.4/5.4;
    background-color: #080808;
    width: 100%;
    position: relative
}

.composable-lines-wrapper {
    grid-column-gap: 5.625rem;
    grid-row-gap: 5.625rem;
    height: 25.9rem;
    margin-top: -6.5rem;
    margin-bottom: -4rem;
    display: flex
}

.composable-image {
    z-index: 2;
    opacity: 0;
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: opacity .3s;
    position: absolute;
    inset: 0%
}

.composable-image.first {
    opacity: 1
}

.composable-line {
    background-color: #222;
    width: 1px;
    height: calc(100% + 40px);
    display: flex;
    position: relative
}

.button-9 {
    color: #fff;
    font-variation-settings: "opsz" 50;
    cursor: pointer;
    background-color: #146ef5;
    background-image: none;
    border-radius: 4px;
    padding: 1rem 1.5em 1rem 1.5rem;
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color .3s cubic-bezier(.165,.84,.44,1),box-shadow .3s cubic-bezier(.165,.84,.44,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 4px #08080814,0 1px 2px #08080833,inset 0 6px 12px #ffffff1f,inset 0 1px 1px #fff3
}

.button-9:hover {
    background-color: #0055d4;
    box-shadow: 0 1px 1px #08080814,0 1px 1px #08080833,inset 0 6px 12px #ffffff1f,inset 0 1px 1px #fff3
}

.button-9:active {
    box-shadow: none
}

.button-9:focus-visible {
    outline-offset: 2px;
    outline: 2px solid #146ef5
}

.button-9[data-wf-focus-visible] {
    outline-offset: 2px;
    outline: 2px solid #146ef5
}

.button-9.cc-text-only {
    box-shadow: none;
    background-color: #0000;
    background-image: none;
    padding-left: 0;
    padding-right: 0;
    transition: color .3s cubic-bezier(.165,.84,.44,1),background-color .3s cubic-bezier(.165,.84,.44,1),box-shadow .3s cubic-bezier(.165,.84,.44,1);
    display: flex;
    overflow: visible
}

.button-9.cc-text-only:hover {
    color: #444
}

.button-9.cc-text-only:focus-visible {
    outline-offset: 2px;
    outline: 2px solid #146ef5
}

.button-9.cc-text-only[data-wf-focus-visible] {
    outline-offset: 2px;
    outline: 2px solid #146ef5
}

.button-9.cc-text-only.cc-text-white {
    color: #fff
}

.button-9.cc-text-only.cc-text-white:hover {
    color: #f5f5f5
}

.composable-cms-top-wrapper {
    z-index: 1;
    grid-column-gap: 8.25rem;
    grid-row-gap: 8.25rem;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 2.5rem;
    display: flex;
    position: relative
}



    .new-g-nav_menu-link_wrapper:focus-visible {
        box-shadow: none;
        color: #4353ff;
        text-decoration: underline
    }

    .new-g-nav_menu-link_wrapper[data-wf-focus-visible] {
        box-shadow: none;
        color: #4353ff;
        text-decoration: underline
    }

    .new-g-nav_menu-link_wrapper.cc-mobile_button {
        text-align: center;
        border-radius: 4px;
        justify-content: center;
        padding: 1rem 1.5rem;
        box-shadow: inset 0 0 0 1px #d8d8d8
    }

    .new-g-nav_menu-list_item {
        border-bottom: 1px solid #d8d8d8
    }

    .new-g-nav_menu-list_item.cc-last {
        border-bottom-style: none
    }

    .new-g-nav_menu-dropdown.w--open {
        border-top-style: none;
        border-bottom-style: none;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        position: relative;
        top: 0%
    }

    .new-g-nav_menu-mobile-flex {
        flex-flow: column;
        flex: 1;
        align-items: stretch;
        height: calc(100dvh - 65px);
        position: relative
    }

    .new-g-nav_menu-mobile {
        align-items: center;
        display: flex
    }

    .new-g-nav_menu-list {
        flex-flow: wrap
    }

    .new-g-nav {
        padding-left: 0;
        padding-right: 0
    }

    .new-g-brand {
        z-index: 1;
        top: 0
    }

    .new-g-nav_menu-right {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        margin-top: auto;
        padding: 20px
    }

    .new-g-nav_menu-right.cc-mobile {
        z-index: 1;
        margin-right: 12px;
        padding-left: 0;
        padding-right: 0;
        position: relative
    }

    .new-g-nav_menu-alt {
        z-index: 0;
        background-color: #fff;
        border-bottom: 1px solid #d8d8d8;
        flex-direction: column;
        height: calc(100dvh - 65px);
        margin-left: 0;
        position: absolute
    }

    .new-g-nav_menu-overlay {
        display: none
    }

    .new-g-nav_menu-button {
        background-color: #0000;
        justify-content: center;
        align-items: center;
        height: 100%;
        margin-right: -20px;
        padding: 22px 16px 18px;
        display: flex
    }

    .new-g-nav_menu-button:focus-visible {
        background-color: #d8d8d8
    }

    .new-g-nav_menu-button[data-wf-focus-visible] {
        background-color: #d8d8d8
    }

    .new-g-nav_menu-button.w--open {
        z-index: 1;
        background-color: #0000
    }

    .new-g-nav_menu-dropdown_toggle {
        box-shadow: none;
        flex: 1;
        justify-content: space-between;
        width: 100%;
        font-weight: 600
    }

    .new-g-nav_menu-dropdown_toggle:hover,.new-g-nav_menu-dropdown_toggle:focus {
        box-shadow: none
    }

    .new-g-nav_menu-dropdown_toggle:focus-visible {
        box-shadow: none;
        color: #146ef5;
        text-decoration: underline
    }

    .new-g-nav_menu-dropdown_toggle[data-wf-focus-visible] {
        box-shadow: none;
        color: #146ef5;
        text-decoration: underline
    }

    .new-g-nav_menu-dropdown_toggle.w--open {
        box-shadow: none;
        color: #146ef5
    }

    .new-g-nav_menu-content_block-ad {
        border: 1px #000
    }

 

    .composable-api-text {
        top: 41%
    }

    .composable-lines-wrapper {
        align-self: center;
        height: 21.9rem;
        margin-top: -2.5rem
    }

    .composable-cms-top-wrapper {
        grid-column-gap: 2.4rem;
        grid-row-gap: 2.4rem;
        flex-flow: column
    }

    .composable-cms-wrapper {
        padding-top: 2rem;
        padding-left: 2rem;
        padding-right: 2rem
    }

    .intro-logos_oh-wrapper {
        text-align: left;
        justify-content: space-between;
        align-items: center;
        margin-top: 2.5rem;
        margin-bottom: 2.5rem
    }

    .intro-logos_oh-wrapper.alt-2 {
        text-align: center
    }

    .hero_video-playback-position {
        inset: -1rem -1rem auto auto
    }

    .video-alt_1-gradient {
        height: 110%
    }

    .intro-logos_oh-overflow {
        justify-content: flex-start;
        align-items: center
    }

    .logo_grid-gradient {
        width: 100vw
    }

    .brand-boilerplate-components--container.brand-boilerplate-components--cc-notification_bar {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px
    }

    .brand-boilerplate-components--notification_bar {
        z-index: 999999;
        font-size: .9375rem;
        position: relative
    }

    .brand-boilerplate-components--g-footer-list.brand-boilerplate-components--cc-social {
        grid-column-gap: .75rem;
        grid-row-gap: .75rem;
        margin-bottom: 0
    }

    .brand-boilerplate-components--g-footer-column {
        flex: 0 46%;
        width: 50%
    }

    .brand-boilerplate-components--g-footer-column_wrapper {
        grid-column-gap: 3rem;
        grid-row-gap: 3rem;
        flex-wrap: wrap
    }

    .brand-boilerplate-components--g-footer {
        padding-top: 100px;
        padding-bottom: 60px
    }

    .brand-boilerplate-components--g-modal-logos {
        padding-right: 40px
    }

    .brand-boilerplate-components--g-modal-image-img {
        border-radius: 4px;
        width: auto;
        max-width: 90%;
        display: none;
        position: relative;
        transform: translateY(-2rem)
    }

    .brand-boilerplate-components--g-modal-image-img.brand-boilerplate-components--cc-tablet {
        width: 100%;
        height: auto;
        display: block;
        inset: 0% auto auto 0%
    }

    .brand-boilerplate-components--g-modal-image {
        justify-content: center;
        align-items: flex-start;
        height: auto
    }

    .brand-boilerplate-components--g-modal-asset {
        width: 100%
    }

    .brand-boilerplate-components--g-modal-asset.brand-boilerplate-components--cc-image {
        min-width: auto;
        max-width: 100%
    }

    .brand-boilerplate-components--g-modal_box {
        flex-direction: column-reverse;
        justify-content: flex-end;
        height: auto;
        min-height: 100vh;
        max-height: none;
        display: flex
    }

    .brand-boilerplate-components--g-modal_box.brand-boilerplate-components--experiment {
        flex-direction: column-reverse;
        grid-template-columns: 1fr;
        justify-content: flex-end;
        height: auto;
        min-height: 100vh;
        max-height: none
    }

    .brand-boilerplate-components--g-nav-modal_wrap {
        overflow: scroll
    }

    .brand-boilerplate-components--g-nav_menu-link_wrapper {
        flex: 1;
        padding-left: 20px;
        padding-right: 20px;
        font-weight: 600
    }

    .brand-boilerplate-components--g-nav_menu-link_wrapper:hover {
        box-shadow: none
    }

    .brand-boilerplate-components--g-nav_menu-link_wrapper:focus {
        box-shadow: none;
        color: #1b1b1b
    }

    .brand-boilerplate-components--g-nav_menu-link_wrapper:focus-visible {
        box-shadow: none;
        color: #4353ff;
        text-decoration: underline
    }

    .brand-boilerplate-components--g-nav_menu-link_wrapper[data-wf-focus-visible] {
        box-shadow: none;
        color: #4353ff;
        text-decoration: underline
    }

    .brand-boilerplate-components--g-nav_menu-link_wrapper.brand-boilerplate-components--cc-mobile_button {
        text-align: center;
        border-radius: 4px;
        justify-content: center;
        padding: 1rem 1.5rem;
        box-shadow: inset 0 0 0 1px #d8d8d8
    }

    .brand-boilerplate-components--g-nav_menu-right {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex: none;
        margin-top: auto;
        padding: 20px
    }

    .brand-boilerplate-components--g-nav_menu-right.brand-boilerplate-components--cc-mobile {
        z-index: 1;
        padding-left: 0;
        padding-right: 0;
        position: relative
    }

    .brand-boilerplate-components--g-nav_menu-list_item {
        border-bottom: 1px solid #d8d8d8
    }

    .brand-boilerplate-components--g-nav_menu-list_item.brand-boilerplate-components--cc-last {
        border-bottom-style: none
    }

    .brand-boilerplate-components--g-nav_menu-overlay {
        opacity: 0;
        display: none
    }

    .brand-boilerplate-components--new-g-nav-col {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        display: grid
    }

    .brand-boilerplate-components--g-nav_menu-section {
        flex: none;
        width: 100%
    }

    .brand-boilerplate-components--g-nav_menu-section.brand-boilerplate-components--cc-last {
        padding-bottom: 1.25rem
    }

    .brand-boilerplate-components--g-nav_menu-section.brand-boilerplate-components--cc-small {
        flex: 1;
        max-width: none
    }

    .brand-boilerplate-components--g-nav_menu-list {
        flex-flow: wrap
    }

    .brand-boilerplate-components--g-nav_menu-container-bg {
        display: none
    }

    .brand-boilerplate-components--g-nav_menu_container {
        z-index: 2;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
        position: relative
    }

    .brand-boilerplate-components--g-nav_menu_container.brand-boilerplate-components--cc-small {
        width: 100%;
        max-width: none;
        left: 0
    }

    .brand-boilerplate-components--g-nav_menu-dropdown.w--open {
        border-top-style: none;
        border-bottom-style: none;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        position: relative;
        top: 0%
    }

    .brand-boilerplate-components--g-nav_menu-dropdown_toggle {
        box-shadow: none;
        flex: 1;
        justify-content: space-between;
        width: 100%;
        font-weight: 600
    }

    

@media screen and (max-width: 767px) {
    .h2 {
        font-size:2.3rem
    }

    .styles__logo-embed-obe {
        width: 104px
    }

    .h3 {
        font-size: 1.625rem
    }

    .h1 {
        font-size: 3rem
    }

    .h0 {
        font-size: 4rem
    }

    .h6 {
        line-height: 1.6
    }

    .paragraph-xl {
        font-size: 1.3rem
    }

    .button.cc-nav {
        text-align: center;
        width: 100%
    }

    .paragraph-xxl {
        font-size: 1.3rem
    }

    .eyebrow {
        font-size: 14px
    }

    .paragraph-l {
        font-size: 1.1rem
    }

    .hl_subheadline-w {
        max-width: 80%
    }

    .hl_subheadline-w.is--started {
        max-width: none
    }

    .hl_subheadline-w.is--features {
        max-width: 80%
    }

    .hero_content-w {
        padding-top: 4rem
    }

    .miw_content-track {
        height: 100rem
    }

    .miw_img-w.is--1 {
        top: 6rem
    }

    .miw_img-w.is--3 {
        top: 28.8rem;
        transform: translate(-6.1rem)
    }

    .miw_img-w.is--4 {
        top: 18.7rem;
        transform: translate(9.3rem)
    }

    .miw_img-w.is--5 {
        top: 51.1rem;
        transform: translate(-9.6rem)
    }

    .miw_img-w.is--6 {
        top: 66.3rem;
        transform: translate(10.9rem)
    }

    .miw_img-w.is--7 {
        top: 48.6rem;
        transform: translate(11.5rem,-2.4rem)
    }

    .miw_img-w.is--8 {
        top: 75.8rem;
        transform: translate(-13.1rem)
    }

    .miw_img-w.is--9 {
        top: 89.1rem;
        transform: translate(6.5rem)
    }

    .miw_img.is--1 {
        max-width: 10rem;
        height: 19rem
    }

    .miw_img.is--2 {
        width: 24rem;
        height: 100%;
        max-height: 100%
    }

    .swiper-slide {
        width: 100%
    }

    .swiper-slide.is--trusted {
        width: 80%
    }

    .footer_cta-img-w {
        width: 130vw;
        height: 19rem
    }

    .growth_card-text-w {
        max-width: 100%
    }

    .growth_card-content {
        min-height: 45rem
    }

    .growth_card-content.is--loc {
        min-height: 35rem
    }

    .ent_cards-w {
        width: 100%
    }

    .ent_cards-grid {
        flex-direction: column;
        display: flex
    }

    .ent_card-content {
        min-height: auto;
        padding-bottom: 4rem
    }

    .growth_card-localize-w {
        width: 89%;
        top: 15rem
    }

    .growth_loc-ui-nav {
        padding-left: 2.5vw;
        padding-right: 2.5vw
    }

    .growth_loc-ui-brand {
        width: 20%
    }

    .growth_loc-links-w {
        grid-column-gap: .5rem
    }

    .growth_loc-button {
        min-height: auto
    }

    .growth_loc-headline-w.is--mw60.v-marg_1 {
        max-width: 100%
    }

    .designer_canvas-img {
        width: 54rem;
        height: auto;
        display: block
    }

    .growth_app-designer-w {
        top: 27rem;
        left: 2rem
    }

    .growth_app-circles-inner {
        width: 70%;
        top: 2.6rem
    }

    .growth_app-circles-svg {
        opacity: 1
    }

    .growth_app-button-w.is--1 {
        top: -2rem
    }

    .growth_app-button-w.is--2 {
        top: 26%
    }

    .growth_app-button-w.is--3 {
        left: 87%
    }

    .growth_app-button-w.is--5 {
        top: 34%;
        right: 66%
    }

    .growth_app-bin {
        inset: auto auto 0%
    }

    .growth_app-designer-glow {
        top: -23%;
        left: auto
    }

    .growth_collab-designer-w,.growth_seo-og-w {
        top: 15rem
    }

    .growth_seo-code-w {
        right: -10rem
    }

    .growth_loc-nav-button-w {
        width: 1.2rem;
        height: 1.2rem;
        padding: .2rem;
        display: block
    }

    .growth_loc-nav-button-inner {
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        padding: 0;
        display: flex
    }

    .growth_loc-nav-line {
        background-color: var(--white);
        width: 100%;
        height: 1px;
        padding: 0
    }

    .features_tab-img-w,.features_tab-img {
        height: 32rem
    }

    .footer_cta-float-img-w.is--1 {
        right: 21%
    }

    .footer_cta-img-2 {
        width: 10rem
    }

    .footer_cta-img-3 {
        width: 7rem
    }

    .gl_placeholder-float-img-w.is--3 {
        top: 6%
    }

    .gl_placeholder-img-3 {
        width: 6.5rem
    }

    .gl_placeholder-img-2 {
        width: 7.8rem
    }

    .g-footer {
        padding-top: 80px
    }

    .eyebrow-3 {
        font-size: .875rem
    }

    .utility-container {
        padding-top: 8%;
        padding-bottom: 8%
    }

    .g-nav_menu-dropdown_toggle {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .g-brand {
        padding-left: 0
    }

    .g-nav_menu-image {
        width: 120px
    }

    .g-nav-col_3 {
        grid-column-gap: 28px;
        grid-row-gap: 28px;
        grid-template-columns: 1fr 1fr
    }

    .g-nav_menu-grid-left {
        padding-bottom: 32px
    }

    .g-nav-col_2 {
        grid-column-gap: 28px;
        grid-row-gap: 28px;
        grid-template-columns: 1fr 1fr
    }

    .g-nav_menu-link_wrapper {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .g-nav_menu-link_wrapper.cc-mobile_button {
        flex: 1
    }

    .g-nav_menu-right {
        flex-wrap: wrap
    }

    .g-nav_menu-right.cc-mobile {
        margin-right: 0
    }

    .new-g-nav_menu-content_block-ad-arrow {
        font-size: 1.3rem
    }

    .new-g-nav_menu-section_link-description {
        margin-top: 0
    }

    .new-g-nav_menu-section.cc-last {
        flex: none
    }

    .new-g-nav_menu-link_wrapper {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .new-g-nav_menu-link_wrapper.cc-mobile_button {
        flex: 1
    }

    .new-g-brand {
        padding-left: 0
    }

    .new-g-nav_menu-right {
        flex-wrap: wrap
    }

    .new-g-nav_menu-right.cc-mobile {
        margin-right: 0
    }

    .new-g-nav_menu-dropdown_toggle {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .new-g-nav-col {
        grid-template-columns: 1fr 1fr
    }

    .u-mt-48 {
        margin-top: 1.5rem
    }

    .new-g-modal-login {
        padding-bottom: 80px
    }

    .g-footer-copyright {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-flow: column
    }

    .g-footer-column {
        flex: 0 100%
    }

    .g-footer-list_item-link {
        transition: color .2s
    }

    .g-footer-list {
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        display: grid
    }

    .g-footer-list.cc-social {
        grid-column-gap: 1.5rem;
        flex-direction: row;
        margin-bottom: 0;
        display: flex
    }

    .g-footer-brand {
        order: -1
    }

    .g-footer-column-social {
        order: 1
    }

    .g-footer-column_wrapper {
        flex-flow: column;
        grid-template-columns: 1fr;
        display: flex
    }

    .composable-api-text {
        top: 35%
    }

    .composable-button {
        z-index: 10
    }

    .composable-button:hover {
        z-index: 11
    }

    .composable-lines-wrapper {
        align-self: center
    }

    .composable-line {
        background-image: linear-gradient(#000,#222 20%)
    }

    .composable-line.hide-mobile {
        display: none
    }

    .composable-cms-top-wrapper {
        grid-column-gap: 5rem;
        grid-row-gap: 5rem;
        padding-right: 0
    }

    .brand-boilerplate-components--notification_bar-flex {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        flex-flow: wrap
    }

   

    .composable-api-text {
        top: 30%
    }

    .composable-button {
        font-size: .875rem
    }

    .composable-button.is-edw {
        width: 5.2rem;
        margin-bottom: 6rem;
        left: -2.8rem
    }

    .composable-button.is-dam {
        width: 5.2rem;
        margin-bottom: 3rem;
        left: -2.6rem
    }

    .composable-button.is-airtable {
        width: 6.4rem;
        margin-bottom: 2.5rem;
        left: -3.2rem
    }

    .composable-button.is-hubspot {
        width: 9rem;
        margin-bottom: 10rem;
        left: -4.5rem
    }

    .composable-gradient-line {
        height: 160px;
        top: -50px
    }

    .composable-image-wrapper {
        aspect-ratio: auto;
        height: 300px
    }

    .composable-lines-wrapper {
        grid-column-gap: 3.9rem;
        grid-row-gap: 3.9rem;
        height: 231px;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto
    }

    .composable-image {
        object-fit: cover;
        width: calc(100% + 3rem);
        max-width: none;
        margin-left: -1.5rem
    }

    .composable-cms-top-wrapper {
        grid-column-gap: 3rem;
        grid-row-gap: 3rem
    }

    .composable-cms-wrapper {
        padding-top: 1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .hero_video-playback-position {
        inset: auto 0% 2rem auto
    }

    .video-alt_1 {
        perspective-origin: 50%;
        transform-origin: 50%;
        transform: rotate(0)
    }

    .video-alt_1-gradient {
        background-image: radial-gradient(circle at -50% -60%,#0000 40%,#000c 80%,#000000e6 91%,#000);
        height: 100%;
        display: none;
        inset: 0% auto auto 0%;
        transform: rotate(0)
    }

    .video-alt_1-wrapper {
        perspective: none;
        width: 220%;
        position: static;
        transform: none
    }

    .video-alt_1-video {
        z-index: -1
    }

    .video-alt_2-wrapper {
        perspective: none;
        width: 220%;
        position: static;
        transform: none
    }

    .brand-boilerplate-components--notification_bar-button {
        align-self: flex-start
    }

    .brand-boilerplate-components--notification_bar-flex {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start
    }

    .brand-boilerplate-components--container {
        width: 85%
    }

    .brand-boilerplate-components--g-footer-list {
        grid-column-gap: 1rem;
        margin-bottom: 0
    }

    .brand-boilerplate-components--g-footer-list.brand-boilerplate-components--cc-social {
        grid-column-gap: 1rem;
        flex-flow: wrap;
        justify-content: center;
        align-items: flex-start
    }

    .brand-boilerplate-components--g-footer-column-social {
        order: 1
    }

    .brand-boilerplate-components--g-footer-copyright {
        font-size: .875rem
    }

    .brand-boilerplate-components--h6 {
        font-size: .75rem
    }

    .brand-boilerplate-components--g-footer-column {
        padding-right: 0
    }

    .brand-boilerplate-components--g-footer-column.brand-boilerplate-components--cc-last {
        margin-bottom: 0
    }

    .brand-boilerplate-components--g-footer-list_item-tag {
        margin-left: 6px
    }

    .brand-boilerplate-components--g-footer_container {
        width: 85%
    }

    .brand-boilerplate-components--g-modal-logos_img {
        margin-left: 12px;
        margin-right: 12px
    }

    .brand-boilerplate-components--g-modal-login {
        padding-bottom: 60px
    }

    .brand-boilerplate-components--button-7.brand-boilerplate-components--cc-nav {
        text-align: center;
        width: 100%;
        padding-left: 1em;
        padding-right: 1em
    }

    .brand-boilerplate-components--g-nav_menu-link_wrapper {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .brand-boilerplate-components--g-nav_menu-link_wrapper.brand-boilerplate-components--cc-mobile_button {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .brand-boilerplate-components--g-nav_menu-right {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem
    }

    .brand-boilerplate-components--g-nav_menu-section_link-icon {
        margin-bottom: 24px;
        transform: none
    }

    .brand-boilerplate-components--new-g-nav-col {
        grid-template-columns: 1fr
    }

    .brand-boilerplate-components--g-nav_menu-dropdown_toggle {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .brand-boilerplate-components--g-nav_menu-dropdown_wrapper {
        align-items: stretch
    }

    .brand-boilerplate-components--h3 {
        font-size: 1.4rem
    }

    .brand-boilerplate-components--h4,.brand-boilerplate-components--g-nav_menu-content_block-ad-arrow {
        font-size: 1.1rem
    }

    .brand-boilerplate-components--g-nav_menu-content_block-ad-link,.brand-boilerplate-components--g-nav_menu-content_block-ad-link.brand-boilerplate-components--cc-customer {
        padding: 1rem
    }
}

#w-node-db7fbef8-4641-bb0d-e56c-ce75b3826bd3-8013cb57 {
    grid-area: span 1/span 1/span 1/span 1;
    justify-self: start
}

#w-node-_911a0f6c-877a-c5e5-7246-f56730e19fc2-30e19faa,#w-node-_911a0f6c-877a-c5e5-7246-f56730e1a056-30e19faa {
    grid-area: 1/2/2/3
}

#w-node-_911a0f6c-877a-c5e5-7246-f56730e1a07d-30e19faa,#w-node-_911a0f6c-877a-c5e5-7246-f56730e1a09b-30e19faa {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-_911a0f6c-877a-c5e5-7246-f56730e1a0c0-30e19faa {
    grid-area: 1/2/2/3
}

#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbae-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbaf-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb0-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb1-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb2-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb3-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb4-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb5-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb6-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb7-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb8-11e2fbab,#w-node-_0a4bf89c-2aab-aabd-5c8c-927611e2fbb9-11e2fbab {
    grid-area: span 1/span 1/span 1/span 1
}

@media screen and (max-width: 991px) {
    #w-node-_968b8079-fbfa-aab3-dd82-9aa011a06afd-8013cb57,#w-node-_968b8079-fbfa-aab3-dd82-9aa011a06b00-8013cb57,#w-node-_48c4b972-965c-7c46-0a4b-a71f2078359c-8013cb57,#w-node-_48c4b972-965c-7c46-0a4b-a71f2078359f-8013cb57 {
        grid-area:span 1/span 2/span 1/span 2
    }

    #w-node-_911a0f6c-877a-c5e5-7246-f56730e1a155-30e19faa {
        order: -9999
    }
}

@media screen and (max-width: 479px) {
    #w-node-e335a2ab-a30c-0a81-4539-812727ef4e55-27ef4e1f {
        order:9999;
        grid-area: span 1/span 2/span 1/span 2
    }

    #w-node-e335a2ab-a30c-0a81-4539-812727ef4e89-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4e8d-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4e91-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4e95-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4e99-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4e9d-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ea1-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ea5-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ea9-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ead-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4eb1-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4eba-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ebe-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ec4-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ec8-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ecc-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ed0-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ed4-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ed8-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4edc-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ee0-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ee9-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4eed-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ef1-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ef5-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4ef9-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4efd-27ef4e1f,#w-node-e335a2ab-a30c-0a81-4539-812727ef4f01-27ef4e1f {
        grid-area: span 1/span 2/span 1/span 2
    }
}

@font-face {
    font-family: 'WF Visual Sans';
    src: url('https://cdn.prod.website-files.com/6515a6d5f30daec433d0abe2/66bc0d5c8294f465af70e3bf_WFVisualSans-SemiBold.woff2') format('woff2'), url('https://cdn.prod.website-files.com/66d0c16fe2bf7512ebf41bea/66d0c16fe2bf7512ebf41d2b_WFVisualSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Reduced';
    src: url('https://cdn.prod.website-files.com/6515a6d5f30daec433d0abe2/6515a6d5f30daec433d0ac73_Inter-Regular-Reduced.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'WF Visual Sans Text';
    src: url('https://cdn.prod.website-files.com/6515a6d5f30daec433d0abe2/66a7c95265151f28859cc034_WFVisualSans-SemiBoldText.woff2') format('woff2'), url('https://cdn.prod.website-files.com/66d0c16fe2bf7512ebf41bea/66d0c16fe2bf7512ebf41d30_WFVisualSans-SemiBoldText.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'WF Visual Sans';
    src: url('https://cdn.prod.website-files.com/6515a6d5f30daec433d0abe2/66bcd14fe4566f8630a38ea1_WFVisualSans-Medium.woff2') format('woff2'), url('https://cdn.prod.website-files.com/66d0c16fe2bf7512ebf41bea/66d0c16fe2bf7512ebf41d2c_WFVisualSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'WF Visual Sans Text';
    src: url('https://cdn.prod.website-files.com/6515a6d5f30daec433d0abe2/66a7c952c91e04794c628a73_WFVisualSans-RegularText.woff2') format('woff2'), url('https://cdn.prod.website-files.com/66d0c16fe2bf7512ebf41bea/66d0c16fe2bf7512ebf41d31_WFVisualSans-RegularText.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'WF Visual Sans';
    src: url('https://cdn.prod.website-files.com/66d0c16fe2bf7512ebf41bea/66d0c16fe2bf7512ebf41d2d_WFVisualSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'WF Visual Sans Text';
    src: url('https://cdn.prod.website-files.com/66d0c16fe2bf7512ebf41bea/66d0c16fe2bf7512ebf41d2e_WFVisualSans-SemiBoldTextItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'WF Visual Sans Text';
    src: url('https://cdn.prod.website-files.com/66d0c16fe2bf7512ebf41bea/66d0c16fe2bf7512ebf41d2f_WFVisualSans-RegularTextItalic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}





/* //testimonials */

.testimonials-section {
    position: relative; /* Asegura que los elementos absolutos se posicionen con relación a esta sección */
    /* padding: 20px; */
    /* background-color: #fff; */
    border-radius: 10px; /* Opcional */
}

.gradient-top {
    background-image: linear-gradient(#060606 24%, #06060600);
    height: 10rem;
    position: absolute;
    top: 0; /* Fija la posición en la parte superior */
    left: 0;
    right: 0;
    z-index: 1; /* Asegura que esté por encima del contenido */
}

.gradient-bottom {
    background-image: linear-gradient(0deg, #060606 24%, #06060600);
    height: 10rem;
    position: absolute;
    bottom: 0; /* Fija la posición en la parte inferior */
    left: 0;
    right: 0;
    z-index: 1; /* Asegura que esté por encima del contenido */
}


/* //sliders button */
/* Sliders Button Section */
.supercharge-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
    background-color: #000;
    margin-top: 5rem;
}

.supercharge-hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.supercharge-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.supercharge-button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.supercharge-button.active, 
.supercharge-button:hover {
    background-color: #fff;
    color: #000;
}

.supercharge-image-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.supercharge-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* New Way Section */
.custom-section-container {
    text-align: center;
    padding: 50px 20px;
}

.custom-card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Para que los elementos se apilen en pantallas pequeñas */
}

.custom-card1 {
    background-image: url(./img/AdobeStock_285607013_Preview.png);
    background-size: cover; /* Escalar la imagen para cubrir toda el área */
    background-position: center; /* Centrar la imagen */
    background-repeat: no-repeat; /* Evitar que la imagen se repita */
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    height: 300px; /* Ajusta la altura de la tarjeta para que se vea bien */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s;
    margin-bottom: 20px; /* Espacio extra entre las tarjetas para pantallas pequeñas */
    opacity: 0.8;
}

.custom-card1:hover {
    transform: scale(1.05);
}

.custom-card2 {
    background-image: url(./img/AdobeStock_285607013_Preview-2.png);
    background-size: cover; /* Escalar la imagen para cubrir toda el área */
    background-position: center; /* Centrar la imagen */
    background-repeat: no-repeat; /* Evitar que la imagen se repita */
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    height: 300px; /* Ajusta la altura de la tarjeta */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s;
    margin-bottom: 20px;
    opacity: 0.8;
}

.custom-card2:hover {
    transform: scale(1.05);
}

.custom-card3 {
    background-image: url(./img/AdobeStock_285607013_Preview.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    height: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s;
    margin-bottom: 20px;
    opacity: 0.8;
}

.custom-card3:hover {
    transform: scale(1.05);
}

.custom-card4 {
    background-image: url(./img/cuadrado4.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    height: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.custom-card4:hover {
    transform: scale(1.05);
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .supercharge-hero-section {
        padding: 30px 10px;
        margin: 0rem 1rem;
    }

    .supercharge-hero-content h1 {
        font-size: 1.8rem; /* Tamaño más pequeño para móviles */
    }

    .supercharge-button {
        font-size: 0.875rem; /* Tamaño de texto más pequeño para botones */
        padding: 8px 16px; /* Botones más compactos en móviles */
    }

    .supercharge-button-group {
        flex-wrap: wrap;
        gap: 10px; /* Espaciado más pequeño entre los botones */
    }

    .custom-card-container {
        gap: 10px; /* Reduce el espacio entre las tarjetas */
    }

    .custom-card {
        width: 100%; /* Ocupa todo el ancho disponible en móviles */
        max-width: 100%; /* Asegura que no sea más grande que la pantalla */
    }

    .supercharge-image-container {
        max-width: 100%; /* Imagenes que ocupen el ancho completo en móviles */
    }
}

@media (max-width: 480px) {
    .supercharge-hero-content h1 {
        font-size: 1.5rem; /* Tamaño aún más pequeño para pantallas extra pequeñas */
    }

    .custom-section-container {
        padding: 30px 10px; /* Menos relleno para pantallas pequeñas */
    }

    .supercharge-button-group {
        flex-direction: column; /* Botones en una columna en lugar de una fila */
    }

    .supercharge-button {
        width: 100%; /* Asegura que los botones ocupen todo el ancho disponible */
        padding: 12px 20px; /* Espacio suficiente para hacer clic en pantallas pequeñas */
    }
}

.custom-section-container h1, 
.custom-section-container p {
    color: black; /* Cambia el color a negro */
}

.custom-card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Permite que las tarjetas se reorganicen en pantallas más pequeñas */
}

.custom-card1, 
.custom-card2, 
.custom-card3, 
.custom-card4 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0px;
    padding: 20px;
    width: 250px;
    height: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    margin-bottom: 20px;
    color: black; /* Asegúrate de que el texto también sea negro dentro de las tarjetas */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Posiciona el contenido en los extremos */
}

.custom-card1 h2, 
.custom-card2 h2, 
.custom-card3 h2, 
.custom-card4 h2 {
    font-size: 0.7rem; /* Tamaño de texto más pequeño */
    font-weight: 100; /* Estilo de letra más delgada */
    color: black; /* Cambia el color a negro */
    margin: 0; /* Elimina márgenes para alinear mejor */
    text-align: start;
    width: fit-content;
}

.custom-card1 p, 
.custom-card2 p, 
.custom-card3 p, 
.custom-card4 p {
    font-size: 0.9rem; /* Tamaño de texto más pequeño para los párrafos */
    font-weight: 300; /* Estilo de letra más delgada */
    color: black; /* Asegura que el texto sea negro */
    margin: 0; /* Elimina márgenes para mejor alineación */
    line-height: 1.4; /* Mejora la legibilidad ajustando el espaciado entre líneas */
    text-align: start;
}

.custom-card1:hover, 
.custom-card2:hover, 
.custom-card3:hover, 
.custom-card4:hover {
    transform: scale(1.05);
}


/* enterprise */

.enterprise-video-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* iguala alturas entre columnas */
    gap: 2rem;
    color: #fff;
    padding: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    background-color: #000000;
    margin-top: 5rem;
    min-height: 60vh; /* asegura altura suficiente para centrar */
}

.enterprise-text-content {
    flex: 1;
    margin: auto;
}

.enterprise-text-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.enterprise-text-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.enterprise-demo-button {
    display: inline-block;
    background-color: #0066ff;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 30px;
}

.enterprise-video-container {
    position: relative;
    flex: 1;
    height: auto;
    margin: auto;
    max-width: 600px;
    width: 100%;
}

.enterprise-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px 16px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.play-button:hover {
    background-color: #f0f0f0;
    border-color: #888;
}

.play-button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: black;
}

.enterprise-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.enterprise-stat-item {
    text-align: left;
    flex: 1;
    margin-right: 20px;
}

.enterprise-stat-item strong {
    font-size: 24px;
}

.enterprise-stat-item p {
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 768px) {
    .enterprise-video-section {
        flex-direction: column;
        align-items: center;
    }

    .enterprise-text-content, .enterprise-video-container {
        max-width: 100%;
        text-align: center;
    }

    .enterprise-stats {
        flex-direction: column;
        text-align: center;
    }

    .enterprise-stat-item {
        margin-bottom: 20px;
    }
    
}



/* VIDEO 2 */
.ent-video-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* iguala alturas entre columnas */
    gap: 2rem;
    color: #fff;
    padding: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    background-color: #000000;
    margin-top: 5rem;
    min-height: 60vh; /* asegura altura suficiente para centrar */
}

.ent-text-content {
    flex: 1;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra verticalmente */
    height: 100%; /* ocupa la altura del contenedor para centrar su contenido */
}

.ent-text-content h1 {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 20px;
}
.ent-text-content h2 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 900;

}
.ent-text-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.ent-demo-button {
    display: inline-block;
    background-color: #0066ff;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 30px;
}

.ent-video-container {
    position: relative;
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra verticalmente */
    padding-top: 0 !important; /* elimina padding inline para alinear */
    margin: auto;
    max-width: 600px;
    width: 100%;
  
    height: 100%; /* ocupa la altura del contenedor para centrar su contenido */
}

.ent-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.ent-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px 16px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.ent-play-button:hover {
    background-color: #f0f0f0;
    border-color: #888;
}

.ent-play-button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: black;
}

.ent-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.ent-stat-item {
    text-align: left;
    flex: 1;
    margin-right: 20px;
}

.ent-stat-item strong {
    font-size: 24px;
}

.ent-stat-item p {
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 768px) {
    .ent-video-section {
        flex-direction: column;
        align-items: center;
    }

    .ent-text-content, .ent-video-container {
        max-width: 100%;
        text-align: center;
    }

    .ent-stats {
        flex-direction: column;
        text-align: center;
    }

    .ent-stat-item {
        margin-bottom: 20px;
    }
}

.full-width-video-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.full-width-video {
    width: 100%;
    height: auto;
    object-fit: cover; /* Esto asegura que el video cubra todo el ancho */
}

.ent-university-button {
    display: inline-block;
    background-color: transparent; /* Sin fondo */
    color: white; /* Letra blanca */
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px; /* Espaciado entre botones */
    border: none; /* Sin borde */
    cursor: pointer;
}

.ent-university-button:hover {
    text-decoration: underline; /* Efecto hover para el texto */
}


/* FOOTER */
.footer {
    color: #000000;
    text-align: center;
    padding: 20px 0;
    width: 70%;
    margin: auto;
    background-color: #ffffff;
}

.footer .cta {
    color: #000000 !important;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    border-radius: 1.5rem;
}
.footer .cta h2 {
    margin: 0;
    font-size: 2rem;
    color: #000;
}
.footer .cta .buttons {
    display: flex;
    gap: 10px;
}
.footer .cta .buttons a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #0F3258;
    border-radius: 20px;
    text-decoration: none;
}
.footer .cta .buttons a:hover {
    background-color: #e6e6e6;
}
.footer .cta .buttons a:nth-child(2) {
    background: transparent;
    color: #000;
    border: 0.1px solid #f0eeee;
}
.footer .bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 70%;
    margin: 0 auto;
}
.footer .logo {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
}
.footer .social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer .social-icons a {
    color: #000;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1rem;
}
.footer .social-icons a:hover {
    color: #0F3258;
}
.footer .divider {
    border-top: 1px solid #444;
    margin: 20px 0;
}
.footer .copyright {
    margin: 10px 0;
    font-size: 0.6rem;
}
.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 90%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer .cta {
        flex-direction: row;
        justify-content: space-between;
        width: 70%;
    }
    .footer .bottom-bar {
        flex-direction: row;
    }
    .footer {
     width: 100%;
        margin: auto;
    }
}
@media (max-width: 450px) {
    .footer .cta {
        flex-direction: column;
        justify-content: space-between;
        width: 90%;
    }
    .buttons{
        margin-top: 1rem;
    }
    .footer .bottom-bar {
        flex-direction: column;
    }
}




/* SCROLL SECTION */
.structure-section {
    padding: 6rem 15rem;
    background: #ffffff;
    margin: 0 auto;
  }
  @media (max-width: 1024px) {
    .structure-section {
        padding: 5rem 5rem;
        background: #ffffff;
        margin: 0 auto;
      }
      .description {
        
        width: 100% !important;
      }
  }
  @media (max-width: 450px) {
    .structure-section {
        padding: 5rem 5rem;
        background: #ffffff;
        margin: 0 auto;
      }
      .description {
        
        width: 100% !important;
      }
      .text-content h1 {
        font-size: 3rem !important;
        font-weight: 800;
        margin-bottom: 1rem;
        color: #000;
      }
      .subtitle{
          font-size: 2rem !important;
      }
  }
  .text-content {
    max-width: 100%;
  }
 
  .text-content h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
  }
  
  .text-content .subtitle {
    font-size: 3rem;
    margin-bottom: 15rem;
    color: #333;
    font-weight: 800;
    width: 80%;
  }
  
  .text-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    width: 100%;
  }
  
  .text-content .description {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #000;
  }
  
  .text-content .link {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
  }
  
  
  
  .background-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .next-section {
    padding: 100px 15rem;
    background: #ffffff;
    
  }

  
  .image-content {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 800px !important;
    width: 100%;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none; /* Evita bloquear clics cuando está oculto */
  }
  
  @media (max-width: 1024px) {
    .image-content {
        max-width: 800px !important;
        width: 80%;
      
      }
  }
  
  .image-content.visible {
    opacity: 1;
    pointer-events: auto; /* Solo captura clics cuando es visible */
  }
  

  

  /* CUSTOM SECTION */
  body {
    background-color: #000;
    font-family: 'Arial', sans-serif;
  }
  
  .custom-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .custom-text-content {
    max-width: 50%;
  }
  
  .custom-subtitle {
    color: #ffffff; /* Light pink color for the subtitle */
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .custom-main-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 1.2;
    color: #fff;
  }
  
  .custom-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff; /* Lighter color for the description text */
  }
  
  .custom-divider {
    border: 0;
    border-bottom: 1px solid #333;
    margin: 20px 0;
  }
  
  .custom-testimonial {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
  }
  
  .custom-author {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .custom-image-content {
    max-width: 45%;
  }
  
  .custom-mockup-image {
    width: 100%;
    border-radius: 10px; /* Rounded corners for the image */
    object-fit: cover;
  }

  /* CUSTOM FEATURES SECTION */
  /* CSS */
.custom-features-section {
    background-color: #f8f9fa;
    padding: 40px;
    text-align: center;
}

.custom-features-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
    margin: auto;
    margin-bottom: 2rem;
    
}

.custom-features-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-feature {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    margin: 10px;
}

.custom-feature-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
    font-weight: bold;
    text-align: center;
    font-weight: 300;
}

.custom-feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.custom-feature-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.custom-feature-list li::before {
    content: '✔'; /* Tilde o checkmark */
    position: absolute;
    left: 0;
    color: #000000; /* Color de la tilde */
    font-weight: bold;
}

@media (max-width: 768px) {
    .custom-features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-feature {
        max-width: 100%;
    }
}

  

/* TESTIMONIAL SECTION */
.custom-testimonial-section {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 16px;
}

.custom-testimonial-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    flex-wrap: wrap; /* Permite que los elementos se acomoden uno debajo del otro en dispositivos móviles */
}

.custom-testimonial-quote {
    flex: 1;
    padding: 20px;
}

.custom-testimonial-quote p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

.custom-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.custom-testimonial-author h4 {
    font-size: 18px;
    margin: 0;
}

.custom-testimonial-author p {
    font-size: 14px;
    margin: 0;
    opacity: 0.7;
}

.custom-testimonial-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.custom-testimonial-action h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-left: 5rem;
    white-space: nowrap;
}

.custom-button {
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 5rem;
}

.custom-button:hover {
    background-color: #f0f0f0;
}

/* Estilos para tabletas */
@media (max-width: 1024px) {
    .custom-testimonial-content {
        width: 90%;
        flex-direction: column; /* Cambia a disposición vertical */
        align-items: center;
        text-align: center;
    }

    .custom-testimonial-action {
        align-items: center;
        padding: 10px 0;
    }

    .custom-testimonial-action h2 {
        margin-left: 0; /* Elimina el margen lateral en dispositivos más pequeños */
        font-size: 1.8rem;
        white-space: normal; /* Permite que el texto se ajuste automáticamente */
    }

    .custom-button {
        margin-left: 0; /* Centra el botón en pantallas más pequeñas */
    }
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .custom-testimonial-content {
        width: 100%;
        padding: 0 10px;
    }

    .custom-testimonial-quote p {
        font-size: 18px;
    }

    .custom-testimonial-author h4 {
        font-size: 16px;
    }

    .custom-testimonial-author p {
        font-size: 12px;
    }

    .custom-testimonial-action h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .custom-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .custom-testimonial-section {
        padding: 20px;
    }
}





  /* FOOTER PRIVACY */

  /* styles.css */
.footer-privacy-policy {
    
    color: #000000 !important;
    padding: 20px;
    margin-bottom: 20px;
    
    
    width: 80%;
    margin: 0 auto;
    
    
    
}
@media (min-width: 768px) {
    .footer-privacy-policy {
        flex-direction: row;
        justify-content: space-between;
        width: 70%;
    }
}
.footer-privacy-policy-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    /* margin: 0 auto; */
    flex-wrap: wrap;
}

.footer-privacy-policy-section {
    flex: 1;
    
    text-align: start;
    
}

.footer-privacy-policy-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333 ;
    font-weight: 700;
}

.footer-privacy-policy-section ul {
    list-style: none;
    padding: 0;
}

.footer-privacy-policy-section ul li {
    margin-bottom: 8px;
}

.footer-privacy-policy-section ul li a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
}

.footer-privacy-policy-section ul li a:hover {
    text-decoration: underline;
}

.footer-privacy-policy-section form {
    display: flex;
    flex-direction: column;
}

.footer-privacy-policy-section input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.footer-privacy-policy-section button {
    padding: 10px;
    background-color: #ffffff;
    border: none;
    border-radius: 1rem;
    color: #000;
    cursor: pointer;
    border: 1px solid rgb(235, 234, 234);
    width: fit-content;
}

.footer-privacy-policy-section button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .footer-privacy-policy-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-privacy-policy-section {
        margin: 15px 0;
        width: 100%;
        max-width: 400px;
        text-align: center;
    }
}

  
