/******----- GENERAL -----******/
.page {
    position: relative;
    display: flex;
    background-image: linear-gradient(to bottom,var(--cHeader), var(--cFooter));
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    padding: 5vh;   
    overflow-y: scroll;
}

.detailPage {
    position: relative;
    display: flex;
    background-image: linear-gradient(to bottom,var(--cHeader), var(--cFooter));
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 95vh;
    padding: 5vh;
    flex-direction: column;
}

.pageTitle {
    position: absolute;
    color: white;
    margin: 5vh;
    top: -1rem;
}

/******-----  CARDS -----******/

#filter {
    position: relative;
    top: -15rem;
    display: flex ;
    justify-content: center ;
}

#filter-view {
    display: flex ;
    flex-direction: row ;
    min-width: 50vw;
    justify-content: center ;
    background-color: var(--cFooter);
    list-style-type: none;
    border-radius: 10px


}
.filter-col{
    padding: 0 1rem;
    margin: 0 1vw;
}

.cardContainer {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 20rem;
    width: 75%;
    margin: 0 5%;
    overflow-y: scroll;
    padding: 10px;
}

.card-body {
    height: 60%;
    overflow-y: hidden;
}

#project-cards {
    background-color: var(--cFooter);
    height: 55vh;
}

.card-img-top {
    height: 27vh;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(57, 57, 57, 0.37);
}

/******-----  DETAILS -----******/
.ProjBanner {
    top: 0;
    max-height: 32vh;
    width: 50vw;
    max-width: 800px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
    align-self: center;

}

.detailContainer {
    width: 50vw;
    margin-top: 5vh;
    display: flex ;
    flex-direction: column ;
    align-items: center ;
}

.detailLabel {
    background-image: linear-gradient(to bottom right,var(--cHeader), var(--cFooter));
    border-radius: 25px;
    width: fit-content;
    padding: 2px 10px;
    margin-left: -1rem;;
}

.list-group-item {
    background-color: var(--background);
    color: white;
    min-width: 45vw;
    box-shadow: 1px 2px 10px rgba(255, 255, 255, 0.28);
}

#carouselExampleIndicators {
    width: 30vw;
    margin: 5vh 0;
}

.glass {
    padding: 3rem;
    width: 80vw;
    background: linear-gradient(225deg, rgb(255, 255, 255, .2), rgb(255, 255, 255, 0));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 20px;
    box-shadow: -9px 15px 5px rgba(0, 0, 0, .37);
    z-index: 3;
}

/******-----  DEMOS -----******/
.modal-dialog {
    max-width: 700px;
    width: 90vw;
}
.modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(67, 133, 201, 0.98); 
}
.modal-content {
    height: 50vh;
}

