
:root {
    --top-position: 0;
    --mobile-top-searc:5px ;
    --mobile-top-postion: relative;
}
.bgBlack{
    position: fixed;
    top: var(--top-position-height);
    background-color:
    #fff;width: 95%;
    z-index: 10;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 1420px;
    border-radius: 4px;
    max-height: 95vh;
    min-height: 80vh;
    color:#000;
    overflow: auto
}
.img-container img{
    max-height: 295px
}
.mybtnmore{
    display: inline-block;padding: 0.8rem 4rem;font-size: 16pt; border-radius: 30px;
    background-color: #000 !important;
    color: #fff !important;
    font-weight: lighter;
    cursor: pointer;
    text-decoration: none !important;
}
.mybtnmore:hover{
    background-color: #fff !important;
    color: #000 !important;
    transition: all .4s ease;
    border: 1px solid #000;
}
.img-container {
    position: relative;
    overflow: hidden;
}
.img-container img {
    width: 100%;
    transition: transform .5s ease;
}
.img-container:hover img {
    transform: scale(1.2);
}
.img-caption {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity .5s ease;
}
.img-container:hover .img-caption {
    opacity: 1;
}
.foms{
    position: relative;
    z-index: 25;
    top: 5px;
}
@supports ((-o-object-fit: cover) or (object-fit: cover))
.findify-components-common--picture__aspect img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media only screen and (max-width: 600px) {
.bgBlack {
        top: 16px;
        z-index: 999;
        height: 95vh;
}
.img-container img{
        max-height: 150px
}
.foms{
        position: var(--mobile-top-postion);
        z-index: 1000;
        width: 90%;
        margin: 0 auto;
        top:  var(--mobile-top-searc);
        right: 0;
        left: 0;
}
.mybtnmore{
       font-size: 12pt;
}
}
