

.heading-container{
    background-image: linear-gradient(to left, transparent 20%, #181818 70%), url('../images/bg/tree.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    display: block;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 0px;
    padding-right: 40px;
    border-radius: 5px;
    margin-bottom: 20px;

}


.heading-container .flex{
    display: flex;
    padding: 0px;
    margin: 0px;
}

.heading-container p{
    display: flex;
    padding: 5px;
    margin: 0px;
    font-family:inter;

}


.heading-title{
    font-size: 30px;
    font-family:interbold;
    padding: 5px;
    margin: 0px;
    font-weight: 100;

}
a{
    text-decoration: none;

}

.article-container{
    display: flex;
    margin-bottom: 15px;
    width: 100%;
    overflow-x: auto;
}

.article-item{
    padding: 15px;
    width: 150px;
    height: 220px;
    margin-right: 10px;
    border-radius: 2px;
    text-align: bottom;
    background-color: #202020;
    
}

.article-details{
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    top: 140px;
    background-color: transparent;
    text-align: bottom;
    text-decoration: none;
    width: 100%;
}

.article-details h1{
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    bottom: 0px;
    text-decoration: none;
    font-size: 20px;
}

.article-details p{
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    bottom: 0px;
    text-decoration: none;
    font-size: 15px;
    color: rgb(177, 176, 175);

}













/* article page style*/

.questions{
    width: 700px;
    border-radius: 5px;
    overflow: hidden;
}

@media all and (max-width: 754px) {  
    .questions{
        width: 100%;


    }


  }


.accordion {
    background-color: #363636;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    box-sizing: border-box;
    margin-bottom: 1px;

  }
  
  .active1, .accordion:hover {
    background-color: #2b2a2a; 
  }
  
  .panel {
    padding: 0 18px;
    padding-top: 10px;
    display: none;
    background-color: rgb(31, 31, 31);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;

  }





/* meta analysis page style*/

.characterprofile{
    width: 100%;
    background-color: rgb(48, 46, 46);
    text-align: left;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    display: flex;
    box-sizing: border-box;
    position: relative;
    left: -10px;

}

.characterprofile .details{
    margin-left: 10px;
    display: block;
}

.characterprofile .details b{
}

.characterprofile .details p{
    display: block;
    margin: 0px;
    margin-bottom: 10px;
    padding: 0px;
}

.characterprofile .prosandcons{
    display: flex;
    background-color: #3d3d3d;
    padding: 2px;
    border-radius: 2px;

    text-align: center;
}

.characterprofile .prosandcons div{
    padding: 10px;
    padding-left: 5px;
    padding-right: 5px;
    width: auto;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;

}

.characterprofile .prosandcons p{
    text-decoration: dotted;
    margin: 5px;
    padding: 0px;
    font-size: 15px;
    color: rgb(197, 196, 196);
    
}

.characterprofile .prosandcons i{
    font-size: 15px;
    color: rgb(114, 114, 114);
    
}

.characterprofile .prosandcons p:before{
    content: "•";
    position: relative;
    top:2px;
    
}


