/*____________________ IMAGE BLOCK ____________________*/

.image-block {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60vh;
}

.image-block img.full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(30%);
}

.image-block .text1 {
    max-width: 90%;
    font-size: var(--font-30);
    position: absolute;
    bottom: 35%;
    text-align: center;
}

.image-block .text2 {
    font-size: var(--font-36);
    font-family: var(--font-medium);
    position: absolute;
    bottom: 18%;
    text-align: center;
}

.image-block img.arrow {
    position: absolute;
    bottom: 5%;
    max-width: 30%;
}

/*____________________ OSEBJE BLOCK ____________________*/

.osebje-block {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.osebje-block .oseba {
    flex: 0 0 49%;
    margin-bottom: 2%;
    
    box-sizing: border-box;
    background-color: #303030;
    border-radius: 20px;
    box-shadow: 0 0 10px 2px;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 1100px) {
    .osebje-block .oseba {
        flex: 0 1 100%;
        margin-bottom: 30px;
    }
}

.osebje-block > .oseba img {
    margin-top: 30px;
    max-width: 80%;
    max-height: 70vh;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 50%;
}

.osebje-block > .oseba .ime {
    font-family: var(--font-medium);
    font-size: var(--font-30);
    padding-top: 30px;
    text-align: center;
}

.osebje-block > .oseba .opis {
    font-size: var(--font-24);
    padding: 30px;
    text-align: center;
}