
.user_section
{
    padding: 100px 50px;
    display: flex;
    justify-content: center;
}


.user_section.dark
{
    background-color: var(--background_with_light_gray);   
}

.user_section.light
{
    background-color: var(--background_light_dark);   
}


.user_wrapper
{
    flex-basis: 1100px;
}


.user_container
{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.admin_container
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}


.user_box
{
    border: 2px solid var(--border_color);
    background-color: #fff;
}

.user_img_box
{
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    
}

.user_img_box img
{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.user_content
{
    padding: 10px;
}

.user_title
{
    padding: 0;
    margin: 0;
    line-height: 1.2;
    color: #454545;
}    

.user_position
{
    margin: 0;
    margin-top: 5px;
     color: #777;
}

@media only screen and (max-width: 985px)
{
    .user_section
    {
        padding: 50px;       
    }

    .user_container
    {
        grid-template-columns: repeat(3,1fr);
    }
}


@media only screen and (max-width: 900px)
{ 
    .user_section
    {
        padding: 50px 20px;       
    }

    .user_container
    {
        grid-template-columns: repeat(2,1fr);
    }
}


@media only screen and (max-width: 620px)
{ 
    

    .admin_container
    {
        grid-template-columns: 1fr;
    }
}


@media only screen and (max-width: 520px)
{ 
    

    .user_container
    {
        grid-template-columns: 1fr;
    }
}


.user_wrapper h2, .section-title h2
{
    text-align: center;
    padding-bottom: 0;
}

.user_wrapper h4, .section-title h4
{
    text-align: center;
    font-weight: 300;
    margin-bottom: 50px;
    color: #777;
}

.border_bottom
{
  border-bottom:  1px solid var(--card_bg)
}

.light_dark_section
{
   background-color: var(--background_light_dark);
}

.tst-author h4 
{
    color: var(--title_text_color)
}

.tst-image img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#wrapper 
{
    width: 100vw;
    overflow: hidden;
}

.about_body
{
    max-height: 400px; 
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}