

/*-----------Proiecte.cshtml------------*/
.proiecte-container {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}

/** --- proiect card Element --- ***/
.proiect-card-container {
    text-decoration: none;
    color: #000000;
    width: calc(25% - 10px);
    margin-bottom: 50px;
    transition: transform .5s;
    min-width: 250px;
}

    .proiect-card-container:not(:nth-child(4n)) {
        margin-right: 10px;
    }

    .proiect-card-container:hover {
        transform: scale(1.04);
    }

.proiect-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px 1px gray;
    padding: 10px;
    background-color: #FFFFFF;
    height: 410px;
}

.proiect-card-banner {
    height: 43px;
    width: 100%;
    object-fit: contain;
}

.proiect-card-title {
    text-align: center;
    position: absolute;
    top: 45px;
}

.proiect-card-picture {
    width: calc(100% - 30px);
    height: 190px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 151px;
}

.proiect-card-footer {
    position: absolute;
    bottom: 0;
    width:100%;
}

.proiect-card-footer img {
    width: 100%;
}





/*------ Proiect.cshtml----------*/
.sigleContainer {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    margin:0 18% 0 18%;
}

    .sigleContainer img {
        object-fit: contain;
        max-height: 60px;
    }

.proiect-titlu-container{
    text-align:center;
}
.proiect-titlu {
    font-weight: bold;
    font-size: 21px;
    color: inherit;
}

.sidesection {
   /* width: 80%;*/
    margin:0 10% 0 23%;
}

    .sidesection-element {
        height: 90%;
        width: 90%;
        margin-bottom:4%;
    }

.sidesection-section-title {
    font-weight: bold;
    color: #004990;
    font-size: 20px;
}
/* MENU START HERE */

.current {
    background: #acdcf2 !important;
}

.progress {
    position: sticky;
    top: 62px;
    left: 2rem;
    float: left;
}

    .progress ul {
        list-style: none;
        height: auto;
        /*width: 80px;*/
        display: flex;
        justify-content: space-between;
        flex-flow: column;
        position: relative;
    }

        .progress ul li {
            z-index: 1;
            margin: 5px;
        }

            .progress ul li a {
                text-decoration: none;
                width: 100%;
                font-weight: bold;
                background: #275aa9;
                color: white;
                border: 1px solid #387dae;
                border-radius: 12px;
                padding: 7px;
                display: flex;
                max-width: 200px;
                width:auto;
            }

                .progress ul li a:hover {
                    color: rgba(33,28,25,1);
                }

ul .sideline {
    position: absolute;
    top: 10px;
    left: 25px;
    height: 0px;
    width: 4px;
    background: #514A46;
    border-radius: 20px;
}

.proiect-sectiune-link-imagine-container {
    width: 30%;
}

.proiect-sectiune-link-imagine-container-text {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    height: 5rem;
    align-content: center;
    color: white;
}

@media (max-width: 600px) {
    .sidesection {
        margin: 5px;
    }

    .proiect-card-title {
        font-size: 13px;
    }
    .sideline{
        visibility:hidden;
    }

    .sigleContainer {
        margin: 5px;
    }
        .sigleContainer img {
            max-height: 25px;
        }

    .proiect-sectiune-link-imagine-container {
        width: 100%;
    }
}