body{
   background-color: #434343;
   color: var(--body-color);
}

/*=============== HOME ===============*/
.home_bg{
    margin-top: 58px;
}
.contenedor__home{
    position: relative;
}
.banner__info{
    position: absolute;
    bottom: 0px;
    color: #ffff;
    text-align: left;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.309);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.banner__arrow{
    background-color: rgba(58, 58, 58, 0.544);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10%;
    font-size: 30px;
    cursor: pointer;
    z-index: 100;
    a{
        color: white;
    }
}

.banner__arrow:hover{
    background-color: rgb(43, 43, 43);
}

.banner__arrow__left{
    left: 10px;
}

.banner__arrow__right{
    right: 10px;
}

.banner__title{
    text-align: left;
    margin: 0;
}
.banner__conteCat{
    margin-top: 15px;
    margin-bottom: 5px;
}
.banner__cat{
    padding: 5px;
    border-radius: 10px;
    border: 1px solid white;
}

/*=============== ARTICULO ===============*/

.articulo__info, .articulo__nav{
    padding: 15px;
}
.articulo__autorConten{
    display: flex;
    align-items: center;
    margin-top: 1em;
    color: #808080;
}
.articulo__autorImg{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.articulo__ListItem{
    margin-bottom: 35px;
    a{
        color: var(--body-color);
    }
    a:hover{
        color: var(--first-color);
    }
}
.articulo__listProyect{
    margin-top: 1rem;
}
.articulo__ListPro{
    margin-bottom: 15px;
    a{
        color: var(--body-color);
    }
    a:hover{
        color: var(--first-color);
    }
}
.articulo__hr{
    background-color: red;
}
.articulo__CreditosInfo{
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.articulo__grupoImg{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1em;
}
.articulo__videoContent{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin-top: 1.2em;
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {

    /*=============== HOME ===============*/
    .banner__autor, .banner__title, .banner__desc{
        margin-bottom: 5px;
    }
    .banner__conteCat{
        margin-bottom: 1em;
    }
    /*=============== ARTICULO ===============*/
    .contenedor__articulo{
       grid-template-columns: 3fr 1fr;
       margin-bottom: 2rem;
       margin-top: 2rem;
    }
}


@media screen and (min-width: 765px) {

    /*=============== HOME ===============*/
    
    /*=============== ARTICULO ===============*/
    .contenedor__cards{
       grid-template-columns: 1fr 1fr 1fr;
       margin-bottom: 2rem;
    }

}



/* For large devices */
@media screen and (min-width: 1024px) {
  .section{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

    /*=============== HOME ===============*/
    .home_bg{
        margin-top: 120px;
    }
        .banner__arrow{
        background-color: rgba(58, 58, 58, 0.544);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        font-size: 50px;
        cursor: pointer;
        z-index: 100;
        a{
            color: white;
        }
    }

    .banner__arrow:hover{
        background-color: rgb(43, 43, 43);
    }

    .banner__arrow__left{
        left: 10px;
    }

    .banner__arrow__right{
        right: 10px;
    }


    /*=============== ARTICULO ===============*/
    .contenedor__articulo{
        gap: 3em;
    }
    .articulo__info{
        padding: 15px 0;
    }

}



@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
    /*===============  NUESTRA HISTORIA  ===============*/


}

@media screen and (min-width: 1550px) {


}