:root
{
    /*Colores*/
    --colorPrimario:                 rgb(43, 58, 140,1);
    --sombraPrimario:                 rgb(43, 58, 140,0.1);
    --sombraAzul:                 rgb(43, 58, 140,0.5);
    --colorSecundario:                 rgb(28, 27, 33, 1);
    --sombraSecundario:                 rgb(43, 42, 50,0.1);
    --sombraOscura:                 rgb(42, 42, 50, 0.8);
    --sombraContacto:                 rgb(42, 42, 50, 0.6);
    --sombraLuz:                 rgb(255, 255, 255, 0.2);
    --sombraDorada:                 rgba(255, 232, 99, 0.3);
    --sombraBlanca:                 rgb(255, 255, 255, 0.6);
    --sombraContenedor:                 rgb(255, 255, 255, 0.8);
    --sombraServicios:                 rgb(255, 255, 255, 0.5);
    
    --region1:                       rgb(78, 151, 229, 1); /*4E97E5*/
    --region4:                       rgb(0, 72, 124, 1); /*00487C*/
    --region9:                 rgb(0, 114, 181, 1); /*0072B5*/

    --region5:                       rgb(0, 191, 255, 1); /*00BFFF*/
    --region7:                       rgb(104, 198, 243, 1); /*68C6F3*/
    --region8:                 rgb(198, 229, 249, 1); /*C6E5F9*/
    
    --verdana:                                  "verdana";
    --scala:                                  "scala";
    --lucida:                                  "lucida";
    --lucidaBright:                                  "lucida_bright";
    --latoBold:                                  "lato_bold";
    --monserratBold:                                  "monserrat_bold";
}

@font-face {
    font-family: 'lucida';
    src: url('fonts/lucida.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'lato_bold';
    src: url('fonts/lato_bold.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    font-family: var(--lucida);
    -webkit-tap-highlight-color: transparent;
}

*::-webkit-scrollbar{
    display: none;
}

p, h1, h2, h3{-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

html, body{
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    overflow-y: scroll;
    overflow-x: none;
}

div{
    display: flex;
}

#contenedor_padre{
    width: 100%;
    height: auto;
}

#contenedor_principal{
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: calc(100% - 52px);
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    margin-top: 52px;
}

#img_fondo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 0;
    opacity: 1;
    transition: all 0.6s ease-in-out;
}


#img_fondo_2{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 0;
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

#p_servicio_telecomunicaciones{
    background: var(--sombraLuz);
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
}


.filtro{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 1;
    opacity: 0.4;
    background: #000000;
}

.filtro_responsive{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 0;
    opacity: 0.6;
    background: #000000;
    display: none;
}

#cabeza{
    flex-direction: row;
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 7px;
    position: absolute;
    top: 0;
    transition: all .7s ease-in-out;
    z-index: 700;
    background: #ffffff;
    border-bottom: solid 1.6px var(--sombraPrimario);
}

.logo{
    width: 38px;
    height: 38px;
    object-fit: contain;
}

#menu{
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.btn_menu{
    width: 160px;
    font-size: 15px;
    text-align: center;
    color: var(--colorPrimario);
    margin-left: 14px;
    margin-right: 14px;
    cursor: pointer;
    padding-bottom: 5.2px;
    padding-top: 5.2px;
    transition: all 0.7s;
    border-radius: 7px;
}

.btn_menu:hover{
    background-color: var(--sombraSecundario);
    opacity: 0.9;
}

.btn_seleccionado{
    background: var(--sombraPrimario);
}

#cuerpo{
    width: 100%;
    height: auto;
    flex: 1;
    flex-direction: column;
}

.contenedor{
    width: 100%;
    height: auto;
    flex: 1;
    flex-direction: column;
    align-items: center;
    display: none;
}

#caja_site_4_tech{
    display: none;
    /* padding-top: 11px; */
}

#caja_quienes_somos{
    background: var(--sombraContenedor);
}

.logo_titulo{
    width: 160px;
    height: 34px;
    object-fit: contain;
}

.pie{
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: auto;
    background: var(--colorSecundario);
    border-top: solid 0.5px #ffffff;
    margin-top: auto;
    align-items: center;
}

.caja_pie{
    width: 100%;
    height: auto;
    margin-top: 11px;
    padding-left: 16px;
    padding-right: 16px;
}

.p_contacto{
    width: 100%;
    height: min-content;
    min-height: min-content;
    font-size: 16px;
    color: #ffffff;
    margin-left: 11px;
    margin-right: 11px;
    font-family: var(--lucida);
    -webkit-touch-callout:initial; /* iOS Safari */
    -webkit-user-select:auto; /* Safari */
     -khtml-user-select: auto; /* Konqueror HTML */
       -moz-user-select: auto; /* Old versions of Firefox */
        -ms-user-select: auto; /* Internet Explorer/Edge */
            user-select: auto;
}

.p_contacto_2{
    width: 280px;
    height: min-content;
    min-height: min-content;
    min-width: 280px;
    font-size: 16px;
    color: #ffffff;
    margin-left: 11px;
    margin-right: 11px;
    font-family: var(--lucida);
    -webkit-touch-callout:initial; /* iOS Safari */
    -webkit-user-select:auto; /* Safari */
     -khtml-user-select: auto; /* Konqueror HTML */
       -moz-user-select: auto; /* Old versions of Firefox */
        -ms-user-select: auto; /* Internet Explorer/Edge */
            user-select: auto;
}

.p_contacto_3{
    display: none;
    width: 100%;
    height: min-content;
    min-height: min-content;
    font-size: 16px;
    color: #ffffff;
    margin-left: 11px;
    margin-right: 11px;
    font-family: var(--lucida);
}

.div_sociales{
    width: auto;
    height: min-content;
    justify-content: flex-end;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}

.contenedor_sociales{
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.8;
    transition: all 0.7s;
    cursor: pointer;
    
}

.contenedor_sociales:hover{
    opacity: 1;
}

.p_sociales{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    margin-right: 16px;
}

.img_redes{
    width: 25px;
    height: 25px;
    margin-left: 11px;
    margin-right: 11px;
    object-fit: contain;
}

#div_p_principal{
    width: 100%;
    height: min-content;
    padding: 11px;
    background: var(--sombraBlanca);
    /* margin-top: 11px; */
    flex-direction: column;
}

.p_principal{
    color: #000000;
    font-size: 20px;
    width: 100%;
    text-align: center;
}

#div_info_principal{
    width: 100%;
    height:auto;
    /* max-height: 100%; */
    background: #ffffff;
    /* padding-left: 25px;
    padding-right: 25px; */
    flex-direction: row;
    position: relative;
}

.caja_seccion_principal{
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: center;
}

.caja_seccion_principal_2{
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: center;
}

.div_img_principal{
    width: 100%;
    height: 430px;
    min-height: 430px;
    border-right: solid 0.7px #ffffff;
    border-left: solid 0.7px #ffffff;
    position: relative;
    flex-direction: column;
    justify-content: center;
    z-index: 7;
}

.img_seccion_principal{
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .7s ease-in-out;
    position: absolute;
    z-index: 1;
    opacity: 1;
}

.img_seccion_principal_2{
    width: 100%;
    min-width: 100%;
    height: 100%;
    transition: all .7s ease-in-out;
    object-fit: cover;
    position: absolute;
    z-index: 2;
    opacity: 0;
}

.titulo_img_principal{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52px;
    background: var(--sombraOscura);
    position: absolute;
    color: #ffffff;
    font-size: 20px;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
    z-index: 3;
    transition: all 0.7s ease-in-out;
    cursor: pointer;
    font-family: var(--latoBold);
}

.titulo_img_principal_2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52px;
    background: var(--sombraOscura);
    position: absolute;
    color: #ffffff;
    font-size: 20px;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
    z-index: 2;
    transition: all 0.7s ease-in-out;
    cursor: pointer;
    opacity: 0;
    font-family: var(--latoBold);
}

.div_p_seccion_principal{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    padding: 16px;
    z-index: 5;
    position: relative;
    background: none;
}

.p_seccion_principal{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    width: 100%;
    height: min-content;
    position: absolute;
    transition: all 0.7s ease-in-out;
    font-family: var(--lucida);
    height: 100%;
    z-index: 2;
    color: #ffffff;
}

.p_seccion_principal_2{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    width: 100%;
    height: 100%;
    color: #ffffff;
    z-index: 5;
    position: absolute;
    opacity: 0;
    padding: 16px;
    transition: all 0.7s ease-in-out;
    font-family: var(--scala);
    height: 100%;
    z-index: 2;
}

.p_titulo{
    font-size: 25px;
    color: var(--colorPrimario);
    width: 100%;
    text-align: start;
    padding-bottom: 4.3px;
    padding-top: 4.3px;
    height: 43px;
    min-height: 43px;
    border-bottom: solid 1px var(--sombraPrimario);
    font-family: var(--monserratBold);
    text-align: center;
}

.p_titulo_2{
    font-size: 25px;
    color: #ffffff;
    width: 100%;
    text-align: start;
    padding-bottom: 4.3px;
    padding-top: 4.3px;
    border-bottom: solid 1px var(--sombraPrimario);
    font-family: var(--monserratBold);
}

.p_texto{
    font-size: 22px;
    line-height: 30px;
    color: #000000;
    width: 100%;
    text-align: start;
    margin-top: 16px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: solid 1px var(--colorPrimario);
    border-bottom: solid 1px var(--colorPrimario);
}

.p_servicios_titulo{
    font-size: 30px;
    color: var(--colorPrimario);
    font-family: var(--latoBold);
}

.p_servicios_azul{
    font-size: 22px;
    line-height: 30px;
    color: var(--colorPrimario);
    font-family: var(--latoBold);
}

.p_texto_2{
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    width: 100%;
    text-align: start;
    margin-top: 16px;
}

.div_mapa{
    flex-direction: row;
    width: 100%;
    height: 100%;
    border-top: solid 1px var(--colorPrimario);
    border-bottom: solid 1px var(--sombraAzul);
    justify-content: flex-start;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

#div_mapa_salvador{
    height: auto;
}

.contenedor_mapa{
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    border-left: solid 1px #ffffff;
    z-index: 7;
}

.mapa{
    width: 700px;
    height: 460px;
    object-fit: contain;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#mapa_salvador{
    width: 502px;
    min-width: 502px;
    height: 304px;
    min-height: 304px;
    margin-top: 43px;
}

.estado_mapa{
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.7s;
}

.estado_mapa:hover{
    opacity: 1;
}

#contenedor_mapa_salvador{
    height: 100%;
}

.info_mapa{
    width: 403px;
    min-width: 403px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 2;
    margin-left: 25px;
    margin-right: 25px;
}

.p_titulo_mapa{
    width: 100%;
    height: 93px;
    min-height: 93px;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 7px;
    border-bottom: solid 1px #ffffff;
    font-family: var(--latoBold);
}


.locacion_mapa{
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 7px;
    margin-top: 7px;
    border-bottom: solid 1px #ffffff;
    font-family: var(--latoBold);
}

.encabezado_mapa{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 93px;
    min-height: 93px;
    font-size: 34px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 7px;
    font-family: var(--latoBold);
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#div_quienes_somos{
    flex-direction: row;
    align-items: center;
    height: 430px;
    min-height: 430px;
    position: relative;
}

#titulo_quienes_somos{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #ffffff;
    font-size: 43px;
    z-index: 2;
    padding-top: 11px;
    padding-bottom: 11px;
    font-family: var(--latoBold);
    background: var(--sombraLuz);
}

#div_texto_quienes_somos{
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border-left: solid 1px #ffffff;
    padding: 25px;
}

#img_quienes_somos{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    opacity: 0.6;
    z-index: 1;
}

#contenedor_quienes_somos{
    width: 100%;
    height: 100%;
    z-index: 2;
    background: var(--sombraOscura);
    padding-top: 25px;
    padding-bottom: 25px;
}

#div_titulo_quienes_somos{
    flex-direction: column;
    width: 403px;
    min-width: 403px;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    margin-right: 25px;
    margin-left: 25px;
}

#texto_quienes_somos{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 28px;
    color: #ffffff;
}

.p_texto_mision{
    width: 100%;
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    z-index: 7;
}

#caja_mision{
    border-top: solid 1px #ffffff;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#caja_vision{
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#mision_vision_valores{
    flex-direction: column;
    width: 100%;
    height: min-content;
    min-height: min-content;
    padding-top: 11px;
    padding-bottom: 11px;
}

.p_titulo_mision{
    font-size: 43px;
    color: #ffffff;
    padding-bottom: 7px;
    padding-top: 7px;
    background: var(--sombraLuz);
    padding-left: 11px;
    padding-right: 11px;
    z-index: 7;
    width: 403px;
    min-width: 403px;
    text-align: center;
    margin-right: 25px;
    margin-left: 25px;
    font-family: var(--latoBold);
}

.caja_mision{
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    height: 403px;
    min-height: 403px;
    flex-direction: row;
    align-items: center;
    z-index: 2;
    position: relative;
    background: var(--colorSecundario);
    border-bottom: solid 0.5px #ffffff;
}

.icono_site{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-left: 34px;
    margin-right: 34px;
}

.div_iconos_mision{
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-direction: row;
    justify-content: center;
    margin-top: 43px;
}

.icono_mision{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-left: 34px;
    margin-right: 34px;
}

.icono_vision{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-left: 34px;
    margin-right: 34px;
}

.contenedor_mision{
    width: 100%;
    height: 100%;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    border-left: solid 1px #ffffff;
}

#contenido_servicios{
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--sombraServicios);
}

#div_servicios{
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

#titulo_servicios{
    text-align: center;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border-bottom: none;
    display: none;
}

#texto_servicios{
    padding: 11px;
}

.contenedor_servicio{
    width: 100%;
    height: 50vh;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-top: 70px;
    padding-bottom: 70px;
    border: solid 1px var(--sombraLuz);
}

.fila_servicios{
    width: 100%;
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    z-index: 2;
}

.circulo_servicio{
    width: 100%;
    height: 100%;
    position: absolute;
    background: none;
    border: solid 2.5px #ffffff;
    z-index: 2;
    border-radius: 7px;
    box-shadow: 3px 3px 7px var(--sombraAzul);
    transition: all 0.7s;
    cursor: pointer;
}

.circulo_servicio:hover{
    box-shadow: 9px 9px 11px var(--sombraAzul);
    border: solid 2.8px #ffffff;
}

.img_servicio{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
    border-radius: 7px;
    pointer-events: none;
}

.p_servicio{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    min-height: 70px;
    font-size: 25px;
    text-align: center;
    z-index: 1;
    color: #ffffff;
    padding-left: 11px;
    padding-right: 11px;
    transition: all 0.5s;
    pointer-events: none;
}

#caja_contacto{
    width: 100%;
    height: 100%;
    background: var(--sombraContenedor);
    flex-direction: column;
}

.head_contacto{
    width: 100%;
    height: 340px;
    object-fit: cover;
}

#formulario_contacto{
    width: 100%;
    height: 502px;
    background: var(--colorSecundario);
    position: relative;
    justify-content: space-between;
}

.caja_formulario{
    flex-direction: row;
    width: 100%;
    height: auto;
    margin-top: 25px;
}

.img_formulario{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

#div_columnas_contacto{
    position: absolute;
    top: -77px;
    width: 100%;
    height: auto;
}

#caja_divs_contacto{
    width: 100%;
    height: 100%;
    position: relative;
    justify-content: space-between;
    background: none;
}

.div_formulario{
    flex-direction: column;
    height: auto;
    padding-bottom: 34px;
    padding-top: 0px;
    margin-left: 34px;
    margin-right: 34px;
    border-radius: 7px;
    background: var(--sombraContacto);
    box-shadow: 1px 1px 3px var(--sombraOscura);
}

.contenido_formulario{
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
}

.p_titulo_formulario{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #ffffff;
    width: 100%;
    padding-bottom: 4.3px;
    padding-top: 11px;
    height: 77px;
    min-height: 77px;
    padding-left: 11px;
    padding-right: 11px;
    border-radius: 7px 7px 0px 0px;
    background: var(--colorSecundario);
    border-bottom: solid 1px #ffffff;
    font-family: var(--monserratBold);
    text-align: center;
}

#div_formulario_1{
    left: 0;
    width: 70%;
}

#div_formulario_2{
    right: 0;
    width: 502px;
    min-width: 502px;
    justify-content: space-between;
}


.input_formulario{
    width: 100%;
    height: 34px;
    outline: none;
    border: none;
    padding-bottom: 2.5px;
    color: #ffffff;
    font-size: 16px;
    margin-left: 16px;
    background: none;
    border-bottom: solid 1px #ffffff;
}

#comentario_contacto{
    width: 100%;
    height: 100%;
    border: var(--sombraPrimario);
    outline: none;
    resize: none;
    padding-top: 11px;
    padding-bottom: 11px;
    color: #ffffff;
    margin-left: 16px;
    font-size: 16px;
    background: none;
    border-bottom: solid 1px #ffffff;
}

.btn{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 43px;
    min-height: 43px;
    font-size: 20px;
    color: #ffffff;
    background: var(--colorSecundario);
    border-radius: 7px;
    margin-top: 25px;
    align-self: center;
    cursor: pointer;
    transition: all 0.7s;
}

.btn:hover{
    border: solid 0.7px #ffffff;
    font-size: 20.5px;
}

#contenedor_servicio_general{
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: relative;
    flex-direction: column;
    align-items: center;
    height: auto;
    display: none;
}

#caja_img_div{
    width: 100%;
    height: 100vh;
    position: relative;
    justify-content: center;
    align-items: center;
}

#img_div_1{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: absolute;
    top: 0;
}


#titulo_servicio_general{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 133px;
    padding: 25px;
    background: var(--sombraLuz);
    color: #ffffff;
    font-size: 52px;
    font-family: var(--latoBold);
    z-index: 11;
    text-align: center;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#caja_servicios{
    height: min-content;
}

.btn_cerrar_servicio{
    width: 25px;
    height: 25px;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 16px;
    margin-top: 16px;
    cursor: pointer;
    opacity: 0.7;
    z-index: 7;
    transition: all 0.7s;
}

.btn_cerrar_servicio:hover{
    opacity: 1;
}

.contenedor_img_div{
    width: 304px;
    min-width: 304px;
    height: 304px;
    min-height: 304px;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.div_contenido_servicio{
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-left: 43px;
    justify-content: center;
}

#btn_menu_responsive{
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: none;
    justify-self: flex-end;
    cursor: pointer;
}

#menu_responsive{
    flex-direction: column;
    width: 100%;
    height: auto;
    background: #ffffff;
    opacity: 0;
    transition: all .7s ease-in-out;
    position: absolute;
    top: -100%;
    z-index: 7;
    transition: all .7s ease-in-out;
}

#head_menu_responsive{
    width: 100%;
    height: 70px;
    min-height: 70px;
    padding: 7px;
    justify-content: space-between;
    align-items: center;
}

#btn_cerrar_menu_responsive{
    width: 43px;
    min-width: 43px;
    height: 43px;
    min-height: 43px;
    cursor: pointer;
}

#logo_menu_responsive{
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    object-fit: contain;
}

#contenedor_menu_resposive{
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-top: solid 1px var(--colorPrimario);
}

#pie_responsive{
    display: none;
}

.seccion_menu_responsive{
    width: 100%;
    height: 133px;
    min-height: 133px;
    justify-content: center;
    align-items: center;
    background: var(--sombraLuz);
    color: var(--colorPrimario);
    font-size: 25px;
    border: solid 0.5px var(--colorPrimario);
    cursor: pointer;
}

.btn_ver{
    width: 106px;
    min-width: 106px;
    height: 34px;
    min-height: 34px;
    color: #ffffff;
    background: var(--sombraLuz);
    border-radius: 7px;
    justify-content: center;
    align-items: center;
    padding: 7px;
    opacity: 0;
    margin-top: 25px;
    position: absolute;
    bottom: 0;
    margin-bottom: 52px;
    z-index: 1;
    transition: all .6s ease-in-out;
}

.div_msj_principal{
    flex-direction: row;
    width: 100%;
    height: 205px;
    min-height: 205px;
    padding: 11px;
    border-bottom: solid 2.5px var(--sombraPrimario);
    justify-content: space-around;
    align-items: center;
    position: relative;
    /* display: none; */
}

.fondo_site{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    opacity: 0.3;
    z-index: -1;
}

.logo_principal{
    width: 403px;
    height: 160px;
    object-fit: contain;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#logo_principal{
    content: url("../logo/logo.webp");
}

#div_texto_principal{
    width: 100%;
    height: auto;
    padding-left: 43px;
    align-items: center;
    flex-direction: column;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.titulo_principal{
    font-size: 34px;
    width: 100%;
    height: auto;
    color: var(--colorPrimario);
    font-family: var(--latoBold);
    text-align: center;
}

.texto_principal{
    font-size: 25px;
    color: #000000;
    margin-top: 7px;
    text-align: center;
}

.icono{
    width: 52px;
    height: 52px;
    object-fit: contain;
    /* transition: all 0.7s ease-in-out;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; */
    z-index: 7;
    transition: all 0.8s;
}

.icono_2{
    width: 52px;
    height: 52px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.7s ease-in-out;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 3;
}

.div_parrafo{
    width: 100%;
    height: 100%;
    position: relative;
    border-top: 1px solid #ffffff;
    margin-top: 11px;
}

.fondo_mision{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 2;
    opacity: 0.2;
    top: 0;
}


#contacto_principal{
    flex-direction: row;
    width: 100%;
    height: 250px;
    background: var(--sombraOscura);
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    position: relative;
}

#div_contacto_principal{
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 2;
}


#titulo_contacto{
    color: #ffffff;
    font-size: 34px;
    font-family: var(--latoBold);
    text-align: center;
}

.div_icono_contacto{
    flex-direction: row;
    width: 100%;
    height: auto;
    margin-top: 34px;
    align-items: center;
}

.icono_formulario{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.texto_formulario{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-left: 11px;
    padding-left: 11px;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    border-left: solid 1px #ffffff;
}

#texto_contacto{
    color: #ffffff;
    font-size: 25px;
    margin-top: 25px;
    text-align: center;
}

#btn_contacto{
    margin-top: 25px;
    padding: 11px;
    width: 160px;
    height: 34px;
    color: #ffffff;
    border: solid 1px #ffffff;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    /* animation: bg-color-reverse 7s infinite; */
}

#btn_contacto:hover{
    font-size: 16.5px;
    border: solid 1.3px #ffffff;
    background: var(--sombraLuz);
}

#fondo_contacto{
    animation: bg-color 11s infinite;
}

.fondo_contacto{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#fondo_principal{
    background-color: var(--colorSecundario);
}

.fondo_pie{
    width: 100%;
    height: 100%;
    position: absolute;
    animation: bg-color 11s infinite;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.5;
    background: var(--colorSecundario);
}

#img_fondo_contacto{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.4;
    object-fit: cover;
}

.columna_pie{
    width: 100%;
    height: auto;
    flex-direction: column;
}

#columna_pie_1{
    justify-content: space-around;
    align-items: center;
    margin-right: 16px;
    border-right: solid 1px var(--sombraBlanca);
}

.contenedor_contacto{
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 5.2px;
    border-top: solid 0.5px #ffffff;
    border-bottom: solid 0.5px #ffffff;
}

.caja_contacto{
    width: 100%;
    height: 100%;
    margin-top: 7px;
    margin-bottom: 7px;
    align-items: center;
}

.icon_contacto{
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-right: 11px;
}

.icon_contacto_direccion{
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-right: 11px;
}

#contenedor_mapas{
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    border-top: solid 1px #ffffff;
}

#div_contenido_servicio{
    width: 100%;
    height: auto;
    border-top: solid 1px #ffffff;
}

.columna_servicio_general{
    flex-direction: column;
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
    align-items: center;
}

#columna_servicio_1{
    width: 60%;
    padding-left: 70px;
    padding-right: 70px;
}

#columna_servicio_2{
    flex-direction: column;
    width: 40%;
    padding-right: 34px;
    padding-left: 34px;
    background: var(--colorSecundario);
}

#titulo_columna_servicios{
    font-size: 25px;
    font-family: var(--latoBold);
    color: #ffffff;
    text-align: center;
    padding-bottom: 7px;
    border-bottom: solid 1px #ffffff;
}

#contenedor_servicios_extras{
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 34px;
}

.div_servicio_extra{
    margin-top: 25px;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.7s;
}

.div_servicio_extra:hover{
    opacity: 1;
}

.img_extra{
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.p_extra{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-left: 16px;
    color: #ffffff;
}

#fondo_formulario{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    transition: all 7s;
}

.fondo_responsive{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    display: none;
    object-fit: cover;
}

.btn_pie{
    width: 304px;
    height: 43px;
    padding: 7px;
    color: #ffffff;
    font-size: 25px;
    opacity: 0.7;
    transition: all 0.7s;
    cursor: pointer;
    justify-content: center;
    text-align: center;
    margin-top: 11px;
    margin-bottom: 11px;
}

.btn_pie:hover{
    opacity: 1;
}

#caja_aviso{
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 16px;
    border-top: solid 1px #ffffff;
    position: relative;
    height: 93px;
    min-height: 93px;
}

.p_aviso{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 25px;
    font-family: var(--lucida);
    z-index: 7;
    opacity: 0.8;
    transition: all 2s;
    width: 100%;
    text-align: center;
    height: 100%;
}

.p_aviso_2{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 25px;
    font-family: var(--latoBold);
    margin-left: 11px;
    padding-left: 11px;
    z-index: 7;
    cursor: pointer;
    opacity: 0.8;
    transition: all 2s;
    width: 100%;
    text-align: center;
    height: 100%;
}

.p_aviso_2:hover{
    opacity: 1;
}

#contenedor_aviso{
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 7000;
    display: none;
}

.titulo_aviso{
    width: 100%;
    font-size: 34px;
    color: var(--colorPrimario);
    text-align: center;
    margin-top: 25px;
    font-family: var(--latoBold);
    padding: 34px;
}

.texto_aviso{
    color: #000000;
    font-size: 22px;
    width: 100%;
    text-align: start;
    padding: 34px;
}

.logo_aviso{
    width: auto;
    height: 106px;
    object-fit: contain;
}

.sub_aviso{
    color: var(--colorPrimario);
    font-family: var(--latoBold);
    font-size: 25px;
}

.info_colores{
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px;
}

.div_colores{
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 11px;
    margin-bottom: 11px;
    padding-bottom: 11px;
    border-bottom: solid 1px var(--sombraLuz);
    transition: all 0.7s;
    cursor: pointer;
}

.caja_color{
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.color{
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    border-radius: 50%;
    border: solid 1px #ffffff;
    box-shadow: 3.4px 3.4px 7px var(--sombraLuz);
    pointer-events: none;
    transition: all 0.7s;
}

.p_color{
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    margin-left: 16px;
    text-align: center;
    pointer-events: none;
}


/*opcion 2*/

/*
.div_colores{
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 11px;
    margin-bottom: 11px;
    padding-bottom: 11px;
    border-bottom: solid 1px var(--sombraLuz);
}

.caja_color{
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    justify-content: center;
    align-items: center;
}

.head_color{
    flex-direction: row;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
}

.p_head_color{
    width: 106px;
    min-width: 106px;
    color: #ffffff;
    font-size: 16px;
    margin-left: 16px;
    text-align: center;
}

.color{
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    border-radius: 50%;
    border: solid 1px #ffffff;
    box-shadow: 3.4px 3.4px 7px var(--sombraLuz);
}

.p_color{
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}
*/

#color_1{
    background: var(--region9);
}

#color_2{
    background: var(--region1);
}

#color_3{
    background: var(--region8);
}

#color_4{
    background: var(--region4);
}

#color_5{
    background: var(--region5);
}

#color_6{
    background: var(--region7);
}

#color_salvador{
    background: var(--region1);
}

@media screen and (max-width: 1100px){
    .mapa{
        width: 601px;
        height: 601px;
    }
}

@media screen and (max-width: 1000px){
    .mapa{
        width: 501px;
        height: 501px;
    }
}

@media screen and (max-width: 900px){
    .mapa{
        width: 430px;
        height: 430px;
    }
}


@media screen and (max-width: 880px){
    
    #cabeza{
        height: 70px;
        min-height: 70px;
    }

    #contenedor_principal{
        margin-top: 70px;
        height: calc(100% - 70px);
    }

    .caja_seccion_principal{
        border: solid 1px #ffffff;
    }

    .caja_seccion_principal_2{
        border: solid 1px #ffffff;
    }

    .btn_menu{
        width: 160px;
        min-width: 160px;
        font-size: 19px;
    }

    .titulo_img_principal{
        height: 52px;
        font-size: 25px;
    }
    
    .titulo_img_principal_2{
        height: 52px;
        font-size: 25px;
    }

    .p_texto{
        font-size: 22px;
    }

    .p_titulo{
        font-size: 34px;
    }

    #caja_contacto{
        padding: 0px;
    }

    #formulario_contacto{
        width: 100%;
        height: 100vh;
    }

    .input_formulario{
        font-size: 25px;
    }

    #input_comentario{
        font-size: 22px;
    }

    .img_redes{
        width: 25px;
        min-width: 25px;
        height: 25px;
        min-height: 25px;
        opacity: 1;
    }

    #img_formulario_contacto{
        width: 304px;
        min-width: 304px;
    }

    .pie{
        flex-direction: column;
    }

    .div_sociales{
        justify-content: flex-end;
    }

    .p_contacto{
        width: 100%;
        font-size: 25px;
        margin-top: 25px;
        text-align: center;
        align-self: center;
        width: 100%;
    }

    .p_contacto_2{
        width: 100%;
        font-size: 22px;
        margin-top: 25px;
        text-align: center;
        align-self: center;
    }

    .img_redes{
        width: 34px;
        min-width: 34px;
        height: 34px;
        min-height: 34px;
    }

    .p_titulo_mapa{
        font-size: 30px;
    }

    .logo{
        width: 52px;
        min-width: 52px;
        height: 52px;
        min-height: 52px;
    }

    #div_formulario{
        padding-top: 34px;
        padding-bottom: 34px;
        padding-left: 25px;
        padding-right: 25px;
    }

    #div_info_principal{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    #img_div_3{
        width: 250px;
        min-width: 250px;
    }

    #img_div_4{
        width: 250px;
        min-width: 250px;
    }

    #div_servicio_1{
        flex-direction: column;
    }

    .div_contenido_servicio{
        margin-top: 34px;
        padding-left: 0px;
    }

    .div_msj_principal{
        flex-direction: column;
        width: 100%;
        height: 340px;
        min-height: 340px;
    }

    .titulo_principal{
        font-size: 26px;
    }

    .logo_principal{
        height: 133px;
    }

    #div_texto_principal{
        padding: 0px;
        padding-top: 25px;
    }

    .texto_principal{
        font-size: 34px;
    }

    #pie{
        height: min-content;
        min-height: min-content;
    }

    .p_seccion_principal{
        font-size: 20px;
    }

    .p_seccion_principal_2{
        font-size: 30px;
    }

    .p_principal{
        font-size: 25px;
    }

    .p_servicio{
        font-size: 22px;
    }

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

    .contenedor_servicio{
        height: 340px;
        min-height: 340px;
    }

    #div_titulo_quienes_somos{
        width: 340px;
        min-width: 340px;
    }

    #div_mapa{
        flex-direction: column;
        height: auto;
    }

    #mapa{
        width: 100%;
        height: 403px;
        min-height: 403px;
    }

    #info_mapa{
        margin: 0;
        margin-top: 25px;
    }

    #contenedor_quienes_somos{
        flex-direction: column;
        padding-top: 0px;
    }

    #div_texto_quienes_somos{
        border: none;
        border-top: solid 1px #ffffff;
        -webkit-animation-name: fadeInLeft;
        animation-name: fadeInLeft;
        -webkit-animation-duration: 1.2s;
        animation-duration: 1.2s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    #div_titulo_quienes_somos{
        margin: 0px;
        height: min-content;
        width: 100%;
    }

    #texto_quienes_somos{
        font-size: 30px;
    }

    #div_mapa_salvador{
        height: auto;
        flex-direction: column;
    }

    #info_mapa_salvador{
        margin-top: 0px;
    }

    #div_mapa_salvador{
        padding-top: 0px;
    }

    .div_mapa{
        flex-direction: column-reverse;
        height: auto;

    }

    .mapa{
        -webkit-animation-name: fadeInRight;
        animation-name: fadeInRight;
    }

    .info_mapa{
        -webkit-animation-name: fadeInLeft;
        animation-name: fadeInLeft;
    }

    .contenedor_mapa{
        border: none;
        width: 100%;
        height: auto;
    }

    .caja_mision{
        flex-direction: column;
    }

    .p_titulo_mision{
        width: 100%;
        margin: 0px;
    }

    .p_texto_mision{
        font-size: 30px;
    }

    .caja_mision{
        height: 520px;
    }

    #div_contenido_servicio{
        flex-direction: column;
    }

    #columna_servicio_1{
        width: 100%;
    }

    #columna_servicio_2{
        width: 100%;
    }

    .caja_pie{
        flex-direction: column;
    }

    .div_sociales{
        margin-top: 25px;
    }

    #caja_contacto{
        height: auto;
    }

    #caja_divs_contacto{
        padding-left: 25px;
        padding-right: 25px;
    }

    .div_formulario{
        margin: 0px;
    }
    
    #div_formulario_1{
        width: 100%;
    }

    #div_formulario_2{
        width: 100%;
        margin-top: 43px;
    }
    
    .p_titulo_formulario{
        border: solid 1px #ffffff;
        font-size: 30px;
    }

    .btn{
        width: 205px;
        height: 52px;
        font-size: 25px;
        margin-top: 43px;
    }

    #caja_divs_contacto{
        flex-direction: column-reverse;
    }

    .div_p_seccion_principal{
        height: 304px;
    }

    .p_texto_2{
        font-size: 25px;
    }

    .texto_formulario{
        font-size: 30px;
    }

    .icon_contacto{
        width: 43px;
        height: 43px;
    }

    .icon_contacto_direccion{
        width: 43px;
        height: 43px;
    }

    #caja_img_div{
        height: 50vh;
    }

    #div_formulario_2{
        margin-top: 0px;
        width: 100%;
        min-width: auto;
    }

    #formulario_contacto{
        height: auto;
    }

    #head_contacto{
        height: 304px;
        min-height: 304px;
    }

    #div_columnas_contacto{
        top: 0;
        position: relative;
    }

    #caja_divs_contacto{
        padding: 0px;
    }

    .p_titulo_formulario{
        border-radius: 0px;
        padding: 11px;
        height: 106px;
        min-height: 106px;
        border: none;
        border-top: solid 1px #ffffff;
        border-bottom: solid 1px #ffffff;
    }

    .div_icono_contacto{
        flex-direction: column;
    }

    .texto_formulario{
        margin-top: 11px;
        padding-top: 11px;
        padding-bottom: 11px;
        margin-left: 0px;
        padding-left: 0px;
        border-left: none;
        border-top: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
    }

    .btn_pie{
        opacity: 1;
    }

    #columna_pie_1{
        margin: 0;
        border: none;
        padding-top: 11px;
        padding-bottom: 11px;
        border-top: solid 1px #ffffff;
        border-bottom: solid 1px #ffffff;
    }

    #columna_pie_2{
        margin-top: 25px;
    }

    .div_servicio_extra{
        opacity: 1;
    }
    
    .div_sociales{
        padding: 0px;
    }

    .contenedor_sociales{
        justify-content: center;
        width: 100%;
    }

    .p_aviso_2{
        opacity: 1;
    }
}


@media screen and (max-width: 800px){
    #menu{
        display: none;
    }

    #btn_menu_responsive{
        display: flex;
    }

    #cabeza{
        justify-content: space-between;
    }

    .p_titulo_mapa{
        margin-top: 34px;
        width: 100%;
        min-width: auto;
    }
}


@media screen and (max-width: 502px){
    .titulo_img_principal{
        font-size: 22px;
    }

    .titulo_img_principal_2{
        font-size: 22px;
    }

    #formulario_contacto{
        flex-direction: column;
    }

    #img_formulario_contacto{
        width: 100%;
        height: 250px;
        object-position: top 10px;
    }

    #div_info_principal{
        display: flex;
        flex-direction: column;
    }

    .div_img_principal{
        height: 304px;
        min-height: 304px;
    }

    .logo_principal{
        width: 205px;
        min-width: 205px;
    }

    .texto_principal{
        font-size: 25px;
    }

    #div_quienes_somos{
        flex-direction: column;
    }

    #div_titulo_quienes_somos{
        width: 100%;
        min-width: 100%;
        height: 250px;
        min-height: 250px;
    }

    #div_quienes_somos{
        height: auto;
        min-height: auto;
    }

    #div_mapa{
        padding: 11px;
    }

    .fila_servicios{
        display: flex;
        flex-direction: column;
    }

    .fondo_responsive{
        display: flex;
    }

    #img_fondo{
        display: none;
    }

    #img_fondo_2{
        display: none;
    }

    #cabeza{
        height: 52px;
        min-height: 52px;
    }

    .logo{
        width: 34px;
        min-width: 34px;
        height: 34px;
        min-height: 34px;
    }

    #btn_menu_responsive{
        width: 34px;
        height: 34px;
    }

    #contenedor_principal{
        margin-top: 52px;
        height: calc(100% - 52px);
    }

    .caja_pie{
        width: 100%;
    }
}

@media screen and (max-width: 400px){
    .p_contacto{
        font-size: 18px;
    }

    .p_contacto_2{
        font-size: 18px;
    }

    .p_contacto_3{
        font-size: 18px;
    }

    .p_contacto_3{
        display: flex;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .p_contacto_2{
        display: none;
    }

    #div_titulo_quienes_somos{
        height: auto;
        min-height: auto;
    }

    #texto_quienes_somos{
        font-size: 25px;
    }

    .contenedor_mapa{
        padding: 11px;
    }

    .mapa{
        width: 340px;
        min-width: 340px;
        height: 340px;
        min-height: 340px;
    }

    #mapa{
        width: 340px;
        min-width: 340px;
        height: 340px;
        min-height: 340px;
    }

    .caja_mision{
        height: 601px;
        min-height: 601px;
    }

    .icono_mision{
        width: 52px;
        height: 52px;
    }

    .icono_vision{
        width: 52px;
        height: 52px;
    }

    .p_texto_mision{
        font-size: 25px;
    }

    #titulo_servicio_general{
        font-size: 34px;
        padding: 16px;
    }

    .columna_servicio_general{
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    #columna_servicio_1{
        padding-left: 25px;
        padding-right: 25px;
    }


    #columna_servicio_2{
        padding-right: 25px;
        padding-left: 25px;
    }

    .div_msj_principal{
        height: 370px;
    }

    .p_aviso{
        font-size: 22px;
    }

    .p_aviso_2{
        font-size: 22px;
    }

    .p_titulo_mapa{
        margin-top: 0px;
    }

    .logo_aviso{
        width: 100%;
        height: 70px;
    }

    #fondo_portada{
        opacity: 0.2;
    }

    .contenedor_mision{
        border: none;
    }

    .filtro_responsive{
        display: flex;
    }

    .info_mapa{
        padding-bottom: 16px;
        width: 100%;
        min-width: auto;
    }

    #info_mapa{
        margin-top: 0px;
    }

    #div_mapa_mexico{
        padding-top: 0px;
    }

    #div_mapa_salvador{
        padding-top: 0px;
    }

    .p_titulo_mapa{
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
    }

    .texto_aviso{
        padding: 16px;
    }

    .icon_contacto{
        width: 34px;
        height: 34px;
    }

    .icon_contacto_direccion{
        width: 34px;
        height: 34px;
    }

    #logo_principal{
        content: url("../logo/logo_movil.webp");
    }

    #mapa_salvador{
        width: 340px;
        min-width: 340px;
        height: 340px;
        min-height: 340px;
    }
}

@keyframes fadeIn
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}




@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
    
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
} 

 @-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
} 

@-webkit-keyframes fadeInDown {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
}
@keyframes fadeInDown {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
}   

@-webkit-keyframes fadeInUp {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
}

@keyframes fadeInUp {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
} 

@keyframes bg-color {
    0% { background-color: var(--sombraAzul); }
    20% { background-color: #0a3c87; }
    40% { background-color: #1b488d; }
    60% { background-color: #0c3066 }
    80% { background-color: #0a3c87; }
    100% { background-color: var(--sombraAzul); }
}

@keyframes bg-color-reverse {
    100% { background-color: var(--sombraAzul); }
    80% { background-color: #0a3c87; }
    60% { background-color: #1b488d; }
    40% { background-color: #0c3066 }
    20% { background-color: #0a3c87; }
    0% { background-color: var(--sombraAzul); }
}

/* ANIMACION */

#fondo_mapas{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--colorSecundario);
}

#fondo_animacion{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: relative;
    transition: all 7s;
}

.punto{
    position: absolute;
    background: var(--sombraAzul);
    border-radius: 50%;
    width: 3px;
    height: 3px;
    opacity: 1;
    animation:shimmer 5s ease-in-out infinite;
    transition: all 7s;
  }

  .punto_2{
    position: absolute;
    background: var(--sombraBlanca);
    border-radius: 50%;
    width: 2.5px;
    height: 2.5px;
    opacity: 1;
    animation:shimmer 5s ease-in-out infinite;
    transition: all 7s;
  }


.punto_3{
    position: absolute;
    background: var(--sombraBlanca);
    border-radius: 50%;
    width: 2.2px;
    height: 2.2px;
    opacity: 1;
    animation:shimmer 5s ease-in-out infinite;
    transition: all 7s;
}

.punto_4{
    position: absolute;
    background: var(--sombraDorada);
    border-radius: 50%;
    width: 2px;
    height: 2px;
    opacity: 1;
    animation:shimmer 5.5s ease-in-out infinite;
    transition: all 7s;
}
  
  @keyframes shimmer {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0;
    }
    50% {
      transform: translateY(-100%) scale(2);
      opacity: 1;
    }
    100% {
        transform: translateY(-100%) scale(2);
        opacity: 0;
    }
  }

