@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300&display=swap');
:root{ /*VARIABLES DE COLOR*/
    --color-principal:#2B3C2F;
    --color-secundario:#BB9068;
}
*{
    box-sizing: border-box;
}
body{
    margin: 0px;
    background-color: var(--color-principal);
}
html{
    scroll-behavior: smooth;
}
/* header*/
.header {
    width: 100%;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header a {
    text-decoration: none;
}
.child-header {
    padding: 0 5%;
    margin: 0 auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* logo*/
.logo{
    display: flex;
    align-items: center;
    width: auto;
}
.img-logo {
    width: 50px;
    margin-right: .5%;
    display: flex;
    align-items: center;
}
.img-logo img{
    width: 100%;
}
.logo-letras{
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0;
}
.logo a h2{
    width: 100%;
    height: auto;
    text-align: left;
    color: var(--color-secundario);
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    margin-left: 3px;
    margin-top: 24px;
    margin-bottom: 20px;

}
.logo a p{
    text-align: left;
    font-size: 11px;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #000;
    margin-left: 3px;
}
/* menu de navegacion*/
.box-menu-navegacion {
    width: 50%;
}
.box-menu-navegacion ul {
    margin: 0;
    list-style: none;
    padding: 0;
}
.menu-navegacion {  
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-menu-link {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-principal);
    transition: .3s linear;
    padding: 1.8rem 0;
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Oswald', sans-serif;
}
/* hover */
.item-menu-link:hover {
    color: var(--color-secundario);
}
.item-menu-sub-menu:hover i {
    color: var(--color-secundario);
    transition: .3s linear;
}
/* boton hamburguesa*/
.btn-hamburguesa {
    display: none;
    background-color: transparent;
    height: 30px;
    border: none;
    cursor: pointer;
}
.btn-hamburguesa span {
    height: 2px;
    display: block;
    background-color: #000;
    width: 25px;
    border-radius: 20px;
}
.btn-hamburguesa span:nth-child(2) {
    margin: .4rem 0;
}
/* sub menu*/
.item-menu-sub-menu {
    position: relative;
}
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: white;
    transform: scaley(0);
    transform-origin: top;
    transition: transform .3s linear;
}
.sub-menu .item-menu-link {
    padding: .8rem;
}
/* hover */
.item-menu-sub-menu:hover .sub-menu {
    transform: scaley(1);
}
@media screen and (max-width: 1195px) {
    /*LOGO*/
    .img-logo{
        width: 38px;
        height: 38px;
        margin-right: 0px;
    }
    .logo-letras a h2{
        font-size: 35px;
        margin-top: 17px;
        margin-bottom: 15px;
    }
    .logo-letras a p{
        font-size: 8.5px;
        letter-spacing: 0em;
    }

    /* boton hamburguesa
    ****************************/
    .btn-hamburguesa {
        display: block;
    }
    /*  header
    ****************************/
    .header {
        position: relative;
        padding: 1rem 0;
    }
    /*  menu de navegacion
    ****************************/
    .box-menu-navegacion {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        width: 100%;
        transform: scaley(0);
        transform-origin: top;
        transition: .3s linear;
        padding: 0 2rem;
    }
    .menu-navegacion {
        flex-direction: column;
        align-items: flex-start;
    }
    .item-menu-link {
        padding: 1rem 0;
    }
    .item-menu-sub-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }
    .angle-view-sub-menu {
        border: 1px solid #000;
        width: 30px;
        display: flex;
        justify-content: center;
        padding: .2rem 0;
    }
    .sub-menu {
        width: 100%;
        position: initial;
        transform: scaley(1);
        display: none;
        background-color: white;
    }
    /*  activador sub menu
    ****************************/
    .viewMenu {
        transform: scaley(1);
    }
    /*  hover
    ****************************/
    .item-menu-link:hover,
    .item-menu-sub-menu:hover i {
        color: initial;
    }
}

/*IMAGEN BOLETIN 2 2024*/
.img-boletin-3-2024 {
    margin-top: 1%;
    width: 100%;
    min-height: 30vw;
    background-image: linear-gradient(
        0deg,
        rgb(0,0,0,0.5),
        rgb(0,0,0,0.5)
    )
    ,url("../img-boletines/boletin-2-2024.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
.img-boletin-3-2024 h1 {
    color: white;
    font-size: 7vw;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1.5vw;
    margin-left: 2.5vw;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
    .img-boletin-3-2024 {
        min-height: 25vw;
    }
}
/*CONTENEDOR A*/
.contenedorA {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-A{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 15px auto;
}
.tituloA {
    width: 100%;
    border-bottom: var(--color-secundario) 6px solid;
}
.tituloA h1 {
    margin: 0px;
    color: var(--color-secundario);
    font-size: 35px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: justify;
}
.tituloA h1:nth-child(2) {
    color: var(--color-principal);
}
.text-imgA {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.textoA {
    width: 65%;
    margin-right: 2%;
}
.textoA p {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    text-align: justify;
    color: var(--color-principal);
    margin: 10px auto 0px auto;
}
.imgA {
    width: 33%;
}
.imgA img {
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1200px) {
    .tituloA h1 {
        font-size: 30px;
    }
    .textoA p {
        font-size: medium;
    }
}
@media screen and (max-width: 900px) {
    .text-imgA {
        flex-direction: column;
    }
    .textoA {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 10px;
    }
    .imgA {
        width: 80%;
    }
}
@media screen and (max-width: 600px) {
    .tituloA h1 {
        font-size: 25px;
    }
}
/*CONTENEDOR B*/
.contenedorB {
    width: 100%;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-B {
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px auto;
}
.box-B h1 {
    width: 100%;
    font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-secundario);
    margin: 0px auto;
}
.box-B h1:nth-child(2) {
    text-align: justify;
    color: var(--color-principal);
    border-bottom: var(--color-secundario) 6px solid;
}
.box-B p {
    width: 100%;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    text-align: justify;
    margin: 20px auto 0px auto;
    color: var(--color-principal);
}
@media screen and (max-width: 900px) {
    .box-B {
        margin: 20px auto 0px auto;
    }
    .box-B h1 {
        font-size: 25px;
        letter-spacing: 0.05em;
    }
    .box-B p {
        font-size: medium;
    }
}
@media screen and (max-width: 450px) {
    .box-B h1{
        font-size: 25px;
    }
    .box-B p{
        margin-top: 10px;
    }
}
/*CONTENEDOR C*/
.contenedorC {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-C {
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 20px auto;
}
.text-imgC {
    width: 100%;
    display: flex;
    align-items: center;
}
.imgC {
    width: 40%;
    margin-right: 2%;
}
.imgC img {
    width: 100%;
    object-fit: cover;
}
.textoC {
    width: 58%;
}
.textoC h1 {
    width: 100%;
    font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--color-secundario);
    text-align: justify;
    margin: 0px auto;
}
.textoC h1:nth-child(2) {
    color: var(--color-principal);
    border-bottom: var(--color-secundario) 6px solid;
}
.textoC p {
    width: 100%;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    text-align: justify;
    margin-top: 10px;
    line-height: 1.3;
    color: var(--color-principal);
}
@media screen and (max-width: 1200px) {
    .textoC h1 {
        font-size: 25px;
    }
    .textoC p {
        font-size: medium;
    }
}
@media screen and (max-width: 900px) {
    .box-C {
        flex-direction: column-reverse;
    }
    .textoC {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 10px;
    }
    .textoC h1 {
        letter-spacing: 0.02em;
    }
    .imgC {
        width: 80%;
    }
}
/*CONTENEDOR D*/
.contenedorD {
    width: 100%;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-D {
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px auto;
}
.box-D h1 {
    width: 100%;
    font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-secundario);
    margin: 0px auto;
}
.box-D h1:nth-child(2) {
    text-align: justify;
    color: var(--color-principal);
    border-bottom: var(--color-secundario) 6px solid;
}
.box-D p {
    width: 100%;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    text-align: justify;
    margin: 20px auto 0px auto;
    color: var(--color-principal);
}
@media screen and (max-width: 900px) {
    .box-D {
        margin: 20px ;
    }
    .box-D h1 {
        font-size: 25px;
        letter-spacing: 0.05em;
    }
    .box-D p {
        font-size: medium;
    }
}
@media screen and (max-width: 450px) {
    .box-D h1{
        font-size: 25px;
    }
    .box-D p{
        margin-top: 10px;
    }
}
/*CONTENEDOR E*/
.contenedorE {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-E{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 15px auto;
}
.tituloE {
    width: 100%;
    border-bottom: var(--color-secundario) 6px solid;
}
.tituloE h1 {
    margin: 0px;
    color: var(--color-secundario);
    font-size: 35px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: justify;
}
.tituloE h1:nth-child(2) {
    color: var(--color-principal);
}
.text-imgE {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5px auto;
}
.textoE {
    width: 65%;
    margin-right: 2%;
}
.textoE p {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    text-align: justify;
    color: var(--color-principal);
    margin: 10px auto 0px auto;
}
.imgE {
    width: 33%;
}
.imgE img {
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1200px) {
    .tituloE h1 {
        font-size: 30px;
    }
    .textoE p {
        font-size: medium;
    }
}
@media screen and (max-width: 900px) {
    .text-imgE {
        flex-direction: column;
    }
    .textoE {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 10px;
    }
    .imgE {
        width: 80%;
    }
}
@media screen and (max-width: 600px) {
    .tituloE h1 {
        font-size: 25px;
    }
}
/*CONTENEDOR F*/
.contenedorF {
    width: 100%;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-F {
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px auto;
}
.box-F h1 {
    width: 100%;
    font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-secundario);
    margin: 0px auto;
}
.box-F h1:nth-child(2) {
    text-align: justify;
    color: var(--color-principal);
    border-bottom: var(--color-secundario) 6px solid;
}
.box-F p {
    width: 100%;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    text-align: justify;
    margin: 20px auto 0px auto;
    color: var(--color-principal);
}
@media screen and (max-width: 900px) {
    .box-F {
        margin: 20px ;
    }
    .box-F h1 {
        font-size: 25px;
        letter-spacing: 0.05em;
    }
    .box-F p {
        font-size: medium;
    }
}
@media screen and (max-width: 450px) {
    .box-F h1{
        font-size: 25px;
    }
    .box-F p{
        margin-top: 10px;
    }
}
/*IMAGEN JURISPRUDENCIA*/
.img-jurisprudencia {
    width: 100%;
    min-height: 30vw;
    background-image: linear-gradient(
        0deg,
        rgb(0,0,0,0.5),
        rgb(0,0,0,0.5)
    )
    ,url("../img-boletines/foto-jurisprudencia.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.img-jurisprudencia h1{
    color: white;
    font-size: 7vw;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1.5vw;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
    .img-jurisprudencia{
        min-height: 25vw;
    }
}
/*CONTENEDOR G*/
.contenedorG {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-G {
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px auto 0px auto;
}
.box-G h1 {
    width: 100%;
    font-size: 35px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-principal);
    margin: 0px auto;
    border-bottom: var(--color-secundario) 6px solid;
}
.box-G p {
    width: 100%;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    text-align: justify;
    margin: 20px auto 0px auto;
    color: var(--color-principal);
}
@media screen and (max-width: 900px) {
    .box-G {
        margin: 20px ;
    }
    .box-G h1 {
        font-size: 25px;
        letter-spacing: 0.05em;
    }
    .box-G p {
        font-size: medium;
    }
}
@media screen and (max-width: 450px) {
    .box-G h1{
        font-size: 25px;
    }
    .box-G p{
        margin-top: 10px;
    }
}
/*JURISPRUDENCIA*/
.jurisprudencia-3-2024 {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jurisprudencia {
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    column-gap: 20px;
}
.box-texto {
    width: 67%;
    margin-right: 3%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.bloque-jurisprudencia h1 {
    margin: 0px;
    font-size: 35px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: justify;
    color: var(--color-principal);
    border-bottom: var(--color-secundario) 6px solid;
}
.bloque-jurisprudencia p {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    line-height: 1.3;
    color: var(--color-principal);
    margin: 5px auto 0px auto ;
    text-align: justify;
    margin: 15px auto 0px auto;
}
.bloque-jurisprudencia ul li {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
    color: var(--color-principal);
    text-align: justify;
}
.btn-regresar {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 15% auto 0px auto;
}
.btn-regresar a{
    text-decoration: none;
}
.btn-regresar a h1{
    display: flex;
    align-items: center;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: var(--color-principal);
    font-size: large;
    transition: 0.5s;
}
.btn-regresar a h1:hover{
    color: var(--color-secundario);
}
.btn-regresar a h1 ion-icon{
    font-size: 30px;
}
.box-compartir {
    width: 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.box-redes{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    border-bottom: black 5px solid;
}
.cuadrado{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px auto;
    border-radius: 15px;
    background-color: var(--color-principal);
}
.cuadrado h1{
    width: 90%;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.1em;
    color: white;
    margin: 15px auto 2px auto;
}
.ic-redes {
    width: 90%;
    margin: 2px auto 15px auto;
}
.ic-redes a{
    margin: auto 5px auto 0px;
}
.ic-redes a ion-icon{
    font-size: 30px;
    color: white;
}
.box-interesar {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box-interesar h1 {
    width: 90%;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-principal);
}
.img-interesar {
    width: 90%;
    position: relative;
}
.img-interesar img {
    width: 100%;
    object-fit: cover;
}
.overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    background:rgb(0,0,0,0.5) ;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: .5s ease;
}
.overlay h2{
    width: 100%;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: xx-large;
    position: absolute;
    top: 42%;
    left:50%;
    text-align: center;
    transform: translate(-50%, -50%);
    letter-spacing: 0.05em;
}
.img-interesar:hover .overlay{
    height: 100%;
    cursor: pointer;
}
.btn-regresar-compartir {
    display: none;
}
@media screen and (max-width: 1200px) {
    /*PARTE DE TEXTO*/
    .bloque-jurisprudencia h1 {
        font-size: 28px;
        letter-spacing: 0.05em;
    }
    .bloque-jurisprudencia p {
        font-size: medium;
        margin-bottom: 0px;
    }
    /*PARTE DE COMPARTIR*/
    .cuadrado h1{
        font-size: 25px;
    }
    .ic-redes a ion-icon{
        font-size: 25px;
    }
    .box-interesar h1 {
        font-size: large;
    }
}
@media screen and (max-width: 900px) {
    .jurisprudencia {
        flex-direction: column;
    }
    .box-texto {
        width: 100%;
    }
    .bloque-jurisprudencia h1 {
        font-size: 5vw;
        letter-spacing: 0.02em;
    }
    .bloque-jurisprudencia p {
        font-size: medium;
        margin: 10px auto 0px auto; 
    }
    .bloque-jurisprudencia ul {
        margin: 5px auto 0px auto;
        line-height: 1.3;
    }
    .bloque-jurisprudencia ul li {
        font-size: medium;
    }
    .btn-regresar{
        display: none;
    }
    /*COMPARTIRRRR*/
    .box-compartir {
        width: 100%;
    }
    .cuadrado h1{
        font-size: 30px;
    }
    .ic-redes a ion-icon{
        font-size: 30px;
    }
    .box-interesar h1 {
        font-size: x-large;
    }
    /*BOTON*/
    .btn-regresar-compartir {
        width: 90%;
        display: flex;
        justify-content: flex-end;
        margin: 3% auto 0px auto;
    }
    .btn-regresar-compartir a{
        text-decoration: none;
    }
    .btn-regresar-compartir a h1{
        display: flex;
        align-items: center;
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
        color: var(--color-principal);
        font-size: large;
        transition: 0.5s;
    }
    .btn-regresar-compartir a h1:hover{
        color: var(--color-secundario);
    }
    .btn-regresar-compartir a h1 ion-icon{
        font-size: 30px;
    }
    .overlay {
        height: 100%;
    }
}
@media screen and (max-width: 600px) {
    .jurisprudencia{
        width: 90%;
    }
    .bloque-jurisprudencia h1:nth-child(2) {
        border-bottom: var(--color-secundario) 4px solid;
    }
    .cuadrado h1{
        font-size: 20px;
    }
    .ic-redes a ion-icon{
        font-size: 20px;
    }
    .box-interesar h1 {
        font-size: large;
    }
}

/*FOOTERRR*/
.pie-pagina{
    width: 100%;
    background-color: var(--color-principal);
}
.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display:grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-gap: 10px 30px;
    padding: 8px 15px;
    align-items: center;
}
.pie-pagina .grupo-1 .bloque figure{
    width: 100%;
    height: 100%;   
    text-align: center;
    text-decoration: none;
    line-height: 0;
}
.pie-pagina .grupo-1 .bloque figure a{
    text-decoration: none;
}
.pie-pagina .grupo-1 .bloque figure a img{
    width: 50px;
}
.pie-pagina .grupo-1 .bloque figure a div h1{
    color: var(--color-secundario);
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    letter-spacing: 0.02em;
    margin-top: 33px;
}
.pie-pagina .grupo-1 .bloque figure a div h4{
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-top: -8px;
}
.pie-pagina .grupo-1 .bloque p{
    color: #efefef;
    row-gap: 10px;
}
.pie-pagina .grupo-1 .bloque h2{
    color: #efefef;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
}
.pie-pagina .grupo-1 .bloque .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 55px;
    height: 55px;
    line-height: 1px;
    color: #fff;
    text-align: center;
    transition: all 300ms ease;
}
.pie-pagina .grupo-1 .bloque .red-social a ion-icon{
    font-size: 25px;
}
.pie-pagina .grupo-1 .red-social a:hover{
    color: var(--color-secundario);
}
@media screen and (max-width:700px){
    .pie-pagina .grupo-1{
        grid-gap: 10px 15px;
        padding: 8px 15px;
    }
    .pie-pagina .grupo-1 .bloque h2{
        color: #efefef;
        font-size: medium;
        letter-spacing: 0em;
    }
    .pie-pagina .grupo-1 .bloque .red-social a ion-icon{
        font-size: 18px;
    }
}
@media screen and (max-width:600px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0px auto;
        align-items: center;
        justify-content: center;
    }
    .pie-pagina .grupo-1 .bloque{
        margin-bottom: -25px;
    }
    .pie-pagina .grupo-1 .bloque figure{
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }
    .pie-pagina .grupo-1 .bloque figure a{
        width: 80%;       
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    .pie-pagina .grupo-1 .bloque figure a img{
        width: 46px;
    }
    .pie-pagina .grupo-1 .bloque figure a div{
        line-height: -1.5;
    }
    .pie-pagina .grupo-1 .bloque figure a div h1{
        font-size: 45px;       
        margin-bottom: 30px;
    }
    .pie-pagina .grupo-1 .bloque figure a div h4{
        font-size: 12px;
    }
    .pie-pagina .grupo-1 .bloque p{
        text-align: center;
        row-gap: 2px;
    }
    .pie-pagina .grupo-1 .bloque h2{
        text-align: center;
    }
    .pie-pagina .grupo-1 .red-social{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pie-pagina .grupo-1 .red-social a{
        text-decoration: none;
        width: 60px;
        height: 60px;
        line-height: 0;
        margin-bottom: -15px;
    }
}