
/* history line */


.historyLine__section{
    background-image: url(../img/historia_tlo.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* section.historyLine__section::before {
    content: "";
    background-color: black;
    top: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: .7;
} */
.historyLine__holder{
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.historyLine__title{
    color: white;
    text-align: center;
    max-width: 50rem;
}
.historyLine__content{
    /* max-width: 50rem; */
    display: flex;
}

.historyLine__line{
    border: .1rem solid black;
    background-color: black;
    z-index: 10;
    position: relative;
}
.historyLine__episodes{
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
}
.historyLine__verticalLine{
    position: absolute;
    height: 100%;
    width: .1rem;
    background: white;
    left: 50%;
    top: 0;
}
.historyLine__episode{
    width: 50%;
    text-align: right;
}
.historyLine__episode hr{
    overflow: unset;
    position: relative;
  border : 0;
  height: 1px; 
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 75%);
}
.historyLine__episode hr:after{
    content: "\25CF";
    font-size: 1.5rem;
    color: white;
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: .2rem solid var(--main-color);
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 2.65rem;
    padding: 0rem;
}

.historyLine__episode:nth-child(even){
 align-self: flex-end;
 text-align: left;
}
.historyLine__episode:nth-child(odd) hr{
    background: linear-gradient(90deg, rgba(255,255,255,0) 20%, rgba(255,255,255,1) 75%);
}
.historyLine__episode:nth-child(odd) hr:after{
    left: auto;
    right: 0;
    transform: translate(50%, -50%);
}
.historyLine__subtitle{
    margin: 0rem 3rem;
    line-height: normal;
    margin-top: 1.5rem;
}
.historyLine__year{
    font-size: 4rem;
    color: var(--main-color);
    margin: 2rem 3rem;
    line-height: normal;
    margin-bottom: 1rem;
}
.historyLine__content{
    margin: .5rem 3rem;
    max-width: 70rem;
}
.historyLine__holder{
    margin: 6rem 0;
}



@media only screen and (max-width: 600px) {

    /*history line*/
    .historyLine__content{
        margin: .5rem 1rem;
    }
    .historyLine__verticalLine{
        left: 0;
    }
    .historyLine__episode{
        width: 100%;
        text-align: left;
    }
    .historyLine__episode:nth-child(odd) hr{
        background: linear-gradient(
90deg
, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 75%);
    }

    .historyLine__episode:nth-child(odd) hr:after{
        left: 0;
        transform: translate(-50%, -50%);
    }
  }

