@media screen and (max-width: 479px) {
    /* :::::::::::: CSS GLOBAL FONTS ::::::::::::::::::*/
    @font-face {
        font-family: 'TT Bluescreens Bold';
        src: url('../font/TT_Bluescreens_Trial_Bold.ttf');
    }

    @font-face {
        font-family: 'TT Bluescreens Normal';
        src: url('../font/TT_Bluescreens_Trial_Regular.ttf');
    }

    @font-face {
        font-family: 'Helios';
        src: url('../font/HeliosC.ttf');
    }
    /*::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Helios', sans-serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        padding-top: 1.2rem;
        z-index: 9999;

    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
    }

    .input-field {
        margin-bottom: 10px;
    }

    input,
    select {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        width: 100%;
        height: 35px;
        line-height: 40px;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;;
        box-sizing: border-box;
        transition: all 1s ease-out;
    }

    textarea {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 16px;
        width: 100%;
        height: 10rem;
        line-height: 1.1;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;
        box-sizing: border-box;
        padding: 10px;
        resize: none;
        /* Desactiva la opción de redimensionar */
        overflow: auto;
        transition: all 1s ease-out;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border: 0;
        border: 2px solid #616a84;
    }

    .checkboxServices {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
    }
    
    .checkboxServices:checked::before {
        transform: scale(1);
    }
    
    .checkboxServices::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: red;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    dialog {
        width: 80%;
        opacity: 0;
        /* Por defecto, oculto */
        padding: 24px;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        /* Desactiva interacciones cuando está oculto */
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-60px);
        /* Efecto de deslizamiento */
        transition: opacity 0.5s ease, transform 0.5s ease;
        /* Animación de entrada y salida */
    }

    /* Clase para mostrar el diálogo con animación */
    dialog.open {
        opacity: 1;
        /* Visible */
        pointer-events: auto;
        /* Activa interacciones */
        transform: translateY(0);
        /* Posición original */
    }

    .button-close {
        float: right;
        margin-top: -1%;
        margin-right: -1%;
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    .container {
        max-width: 350px;
        margin: auto;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 85px;
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
        animation-delay: 1.5s;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .navbar_link {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        transition: color 0.2s ease-out;
    }

    .navbar_link:hover {
        color: #004182;
    }

    .navbar_img {
        height: 4rem;
        width: auto;
        vertical-align: middle;
    }

    .btn {
        font-family: "Raleway", serif;
        font-size: 12px;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        background-color: #fa360a;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        display: inline-block;
        padding: 0 16px;
        height: 34px;
        line-height: 34px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-submit {
        margin-top: 15px;
    }

    /* ------------- EFECTOS -------------*/

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(30px);
            /* Inicio desplazado */
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            /* Termina en su posición original */
        }
    }

    @keyframes fadeBackground {
        0% {
            background-color: rgba(0, 0, 0, 0);
        }

        100% {
            background-color: rgba(19, 23, 42, 0.539);
        }
    }

    /*----------------- TITULOS  ------------------*/
    .Titles {
        font-family: 'TT Bluescreens Bold', sans-serif;
        font-size: 4rem;
        margin: 0;
    }

    /*--------------------- CARDS ----------------------*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    .cardTitle {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
    }

    .cardText {
        font-size: 16px;
        font-weight: 400;
        margin: 0;
    }

    /* --------------------- ACCESORIOS -------------------------*/
    ._animated {
        width: 35px;
        height: 35px;
    }

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

    .arrow {
        position: absolute;
        text-align: center;
        bottom: 20px;
    }

    .bounce {
        -moz-animation: bounce 2s infinite;
        -webkit-animation: bounce 2s infinite;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-15px);
        }

        60% {
            transform: translateY(-15px);
        }
    }

    ._arrowText {
        font-size: 12px;
        font-weight: 800;
        margin: 0;
    }

    .carrousel {
        display: flex;
        gap: 15px;
        padding: 20px 0px;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .carrousel::-webkit-scrollbar {
        display: none;
    }

    .card-carrousel {
        flex-shrink: 0;
        width: 340px;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
        box-shadow: none;
    }

    .row_buttons {
        display: flex;
        justify-content: center;
        padding-bottom: 5%;
    }

    .arrows_templates {
        width: 30px;
        height: 30px;
        vertical-align: middle;
    }

    .button {
        display: block;
        border-radius: 25px;
        background-color: #fff;
        cursor: pointer;
        border-style: none;
        margin: 0px 5px;
        padding: 0px 3px;
        height: 35px;
        line-height: 30px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }
    
    .button:hover {
        background-color: #d4e9ff;
    }
    
    
    
    .button:active {
        background-color: #a8ccf2;
    }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
    /* :::::::::::: CSS GLOBAL FONTS ::::::::::::::::::*/
    @font-face {
        font-family: 'TT Bluescreens Bold';
        src: url('../font/TT_Bluescreens_Trial_Bold.ttf');
    }

    @font-face {
        font-family: 'TT Bluescreens Normal';
        src: url('../font/TT_Bluescreens_Trial_Regular.ttf');
    }

    @font-face {
        font-family: 'Helios';
        src: url('../font/HeliosC.ttf');
    }
    /*::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Helios', sans-serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        padding-top: 1.2rem;
        z-index: 9999;

    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
    }

    .input-field {
        margin-bottom: 10px;
    }

    input,
    select {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        width: 100%;
        height: 35px;
        line-height: 40px;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;;
        box-sizing: border-box;
        transition: all 1s ease-out;
    }

    textarea {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 16px;
        width: 100%;
        height: 10rem;
        line-height: 1.1;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;
        box-sizing: border-box;
        padding: 10px;
        resize: none;
        /* Desactiva la opción de redimensionar */
        overflow: auto;
        transition: all 1s ease-out;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border: 0;
        border: 2px solid #616a84;
    }

    .checkboxServices {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
    }
    
    .checkboxServices:checked::before {
        transform: scale(1);
    }
    
    .checkboxServices::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: red;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    dialog {
        width: 80%;
        opacity: 0;
        /* Por defecto, oculto */
        padding: 24px;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        /* Desactiva interacciones cuando está oculto */
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-60px);
        /* Efecto de deslizamiento */
        transition: opacity 0.5s ease, transform 0.5s ease;
        /* Animación de entrada y salida */
    }

    /* Clase para mostrar el diálogo con animación */
    dialog.open {
        opacity: 1;
        /* Visible */
        pointer-events: auto;
        /* Activa interacciones */
        transform: translateY(0);
        /* Posición original */
    }

    .button-close {
        float: right;
        margin-top: -1%;
        margin-right: -1%;
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    .container {
        max-width: 715px;
        margin: auto;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 85px;
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
        animation-delay: 1.5s;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .navbar_link {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        transition: color 0.2s ease-out;
    }

    .navbar_link:hover {
        color: #004182;
    }

    .navbar_img {
        height: 4rem;
        width: auto;
        vertical-align: middle;
    }

    .btn {
        font-family: "Raleway", serif;
        font-size: 12px;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        background-color: #fa360a;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        display: inline-block;
        padding: 0 16px;
        height: 34px;
        line-height: 34px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-submit {
        margin-top: 15px;
    }

    /* ------------- EFECTOS -------------*/

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(30px);
            /* Inicio desplazado */
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            /* Termina en su posición original */
        }
    }

    @keyframes fadeBackground {
        0% {
            background-color: rgba(0, 0, 0, 0);
        }

        100% {
            background-color: rgba(19, 23, 42, 0.539);
        }
    }

    /*----------------- TITULOS  ------------------*/
    .Titles {
        font-family: 'TT Bluescreens Bold', sans-serif;
        font-size: 4rem;
        margin: 0;
    }

    /*--------------------- CARDS ----------------------*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    .cardTitle {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
    }

    .cardText {
        font-size: 16px;
        font-weight: 400;
        margin: 0;
    }

    /* --------------------- ACCESORIOS -------------------------*/
    ._animated {
        width: 35px;
        height: 35px;
    }

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

    .arrow {
        position: absolute;
        text-align: center;
        bottom: 20px;
    }

    .bounce {
        -moz-animation: bounce 2s infinite;
        -webkit-animation: bounce 2s infinite;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-15px);
        }

        60% {
            transform: translateY(-15px);
        }
    }

    ._arrowText {
        font-size: 12px;
        font-weight: 800;
        margin: 0;
    }

    .carrousel {
        display: flex;
        gap: 15px;
        padding: 20px 0px;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .carrousel::-webkit-scrollbar {
        display: none;
    }

    .card-carrousel {
        flex-shrink: 0;
        width: 340px;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
        box-shadow: none;
    }

    .row_buttons {
        display: flex;
        justify-content: end;
        padding-bottom: 3%;
    }

    .arrows_templates {
        width: 30px;
        height: 30px;
        vertical-align: middle;
    }

    .button {
        display: block;
        border-radius: 25px;
        background-color: #fff;
        cursor: pointer;
        border-style: none;
        margin: 0px 5px;
        padding: 0px 3px;
        height: 35px;
        line-height: 30px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }
    
    .button:hover {
        background-color: #d4e9ff;
    }
    
    
    
    .button:active {
        background-color: #a8ccf2;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
     /* :::::::::::: CSS GLOBAL FONTS ::::::::::::::::::*/
     @font-face {
        font-family: 'TT Bluescreens Bold';
        src: url('../font/TT_Bluescreens_Trial_Bold.ttf');
    }

    @font-face {
        font-family: 'TT Bluescreens Normal';
        src: url('../font/TT_Bluescreens_Trial_Regular.ttf');
    }

    @font-face {
        font-family: 'Helios';
        src: url('../font/HeliosC.ttf');
    }
    /*::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Helios', sans-serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        padding-top: 1.2rem;
        z-index: 9999;

    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
    }

    .input-field {
        margin-bottom: 10px;
    }

    input,
    select {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        width: 100%;
        height: 35px;
        line-height: 40px;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;;
        box-sizing: border-box;
        transition: all 1s ease-out;
    }

    textarea {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 16px;
        width: 100%;
        height: 10rem;
        line-height: 1.1;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;
        box-sizing: border-box;
        padding: 10px;
        resize: none;
        /* Desactiva la opción de redimensionar */
        overflow: auto;
        transition: all 1s ease-out;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border: 0;
        border: 2px solid #616a84;
    }

    .checkboxServices {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
    }
    
    .checkboxServices:checked::before {
        transform: scale(1);
    }
    
    .checkboxServices::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: red;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    dialog {
        width: 80%;
        opacity: 0;
        /* Por defecto, oculto */
        padding: 24px;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        /* Desactiva interacciones cuando está oculto */
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-60px);
        /* Efecto de deslizamiento */
        transition: opacity 0.5s ease, transform 0.5s ease;
        /* Animación de entrada y salida */
    }

    /* Clase para mostrar el diálogo con animación */
    dialog.open {
        opacity: 1;
        /* Visible */
        pointer-events: auto;
        /* Activa interacciones */
        transform: translateY(0);
        /* Posición original */
    }

    .button-close {
        float: right;
        margin-top: -1%;
        margin-right: -1%;
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    .container {
        max-width: 715px;
        margin: auto;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 85px;
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
        animation-delay: 1.5s;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .navbar_link {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        transition: color 0.2s ease-out;
    }

    .navbar_link:hover {
        color: #004182;
    }

    .navbar_img {
        height: 4rem;
        width: auto;
        vertical-align: middle;
    }

    .btn {
        font-family: "Raleway", serif;
        font-size: 12px;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        background-color: #fa360a;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        display: inline-block;
        padding: 0 16px;
        height: 34px;
        line-height: 34px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-submit {
        margin-top: 15px;
    }

    /* ------------- EFECTOS -------------*/

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(30px);
            /* Inicio desplazado */
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            /* Termina en su posición original */
        }
    }

    @keyframes fadeBackground {
        0% {
            background-color: rgba(0, 0, 0, 0);
        }

        100% {
            background-color: rgba(19, 23, 42, 0.539);
        }
    }

    /*----------------- TITULOS  ------------------*/
    .Titles {
        font-family: 'TT Bluescreens Bold', sans-serif;
        font-size: 4rem;
        margin: 0;
    }

    /*--------------------- CARDS ----------------------*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    .cardTitle {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
    }

    .cardText {
        font-size: 16px;
        font-weight: 400;
        margin: 0;
    }

    /* --------------------- ACCESORIOS -------------------------*/
    ._animated {
        width: 35px;
        height: 35px;
    }

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

    .arrow {
        position: absolute;
        text-align: center;
        bottom: 20px;
    }

    .bounce {
        -moz-animation: bounce 2s infinite;
        -webkit-animation: bounce 2s infinite;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-15px);
        }

        60% {
            transform: translateY(-15px);
        }
    }

    ._arrowText {
        font-size: 12px;
        font-weight: 800;
        margin: 0;
    }

    .carrousel {
        display: flex;
        gap: 15px;
        padding: 20px 0px;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .carrousel::-webkit-scrollbar {
        display: none;
    }

    .card-carrousel {
        flex-shrink: 0;
        width: 340px;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
        box-shadow: none;
    }

    .row_buttons {
        display: flex;
        justify-content: end;
        padding-bottom: 3%;
    }

    .arrows_templates {
        width: 30px;
        height: 30px;
        vertical-align: middle;
    }

    .button {
        display: block;
        border-radius: 25px;
        background-color: #fff;
        cursor: pointer;
        border-style: none;
        margin: 0px 5px;
        padding: 0px 3px;
        height: 35px;
        line-height: 30px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }
    
    .button:hover {
        background-color: #d4e9ff;
    }
    
    
    
    .button:active {
        background-color: #a8ccf2;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
     /* :::::::::::: CSS GLOBAL FONTS ::::::::::::::::::*/
     @font-face {
        font-family: 'TT Bluescreens Bold';
        src: url('../font/TT_Bluescreens_Trial_Bold.ttf');
    }

    @font-face {
        font-family: 'TT Bluescreens Normal';
        src: url('../font/TT_Bluescreens_Trial_Regular.ttf');
    }

    @font-face {
        font-family: 'Helios';
        src: url('../font/HeliosC.ttf');
    }
    /*::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Helios', sans-serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        padding-top: 1.2rem;
        z-index: 9999;

    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
    }

    .input-field {
        margin-bottom: 10px;
    }

    input,
    select {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        width: 100%;
        height: 35px;
        line-height: 40px;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;;
        box-sizing: border-box;
        transition: all 1s ease-out;
    }

    textarea {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 16px;
        width: 100%;
        height: 10rem;
        line-height: 1.1;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;
        box-sizing: border-box;
        padding: 10px;
        resize: none;
        /* Desactiva la opción de redimensionar */
        overflow: auto;
        transition: all 1s ease-out;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border: 0;
        border: 2px solid #616a84;
    }

    .checkboxServices {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
    }
    
    .checkboxServices:checked::before {
        transform: scale(1);
    }
    
    .checkboxServices::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: red;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    dialog {
        width: 80%;
        opacity: 0;
        /* Por defecto, oculto */
        padding: 24px;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        /* Desactiva interacciones cuando está oculto */
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-60px);
        /* Efecto de deslizamiento */
        transition: opacity 0.5s ease, transform 0.5s ease;
        /* Animación de entrada y salida */
    }

    /* Clase para mostrar el diálogo con animación */
    dialog.open {
        opacity: 1;
        /* Visible */
        pointer-events: auto;
        /* Activa interacciones */
        transform: translateY(0);
        /* Posición original */
    }

    .button-close {
        float: right;
        margin-top: -1%;
        margin-right: -1%;
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    .container {
        max-width: 715px;
        margin: auto;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 85px;
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
        animation-delay: 1.5s;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .navbar_link {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        transition: color 0.2s ease-out;
    }

    .navbar_link:hover {
        color: #004182;
    }

    .navbar_img {
        height: 4rem;
        width: auto;
        vertical-align: middle;
    }

    .btn {
        font-family: "Raleway", serif;
        font-size: 12px;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        background-color: #fa360a;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        display: inline-block;
        padding: 0 16px;
        height: 34px;
        line-height: 34px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-submit {
        margin-top: 15px;
    }

    /* ------------- EFECTOS -------------*/

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(30px);
            /* Inicio desplazado */
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            /* Termina en su posición original */
        }
    }

    @keyframes fadeBackground {
        0% {
            background-color: rgba(0, 0, 0, 0);
        }

        100% {
            background-color: rgba(19, 23, 42, 0.539);
        }
    }

    /*----------------- TITULOS  ------------------*/
    .Titles {
        font-family: 'TT Bluescreens Bold', sans-serif;
        font-size: 4rem;
        margin: 0;
    }

    /*--------------------- CARDS ----------------------*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    .cardTitle {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
    }

    .cardText {
        font-size: 16px;
        font-weight: 400;
        margin: 0;
    }

    /* --------------------- ACCESORIOS -------------------------*/
    ._animated {
        width: 35px;
        height: 35px;
    }

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

    .arrow {
        position: absolute;
        text-align: center;
        bottom: 20px;
    }

    .bounce {
        -moz-animation: bounce 2s infinite;
        -webkit-animation: bounce 2s infinite;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-15px);
        }

        60% {
            transform: translateY(-15px);
        }
    }

    ._arrowText {
        font-size: 12px;
        font-weight: 800;
        margin: 0;
    }

    .carrousel {
        display: flex;
        gap: 15px;
        padding: 20px 0px;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .carrousel::-webkit-scrollbar {
        display: none;
    }

    .card-carrousel {
        flex-shrink: 0;
        width: 340px;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
        box-shadow: none;
    }

    .row_buttons {
        display: flex;
        justify-content: end;
        padding-bottom: 3%;
    }

    .arrows_templates {
        width: 30px;
        height: 30px;
        vertical-align: middle;
    }

    .button {
        display: block;
        border-radius: 25px;
        background-color: #fff;
        cursor: pointer;
        border-style: none;
        margin: 0px 5px;
        padding: 0px 3px;
        height: 35px;
        line-height: 30px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }
    
    .button:hover {
        background-color: #d4e9ff;
    }
    
    
    
    .button:active {
        background-color: #a8ccf2;
    }
}

@media screen and (min-width: 1200px) {
    /* :::::::::::: CSS GLOBAL FONTS ::::::::::::::::::*/
    @font-face {
        font-family: 'TT Bluescreens Bold';
        src: url('../font/TT_Bluescreens_Trial_Bold.ttf');
    }

    @font-face {
        font-family: 'TT Bluescreens Normal';
        src: url('../font/TT_Bluescreens_Trial_Regular.ttf');
    }

    @font-face {
        font-family: 'Helios';
        src: url('../font/HeliosC.ttf');
    }
    /*::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Helios', sans-serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        padding-top: 1.2rem;
        z-index: 9999;

    }

    img, video {
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
    }

    .input-field {
        margin-bottom: 10px;
    }

    input,
    select {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        width: 100%;
        height: 35px;
        line-height: 40px;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;;
        box-sizing: border-box;
        transition: all 1s ease-out;
    }

    textarea {
        font-family: 'Helios';
        font-weight: 500;
        font-size: 16px;
        width: 100%;
        height: 10rem;
        line-height: 1.1;
        border: 0;
        border: 2px solid #004182;
        border-radius: 5px;
        box-sizing: border-box;
        padding: 10px;
        resize: none;
        /* Desactiva la opción de redimensionar */
        overflow: auto;
        transition: all 1s ease-out;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border: 0;
        border: 2px solid #616a84;
    }

    .checkboxServices {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
    }
    
    .checkboxServices:checked::before {
        transform: scale(1);
    }
    
    .checkboxServices::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: red;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    dialog {
        width: 80%;
        opacity: 0;
        /* Por defecto, oculto */
        padding: 24px;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        /* Desactiva interacciones cuando está oculto */
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-60px);
        /* Efecto de deslizamiento */
        transition: opacity 0.5s ease, transform 0.5s ease;
        /* Animación de entrada y salida */
    }

    /* Clase para mostrar el diálogo con animación */
    dialog.open {
        opacity: 1;
        /* Visible */
        pointer-events: auto;
        /* Activa interacciones */
        transform: translateY(0);
        /* Posición original */
    }

    .button-close {
        float: right;
        margin-top: -1%;
        margin-right: -1%;
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    .container {
        max-width: 1200px;
        margin: auto;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 85px;
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
        animation-delay: 1.5s;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .navbar_link {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        transition: color 0.2s ease-out;
    }

    .navbar_link:hover {
        color: #004182;
    }

    .navbar_img {
        height: 4rem;
        width: auto;
        vertical-align: middle;
    }

    .btn {
        font-family: "Raleway", serif;
        font-size: 12px;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        background-color: #fa360a;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        display: inline-block;
        padding: 0 16px;
        height: 34px;
        line-height: 34px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-submit {
        margin-top: 15px;
    }

    /* ------------- EFECTOS -------------*/

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(30px);
            /* Inicio desplazado */
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            /* Termina en su posición original */
        }
    }

    @keyframes fadeBackground {
        0% {
            background-color: rgba(0, 0, 0, 0);
        }

        100% {
            background-color: rgba(19, 23, 42, 0.539);
        }
    }

    /*----------------- TITULOS  ------------------*/
    .Titles {
        font-family: 'TT Bluescreens Bold', sans-serif;
        font-size: 4rem;
        margin: 0;
    }

    /*--------------------- CARDS ----------------------*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    .cardTitle {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
    }

    .cardText {
        font-size: 16px;
        font-weight: 400;
        margin: 0;
    }

    /* --------------------- ACCESORIOS -------------------------*/
    ._animated {
        width: 35px;
        height: 35px;
    }

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

    .arrow {
        position: absolute;
        text-align: center;
        bottom: 20px;
    }

    .bounce {
        -moz-animation: bounce 2s infinite;
        -webkit-animation: bounce 2s infinite;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-15px);
        }

        60% {
            transform: translateY(-15px);
        }
    }

    ._arrowText {
        font-size: 12px;
        font-weight: 800;
        margin: 0;
    }

    .carrousel {
        display: flex;
        gap: 15px;
        padding: 20px 0px;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .carrousel::-webkit-scrollbar {
        display: none;
    }

    .card-carrousel {
        flex-shrink: 0;
        width: 340px;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
        box-shadow: none;
    }

    .row_buttons {
        display: flex;
        justify-content: end;
        padding-bottom: 3%;
    }

    .arrows_templates {
        width: 30px;
        height: 30px;
        vertical-align: middle;
    }

    .button {
        display: block;
        border-radius: 25px;
        background-color: #fff;
        cursor: pointer;
        border-style: none;
        margin: 0px 5px;
        padding: 0px 3px;
        height: 35px;
        line-height: 30px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }
    
    .button:hover {
        background-color: #d4e9ff;
    }
    
    
    
    .button:active {
        background-color: #a8ccf2;
    }
}