/* greek-ext */
@font-face {
    font-family: 'Roboto Slab';
    font-display: auto;
    font-style: normal;
    font-weight: 300;
    src: url(Fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf);
}

*{
    margin: 0;
    padding: 0;
}


.bg-main{
    background-color: #141419;
}

.bg-c1{
    background-color: #212128;
}

.of-cover{
    object-fit: cover;
}

.of-contain{
    object-fit: contain;
}

.grid{
    display: grid;
    grid-auto-flow: column;
}

.hover-transparent:hover{
    opacity: 0.5;
}

.centered{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.my-test{
    vertical-align: 
}

.grid div{
    width: auto;
    display: grid;
    grid-auto-flow: row;
}

.grid img{
    border: solid grey thin;
    border-radius: 3%;
}


.page-banner{
    width: 100%;
    height: 50vh;
}

.panel{
    margin-bottom: 3%;
    border-top: solid grey 1px;
    border-bottom: solid grey 1px;
    width: 100%;
    height: 40vh;
}

@media only screen and (max-width:767px){
    .grid{
    display: grid;
    grid-auto-flow: row;
    }

    .grid div{
        display: grid;
        grid-auto-flow: row;
    }
    
    .page-banner{
        width: 100%;
        height: 20vh;
    }
}