@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family:"Poppins", Arial, sans-serif;
}
bodynoticia {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #7d7d7d;
    text-align: center;
}
li {
    text-align: left;
}
/*BOTON DE DESCARGA*/
.boton {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .boton {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.boton-primario {
    color: #fff;
    background-color: #213149;

    box-shadow: none;
}
.boton-lg, .boton-group-lg > .boton {
    padding: 0.8rem 0.8rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

a.descarga {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #ffffff;
    text-decoration: none;
    background-color: #213149;
}
a.descarga:hover {
    color: #3d95e3;
    text-decoration: none;
}
a.descarga:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

a.descarga:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

.my-3-noticia {
    color: #616060 !important;
    -webkit-text-stroke: 1.3px #616060 !important;
    font-family: 'Raleway',sans-serif;
    font-size: 43px;
    line-height: 72px;
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
}
.titulo-noticia {
    color: #616060 !important;
    -webkit-text-stroke: 1.3px #616060 !important;
    font-family: 'Raleway',sans-serif;
    font-size: 43px;
    line-height: 72px;
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
}
.titulo {
    color: #232323;
    -webkit-text-stroke: 1px #ffffff;
    font-family: 'Raleway',sans-serif;
    font-size: 62px;
    font-weight: 800;
    line-height: 72px;
    margin: 0 0 24px;
    text-align: center;
    text-transform: uppercase;
}
.contenido_noticia {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    transform-style: preserve-3d;
}
.contenido_noticia .tarjeta {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 25px;
    background: #021457;
    border-radius: 20px;
    transform-style: preserve-3d;
}
.contenido_noticia .tarjeta::before {
    content: 'FBM';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6em;
    font-weight: 900;
    color: #fff;
    font-style: italic;
    opacity: 0;
    transition: 0.5s;
}
.contenido_noticia .tarjeta::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 5em;
    font-weight: 900;
    color: #fff;
    font-style: italic;
    opacity: 0;
    transition: 0.5s;
}
.contenido_noticia .tarjeta:hover::before,
.contenido_noticia .tarjeta:hover::after {
    opacity: 0.08;
}
.contenido_noticia .tarjeta .nombre {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    color: #fff;
    width: 100%;
    transform-style: preserve-3d;
    transform: translate3d(0,0,75px);
    transition: 0.5s;
    opacity: 0;
    z-index: 10;
    text-transform: uppercase;
}
.contenido_noticia .tarjeta:hover .nombre {
    top: 40px;
    opacity: 1;
}
.contenido_noticia .tarjeta .detalle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-style: preserve-3d;
    transform: translate3d(-50%, 0, 75px);
    color: #000000;
    background: #333;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.5s;
    opacity: 0;
    z-index: 10;
}
.contenido_noticia .tarjeta:hover .detalle {
    bottom: 30px;
    opacity: 1;
}
.contenido_noticia .tarjeta .circulo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: 0.5s;
    background: #fff;
    transform-style: preserve-3d;
    z-index: 10;
    opacity: 1;
    transform: translate3d(-50%, -50%, 50px);
}
.contenido_noticia .tarjeta .producto {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 300px;
    transition: 0.5s;
    z-index: 11;
    transition: 0.5s;
    transform-style: preserve-3d;
    transform: translate3d(-50%, -50%, 0px) rotate(-15deg);
}
.contenido_noticia .tarjeta:hover .producto {
    transform: translate3d(-50%, -50%, 100px) rotate(-15deg);
}
.contenido_noticia .tarjeta:nth-child(n) .circulo,
.contenido_noticia .tarjeta:nth-child(n) .detalle {
    background: #d7c234;
}
