.galleryPerson.desctopGallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1224px;
    margin: 0 auto 25px;
}        
        
.conteinerImage {
    position: relative;
    height: 190px;
}

.elemGallery {
    width: 190px;
    margin: 0 7px 21px;
    background: #fff;
    border: 0;
    border-radius: 7px;
    transition: all .2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.18), 0 3px 3px rgba(0,0,0,.06);
    font-family: fontawesome-pro;
}
.elemGallery:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.22);
    cursor: pointer;
}


.conteinerImage img {
    width: 190px;
    height: 190px;
    border-radius: 7px 7px 0 0;
}


.time, .description, .dots {
    position: absolute;
}



.time {
    top: 5px;
    left: 5px;
    padding: 1px 5px 0;
    font-size: 11px;
    font-style: italic;
    line-height: 14px;
    background: #7c4dff;
    font-weight: 500;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    width: fit-content;
    border-radius: 50%;
}
.dots {
    color: #fff;
    bottom: auto;
    left: auto;
    top: 6px;
    right: 10px;
    font-size: 8px;
    line-height: 14px;
    text-align: right;
}
.description {
    bottom: 0;
    left: 0px;
    width: 190px;
    overflow: hidden;
    padding: 10px 10px 5px;
    background: linear-gradient(180deg,transparent,rgba(0,0,0,.5));
    font-style: normal;
    color: #dbdbdb;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.description i {
    color: #FF562D;
}
.conteinerContent {
    padding: 6px 10px 8px;
}

.name {
    margin-bottom: 2px;
    font-weight: bold;
    font-size: 17px;
    line-height: 22px;
    color: #414141;
}

.address, .dopAddress {
    font-size: 13px;
    line-height: 19px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
    font: inherit;
    vertical-align: baseline;
}

.address {
    color: #4b4b4b;

}

.dopAddress {
    color: #979797;
}
        
        
        
        


.galleryPerson.mobilGallery {
    display: none;
}
@media (max-width: 1000px) {
    .galleryPerson.desctopGallery {
        display: none;
    }
    .galleryPerson.mobilGallery {
        display: flex;
        flex-direction: column;
        margin: 0;
    }
    .elemGallery {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: fit-content;
        margin: 0;
        border-radius: 0;
        border: 0;
        border-top: 1px solid #ebebeb;
        box-shadow: none;
        padding: 7px 12px 0 0;
    }
    .conteinerImage {
        position: relative;
        height: fit-content;
    }
    .conteinerImage img {
        width: 80px;
        height: 80px;
        border-radius: 7px;
        border: 1px solid #cec8c8;
    }
    
    .description {
        position: static;
        padding: 0;
        background: none;
        margin-bottom: 1px;
        font-style: italic;
        font-size: 14px;
        line-height: 18px;
        color: #757575;
        width: fit-content;
    }
    .dots {
        bottom: 3px;
        right: 40%;
        /* left: auto; */
        top: auto;
        font-size: 5px;
        line-height: 14px;
        text-align: right;
    }
    .time {
        top: 5px;
        left: -5px;
        padding: 1px 3px 0;
    }
    
    .mt-5:not(.py-5) {
        max-width: 100%;
    }
    .main-screen .container {
        margin-left: auto;
    }
    
}