@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/* Variables */
:root {
    /* Colores base */
    --primary-color-50: #107fc9;
    --primary-color-60: #253859;
    --primary-color-70: #194270;
    --secondary-color: #fac414;
    --tertiary-color: #333333;
    --success-color: #07b480;
    --danger-color: #dc3545;
    --warning-color: #ffe600;
    --white-color: #ffffff;
    --black-color: #000000;
    --dark-color-glass: #1f1f1fab;

    /* Colores sutiles */
    --primary-color-subtle: #94cdff;
    --secondary-color-subtle: #ffe07a;
    --tertiary-color-subtle: #adadad;
    --success-color-subtle: #84ffda;
    --danger-color-subtle: #ffa6b0;
    --warning-color-subtle: #fff28b;
    --dark-color: #1f1f1f;
    --light-color: #f2f2f2;
    --light-color-glass: #f2f2f2ab;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', Titilium, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

section {
    padding: 50px 0px;
}

.apl-bg-pic {
    width: 100%;
    background-image: url('/imagenes/carreraAbogados2025/promocion-abogados.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.apl-bg-picapp {
    width: 100%;
    background-image: url('/imagenes/carreraAbogados2025/app-shared.png');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.apl-bg-picblue {
    width: 100%;
    background-image: url('/imagenes/carreraAbogados2025/bg-footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.apl-img-flex {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin: auto;
}

/* Generar colores de fondo y colores de texto */
.apl-bg-primary-50 {
    background-color: var(--primary-color-50);
    color: var(--black-color);
}

.apl-text-primary-50 {
    color: var(--primary-color-50) !important;
}

.apl-bg-primary-60 {
    background-color: var(--primary-color-60);
    color: var(--white-color);
}

.apl-text-primary-60 {
    color: var(--primary-color-60) !important;
}

.apl-bg-primary-70, .apl-bg-primary-dark {
    background-color: var(--primary-color-70);
    color: var(--white-color);
}

.apl-text-primary-70 {
    color: var(--primary-color-70) !important;
}

.apl-bg-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.apl-text-secondary {
    color: var(--secondary-color) !important;
}

.apl-bg-tertiary {
    background-color: var(--tertiary-color);
    color: var(--white-color);
}

.apl-text-tertiary {
    color: var(--tertiary-color) !important;
}

.apl-bg-success {
    background-color: var(--success-color);
    color: var(--white-color);
}

.apl-text-success {
    color: var(--success-color) !important;
}

.apl-bg-danger {
    background-color: var(--danger-color);
    color: var(--white-color);
}

.apl-text-danger {
    color: var(--danger-color) !important;
}

.apl-bg-warning {
    background-color: var(--warning-color);
    color: var(--white-color);
}

.apl-text-warning {
    color: var(--warning-color) !important;
}

.apl-bg-light {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.apl-text-light {
    color: var(--light-color) !important;
}

.apl-bg-dark {
    background-color: var(--dark-color) !important;
    color: var(--white-color);
}

.apl-text-dark {
    color: var(--dark-color) !important;
}

.apl-bg-black {
    background-color: var(--black-color);
    color: var(--white-color);
}

.apl-text-black {
    color: var(--black-color) !important;
}

.apl-bg-white {
    background-color: var(--white-color);
    color: var(--dark-color);
}

.apl-text-white {
    color: var(--white-color) !important;
}

.apl-text-muted {
    color: #6c757d !important;
    /* Color gris específico */
}

/* Generar clases de fondo sutil */
.apl-bg-primary-subtle {
    background-color: var(--primary-color-subtle);
    color: var(--tertiary-color);
}

.apl-text-primary-subtle {
    color: var(--primary-color-subtle) !important;
}

.apl-bg-secondary-subtle {
    background-color: var(--secondary-color-subtle);
    color: var(--tertiary-color);
}

.apl-text-secondary-subtle {
    color: var(--secondary-color-subtle) !important;
}

.apl-bg-tertiary-subtle {
    background-color: var(--tertiary-color-subtle);
    color: var(--tertiary-color);
}

.apl-text-tertiary-subtle {
    color: var(--tertiary-color-subtle) !important;
}

.apl-bg-success-subtle {
    background-color: var(--success-color-subtle);
    color: var(--tertiary-color);
}

.apl-text-success-subtle {
    color: var(--success-color-subtle) !important;
}

.apl-bg-danger-subtle {
    background-color: var(--danger-color-subtle);
    color: var(--tertiary-color);
}

.apl-text-danger-subtle {
    color: var(--danger-color-subtle) !important;
}

.apl-bg-warning-subtle {
    background-color: var(--warning-color-subtle);
    color: var(--tertiary-color);
}

.apl-text-warning-subtle {
    color: var(--warning-color-subtle) !important;
}

/* Generar clases para fondos tipo "glass" */
.apl-bg-dark-glass {
    background-color: var(--dark-color-glass);
    backdrop-filter: blur(10px);
    color: var(--white-color);
}

.apl-bg-light-glass {
    background-color: var(--light-color-glass);
    backdrop-filter: blur(10px);
    color: var(--white-color);
}

/* Flex layout*/

.apl-flex-column {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

/* Contenedor principal */
.apl-container {
    width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
}

/* Fila */
.apl-row {
    display: flex;
    flex-wrap: wrap;
}

    .apl-row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
    }

/* Generar columnas globales */
.apl-col-1 {
    width: calc(8.3333333333% *1);
}

.apl-col-2 {
    width: calc(8.3333333333% * 2);
}

.apl-col-3 {
    width: calc(8.3333333333% * 3);
}

.apl-col-4 {
    width: calc(8.3333333333% * 4);
}

.apl-col-5 {
    width: calc(8.3333333333% * 5);
}

.apl-col-6 {
    width: calc(8.3333333333% * 6);
}

.apl-col-7 {
    width: calc(8.3333333333% * 7);
}

.apl-col-8 {
    width: calc(8.3333333333% * 8);
}

.apl-col-9 {
    width: calc(8.3333333333% * 9);
}

.apl-col-10 {
    width: calc(8.3333333333% * 10);
}

.apl-col-11 {
    width: calc(8.3333333333% * 11);
}

.apl-col-12 {
    width: calc(8.3333333333% * 12);
}

/* Estilos base de los botones */
.apl-btn,
button {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    padding: 5px;
    border: 2px solid transparent;
}

.apl-btn-scroll {
    margin-bottom: 20px;
}

.apl-btn-primary {
    background-color: var(--primary-color-50);
    color: var(--white-color);
    border-color: var(--light-color);
}

    .apl-btn-primary:hover {
        background-color: color-mix(in srgb, var(--primary-color-50) 90%, black 10%);
        border-color: color-mix(in srgb, var(--light-color) 85%, black 15%);
    }

    .apl-btn-primary:active {
        background-color: color-mix(in srgb, var(--primary-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--primary-color) 80%, black 20%);
    }

.apl-btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

    .apl-btn-secondary:hover {
        background-color: color-mix(in srgb, var(--secondary-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--secondary-color) 85%, black 15%);
    }

    .apl-btn-secondary:active {
        background-color: color-mix(in srgb, var(--secondary-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--secondary-color) 80%, black 20%);
    }

.apl-btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--white-color);
    border-color: var(--tertiary-color);
}

    .apl-btn-tertiary:hover {
        background-color: color-mix(in srgb, var(--tertiary-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--tertiary-color) 85%, black 15%);
    }

    .apl-btn-tertiary:active {
        background-color: color-mix(in srgb, var(--tertiary-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--tertiary-color) 80%, black 20%);
    }

.apl-btn-success {
    background-color: var(--success-color);
    color: var(--white-color);
    border-color: var(--success-color);
}

    .apl-btn-success:hover {
        background-color: color-mix(in srgb, var(--success-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--success-color) 85%, black 15%);
    }

    .apl-btn-success:active {
        background-color: color-mix(in srgb, var(--success-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--success-color) 80%, black 20%);
    }

.apl-btn-danger {
    background-color: var(--danger-color);
    color: var(--white-color);
    border-color: var(--danger-color);
}

    .apl-btn-danger:hover {
        background-color: color-mix(in srgb, var(--danger-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--danger-color) 85%, black 15%);
    }

    .apl-btn-danger:active {
        background-color: color-mix(in srgb, var(--danger-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--danger-color) 80%, black 20%);
    }

.apl-btn-warning {
    background-color: var(--warning-color);
    color: var(--white-color);
    border-color: var(--warning-color);
}

    .apl-btn-warning:hover {
        background-color: color-mix(in srgb, var(--warning-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--warning-color) 85%, black 15%);
    }

    .apl-btn-warning:active {
        background-color: color-mix(in srgb, var(--warning-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--warning-color) 80%, black 20%);
    }

.apl-btn-light {
    background-color: var(--light-color);
    color: var(--white-color);
    border-color: var(--light-color);
}

    .apl-btn-light:hover {
        background-color: color-mix(in srgb, var(--light-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--light-color) 85%, black 15%);
    }

    .apl-btn-light:active {
        background-color: color-mix(in srgb, var(--light-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--light-color) 80%, black 20%);
    }

.apl-btn-dark {
    background-color: var(--dark-color);
    color: var(--white-color);
    border-color: var(--dark-color);
}

    .apl-btn-dark:hover {
        background-color: color-mix(in srgb, var(--dark-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--dark-color) 85%, black 15%);
    }

    .apl-btn-dark:active {
        background-color: color-mix(in srgb, var(--dark-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--dark-color) 80%, black 20%);
    }

.apl-btn-white {
    background-color: var(--white-color);
    color: var(--white-color);
    border-color: var(--white-color);
}

    .apl-btn-white:hover {
        background-color: color-mix(in srgb, var(--white-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--white-color) 85%, black 15%);
    }

    .apl-btn-white:active {
        background-color: color-mix(in srgb, var(--white-color) 85%, black 15%);
        border-color: color-mix(in srgb, var(--white-color) 80%, black 20%);
    }

/* Generar botones con borde (outline) */
.apl-btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .apl-btn-outline-primary:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    .apl-btn-outline-primary:active {
        background-color: color-mix(in srgb, var(--primary-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--primary-color) 85%, black 15%);
    }

.apl-btn-outline-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

    .apl-btn-outline-secondary:hover {
        background-color: var(--secondary-color);
        color: var(--white-color);
    }

    .apl-btn-outline-secondary:active {
        background-color: color-mix(in srgb, var(--secondary-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--secondary-color) 85%, black 15%);
    }

.apl-btn-outline-tertiary {
    background-color: transparent;
    color: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
}

    .apl-btn-outline-tertiary:hover {
        background-color: var(--tertiary-color);
        color: var(--white-color);
    }

    .apl-btn-outline-tertiary:active {
        background-color: color-mix(in srgb, var(--tertiary-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--tertiary-color) 85%, black 15%);
    }

.apl-btn-outline-success {
    background-color: transparent;
    color: var(--success-color);
    border: 2px solid var(--success-color);
}

    .apl-btn-outline-success:hover {
        background-color: var(--success-color);
        color: var(--white-color);
    }

    .apl-btn-outline-success:active {
        background-color: color-mix(in srgb, var(--success-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--success-color) 85%, black 15%);
    }

.apl-btn-outline-danger {
    background-color: transparent;
    color: var(--danger-color);
    border: 2px solid var(--danger-color);
}

    .apl-btn-outline-danger:hover {
        background-color: var(--danger-color);
        color: var(--white-color);
    }

    .apl-btn-outline-danger:active {
        background-color: color-mix(in srgb, var(--danger-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--danger-color) 85%, black 15%);
    }

.apl-btn-outline-warning {
    background-color: transparent;
    color: var(--warning-color);
    border: 2px solid var(--warning-color);
}

    .apl-btn-outline-warning:hover {
        background-color: var(--warning-color);
        color: var(--white-color);
    }

    .apl-btn-outline-warning:active {
        background-color: color-mix(in srgb, var(--warning-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--warning-color) 85%, black 15%);
    }

.apl-btn-outline-light {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

    .apl-btn-outline-light:hover {
        background-color: var(--light-color);
        color: var(--white-color);
    }

    .apl-btn-outline-light:active {
        background-color: color-mix(in srgb, var(--light-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--light-color) 85%, black 15%);
    }

.apl-btn-outline-dark {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

    .apl-btn-outline-dark:hover {
        background-color: var(--dark-color);
        color: var(--white-color);
    }

    .apl-btn-outline-dark:active {
        background-color: color-mix(in srgb, var(--dark-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--dark-color) 85%, black 15%);
    }

.apl-btn-outline-white {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

    .apl-btn-outline-white:hover {
        background-color: var(--white-color);
        color: var(--white-color);
    }

    .apl-btn-outline-white:active {
        background-color: color-mix(in srgb, var(--white-color) 90%, black 10%);
        border-color: color-mix(in srgb, var(--white-color) 85%, black 15%);
    }

/* Tamaños de Textos Títulos */
.apl-h1,
.apl-h2,
.apl-h3,
.apl-h4,
.apl-h5,
.apl-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.1;
}

.apl-subtitle{
    font-weight: 600;
    line-height: 1.1;
}

p, .apl-paragraph{
    text-align: justify;
}

.apl-h1,
h1 {
    font-size: 3rem;
}

.apl-h2,
h2 {
    font-size: 2.5rem;
}

.apl-h3,
h3 {
    font-size: 2.25rem;
}

.apl-subtitle, .apl-h4,
h4 {
    font-size: 1.5rem;
}

.apl-h5,
h5 {
    font-size: 1.75rem;
}

.apl-h6,
h6 {
    font-size: 1.5rem;
}

.apl-title-lg {
    line-height: 0.8 !important;
    font-size: 80px;
    color: #194270;
}

/* Peso de Textos Títulos */
.apl-fw-light {
    font-weight: 300;
}

.apl-fw-regular {
    font-weight: 400;
}

.apl-fw-medium {
    font-weight: 500;
}

.apl-fw-semibold {
    font-weight: 600;
}

.apl-fw-bold {
    font-weight: 700;
}

.apl-fw-extrabold {
    font-weight: 800;
}

.apl-fw-black {
    font-weight: 900;
}

/* Alineación de textos */
.apl-txt-left {
    text-align: left;
}

.apl-txt-center {
    text-align: center;
}

.apl-txt-right {
    text-align: right;
}

.apl-txt-justify {
    text-align: justify;
}

/* Margen */
.apl-m-0 {
    margin: 0 !important;
}

.apl-mt-0 {
    margin-top: 0 !important;
}

.apl-mb-0 {
    margin-bottom: 0 !important;
}

.apl-ms-0 {
    margin-inline-start: 0 !important;
}

.apl-me-0 {
    margin-inline-end: 0 !important;
}

.apl-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.apl-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Padding */
.apl-p-0 {
    padding: 0 !important;
}

.apl-pt-0 {
    padding-top: 0 !important;
}

.apl-pb-0 {
    padding-bottom: 0 !important;
}

.apl-ps-0 {
    padding-inline-start: 0 !important;
}

.apl-pe-0 {
    padding-inline-end: 0 !important;
}

.apl-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.apl-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Margen */
.apl-m-1 {
    margin: 0.25rem !important;
}

.apl-mt-1 {
    margin-top: 0.25rem !important;
}

.apl-mb-1 {
    margin-bottom: 0.25rem !important;
}

.apl-ms-1 {
    margin-inline-start: 0.25rem !important;
}

.apl-me-1 {
    margin-inline-end: 0.25rem !important;
}

.apl-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.apl-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

/* Padding */
.apl-p-1 {
    padding: 0.25rem !important;
}

.apl-pt-1 {
    padding-top: 0.25rem !important;
}

.apl-pb-1 {
    padding-bottom: 0.25rem !important;
}

.apl-ps-1 {
    padding-inline-start: 0.25rem !important;
}

.apl-pe-1 {
    padding-inline-end: 0.25rem !important;
}

.apl-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.apl-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

/* Margen */
.apl-m-2 {
    margin: 0.5rem !important;
}

.apl-mt-2 {
    margin-top: 0.5rem !important;
}

.apl-mb-2 {
    margin-bottom: 0.5rem !important;
}

.apl-ms-2 {
    margin-inline-start: 0.5rem !important;
}

.apl-me-2 {
    margin-inline-end: 0.5rem !important;
}

.apl-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.apl-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

/* Padding */
.apl-p-2 {
    padding: 0.5rem !important;
}

.apl-pt-2 {
    padding-top: 0.5rem !important;
}

.apl-pb-2 {
    padding-bottom: 0.5rem !important;
}

.apl-ps-2 {
    padding-inline-start: 0.5rem !important;
}

.apl-pe-2 {
    padding-inline-end: 0.5rem !important;
}

.apl-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.apl-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Margen */
.apl-m-3 {
    margin: 1rem !important;
}

.apl-mt-3 {
    margin-top: 1rem !important;
}

.apl-mb-3 {
    margin-bottom: 1rem !important;
}

.apl-ms-3 {
    margin-inline-start: 1rem !important;
}

.apl-me-3 {
    margin-inline-end: 1rem !important;
}

.apl-mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.apl-my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

/* Padding */
.apl-p-3 {
    padding: 1rem !important;
}

.apl-pt-3 {
    padding-top: 1rem !important;
}

.apl-pb-3 {
    padding-bottom: 1rem !important;
}

.apl-ps-3 {
    padding-inline-start: 1rem !important;
}

.apl-pe-3 {
    padding-inline-end: 1rem !important;
}

.apl-px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.apl-py-3 {
    padding-top: 1rem !important;
    /*padding-bottom: 1rem !important;*/
}

/* Margen */
.apl-m-4 {
    margin: 1.5rem !important;
}

.apl-mt-4 {
    margin-top: 1.5rem !important;
}

.apl-mb-4 {
    margin-bottom: 1.5rem !important;
}

.apl-ms-4 {
    margin-inline-start: 1.5rem !important;
}

.apl-me-4 {
    margin-inline-end: 1.5rem !important;
}

.apl-mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.apl-my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* Padding */
.apl-p-4 {
    padding: 1.5rem !important;
}

.apl-pt-4 {
    padding-top: 1.5rem !important;
}

.apl-pb-4 {
    padding-bottom: 1.5rem !important;
}

.apl-ps-4 {
    padding-inline-start: 1.5rem !important;
}

.apl-pe-4 {
    padding-inline-end: 1.5rem !important;
}

.apl-px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.apl-py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

/* Margen */
.apl-m-5 {
    margin: 3rem !important;
}

.apl-mt-5 {
    margin-top: 3rem !important;
}

.apl-mb-5 {
    margin-bottom: 3rem !important;
}

.apl-ms-5 {
    margin-inline-start: 3rem !important;
}

.apl-me-5 {
    margin-inline-end: 3rem !important;
}

.apl-mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.apl-my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Padding */
.apl-p-5 {
    padding: 3rem !important;
}

.apl-pt-5 {
    padding-top: 3rem !important;
}

.apl-pb-5 {
    padding-bottom: 3rem !important;
}

.apl-ps-5 {
    padding-inline-start: 3rem !important;
}

.apl-pe-5 {
    padding-inline-end: 3rem !important;
}

.apl-px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.apl-py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Margen */
.apl-m-auto {
    margin: auto !important;
}

.apl-mt-auto {
    margin-top: auto !important;
}

.apl-mb-auto {
    margin-bottom: auto !important;
}

.apl-ms-auto {
    margin-inline-start: auto !important;
}

.apl-me-auto {
    margin-inline-end: auto !important;
}

.apl-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.apl-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

/* Padding */
.apl-p-auto {
    padding: auto !important;
}

.apl-pt-auto {
    padding-top: auto !important;
}

.apl-pb-auto {
    padding-bottom: auto !important;
}

.apl-ps-auto {
    padding-inline-start: auto !important;
}

.apl-pe-auto {
    padding-inline-end: auto !important;
}

.apl-px-auto {
    padding-left: auto !important;
    padding-right: auto !important;
}

.apl-py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
}

.apl-rounded-0 {
    border-radius: 0;
}

.apl-rounded-1 {
    border-radius: 0.2rem;
}

.apl-rounded-2 {
    border-radius: 0.25rem;
}

.apl-rounded-3 {
    border-radius: 0.5rem;
}

.apl-rounded-4 {
    border-radius: 0.75rem;
}

.apl-rounded-5 {
    border-radius: 1rem;
}

.apl-rounded-6 {
    border-radius: 1.25rem;
}

.apl-rounded-pill {
    border-radius: 50rem;
}

.apl-rounded-circle {
    border-radius: 50%;
}

.apl-rounded-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.apl-rounded-end {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.apl-rounded-bottom {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.apl-rounded-start {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

/* Clases de altura en vh */
.apl-h-vh-10 {
    height: 10vh;
}

.apl-h-vh-20 {
    height: 20vh;
}

.apl-h-vh-30 {
    height: 30vh;
}

.apl-h-vh-40 {
    height: 40vh;
}

.apl-h-vh-50 {
    height: 50vh;
}

.apl-h-vh-60 {
    height: 60vh;
}

.apl-h-vh-70 {
    height: 70vh;
}

.apl-h-vh-80 {
    height: 80vh;
}

.apl-h-vh-90 {
    height: 90vh;
}

.apl-h-vh-100 {
    height: 100vh;
}

/* Clases de altura en porcentaje */
.apl-h-porc-10 {
    height: 10%;
}

.apl-h-porc-20 {
    height: 20%;
}

.apl-h-porc-30 {
    height: 30%;
}

.apl-h-porc-40 {
    height: 40%;
}

.apl-h-porc-50 {
    height: 50%;
}

.apl-h-porc-60 {
    height: 60%;
}

.apl-h-porc-70 {
    height: 70%;
}

.apl-h-porc-80 {
    height: 80%;
}

.apl-h-porc-90 {
    height: 90%;
}

.apl-h-porc-100 {
    height: 100%;
}

/* Clases de ancho en vh */
.apl-w-vh-10 {
    width: 10vh;
}

.apl-w-vh-20 {
    width: 20vh;
}

.apl-w-vh-30 {
    width: 30vh;
}

.apl-w-vh-40 {
    width: 40vh;
}

.apl-w-vh-50 {
    width: 50vh;
}

.apl-w-vh-60 {
    width: 60vh;
}

.apl-w-vh-70 {
    width: 70vh;
}

.apl-w-vh-80 {
    width: 80vh;
}

.apl-w-vh-90 {
    width: 90vh;
}

.apl-w-vh-100 {
    width: 100vh;
}

/* Clases de ancho en porcentaje */
.apl-w-porc-10 {
    width: 10%;
}

.apl-w-porc-20 {
    width: 20%;
}

.apl-w-porc-30 {
    width: 30%;
}

.apl-w-porc-40 {
    width: 40%;
}

.apl-w-porc-50 {
    width: 50%;
}

.apl-w-porc-60 {
    width: 60%;
}

.apl-w-porc-70 {
    width: 70%;
}

.apl-w-porc-80 {
    width: 80%;
}

.apl-w-porc-90 {
    width: 90%;
}

.apl-w-porc-100 {
    width: 100%;
}

.apl-absolute {
    position: absolute;
}

.apl-p-relative {
    position: relative;
}

/* Centrado total */
.apl-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Esquinas */
.apl-top-left {
    top: 0;
    left: 0;
    position: absolute;
}

.apl-top-right {
    top: 0;
    right: 0;
    position: absolute;
}

.apl-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute;
}

.apl-bottom-right {
    bottom: 0;
    right: 0;
    position: absolute;
}

/* Lados */
.apl-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.apl-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.apl-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.apl-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

/* Centro horizontal o vertical */
.apl-center-x {
    display: flex;
    justify-content: center;
    align-items: start;
}

.apl-center-y {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.apl-inputs {
    border: none;
    padding: 0.5rem 1rem;
    width: 100%;
    background: transparent;
}

/*Estilos para Popup */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-container {
    min-height: 150px;
    max-width: 400px;
    width: 90%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    overflow: hidden;
}

.popup-header {
    background: #107fc9;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .popup-header h2 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 700;
    }

.popup-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.popup-content {
    padding: 20px 24px;
    color: #333;
    font-size: 1rem;
}

    .popup-content ul {
        padding-left: 20px;
    }

.popup-button {
    margin-top: 20px;
    display: block;
    width: 100%;
    padding: 10px 0;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    background-color: #107fc9;
    color: white;
    transition: background-color 0.3s ease;
}

    .popup-button:hover {
        background-color: #003d80;
    }

header.menu-oculto {
    display: none !important;
}

.text-end-tmporal {
    text-align: end;
}

.apl-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 8px;
    font-size: 30px;
    text-align: center;
    line-height: 1;
    opacity: 0.8;
}


.apl-spinner {
    width: 250px;
    height: 250px;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

form {
    padding: 0px !important;
}

#btnRegisterB {
    width: 95%;
    display: block;
    margin: 0 auto;
}

.apl-form {
    width: 500px;
    margin: auto;
    max-width: 100%;
}

.apl-form-wide {
    width: 100%;
    margin: auto;
}

.apl-input-bordered,
.apl-inputs-bordered select,
.apl-inputs-bordered input[type="text"],
.apl-inputs-bordered input[type="email"],
.apl-inputs-bordered input[type="tel"],
.apl-inputs-bordered input[type="password"],
.apl-inputs-bordered textarea {
    border: 1px solid #adadad !important;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 10px;
}
    .apl-input-bordered input:focus,
    .apl-input-bordered select:focus,
    .apl-input-bordered textarea:focus {
        filter: brightness(85%);
        outline: none;
    }

.apl-input-underline,
.apl-inputs-underline select,
.apl-inputs-underline input[type="text"],
.apl-inputs-underline input[type="email"],
.apl-inputs-underline input[type="tel"],
.apl-inputs-underline input[type="password"],
.apl-inputs-underline textarea {
    border: none;
    border-bottom: 1px solid var(--tertiary-color);
    padding: 0.5rem 1rem;
    width: 100%;
    background: transparent;
}

    .apl-inputs-underline input:focus,
    .apl-inputs-underline select:focus,
    .apl-inputs-underline textarea:focus {
        filter: brightness(85%);
        outline: none;
    }

.apl-input-solid,
.apl-inputs-solid select,
.apl-inputs-solid input[type="text"],
.apl-inputs-solid input[type="email"],
.apl-inputs-solid input[type="tel"],
.apl-inputs-solid input[type="password"],
.apl-inputs-solid textarea {
    border: none;
    background: var(--light-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    width: 100%;
}
    .apl-input-solid input:focus,
    .apl-input-solid select:focus,
    .apl-input-solid textarea:focus {
        filter: brightness(85%);
        outline: none;
    }

.apl-underline-secundary {
    border-bottom: solid 1px var(--secondary-color) !important;
}

.apl-bordered-secundary {
    border: solid 1px var(--secondary-color) !important;
    border-radius: 10px;
}


#nosotros {
    padding-top: 150px;
}

.form-check-input:checked {
    background-color: #107fc9 !important;
    border-color: #107fc9 !important;
}

.text-container {
    border-radius: 20px;
    background: #f2f2f2;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 20px;
}

.item-ben {
    margin-bottom: 60px;
    text-align: center;
}

    .item-ben h2 {
        margin-bottom: 20px;
    }

    .item-ben img {
        width: 60px;
        margin-bottom: 20px;
    }

.flex-inverse {
    display: flex;
    flex-direction: row;
}

    .flex-inverse .info-service {
        height: 400px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

.info-service{
    color: var(--white-color);
}

.txt-container-center {
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding-bottom: 30px;
}

.apl-container-center {
    display: flex;
    justify-content: CENTER;
    flex-direction: column;
}

.pos-b {
    position: relative;
    display: flex;
    justify-content: center;
}

    .pos-b > img {
        position: absolute;
        bottom: 50px;
        width: 300px;
    }

/* Contenedor con ancho completo */
.apl-container-wide, .apl-container-anidado {
    width: 100%;
    margin: 0;
}

    /* Contenedor fluido combinado con contenedor normal */

    .apl-container-anidado > * {
        max-width: 1320px;
        margin: 0 auto;
        padding: 30px 15px;
    }

.item-show {
    display: inline-block;
}

.item-oculto {
    display: none;
}

.img-apps a img {
    transition: 1s;
}

    .img-apps a img:hover {
        filter: brightness(80%);
        transition: 1s;
    }

.img-fluid-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-adaptable-bg {
    height: 100%;
    object-fit: cover;
}

footer h6 {
    font-size: 1rem !important;
}

.dropdown-menu {
    backdrop-filter: blur(10px);
    border: none !important;
    border-radius: 20px !important;
    background: #f2f2f2 !important;
}

main {
    overflow: hidden;
    position: relative;
}

    main > *:first-child {
        padding-top: 120px;
    }

.form-service select,
.form-service input[type="text"],
.form-service input[type="email"],
.form-service input[type="tel"],
.form-service input[type="password"],
.form-service textarea {
    -moz-box-shadow: inset 0px 15px 15px -15px #2C3E50;
    box-shadow: inset 0px 15px 15px -15px #9f9f9f;
}


.modal {
    background: #3330 !important;
    backdrop-filter: blur(10px);
}

.box-sh-b {
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

ul.menu-idioma li {
    padding: 10px;
}

.servicios-title {
    margin: auto 0;
}

    .servicios-title h1 {
        font-size: 3.5rem;
    }

.portada-servicio {
    display: flex;
    justify-content: start;
    height: 300px;
}

.banner-img-servicio {
    height: 300px;
    border-radius: 30px;
}

    .banner-img-servicio p {
        font-size: 25px;
    }

    .banner-img-servicio > div:first-child {
        position: relative;
    }

    .banner-img-servicio img {
        position: absolute;
        bottom: 0;
    }

form .subtitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.container-i-s {
    text-align: start;
}

.portada-principal {
    position: sticky;
    background: url(../img/img-inicial.jpg) no-repeat center center;
    background-size: cover;
    color: white;
    top: 0;
    height: auto;
}

.portada-principal-content {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 4rem !important;
    padding-top: 50px;
}

#servicios,
#testimonios {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.center-bottom {
    justify-content: end;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-top {
    justify-content: start;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-xy {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-service {
    object-fit: contain !important;
    width: 200px;
}

.bg-sol-c {
    position: absolute;
    right: -200px;
    filter: blur(10px);
}

.bg-sol-b, .bg-sol-b-fijo {
    position: absolute;
    right: -200px;
    filter: blur(10px);
    top: 0px;
}

.bg-sol-t, .bg-sol-t-fijo {
    position: absolute;
    left: -200px;
    filter: blur(10px);
}

.bg-sol-b-fijo, .bg-sol-t-fijo {
    transform: translateY(1px) !important;
}

.bg-sol,
.bg-sol-doble {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-sol {
    background-image: url(img/bg-servicios.png);
    border-radius: 30px;
}

.bg-sol-doble {
    background-image: url(img/bg-testimonios.png);
}

.bg-apolo-blue {
    color: #ffffff;
    text-decoration: none !important;
}

.bg-apolo-dg a {
    color: #ffffff !important;
    text-decoration: none !important;
}

a {
    color: #107FC9;
    text-decoration: none !important;
}

li a {
    background-color: transparent;
    border-radius: 30px !important;
    transition: 1s;
}

    li a:hover {
        background-color: #c3c3c34a;
        border-radius: 30px !important;
        transition: 1s;
    }

    li a:active, li a.active:active, .dropdown-item.active, .dropdown-item:active {
        background-color: #bbbbbb !important;
        border-radius: 30px !important;
    }

footer li {
    margin-bottom: 10px;
}

    footer li a, footer p a {
        background-color: transparent;
        border-radius: 20px !important;
        transition: 0.5s;
    }

        footer li a:hover, footer p
        a:hover, .apl-links-hover a:hover {
            color: #ffffff7a !important;
            border-radius: 20px !important;
            transition: 0.5s;
            background: transparent;
        }

a.btn {
    padding: 10px 70px;
    font-weight: 600;
}

a.btn-menu {
    display: inline-block;
    padding: 7px 15px;
    text-align: center;
    cursor: pointer;
    -moz-user-select: none;
    border-radius: 20px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.bg-apolo-blue,
.btn-apolo-blue {
    background-color: #107FC9 !important;
    color: #ffffff !important;
}

    .btn-apolo-blue:hover {
        background-color: #0d69a7 !important;
    }

.bg-apolo-y,
.btn-apolo-y {
    background-color: #FAC414 !important;
    color: #333333;
}

    .btn-apolo-y:hover {
        background-color: #dbaf1e !important;
    }

.bg-apolo-dg,
.btn-apolo-dg {
    background-color: #333333 !important;
    color: #ffffff;
}

    .btn-apolo-dg:hover {
        background-color: #ffffff !important;
    }

.btn-apolo-gray {
    background-color: #c5c5c5 !important;
    color: #333333 !important;
}

    .btn-apolo-gray:hover {
        background-color: #adadad !important;
    }


.btn-apolo-gray-light {
    background-color: #E7E7E7 !important;
    color: #333333 !important;
}

    .btn-apolo-gray-light:hover {
        background-color: #D7D7D7 !important;
    }

.btn-apolo-light {
    background-color: #ffffff !important;
    color: #333333 !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

    .btn-apolo-light:hover {
        background-color: #ffffff !important;
    }

.btn-apolo-gray,
.btn-apolo-blue,
.btn-apolo-y,
.btn-apolo-dg,
.btn-apolo-light {
    border-radius: 30px !important;
    min-width: 100px !important;
    margin-bottom: 5px;
    text-align: center;
}

li a.icon {
    border-radius: 30px !important;
    min-width: none;
    margin-bottom: 5px;
    text-align: center;
}

.shadow {
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px -4px !important;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px -4px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px -4px !important;
}

.container-testimonial {
    width: 40px;
    min-width: 70%;
}

.carousel-control-prev {
    left: 30px !important;
}

.carousel-control-next {
    right: 30px !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 0 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #007bff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    background-color: #696969 !important;
}

.carousel-indicators {
    position: relative !important;
}

    .carousel-indicators .active {
        background-color: #FAC414 !important;
    }

.icon-circle {
    background-color: #107fc9;
    color: white;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 20px;
}

.carousel-control-prev {
    border: none;
    outline: none;
}

.carousel-inner {
    padding: 30px !important;
}

.txt-centrado-xy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 span {
    font-weight: 600;
    line-height: 1;
    color: #107FC9;
}

.img-flex {
    max-width: 100%;
    height: auto;
}

header {
    position: fixed;
    top: 0;
    align-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
    margin-top: 20px;
    z-index: 1000;
}

.nav-idiomas {
    position: absolute;
    right: -150px;
    background: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 5px 20px;
    -webkit-box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
}

.navbar-nav {
    justify-content: space-evenly;
    width: 100%;
    gap: 10px;
}

#nav-apolo {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(300%) blur(10px);
    border-radius: 20px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

    #nav-apolo img {
        width: 20px;
    }

    #nav-apolo .logo {
        width: 90px;
        margin: 20px 20px 20px 10px;
    }

.menu {
    display: flex;
    align-content: center;
    width: 700px;
    margin-top: -25px;
}

.nav-bar ul li {
    list-style: none;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Titillium Web", serif;
    font-weight: 400;
    color: #333333;
}

    .nav-bar ul li p {
        margin-top: 10px;
    }

.idiomas ul li {
    list-style: none;
    font-family: "Titillium Web", serif;
    font-weight: 400;
    list-style: none;
    display: inline-block;
    margin-left: -25px;
    margin-top: -20px;
    position: relative;
}

.nav-item {
    font-weight: 600;
}

.container-tabs,
.container-tab {
    border-radius: 30px;
    box-shadow: inset 0px 3px 6px 1px rgba(194, 194, 194, 0.5);
    display: -webkit-inline-box;
    display: inline-block;
}

.tab-pane img {
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 0 !important;
}

.tab-pane h4 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.link-apolo {
    color: #107fc9 !important;
    padding: 15px 30px;
    padding: 20px 30px !important;
    height: 100%;
    line-height: 1;
    border-radius: 30px !important;
}

    .link-apolo.active {
        background-color: #107fc9 !important;
        color: #ffffff !important;
        border-radius: 30px !important;
    }

.ingresar {
    background-color: #D9D9D9;
    border-radius: 50px;
    height: 45px;
    margin-top: 17px;
}

.registrar {
    background-color: #107FC9;
    border-radius: 50px;
    height: 45px;
    margin-top: 17px;
}

    .registrar p {
        color: #ffffff;
    }

.idiomas ul li p {
    list-style: none;
    display: inline-block;
    position: relative;
    color: #333333;
}

.idiomas ul li img {
    list-style: none;
    display: inline-block;
    width: 20px;
    margin-left: 10px;
    position: relative;
}

.idiomas {
    position: relative;
    float: right;
    background-color: #F1F1F1;
    border-radius: 50px;
    width: 85px;
    height: 40px;
    margin-top: -50px;
    margin-right: 50px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
}

/* Contenedor que tendrá toda la información de la web, excepto nav, portada y footer*/
.content {
    background-color: #ffffff;
    border-radius: 30px 30px 0px 0px;
    position: relative;
    top: -50px;
}

.icono-serv {
    width: 70px;
}


.heroshot {
    background-image: url(../img/heroshot.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

#info-banner {
    background-image: url(../img/heroshot2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.heroshot .titulo {
    padding-top: 150px;
    width: 550px;
    padding-left: 75px;
    color: #BEBEBE;
    font-family: "Titillium Web", serif;
    font-weight: 100;
}

.heroshot .texto {
    padding-top: 0px;
    width: 550px;
    padding-left: 75px;
    color: #333333;
    font-family: "Titillium Web", serif;
    font-weight: 400;
}

.help {
    background-color: #107FC9;
    width: 100%;
    padding: 0;
    margin: 0;
    align-content: center;
    align-items: center;
    padding-bottom: 50px;
}

    .help .titulo {
        color: #ffffff;
        text-align: center;
        padding-top: 30px;
    }

    .help .texto {
        color: #ffffff;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 30px;
        max-width: 800px;
        font-family: "Titillium Web", serif;
        font-weight: 400;
    }

.buton-b {
    align-content: center;
    align-items: center;
}

.boton-b button {
    background-color: #ffffff;
    color: #333333;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    -webkit-box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
    border: none;
    width: 150px;
    height: 40px;
    transition: 0.4s ease;
    cursor: pointer;
}

    .boton-b button:hover {
        background-color: #333333;
        color: #ffffff;
        transition: 0.4s ease;
    }

.app {
    width: 100%;
    display: inline-block;
    display: flex;
    height: 35em;
}

.telefono {
    width: 45%;
    display: inline-block;
    display: flex;
    height: 30em;
}

.texto-lateral {
    width: 45%;
    padding-left: 50px;
    padding-top: 50px;
    padding-right: 50px;
    font-family: "Titillium Web", serif;
    font-weight: 400;
    text-align: left;
}

.app-store {
    width: 45%;
    padding-top: 20px;
    display: inline-block;
    display: flex;
}

    .app-store a img {
        width: 150px;
        height: auto;
        padding-right: 30px;
    }

.contacto {
    width: 100%;
    -webkit-box-shadow: inset 0px 1px 12px 1px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: inset 0px 1px 12px 1px rgba(0, 0, 0, 0.35);
    box-shadow: inset 0px 1px 12px 1px rgba(0, 0, 0, 0.35);
    padding-bottom: 60px;
}

    .contacto .titulo h1 {
        text-align: center;
        color: #BEBEBE;
    }

.contenido-contacto {
    width: 70%;
    background-color: #107FC9;
    border-radius: 10px;
    height: 160px;
    display: inline-block;
    display: flex;
    z-index: 100;
    position: relative;
    -webkit-box-shadow: 0px 5px 12px 1px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 5px 12px 1px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 5px 12px 1px rgba(0, 0, 0, 0.35);
}

.localizacion,
.tel,
.correo {
    width: 33%;
    align-content: center;
    align-items: center;
    color: #ffffff;
    padding: 30px 20px 30px 20px;
}

.icono img {
    width: 25px;
}

.localizacion .texto,
.tel .texto,
.correo .texto {
    font-size: 12px;
    font-family: "Titillium Web", serif;
    font-weight: 400;
}

.mapa {
    padding-bottom: 30px;
    margin-top: -20px;
    z-index: 10;
    position: relative;
}

.boton-a button {
    background-color: #FAC414;
    color: #333333;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    -webkit-box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.35);
    border: none;
    width: 150px;
    height: 40px;
    transition: 0.5s ease;
    cursor: pointer;
}

    .boton-a button:hover {
        background-color: #333333;
        color: #FAC414;
        transition: 0.5s ease;
        cursor: pointer;
    }

.testimonial {
    width: 100%;
    height: 450px;
}

    .testimonial .titulo h1 {
        color: #B0B2B8;
        text-align: center;
        padding: 0;
        margin: 0;
    }

.testimonial-slider {
    padding-top: 0px;
    width: 1000px;
    height: 450px;
    border: none;
}

.comentario-testimonio {
    max-width: 800px;
}

.logos {
    position: relative;
}

.slide img {
    width: 100px;
    animation: scroll 60s linear infinite;
}

.slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
}

.slider {
    margin-top: 0px;
    padding: 0;
}

/* Animaciones para desplegar elemntos*/
.move-left {
    transform: translateX(300px);
    transition: opacity 3s ease, transform 5s ease;
}

    .move-left.active {
        transform: translateX(0px);
    }

.move-right {
    transform: translateX(-300px);
    transition: opacity 3s ease, transform 5s ease;
}

    .move-right.active {
        transform: translateX(0px);
    }

.move-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 3s ease, transform 5s ease;
}

    .move-up.active {
        opacity: 1;
        transform: translateY(0px);
    }

.move-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 3s ease, transform 3s ease;
}

    .move-down.active {
        opacity: 1;
        transform: translateY(0);
    }

.move-zoom {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 3s ease, transform 5s ease;
}

    .move-zoom.active {
        opacity: 1;
        transform: scale(1);
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-1000%)
    }
}

footer {
    width: 100%;
    background-color: #333333;
    color: #ffffff;
    position: relative;
}

.derechos {
    position: absolute;
    width: 100%;
    bottom: -50px;
}

.columnas {
    display: inline-block;
    display: flex;
}

.col1,
.col2 {
    width: 40%;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Titillium Web", serif;
    font-weight: 400;
}

.col3 {
    width: 20%;
    padding-left: 0px;
    padding-right: 100px;
    padding-top: 30px;
}

    .col1 a,
    .col2 a,
    .col3 a {
        color: #ffffff;
        text-decoration: none;
        font-family: "Titillium Web", serif;
        font-weight: 400;
    }

    .col3 img {
        width: 200px;
        padding-top: 30%;
    }

/*.social-icons i {
    font-size: 30px;
    margin-left: 10px;
}*/

.social-icons img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    filter: invert();
    transition: 0.5s;
    margin-top: 5px;
}

    .social-icons img:hover {
        margin-bottom: 5px;
        transition: 0.5s;
        opacity: 0.5;
        margin-top: 0px;
    }

.legales {
    background-color: #E0E0E0;
    padding-bottom: 2px;
    padding-top: 2px;
    color: #333333;
    font-family: "Titillium Web", serif;
    font-weight: 400;
}

.logo-footer {
    width: 200px;
}


/*---------------RESPONSIVE------------------*/

@media screen and (min-width: 1921px) and (max-width: 2500px) {

    .heroshot .titulo {
        padding-left: 155px;
    }

    .heroshot .texto {
        padding-left: 155px;
    }

    .welcome-text {
        padding-left: 155px;
    }

    .app {
        width: 70%;
        height: 35em;
    }

    .telefono {
        padding-top: 50px;
    }

    .contenido-contacto {
        width: 60%;
    }

    .localizacion,
    .tel,
    .correo {
        width: 33%;
        align-content: center;
        align-items: center;
        color: #ffffff;
        padding: 30px 20px 30px 20px;
    }

    .icono img {
        width: 25px;
    }

    .localizacion .texto,
    .tel .texto,
    .correo .texto {
        font-size: 12px;
        font-family: "Titillium Web", serif;
        font-weight: 400;
    }

    .mapa {
        padding-bottom: 30px;
        margin-top: -20px;
        z-index: 10;
        position: relative;
    }
}

@media screen and (min-width: 1500px) and (max-width: 1920px) {

    .heroshot .titulo {
        padding-left: 155px;
    }

    .heroshot .texto {
        padding-left: 155px;
    }

    .welcome-text {
        padding-left: 155px;
    }

    .app {
        width: 70%;
        height: 35em;
    }

    .telefono {
        padding-top: 50px;
    }

    .localizacion,
    .tel,
    .correo {
        width: 33%;
        align-content: center;
        align-items: center;
        color: #ffffff;
        padding: 30px 20px 30px 20px;
    }

    .icono img {
        width: 25px;
    }

    .localizacion .texto,
    .tel .texto,
    .correo .texto {
        font-size: 12px;
        font-family: "Titillium Web", serif;
        font-weight: 400;
    }

    .contenido-contacto {
        width: 60%;
    }

    .mapa {
        padding-bottom: 30px;
        margin-top: -20px;
        z-index: 10;
        position: relative;
    }
}

@media screen and (max-width: 992px) {

    .container-tabs {
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        text-align: center;
        padding: 10px !important;
        width: 100%;
    }

    a.btn-menu {
        padding: 7px 30px;
        width: 200px;
    }

    #nav-apolo {
        width: 95%;
    }

    .banner-img-servicio p {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {

    .item-tempral {
        display: none !important;
    }

    .item-oculto {
        display: block;
    }

    .item-show {
        display: none;
    }

    .nav-item {
        width: 100%;
    }

    .portada-servicio h1 {
        text-align: center;
    }

    .flex-inverse {
        display: flex;
        flex-direction: column-reverse;
    }

        .flex-inverse .info-service {
            height: auto;
            padding-bottom: 30px;
        }

    .txt-container-center {
        justify-content: center;
    }

    .pos-b > img {
        position: relative;
        bottom: 0;
        width: 300px;
        top: -60px;
    }

    button {
        text-align: center;
    }

        button.btn {
            width: 100%;
        }

    .buttonInGroup {
        width: auto !important;
    }

    .txt-centrado-xy {
        justify-content: normal;
    }

    .portada-servicio {
        height: 30vh;
    }

    .banner-img-servicio {
        height: auto;
        border-radius: 30px;
        top: 0;
        position: relative;
        margin: 5px;
        margin-bottom: 5px;
        margin-bottom: -50px;
    }

        .banner-img-servicio > div:first-child {
            position: relative;
            text-align: center;
            bottom: 50px;
        }

        .banner-img-servicio img {
            position: relative;
            bottom: 0;
            width: 200px;
        }

    .text-end-tmporal {
        text-align: start;
    }
}

@media screen and (max-width: 576px) {
    .apl-btn, .btn, btn {
        width: 100% !important;
    }

    .buttonInGroup {
        width: auto !important;
    }

    main > *:first-child {
        padding: 100px 0px 0px 0px;
    }
}

@media (min-width: 576px) {
    .apl-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .apl-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .apl-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .apl-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .apl-container {
        /*max-width: 1320px;*/
        max-width: 1320px;
    }
}

/* Generar columnas para cada breakpoint */
@media (min-width: 576px) {
    .apl-col-sm-1 {
        width: calc(8.3333333333% * 1);
    }

    .apl-col-sm-2 {
        width: calc(8.3333333333% * 2);
    }

    .apl-col-sm-3 {
        width: calc(8.3333333333% * 3);
    }

    .apl-col-sm-4 {
        width: calc(8.3333333333% * 4);
    }

    .apl-col-sm-5 {
        width: calc(8.3333333333% * 5);
    }

    .apl-col-sm-6 {
        width: calc(8.3333333333% * 6);
    }

    .apl-col-sm-7 {
        width: calc(8.3333333333% * 7);
    }

    .apl-col-sm-8 {
        width: calc(8.3333333333% * 8);
    }

    .apl-col-sm-9 {
        width: calc(8.3333333333% * 9);
    }

    .apl-col-sm-10 {
        width: calc(8.3333333333% * 10);
    }

    .apl-col-sm-11 {
        width: calc(8.3333333333% * 11);
    }

    .apl-col-sm-12 {
        width: calc(8.3333333333% * 12);
    }
}

@media (min-width: 768px) {
    .apl-col-md-1 {
        width: calc(8.3333333333% * 1);
    }

    .apl-col-md-2 {
        width: calc(8.3333333333% * 2);
    }

    .apl-col-md-3 {
        width: calc(8.3333333333% * 3);
    }

    .apl-col-md-4 {
        width: calc(8.3333333333% * 4);
    }

    .apl-col-md-5 {
        width: calc(8.3333333333% * 5);
    }

    .apl-col-md-6 {
        width: calc(8.3333333333% * 6);
    }

    .apl-col-md-7 {
        width: calc(8.3333333333% * 7);
    }

    .apl-col-md-8 {
        width: calc(8.3333333333% * 8);
    }

    .apl-col-md-9 {
        width: calc(8.3333333333% * 9);
    }

    .apl-col-md-10 {
        width: calc(8.3333333333% * 10);
    }

    .apl-col-md-11 {
        width: calc(8.3333333333% * 11);
    }

    .apl-col-md-12 {
        width: calc(8.3333333333% * 12);
    }
}

@media (min-width: 992px) {
    .apl-col-lg-1 {
        width: calc(8.3333333333% * 1);
    }

    .apl-col-lg-2 {
        width: calc(8.3333333333% * 2);
    }

    .apl-col-lg-3 {
        width: calc(8.3333333333% * 3);
    }

    .apl-col-lg-4 {
        width: calc(8.3333333333% * 4);
    }

    .apl-col-lg-5 {
        width: calc(8.3333333333% * 5);
    }

    .apl-col-lg-6 {
        width: calc(8.3333333333% * 6);
    }

    .apl-col-lg-7 {
        width: calc(8.3333333333% * 7);
    }

    .apl-col-lg-8 {
        width: calc(8.3333333333% * 8);
    }

    .apl-col-lg-9 {
        width: calc(8.3333333333% * 9);
    }

    .apl-col-lg-10 {
        width: calc(8.3333333333% * 10);
    }

    .apl-col-lg-11 {
        width: calc(8.3333333333% * 11);
    }

    .apl-col-lg-12 {
        width: calc(8.3333333333% * 12);
    }
}

@media (min-width: 1200px) {
    .apl-col-xl-1 {
        width: calc(8.3333333333% * 1);
    }

    .apl-col-xl-2 {
        width: calc(8.3333333333% * 2);
    }

    .apl-col-xl-3 {
        width: calc(8.3333333333% * 3);
    }

    .apl-col-xl-4 {
        width: calc(8.3333333333% * 4);
    }

    .apl-col-xl-5 {
        width: calc(8.3333333333% * 5);
    }

    .apl-col-xl-6 {
        width: calc(8.3333333333% * 6);
    }

    .apl-col-xl-7 {
        width: calc(8.3333333333% * 7);
    }

    .apl-col-xl-8 {
        width: calc(8.3333333333% * 8);
    }

    .apl-col-xl-9 {
        width: calc(8.3333333333% * 9);
    }

    .apl-col-xl-10 {
        width: calc(8.3333333333% * 10);
    }

    .apl-col-xl-11 {
        width: calc(8.3333333333% * 11);
    }

    .apl-col-xl-12 {
        width: calc(8.3333333333% * 12);
    }
}

@media (min-width: 1400px) {
    .apl-col-xxl-1 {
        width: calc(8.3333333333% * 1);
    }

    .apl-col-xxl-2 {
        width: calc(8.3333333333% * 2);
    }

    .apl-col-xxl-3 {
        width: calc(8.3333333333% * 3);
    }

    .apl-col-xxl-4 {
        width: calc(8.3333333333% * 4);
    }

    .apl-col-xxl-5 {
        width: calc(8.3333333333% * 5);
    }

    .apl-col-xxl-6 {
        width: calc(8.3333333333% * 6);
    }

    .apl-col-xxl-7 {
        width: calc(8.3333333333% * 7);
    }

    .apl-col-xxl-8 {
        width: calc(8.3333333333% * 8);
    }

    .apl-col-xxl-9 {
        width: calc(8.3333333333% * 9);
    }

    .apl-col-xxl-10 {
        width: calc(8.3333333333% * 10);
    }

    .apl-col-xxl-11 {
        width: calc(8.3333333333% * 11);
    }

    .apl-col-xxl-12 {
        width: calc(8.3333333333% * 12);
    }
}