/*FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #212121;
    font-family: "Poppins", sans-serif;

}

header {
    background-color: #2A2929;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.container-principal {
    margin: 15rem auto;
    padding: 0 20px;
    width: 95%;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
}

.img {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 30px;
}

.btn-ver {
    background: linear-gradient(to right, #660303, #C41922);
    color: white;
    border: none;
    font-size: 1.3rem;
    padding: 5px 15px;
    width: 100%;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 8rem;
    margin-right: 1.5rem;
}

.btn-ver:hover{
    background: linear-gradient(to right, #561717, #a42a2a);
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.toggle-btn {
    display: none;
}
/*isotipo en el banner principal*/
h1 .iso-blg {
    width: 10rem;
    margin-right: 2rem;
}

.nab-icon-section {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.nab-icon-section ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    padding-top: 2rem;
    width: 85%;
}

.nab-icon-section a {
    width: 23%;
    text-decoration: none;
    background: linear-gradient(to right, #4A0000, #a50606);
    border-radius: 7px;
}

.nab-icon-section img{
    width: 3rem;
    margin-right: 1rem;
}

.nab-icon-section li {
    text-align: center;
    padding: 8px 10px;
    background-color: #2a2a2a;
    color: white;
    border-radius: 6px;
    width: 97%;
    height: 93.5%;
    font-size: 2rem;
    margin-left: 0.4rem;
    margin-top: 0.2rem;
    overflow: hidden;
    position: relative;
    cursor: url(/img/curso.png), auto;
}

.nab-icon-section li img,
.nab-icon-section li span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    cursor: url(/img/curso.png), auto;
}

.nab-icon-section li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #4A0000, #a50606);
    transition: left 0.5s ease-in-out;
    z-index: 1;
    cursor: url(/img/curso.png), auto;
}

.nab-icon-section li:hover::before {
    left: 0;
}

.nab-icon-section .icon-nab1 {
    width: 4.1rem;
    margin-right: 1rem;
}

.nab-icon-section .icon-nab2 {
    width: 3.4rem;
    margin-right: 1rem;
}

.nab-icon-section .icon-nab3 {
    width: 2.9rem;
    margin-right: 1rem;
}

.nab-icon-section i {
    padding-right: 0.5rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .nab-icon-section a {
        width: 23%;
    }

    .nab-icon-section li {
        font-size: 1.5rem;
    }

    .nab-icon-section .icon-nab1 {
        width: 3.5rem;
        margin-right: 1rem;
    }
    
    .nab-icon-section .icon-nab2 {
        width: 3rem;
        margin-right: 1rem;
    }
    
    .nab-icon-section .icon-nab3 {
        width: 2.5rem;
        margin-right: 1rem;
    }

    .nab-icon-section .icon-nab4 {
        width: 2.5rem;
    }
}

@media (max-width: 767px) {
    .nab-icon-section li {
        font-size: 1.5rem;
    }

    .nab-icon-section .icon-nab1 {
        width: 3rem;
        margin-right: 1rem;
    }
    
    .nab-icon-section .icon-nab2 {
        width: 2.5rem;
        margin-right: 1rem;
    }
    
    .nab-icon-section .icon-nab3 {
        width: 2rem;
        margin-right: 1rem;
    }

    .nab-icon-section .icon-nab4 {
        width: 2rem;
    }

}

@media (max-width: 687px) {
    .nab-icon-section li {
        font-size: 1.5rem;
    }

    .nab-icon-section .icon-nab1 {
        width: 2.8rem;
        margin-right: 1rem;
    }
    
    .nab-icon-section .icon-nab2 {
        width: 2.3rem;
        margin-right: 1rem;
    }
    
    .nab-icon-section .icon-nab3 {
        width: 1.8rem;
        margin-right: 1rem;
    }

    .nab-icon-section .icon-nab4 {
        width: 1.8rem;
    }
    
}

@media (max-width: 480px) {

    body {
        margin: 0;
    }

    /* BANNER DE EL BLOG */
    .container-principal {
        width: 100% !important;
        margin: 0;
        padding: 0;
    }

    .img {
        width: 95%;
        height: 95%;
        border-radius: 20px;
        margin-left: 1.3rem;
        margin-top: 16rem;
    }


    .nab-icon-section ul {
        padding-top: 1.5rem;
        width: 94%;
    }
    
    .nab-icon-section a {
        width: 23%;
        border-radius: 10px;
        justify-items: center;
    }
    
    .nab-icon-section li {
        padding: 14px 8px;
        border-radius: 9px;
        width: 97%;
        margin-left: 0.012rem;
        font-weight: 500;
    }

    .nab-icon-section li span {
        font-size: 1rem !important;
    }

    .nab-icon-section .icon-nab1 {
        width: 2rem;
        margin-right: 0.5rem;
    }
    
    .nab-icon-section .icon-nab2 {
        width: 2rem;
        margin-right: 0.5rem;
    }
    
    .nab-icon-section .icon-nab3 {
        width: 1.5rem;
        margin-right: 0.5rem;
    }

    .nab-icon-section .icon-nab4 {
        width: 1.5rem;
    }

    .principal-dos {
        width: 93%;
        margin-left: 2.1rem;
    }

    .title-w {
        justify-items: center;
        width: 90%;
        margin-bottom: 2rem;
        margin-left: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .title-w h1 {
        margin-left: 0.2rem;
        font-size: 3.3rem;
    }

    .title-w .tw2 {
        font-size: 4.7rem;
        margin-bottom: 0rem;
    }

    .tw2 img {
        width: 4.5rem;
        margin-bottom: -0.2rem;
    }

    .principal-tres {
        display: block !important;
        width: 93% !important;
        margin-left: 2.1rem;
    }

    .bloque-izquierdo {
        position: absolute;
        width: 55%;
        transform: translateX(-150%);
        transition: transform 0.8s ease;
        z-index: 100;
        overflow-y: auto;
        height: auto !important;
        margin-top: -76%;
        margin-left: 0.1rem;

    }

    .bloque-izquierdo.show {
        transform: translateX(0);
    }

    .bloque-derecho {
        margin-bottom: 8rem;
    }

    /*CURSOS*/
    .principal-cursos {
        justify-items: center;
        margin-bottom: 8rem;
    }

    .curso {
        width: 93%;
        padding: 0.6rem !important;
        border-radius: 14px !important;
    }

    .info h3 {
        font-size: 2.2rem !important;
        text-align: start;
        margin-bottom: 2rem;
    }

    .btn-inscribete {
        font-size: 1.2rem;
    }

    .toggle-btn {
        cursor: pointer;
        position: relative;
        display: block;
        padding: 0 2rem;
        height:5.2rem;
        margin-top: -4.3rem;
        margin-left: auto;
        font-size: 3.9rem;
        background: linear-gradient(to right, #4A0000, #a50606);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .toggle-btn:hover {
        background: linear-gradient(to right, #7b2828, #be3f3f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


    /*SESIONES*/
    .principal-sesion {
        width: 92% !important;
        height: auto !important;
        margin-bottom: 10rem;
        margin-left: 2.2rem !important;
    }

    .principal-sesion .encabezado {
        display: block !important;
        width: 100% !important;
        margin: 0;
    }

    .encabezado .categoria-2 {
        font-size: 1.9rem;
    }

    .encabezado .cci {
        font-size: 5rem;
        padding: 0;
    }

    .img22 {
        display: none;
    }

    .img23 {
        display: block !important;
        margin-top: 5rem;
        width: 100% !important;
        height: auto;
    }

    .hr {
        width: 85% !important;
        margin-left: 7% !important;
        margin-top: 5rem;
    }

    .sesiones h2 {
        font-size: 5rem !important;
        padding: 0 !important;
        text-align: start !important;
    }

    .contenido-curso {
        display: block !important;
    }

    .tiempo-total {
        margin-bottom: 2rem;
    }

    .sesion-video {
        width: 23rem !important;
        height: auto !important;
        background-color: #0066cc00 !important;
    }
    
    .sesion-video iframe {
        width: 100% !important;
        height: auto !important;
    }

    .sesiones-columna .sesion {
        margin-bottom: 3.5rem
    }

    .sesion-detalle h3 {
        width: 33% !important;
    }

    .sesion-detalle p {
        margin-bottom: 2rem;
        font-size: 1.7rem !important;
        width: 95% ;
    }

    .sesion a {
        margin-bottom: -6rem;
        margin-left: -8rem;
    }

    .btn-ver {
        width: 6rem !important;
        margin-left: -1.5rem;
    }

    /*FAMILIA ISOCAL >>>>>>>>*/

    .principal-fam {
        width: 92% !important;
        margin-left: 2.5rem !important;
    }

    .title-fam h1{
        font-size: 5rem !important;

    }

    .imgfm {
        width:4.5rem !important;
    }

    .principal-fam img {
        width: 100%;
        height: auto;
    }

    .line-2 {
        width: 80% !important;
        margin-left: 10% !important;
        margin-bottom: 3rem;
    }

    .principal-fam ul {
        margin: 0 !important;
        width: 100% !important;
    }

    .principal-fam ul{
        font-size: 2rem;
        text-align: center !important;
        margin-top: 6rem !important;
    }

    .principal-fam ul li p {
        text-align: start;
        font-size: 1.8rem;

    }

    .principal-post {
        width: 92% !important;
        margin-left: 2.5rem !important;
        display: block !important;
        margin-bottom: 8rem;
        margin-top: 7rem !important;
    }

    .posts-container {
        display: block !important;
    }

    .cont-post {
        margin-bottom: 3rem;
        border-bottom: 3px solid #4E4E4E;
        border-right: none !important;
    }

    .conenido-postR p {
        font-size: 1.4rem !important;
    }

    .etiqueta::after {
        right: -16px !important;
        top: 50,9% !important;
        border-width: 13px 0 13px 17px !important;
    }

}

.img23{
    display: none;
}

/*TITULO WEBINARS*/
.title-w {
    margin-top: 40px;
    width: 95%;
    text-align: left;
}

.title-w h1 {
    text-align: left;
    color: #fff;
    margin-left: 3.5rem;
}

.iso-webinars {
    width: 3.5rem;
    margin-left: 0.2rem;
}

/*BLOQUE CENTRAL CON TEXTO INFORMATIVO*/
.principal-dos {
    padding: 4px;
    margin-top: -10px;
    border-radius: 25px;
    background: linear-gradient(to top, #4A0000, #a50606); /*-------------correccion -----------*/
}

.p2-fondo {
    background: #1E1E1E;
    padding: 1rem 1rem;
    border-radius: 25px;
}

.principal-dos h3 {
    text-align: start;
    color: #fff;
    margin-left: 1rem;
}

.principal-dos P {
    font-size: 18px;
    line-height: 1.3;
    margin-left: 1rem;
}

/*BLOQUE DE LOS WEBINARS PROXIMOS Y PASADOS*/
.principal-tres {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
}

.bloque-izquierdo {
    flex: 1;
}

.bloque-derecho {
    flex: 5;
}

.bs-fondo{
    background: #1E1E1E;
    padding: 1rem 1rem;
    border-radius: 20px;
}

.bloque-sesiones {
    background: linear-gradient(to top, #4A0000, #a50606);
    border-radius: 20px;
    padding: 4px;
    margin-bottom: 4rem;
}

.bloque-sesiones h2 {
    color: #ffffff;
    border-bottom: 3px solid #850007;
    padding-bottom: 10px;
    font-size: 2.8rem;
}

.bloque-sesiones ul {
    list-style-type: none;
    padding: 0;
    padding-top: 2rem;
}

.bloque-sesiones i {
    font-size: 3rem;
    background: linear-gradient(to right, #4A0000, #a50606);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bloque-sesiones li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #3a3a3a;
    margin-left: 1rem;
}

.bloque-sesiones span {
    margin-left: 1rem;
    font-size: 12px;
    color: #fff;
}

.bloque-sesiones span:hover{
    background: linear-gradient(to right, #940808, #d42d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: url(/img/curso.png), auto;
}

.webinar {
    background-color: #2a2a2a;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
}

.webinar img {
    width: 100%;
    border-radius: 5px;
    padding: 5px 5px;
}

.etiqueta {
    display: inline-flex;
    align-items: center;
    background-color: #3e3e3e;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px 0 0 10px;
    position: relative;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.etiqueta p {
    font-weight: 600;
}

.punto {
    width: 9px;
    height: 9px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 8px;
}

.etiqueta::after {
    content: "";
    position: absolute;
    right: -19px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 0 17px 20px;
    border-color: transparent transparent transparent #3e3e3e;
}

/*seccion inferior de cada cuadro de webinar*/
.btn-inscribete {
    background: linear-gradient(to right, #4A0000, #a50606);
    color: white;
    border: none;
    padding: 8px 35px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    cursor: url(/img/curso.png), auto;
    margin-top: -30px

}

.btn-inscribete:hover {
    background: #a00;
}

.webi-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #33333300;
    padding: 5px;
    border-radius: 10px;
    color: #fff;
}

.info {
    display: flex;
    flex-direction: column;
}

.info h3{
    font-size: 2.5rem;
    color: #fff;
}

.fecha {
    display: flex;
    align-items: center;
    color: #C41922;
    margin-top: -15px;
    
}
.fecha p{
    margin-left: 1rem;
    color:#a00;
}
.fecha i{
    background: linear-gradient(to right, #700, #a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icono-calendario {
    margin-right: 5px;
}

h4 {
    margin: 0;
    font-size: 1.5em;
}



/*CURSOS MODULO*/
/*CONEDOR PRINCIPAL DEL MODULO DE CURSOS*/

.principal-cursos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 4rem;
}

.curso {
    background: linear-gradient(to top, #700, rgb(209, 6, 6));
    border-radius: 10px;
    padding: 0.3rem; /*modificar el borde del contendor de los cursos*/
    color: white;
    text-align: center;
    transition: transform 0.8s ease
}

.curso:hover {
    transform: scale(1.04);
}

/*CONTENDOR SECUNDARIO GRIS DEL CUADRO*/
.sub_curso {
    background-color: #212121;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    cursor: url(/img/curso.png), auto;
}

.sub_curso img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: url(/img/curso.png), auto;
}

.categoria {
    display: block;
    color: white;
    font-weight: 500;
    font-size: 16px;
    border: 3px solid #a00;
    width: 28%;
    border-radius: 5px;
    margin: 2rem;
}

.sub_curso h3{
    color: #fff;
    text-align: start;
    margin: 0 2rem;
}

.fecha-c {
    font-weight: 500;
    font-size: 13px;
    text-align: start;
    margin: 2rem;
}

.fecha-c span{
    margin-left: 0.5rem;
    color: #C41922;
}

.fecha-c i{
    background: linear-gradient(to right, #660303, #C41922);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

/*ESTILO DEL BOTON DEL CUADRO DE LOS CURSOS*/

.sub_curso button {
    width: 92%;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #4A0000, #B00101);
    font-weight: 500;
    padding: 0.7rem 0;
}

.sub_curso button:hover {
    background: linear-gradient(to right, #561717, #a42a2a);
    cursor: url(/img/curso.png), auto;
}

/*SECCION PRINCIPAL DE SESIONES*/
.principal-sesion {
    padding: 3.5rem;
    margin-top: 3rem;
    border-radius: 25px;
    background-color: #2A2929;
    width: 95%;
    margin-left: 3rem;
}

.categoria-2{
    display: block;
    color: white;
    font-weight: 500;
    font-size: 28px;
    border: 3px solid #a00;
    width: 30%;
    border-radius: 10px;
    margin-bottom: 3rem;
    padding: 0.8rem 0;
    text-align: center;
}

.principal-sesion .encabezado {
    display: flex;
    align-items: flex-start;
    gap: 1px;
    margin-bottom: 20px;
}

.principal-sesion .encabezado img {
    width: 45%;
}

.principal-sesion h1 {
    margin-bottom: 10px;
    padding-right:22rem;
    font-size: 6rem;
    line-height: 1.2;
}

.principal-sesion .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 3rem;
}

.principal-sesion .rating span{
    font-size: 1.9rem;
    font-weight: 700;
    color: #7B7B7B;
}

.bells{
    display: block;
    font-weight: 600;
    font-size: 22px;
    border: 3px solid #a00;
    padding: 0 0.3rem;
    border-radius: 5px;
    text-align: center;
    margin-left: 1.5rem;
}

.principal-sesion .rating i {
    color: #ffc107;
}

.principal-sesion .fecha-publicacion {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #C41622;
}

/*linea divisora*/
.hr {
    width: 70%;
    margin-left: 20rem;
    background: #C41622;
    border: none;
    height: 2px;
}

.principal-sesion .sesiones {
    margin-top: 5rem;
}

.principal-sesion .sesiones h2 {
    font-size: 4.5rem;
    text-align: center;
    padding: 0 9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5rem;
}


/*COLUMNAS DIVIDIDAS*/
.contenido-curso {
    display: flex;
    margin-top: 20px;
}

.duracion-columna {
    flex: 0 0 25%;
    padding-right: 20px;
}

.sesiones-columna {
    flex: 0 0 75%;
}

.duracion {
    padding: 20px;
    border-radius: 5px;
}

.icono-reloj::before {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: #D0D0D0;
}

.tiempo-total {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 500;
}

.tiempo-total span{
    background-color: #3f3f3f;
    text-align: center;
    padding: 0.3rem 0.9rem;
    border-radius: 50%;
    font-size: 2.9rem;
}

.tiempo-total i {
    background: linear-gradient(to right, #660303, #C41922);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*end*/


.sesion {
    background-color: #444;
    margin-bottom: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

.sesion-info {
    display: flex;
    align-items: center;
}

.sesion-video {
    background-color: #0066cc;
    width: 24rem;
    height: 14rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.sesion-video iframe {
    width: 24rem;
    height: 14rem;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.icono-play::before {
    content: "▶";
    color: #99ff99;
}

.sesion-detalle h3 {
    margin: 0;
    text-align: start;
    width: 25%;
    color: #fff;
    border-bottom: 2px solid #a50606 ;
    margin-bottom: 1rem;
}

.sesion-detalle p {
    font-weight: 600;
    padding-bottom: 0.5rem;
    font-size: 2.2rem;
    color: #fff;
}
.sesion-detalle i{
    background: linear-gradient(to right, #660303, #C41922);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
}

.duracion-sesion {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.sesion a {
    margin-right: 1.5rem;
    width: 12%;
}

/*----------------------*/
.principal-post {
    padding: 0.5rem;
    margin-top: 3rem;
    border-radius: 25px;
    background: linear-gradient(to top, #4A0000, #a50606);
    width: 98%;
    margin-left: 1rem;
}

.sub-post {
    width: 100%;
    background-color: #2A2929;
    padding: 2.5rem;
    border-radius: 20px;
}

.sub-post h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: white;
}
.posts-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.cont-post {
    border-right: 3px solid #4E4E4E;
    display: flex; /* Activa Flexbox */
    gap: 15px; 
    justify-content: center;
    padding: 10px;
}

.cont-post-2{
    display: flex; /* Activa Flexbox */
    gap: 15px; 
    justify-content: center;
    padding: 10px;
}

.cont-post-2 img {
    width: 38%;
}

.cont-post img {
    width: 40%;
}
.conenido-postR {
    margin-top: -2rem;
}

.conenido-postR h3{
    text-align: left;
    color: #fff;
}

.conenido-postR p{
    font-size: 1rem;
}
/*---------------------*/

.principal-fam {
    padding: 3.5rem;
    margin-top: 3rem;
    border-radius: 25px;
    background-color: #2A2929;
    width: 95%;
    margin-left: 3rem;
    text-align: center;
}


.title-fam {
    text-align: center;
    margin-top: 2rem;
}

.title-fam h1 {
    font-size: 6rem;
    font-weight: 600;
}
.title-fam img {
    width: 5rem;
    margin-right: 1rem;
}

/*LINEAS Y FECHA*/
.lins {
    margin-top: -3rem;
    margin-bottom: 0.3rem;
}
.lineas {
    display: inline-block;
    width: 100px;
    border: none;
    height: 4px;
    background: #C41922;
    margin: 0 10px;
    margin-bottom: 3px;
    border-radius: 5px;
}

.circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.5rem;
    background-color: #474747;
    border-radius: 50%;
    vertical-align: middle;
}

.date-time {
    color: #fff;
    font-size: 14px;
    margin-bottom: 2rem;
}


.date-time i {
    background: linear-gradient(to right, #660303, #C41922);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 0.5rem;
}
/*FIN*/
.line-2 {
    margin-top: 3rem;
    border: none;
    background: #C41622;
    height: 0.3rem;
    border-radius: 3px;
    width: 64%;
    margin-left: 25rem;
}

.principal-fam ul {
    width: 80%;
    margin-top: 5rem;
    text-align: start;
    margin-left: 15rem;
}

.principal-fam li {
    list-style: none;
    color: #C41622;
}

.principal-fam li i {
    font-size: 1.5rem;
    margin-right: 3rem;
}

.principal-fam ul li p {
  
    font-size: larger;
    justify-content: center;
    display: flex
;
}

.share-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px;
    gap: 5px;
    margin-top: 12rem;
    padding-bottom: 2rem;
}

.share-text {
    color: white;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 500;
}

.social-buttons {
    display: flex;
}

.share-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
}

.share-button img {
    width: 4rem;
    height: 4rem;
}
/*--------------------*/

.fondee {

    max-width: 90%;
    border-radius: 50px;
}

