.container.credits{
    margin-top: 5rem;
    padding: 0 3rem;
}

.container.credits > .content{
    transition: all 0.5s ease-out;
}

.container.credits.container.credits.know-more > .content{
    filter: blur(10px);
}

.container.credits.container.credits.know-more > .content *{
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
}

.container.credits > .content > .title-div-extra{
    height: 65vh;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.title-div-credits{
    width: 100%;
    height: 55vh;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.title-div-credits #text-content{
    width: 40%;
    height: 100%;
}
.title-div-credits #image-panel-div{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 4rem;
    justify-content: flex-end;
}

#image-panel-div #image-panel{
    border-radius: 2rem;
    width: 20rem;
    position: relative;
    min-width: 10rem;
    height: 95%;
}

#image-panel p{
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #F41919;
    background-color: transparent;
    font-weight: bold;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease-out;
}

#image-panel .overlay{
    background: transparent;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

#image-panel:hover > p{
    opacity: 1;
    cursor: pointer;
    z-index: 1;
}


#image-panel:before, #image-panel:after {
    content: "";
    position: absolute;
    border-radius: 2rem;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
}
#image-panel:before {
    background: url("../../About/knowMorePage/Assets/Senior Core/gaurav.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 0.5s;
}

#image-panel:after {
    background: linear-gradient(181.85deg, rgba(0, 0, 34, 0) -36.84%, rgba(25, 25, 56, 0.7519) -36.58%),
     url("../../About/knowMorePage/Assets/Senior Core/gaurav.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}

#image-panel:hover:before {
    opacity: 0;
}

.title-div-credits #title{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.13rem;
    text-transform: uppercase;
    font-size: 5rem;
    margin-bottom: 0.1rem;
}
.title-div-credits #subtitle{
    color:rgba(245, 25, 25, 1);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.title-div-credits #description{
    color:white;
    font-size: 1rem;
    margin-top: 3rem;
    height: 40%;
    overflow-y: scroll;
}

.title-div-extra #bottom-line{
    background-color: white;
    width: 40%;
    border-radius: 1rem;
    height: 0.05rem;
}

.container.credits .contributors{
    margin-top: 5rem;
    height: 55vh;
    width: 100%;
    z-index: 10;
}
.container.credits.know-more .contributors{
    z-index: 5;
}

.contributors *{
    z-index: inherit;
}


.contributors > #title{
    color: rgba(245, 25, 25, 1);
    font-size: 3rem;
    letter-spacing: 0.59rem;
    font-weight: bold;
}

.contributors > .scroll-container{
    margin-top: 1rem;
    width: 100%;
    white-space: nowrap;
    -moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}
.scroll-container > .credits-card{
    display: inline-block;
    border-radius: 2rem;
    width: 18%;
    height: 90%;
    position: relative;
    overflow: hidden;
    margin: 1rem;
    background-color: black;
}