@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'Titulo';
    src: url(../fuentes/Titulo/WorkSans-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Parrafo';
    src: url(../fuentes/Parrafo/BarlowSemiCondensed-Regular.ttf) format('truetype');
}

:root {

    --title-font: "Poetsen One", sans-serif;
    --normal-font: "Roboto", sans-serif;

    /*################ TIPOGRAFIA DE TEXTO ################*/
    /*################ TIPOGRAFIA DE TEXTO ################*/
    /* Título principal */
    --fs-h1: clamp(1.375rem, 1.6vw + 1rem, 3.75rem);
    /* Subtítulo */
    --fs-h2: clamp(1.25rem, 1.5vw + 0.75rem, 3rem);
    /* Título menor */
    --fs-h3: clamp(1.125rem, 1.4vw + 0.5rem, 2.25rem);
    /* Encabezado pequeño */
    --fs-h4: clamp(1rem, 1.2vw + 0.25rem, 1.75rem);
    /* Texto normal */
    --fs-body: clamp(0.95rem, 1vw + 0.5rem, 1.5rem);
    /* Texto pequeño */
    --fs-small: clamp(0.875rem, 0.8vw + 0.25rem, 1.2rem);
    /* Texto muy pequeño */
    --fs-xs: clamp(0.75rem, 0.6vw + 0.2rem, 1rem);

    /*################ NEGRILLA AL TEXTO ################*/
    /*################ NEGRILLA AL TEXTO ################*/
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    /*################## MARGENES ##################*/
    /*################## MARGENES ##################*/
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*################## z-index ##################*/
    /*################## z-index ##################*/
    --toolkid: 100;
    --index-1: 10;
    --index-2: 30;
    --index-3: 60;
    --index-4: 90;

    /*################ COLORES ################*/
    /*################ COLORES ################*/
    /*######## Color Fondo Principal ########*/
    /*######## Color Fondo Principal ########*/
    --body-color: #000000;
    /*######## Color NavBar ########*/
    /*######## Color NavBar ########*/
    --navbar-color: #000000;
    /*######## Colores Texto ########*/
    /*######## Colores Texto ########*/
    --color-one: #2c2c2c;
    --color-two: #ffffff;
    --color-tree: #89b0d9;
    /*######## Color Botones Consultar Y Ver Mas ########*/
    /*######## Color Botones Consultar Y Ver Mas ########*/
    --btn-tabs: #ff7750;
    --btn-consultar: #009100;
}

/*########################## PÁGINA PRINCIPAL ##########################*/
/*########################## PÁGINA PRINCIPAL ##########################*/
/*########################## PÁGINA PRINCIPAL ##########################*/
/*########################## PÁGINA PRINCIPAL ##########################*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


body {
    font-family: var(--normal-font);
    background: var(--body-color);
    overflow-x: hidden;
}

main {
    background-color: white;
}

.animate-item {
    opacity: 0;
    visibility: hidden;
}

.animate-item.is-animated {
    opacity: 1;
    visibility: visible;
}

.animate__animated {
    animation-fill-mode: both;
}


/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
.header {
    width: 100%;
    background: var(--navbar-color);
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1800px;
}

/*############# Estilos De Los LINKS #############*/
/*############# Estilos De Los LINKS #############*/
a {
    text-decoration: none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.ZasWeb-logo img {
    width: 140px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
}



/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
.portada-business-arimedia {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-image-arimedia,
.hero-video-arimedia {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 1s ease-in-out;
}

.hero-image {
    z-index: 1;
}

.hero-video-arimedia {
    z-index: 2;
    opacity: 0;
}

.hero-video-arimedia.active {
    opacity: 1;
}


.overlay-content-arimedia {
    position: absolute;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.overlay-content-arimedia.hide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.overlay-content-arimedia button {
    background-color: red;
    border: none;
    color: #ffffff;
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: .3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.overlay-content-arimedia button:hover {
    animation: resplandor 1.2s ease-out forwards;
}

@keyframes resplandor {
    0% {
        box-shadow: 0px 0px 0px 2px rgba(255, 255, 0, 0);
    }

    30% {
        box-shadow: 0px 0px 0px 18px rgba(255, 0, 0, 0.3);
        /* Casi en su máximo, aún visible */
    }

    45% {
        box-shadow: 0px 0px 0px 20px rgba(255, 0, 0, 0.2);
        /* Se empieza a desvanecer */
    }

    50% {
        box-shadow: 0px 0px 0px 20px rgba(255, 0, 0, 0.1);
        /* Se desvanece completamente */
    }

    55% {
        box-shadow: 0px 0px 0px 20px rgba(255, 0, 0, 0);
        /* Se desvanece completamente */
    }
}



/*###################### ESTILOS LOGO ARIEMDIA ######################*/
/*###################### ESTILOS LOGO ARIEMDIA ######################*/
/*###################### ESTILOS LOGO ARIEMDIA ######################*/
/*###################### ESTILOS LOGO ARIEMDIA ######################*/
.section-logo-ari {
    margin-left: 4rem;
    margin-right: 4rem;
}

.img-logo-ariemdia {
    width: 8%;
    display: block;
    margin-left: auto;
}



/*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
/*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
/*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
/*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
.section-servicios-arimedia {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 0rem 0rem 3rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-servicios-arimedia {
    color: white;
    font-size: var(--fs-h1);
    font-family: 'Titulo';
    margin-bottom: var(--mb-6);
}

.element-card-arimedia {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
}

.card-serv-arimedia {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.header-card-ari {
    width: 100%;
    border-radius: 20px;
}

.header-card-ari img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

.footer-card-ari {
    background-color: #383838;
    width: 90%;
    margin-top: -60px;
    border-radius: 20px;
    padding: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-card-ari h3 {
    font-size: var(--fs-h4);
    font-family: 'Parrafo';
    color: white;
    margin-bottom: var(--mb-1);
}

.footer-card-ari p {
    font-size: var(--fs-body);
    font-family: 'Parrafo';
    color: white;
    text-align: justify;
    line-height: 1.5;
    padding-bottom: 20px;
}

.btn-consult {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.btn-consult button {
    background-color: #f40000;
    display: inline-block;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    font-family: 'Parrafo';
    padding: 14px 60px;
    cursor: pointer;
    transition: .3s ease, background-color 0.3s ease;
}

.btn-consult button:hover {
    animation: resplandor 1.2s ease-out forwards;
}

@keyframes resplandor {
    0% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    }

    30% {
        box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.5);
    }

    45% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15);
    }

    55% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/*###################### ESTILOS NUESTRO TRABAJO ######################*/
/*###################### ESTILOS NUESTRO TRABAJO ######################*/
/*###################### ESTILOS NUESTRO TRABAJO ######################*/
/*###################### ESTILOS NUESTRO TRABAJO ######################*/
.section-ourwork-arimedia {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem 0rem 6rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-ourwork-arimedia {
    color: white;
    font-size: var(--fs-h1);
    font-family: 'Titulo';
    margin-bottom: var(--mb-6);
}

.content-ourwork-arimedia {
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.vid-ourwork-arimedia {
    width: 31%;
    height: 250px;
}

.vid-ourwork-arimedia h3 {
    color: white;
    font-size: var(--fs-h4);
    font-family: 'Parrafo';
    text-align: center;
    padding: 10px 0px 20px 0px;
}

/*###################### ESTILOS SOBRE LA EMPRESA ######################*/
/*###################### ESTILOS SOBRE LA EMPRESA ######################*/
/*###################### ESTILOS SOBRE LA EMPRESA ######################*/
/*###################### ESTILOS SOBRE LA EMPRESA ######################*/
.section-aboutcompany-arimedia {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-aboutcompany-arimedia {
    color: white;
    font-size: var(--fs-h1);
    font-family: 'Titulo';
    margin-bottom: var(--mb-3);
}

.content-date-aboutcompany {
    width: 70%;
    display: flex;
    gap: 22px;
}

.date-aboutcompany {
    width: 50%;
}

.desc-direccion li {
    color: white;
    width: 100%;
    list-style: none;
    padding: 22px 0px;
    font-size: var(--fs-body);
    font-family: 'Parrafo';
    border-bottom: solid 2px rgba(255, 255, 255, 0.6);
    margin-bottom: var(--mb-3);
}

.desc-direccion li i {
    padding-right: 10px;
}

.apertura-company {
    background-color: #009100;
    padding: 2px 10px;
    border-radius: 10px;
}

.cierre-company {
    background-color: red;
    padding: 2px 10px;
    border-radius: 10px;
    margin-left: 10px;
}

.desc-direccion li .button-company-ari {
    background-color: #009100;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: var(--fs-body);
    font-family: 'Parrafo';
    padding: 8px 12px;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgb(0, 0, 0, 0.35);
    transition: .5s;
    margin-left: 20px;
}

.date-aboutcompany h3 {
    font-size: var(--fs-h3);
    font-family: 'Titulo';
    color: white;
    text-align: center;
}

.social-aboud-company {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 25px;
    border-radius: 14px;
}

.social-aboud-company .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all 0.3s;
    z-index: 2;
}

.social-aboud-company .Btn {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
}

.social-aboud-company .svgContainer i {
    color: white;
    font-size: 34px;
}

.social-aboud-company .BG {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #181818;
    z-index: 1;
    border-radius: 10px;
    pointer-events: none;
    transition: all 0.3s;
    font-size: 0px;
}

.social-aboud-company .facebook .BG {
    background: #0866ff;

}

.social-aboud-company .tiktok .BG {
    background: white;
}

.social-aboud-company .instagram .BG {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%);
}

.social-aboud-company .Btn:hover .BG {
    transform: scale(1.3);
}

.social-aboud-company .Btn:hover .svgContainer {
    background-color: rgba(209, 209, 209, 0.466);
    backdrop-filter: blur(4px);
}

.img-aboutcompany {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
/*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
/*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
/*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
.section-company-experience-arimedia {
    padding: 8rem 0rem 5rem;
    width: 100%;
}

.section-company-experience-arimedia .mobil-experience {
    display: none;
    width: 100%;
}

/*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
/*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
/*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
/*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
.section-questions-arimedia {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-questions-arimedia {
    font-size: var(--fs-h1);
    font-family: 'Titulo';
    color: white;
    margin-bottom: var(--mb-5);
}

.container-frequently-questions {
    width: 80%;
    display: flex;
    gap: 40px;
}


.frequently-questions {
    width: 100%;
    background-color: #5a5a5a;
    margin-bottom: 20px;
    padding: 14px 30px 4px 30px;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0, 0, 50, 0.2);
}

.frequently-questions .questions-arimedia {
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-body);
    font-family: 'Titulo';
    color: white;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 16px 0;
    border-bottom: solid 2px rgba(255, 255, 255, 0.8);
}

/*######### SECCION DEL DESPLIEGUE DEL ACORDEON #######*/
.frequently-questions .seccion-questions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    padding-top: 10px;
}

.frequently-questions .seccion-questions .content-sucursal {
    width: 100%;
    font-family: 'Parrafo';
    font-size: var(--fs-body);
    text-align: justify;
    line-height: 1.5;
    color: white;
    padding: 12px 0px 20px 0px;
}

.title-also-interest {
    color: white;
    font-family: 'Titulo';
    font-size: var(--fs-h2);
    font-style: italic;
    font-weight: var(--fw-light);
    margin-top: 5rem;
    margin-bottom: -0.8rem;
}

/*###################### ESTILOS CURBAS CASTALIA ######################*/
/*###################### ESTILOS CURBAS CASTALIA ######################*/
/*###################### ESTILOS CURBAS CASTALIA ######################*/
/*###################### ESTILOS CURBAS CASTALIA ######################*/
.curve-stetic-castalia {
    margin-bottom: -4px;
    overflow: hidden;
    line-height: 0;
}

.curve-stetic-castalia svg {
    position: relative;
    display: block;
    width: calc(200% + 1.3px);
    height: 140px;
    transform: rotateY(180deg);

}

.curve-stetic-castalia .shape-fill {
    fill: #ffffff;
}

/*###################### ESTILOS CASTALIA LITERATIA ######################*/
/*###################### ESTILOS CASTALIA LITERATIA ######################*/
/*###################### ESTILOS CASTALIA LITERATIA ######################*/
/*###################### ESTILOS CASTALIA LITERATIA ######################*/
.section-castalia-literature {
    padding: 2rem 0rem 2.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-castalia-literature {
    font-family: 'Titulo';
    font-size: var(--fs-h1);
    margin-bottom: var(--mb-4);
}

.castalia-literature-detail-info {
    width: 70%;
    display: flex;
}

.img-castalia {
    width: 50%;
}

.detail-castalia {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.detail-castalia p {
    font-size: var(--fs-body);
    margin-bottom: var(--mb-3);
    font-family: 'Parrafo';
    text-align: justify;
}

.detail-castalia .insentive-slogan {
    text-align: center;
    width: 65%;
}


.btn-consult-castalia {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-consult-castalia a {
    background-color: #f40000;
    display: inline-block;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    font-family: 'Parrafo';
    padding: 14px 60px;
    cursor: pointer;
    transition: .3s ease, background-color 0.3s ease;
}

.btn-consult-castalia a:hover {
    animation: resplandor 1.2s ease-out forwards;
}

@keyframes resplandor {
    0% {
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0);
    }

    30% {
        box-shadow: 0 0 0 9px rgba(255, 0, 0, 0.5);
    }

    45% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0.15);
    }

    55% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

/*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
/*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
/*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
/*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
.section-impulset-castalia-literatia {
    padding: 1rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-impulset-castalia {
    font-size: var(--fs-h1);
    font-family: 'Titulo';
    margin-bottom: var(--mb-6);
}

.content-impulset-castalia {
    width: 70%;
    display: flex;

    margin-bottom: 80px;
}

.img-impulset {
    width: 50%;
}

.img-impulset-responsive {
    display: none;
}

.detail-impulset {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px;
}

.detail-impulset h3 {
    font-size: var(--fs-h3);
    font-family: 'Titulo';
    margin-bottom: var(--mb-4);
}

.detail-impulset p {
    font-size: var(--fs-body);
    font-family: 'Parrafo';
    text-align: justify;
}


/*################# ESTILO SECCION FOOTER Y COPY ################*/
/*################# ESTILO SECCION FOOTER Y COPY ################*/
/*################# ESTILO SECCION FOOTER Y COPY ################*/
/*################# ESTILO SECCION FOOTER Y COPY ################*/
.section-footer {
    width: 100%;
    background-color: /*#535252*/ #0a192f;
}

.section-footer .seccion_detalle_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Parrafo';
}

.seccion_detalle_footer .detalles_footer {
    max-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px 0px;
}

.detalles_footer .logo_footer figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detalles_footer .logo_footer figure img {
    width: 250px;
}

.detalles_footer .detalle_footer {
    width: 40%;
    padding: 60px 30px 60px 30px;
}

.detalles_footer .detalle_footer h2 {
    color: hsla(0, 0%, 100%, 0.6);
    margin-bottom: 25px;
    font-size: var(--fs-h3);
}

.detalles_footer .detalle_footer p {
    color: hsla(0, 0%, 100%, 0.5);
    margin-bottom: 10px;
    text-align: justify;
    font-size: var(--fs-body);
}

.detalles_footer .redes_footer {
    width: 20%;
    display: none;
}

.detalles_footer .redes_footer h2 {
    color: hsla(0, 0%, 100%, 0.6);
    margin-bottom: 25px;
    font-size: var(--fs-h3);
}

.detalles_footer .redes_footer .iconos_redes a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: white;
    margin-right: 10px;
    background-color: var(--barra-color);
    text-align: center;
}


.detalles_footer .iconos_redes a:hover {
    color: var(--navbtn-color);
}

.section-footer .seccion_copy {
    background-color: #f68421;
    padding: 15px 10px;
    text-align: center;
    color: white;
}

.section-footer .seccion_copy small {
    font-size: var(--fs-small);
}
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
@media (max-width: 1919px) {

    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 100px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    .section-logo-ari {
        margin-left: 2rem;
        margin-right: 2rem;
    }

    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/

    .element-card-arimedia {
        width: 94%;
        gap: 40px;
    }

    .card-serv-arimedia {
        width: 450px;
    }

    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    .title-ourwork-arimedia {
        margin-bottom: var(--mb-4);
    }

    .content-ourwork-arimedia {
        width: 88%;
        gap: 40px;
    }

    .vid-ourwork-arimedia h3 {
        padding: 6px 0px 20px 0px;
    }

    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    .content-date-aboutcompany {
        width: 80%;
        display: flex;
        gap: 24px;
    }

    /*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
    /*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
    .section-company-experience-arimedia {
        padding: 6rem 0rem 3.4rem;
    }

    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    .frequently-questions {
        margin-bottom: 10px;
    }

    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    .castalia-literature-detail-info {
        width: 80%;
    }

    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    .content-impulset-castalia {
        width: 80%;
        margin-bottom: 60px;
    }
}


@media (max-width: 1439px) {

    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 90px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .portada-business-arimedia {
        position: relative;
        height: 80vh;
        width: 100%;
        overflow: hidden;
        margin-bottom: 0.6rem;
    }

    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    .element-card-arimedia {
        width: 90%;
        gap: 50px;
    }

    .header-card-ari img {
        height: 260px;
    }

    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    .title-ourwork-arimedia {
        margin-bottom: var(--mb-3);
    }

    .content-ourwork-arimedia {
        width: 100%;
        gap: 20px;
    }

    .vid-ourwork-arimedia {
        width: 31%;
        height: 220px;
    }

    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    .content-date-aboutcompany {
        width: 90%;
        gap: 20px;
    }

    /*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
    /*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
    .section-company-experience-arimedia {
        padding: 3.6rem 0rem 3rem;
    }

    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    .container-frequently-questions {
        width: 90%;
    }

    .frequently-questions {
        padding: 10px 30px 0px 30px;
        margin-bottom: 0px;
    }

    /*###################### ESTILOS CURBAS CASTALIA ######################*/
    /*###################### ESTILOS CURBAS CASTALIA ######################*/
    .curve-stetic-castalia svg {
        height: 110px;
    }

    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    .castalia-literature-detail-info {
        width: 90%;
    }

    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    .content-impulset-castalia {
        width: 90%;
        margin-bottom: 60px;
    }

    .detail-impulset {
        padding: 50px;
    }

    .detail-impulset h3 {
        margin-bottom: var(--mb-2);
    }

    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    .seccion_detalle_footer .detalles_footer {
        gap: 30px;
        padding: 20px 0px;
    }

    .detalles_footer .logo_footer figure {
        width: 100%;
        height: 100%;
    }

    .detalles_footer .logo_footer figure img {
        width: 180px;
    }


    .detalles_footer .redes_footer h2 {
        margin-bottom: 16px;
    }

    .detalles_footer .redes_footer .iconos_redes a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 8px;
    }
}



@media (max-width: 1023px) {

    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 80px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .portada-business-arimedia {
        height: 60vh;
        width: 100%;
        margin-bottom: 0.6rem;
    }

    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    .section-logo-ari {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    .title-servicios-arimedia {
        margin-bottom: var(--mb-4);
    }

    .element-card-arimedia {
        width: 100%;
        gap: 20px;
    }

    .card-serv-arimedia {
        width: 380px;
    }

    .header-card-ari img {
        height: 230px;
    }

    .footer-card-ari {
        margin-top: -40px;
        padding: 22px;
    }

    .btn-consult button {
        padding: 10px 50px;
    }

    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    .section-ourwork-arimedia {
        padding: 1rem 0rem 4rem 0rem;
    }

    .title-ourwork-arimedia {
        margin-bottom: var(--mb-3);
    }

    .vid-ourwork-arimedia {
        width: 31%;
        height: 140px;
    }

    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/

    .title-aboutcompany-arimedia {
        color: white;
        font-size: var(--fs-h1);
        font-family: 'Titulo';
        margin-bottom: var(--mb-3);
    }

    .content-date-aboutcompany {
        width: 96%;
        gap: 0px;
    }

    .date-aboutcompany {
        width: 50%;
    }

    .desc-direccion li {
        padding: 20px 0px;
        margin-bottom: var(--mb-1);
    }

    .desc-direccion li i {
        padding-right: 6px;
    }

    .social-aboud-company {
        gap: 30px;
        padding: 20px 25px;
    }

    .social-aboud-company .Btn {
        width: 55px;
        height: 55px;
    }

    .social-aboud-company .svgContainer i {
        color: white;
        font-size: 26px;
    }

    /*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
    /*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
    .section-company-experience-arimedia {
        padding: 2rem 0rem 2rem;
    }

    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    .container-frequently-questions {
        width: 100%;
        gap: 20px;
    }

    .frequently-questions {
        padding: 4px 20px 0px 20px;
        margin-bottom: -20px;
    }

    /*###################### ESTILOS CURBAS CASTALIA ######################*/
    /*###################### ESTILOS CURBAS CASTALIA ######################*/
    .curve-stetic-castalia svg {
        height: 80px;
    }

    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    .section-castalia-literature {
        padding: 1rem 0rem 1rem;
    }

    .title-castalia-literature {
        margin-bottom: var(--mb-1);
    }

    .castalia-literature-detail-info {
        width: 92%;
    }

    .img-castalia {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .detail-castalia {
        padding: 30px;
    }

    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    .title-impulset-castalia {
        margin-bottom: var(--mb-4);
    }

    .detail-impulset {
        padding: 40px;
    }

    .detail-impulset h3 {
        margin-bottom: var(--mb-1);
    }

    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    .seccion_detalle_footer .detalles_footer {
        flex-direction: column;
        gap: 0px;
        padding: 40px 0px;
    }

    .detalles_footer .logo_footer figure img {
        width: 160px;
    }

    .detalles_footer .detalle_footer {
        width: 100%;
        padding: 30px 60px 14px 60px;
    }

    .detalles_footer .detalle_footer h2 {
        margin-bottom: 14px;
    }

    .detalles_footer .detalle_footer p {
        line-height: 20px;
    }

    .detalles_footer .redes_footer {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .detalles_footer .redes_footer h2 {
        margin-bottom: 25px;
    }

    .section-footer .seccion_copy {
        padding: 10px 10px;
    }

    .section-footer .seccion_copy small {
        font-size: var(--fs-xs);
    }
}



@media (max-width: 767px) {

    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 70px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    .title-servicios-arimedia {
        margin-bottom: var(--mb-3);
    }

    .element-card-arimedia {
        gap: 15px;
    }

    .card-serv-arimedia {
        width: 314px;
    }

    .header-card-ari img {
        height: 190px;
    }

    .footer-card-ari {
        margin-top: -36px;
        padding: 16px;
    }

    .footer-card-ari p {
        padding-bottom: 16px;
    }

    .btn-consult button {
        padding: 10px 50px;
        border-radius: 5px;
    }

    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    .section-ourwork-arimedia {
        padding: 1rem 0rem 4rem 0rem;
    }

    .content-ourwork-arimedia {
        flex-wrap: wrap;
        gap: 54px 20px;
    }

    .vid-ourwork-arimedia {
        width: 48%;
        height: 176px;
    }

    .vid-ourwork-arimedia h3 {
        padding: 2px 0px 20px 0px;
    }

    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/

    .title-aboutcompany-arimedia {
        margin-bottom: var(--mb-2);
    }

    .content-date-aboutcompany {
        width: 80%;
        flex-direction: column;
    }

    .img-aboutcompany {
        width: 100%;
    }

    .date-aboutcompany {
        width: 100%;
    }

    .desc-direccion li {
        padding: 20px 0px;
        margin-bottom: var(--mb-1);
    }

    .desc-direccion li i {
        padding-right: 6px;
    }

    .date-aboutcompany h3 {
        margin-top: var(--mb-3);
    }

    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    .container-frequently-questions {
        width: 80%;
        flex-direction: column;
        gap: 80px;
    }

    .frequently-questions {
        padding: 4px 20px 0px 20px;
    }

    .title-also-interest {
        margin-top: 4rem;
        margin-bottom: 0rem;
    }

    /*###################### ESTILOS CURBAS CASTALIA ######################*/
    /*###################### ESTILOS CURBAS CASTALIA ######################*/
    .curve-stetic-castalia svg {
        height: 50px;
    }

    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    .castalia-literature-detail-info {
        width: 96%;
    }

    .detail-castalia {
        padding: 20px;
    }

    .detail-castalia p {
        margin-bottom: var(--mb-2);
    }

    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    .content-impulset-castalia {
        width: 96%;
        margin-bottom: 40px;
    }

    .detail-impulset {
        padding: 30px;
    }

}


@media (max-width: 599px) {
    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 60px;
        padding-bottom: 6px;
    }

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .portada-business-arimedia {
        height: 43vh;
        width: 100%;
        margin-bottom: 0.6rem;
    }

    .overlay-content-arimedia {
        bottom: 12%;
    }

    .overlay-content-arimedia button {
        padding: 0.6rem 0.8rem;
    }

    @keyframes resplandor {
        0% {
            box-shadow: 0px 0px 0px 2px rgba(255, 255, 0, 0);
        }

        30% {
            box-shadow: 0px 0px 0px 8px rgba(255, 0, 0, 0.3);
        }

        45% {
            box-shadow: 0px 0px 0px 10px rgba(255, 0, 0, 0.2);
        }

        50% {
            box-shadow: 0px 0px 0px 10px rgba(255, 0, 0, 0.1);
        }

        55% {
            box-shadow: 0px 0px 0px 10px rgba(255, 0, 0, 0);
        }
    }

    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    .img-logo-ariemdia {
        width: 10%;
    }

    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    .title-servicios-arimedia {
        margin-bottom: var(--mb-3);
    }

    .element-card-arimedia {
        gap: 40px;
    }

    .card-serv-arimedia {
        width: 440px;
    }

    .header-card-ari img {
        height: 260px;
    }

    .footer-card-ari {
        margin-top: -40px;
        padding: 20px;
    }

    .footer-card-ari p {
        padding-bottom: 14px;
    }

    @keyframes resplandor {
        0% {
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
        }

        30% {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
        }

        45% {
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3);
        }

        50% {
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
        }

        55% {
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
        }
    }

    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    .section-ourwork-arimedia {
        padding: 1rem 0rem 4rem 0rem;
    }

    .content-ourwork-arimedia {
        gap: 60px 0px;
    }

    .vid-ourwork-arimedia {
        width: 80%;
        height: 226px;
    }

    .vid-ourwork-arimedia h3 {
        padding: 2px 0px 20px 0px;
    }

    /*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
    /*###################### ESTILOS AÑOS DE EXPERIENCIA ######################*/
    .section-company-experience-arimedia .experience-desktop {
        display: none;
    }

    .section-company-experience-arimedia .mobil-experience {
        display: block;
    }

    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    .container-frequently-questions {
        width: 90%;
        gap: 40px;
    }

    .title-questions-arimedia {
        margin-bottom: var(--mb-3);
    }

    .frequently-questions {
        padding: 4px 20px 0px 20px;
    }

    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    .section-castalia-literature {
        padding: 1rem 0rem 0rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .castalia-literature-detail-info {
        flex-direction: column;
        align-items: center;
    }

    .title-castalia-literature {
        font-family: 'Titulo';
        font-size: var(--fs-h1);
        margin-bottom: var(--mb-3);
    }

    .detail-castalia {
        padding: 20px;
    }

    .detail-castalia p {
        margin-bottom: var(--mb-2);
    }

    .img-castalia {
        width: 80%;
    }

    .detail-castalia {
        width: 100%;
        padding: 40px;
    }

    .btn-consult-castalia a {
        padding: 10px 30px;
        border-radius: 5px;
    }

    @keyframes resplandor {
        0% {
            box-shadow: 0 0 0 1px rgba(255, 0, 0, 0);
        }

        30% {
            box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.5);
        }

        45% {
            box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.3);
        }

        50% {
            box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.15);
        }

        55% {
            box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
        }
    }

    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    .content-impulset-castalia {
        width: 96%;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .img-impulset {
        width: 70%;
    }

    .responsive-impulset {
        display: none;
    }

    .img-impulset-responsive {
        display: block;
        width: 70%;
    }

    .detail-impulset {
        width: 80%;
        padding: 10px 40px;
    }

}




@media (max-width: 511px) {

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .portada-business-arimedia {
        height: 36vh;
        margin-bottom: 0.6rem;
    }

    .overlay-content-arimedia {
        bottom: 10%;
    }

    .overlay-content-arimedia button {
        padding: 0.6rem 0.8rem;
        font-size: var(--fs-small);
    }

    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    .img-logo-ariemdia {
        width: 12%;
    }

    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    .element-card-arimedia {
        gap: 30px;
    }

    .card-serv-arimedia {
        width: 400px;
    }

    .header-card-ari img {
        height: 240px;
    }

    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    .section-ourwork-arimedia {
        padding: 1rem 0rem 4rem 0rem;
    }

    .content-ourwork-arimedia {
        gap: 50px 0px;
    }

    .vid-ourwork-arimedia {
        width: 90%;
        height: 210px;
    }

    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    .content-date-aboutcompany {
        width: 90%;
    }

    /*###################### ESTILOS CURBAS CASTALIA ######################*/
    /*###################### ESTILOS CURBAS CASTALIA ######################*/
    .curve-stetic-castalia svg {
        height: 40px;
    }
}








@media (max-width: 424px) {

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .portada-business-arimedia {
        height: 31vh;
        margin-bottom: 0.6rem;
    }

    .overlay-content-arimedia {
        bottom: 10%;
    }

    .overlay-content-arimedia button {
        padding: 0.4rem 0.6rem;
        font-size: var(--fs-xs);
    }

    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    /*###################### ESTILOS LOGO ARIEMDIA ######################*/
    .section-logo-ari {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }

    .img-logo-ariemdia {
        width: 14%;
    }

    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    /*###################### ESTILOS SERVICIOS ARIMEDIA ######################*/
    .element-card-arimedia {
        gap: 20px;
    }

    .card-serv-arimedia {
        width: 400px;
    }

    .header-card-ari img {
        height: 210px;
    }

    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    /*###################### ESTILOS NUESTRO TRABAJO ######################*/
    .section-ourwork-arimedia {
        padding: 1rem 0rem 3rem 0rem;
    }

    .content-ourwork-arimedia {
        gap: 50px 0px;
    }

    .vid-ourwork-arimedia {
        width: 98%;
        height: 196px;
    }

    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    /*###################### ESTILOS SOBRE LA EMPRESA ######################*/
    .content-date-aboutcompany {
        width: 98%;
    }

    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    /*###################### ESTILOS PREGUNTAS FRECUENTES ######################*/
    .container-frequently-questions {
        width: 94%;
    }

    .frequently-questions {
        padding: 0px 20px 0px 20px;
    }

    /*###################### ESTILOS CASTALIA LITERATIA ######################*/
    /*###################### ESTILOS CASTALIA LITERATIA ######################*/

    .title-castalia-literature {
        font-family: 'Titulo';
        font-size: var(--fs-h1);
        margin-bottom: var(--mb-3);
    }

    .detail-castalia {
        width: 100%;
        padding: 20px;
    }

    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    /*###################### ESTILOS IMPULSAMOS CASTALIA ######################*/
    .title-impulset-castalia {
        margin-bottom: var(--mb-2);
    }

    .content-impulset-castalia {
        width: 96%;
        margin-bottom: 30px;
    }

    .img-impulset {
        width: 80%;
    }

    .img-impulset-responsive {
        display: block;
        width: 80%;
    }

    .detail-impulset {
        width: 80%;
        padding: 10px 0px;
    }
}








@media (max-width: 374px) {}