.employee_directory{
    width: 90%;
    margin: 0 auto;
    position: relative;
    margin-top: 100px;
    margin-bottom: 100px;
}

form.search_form{
    position: relative;
    margin-bottom: 30px;
}
form.search_form input{
    width: 100%;
    padding: 10px 10px;
    font-size: 1em;
    border: solid 1px #C6C6C6;
    border-radius: 5px;
    margin: 0 auto;
    transition: .2s ease-in;
}
form.search_form input:focus{
    border-color: #00808f;
    outline: none;
}
form.search_form i{
    position: absolute;
    top: 15px;
    right: 10px;
    color: #C6C6C6;

}
.employee_listing .employee {
    padding: 40px;
    background-color: #fff;
    box-shadow: 1px 1px 30px rgba(0 0 0 / .1);
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 5px;
    text-align: center;
    width: 100%;
}
.employee_listing .employee img{
    width: 100px;
    border-radius: 100px;
}

.employee_listing .employee:hover,
.employee_listing .employee:hover h3{
    color: #000;
    background-color: #eff8f8;
    transition: .2s ease-in;
}


@media (min-width: 1000x){
    .employee_listing{
        display: flex; 
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1024px;
        margin-left: auto;
        margin-right: auto;
    }
    .employee_listing .employee{
        width: 300px;
        height: 300px;
        cursor: pointer;
    }
    form.search_form{
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 70px;
		text-align:center;
    }
}
@media (min-width: 1366px){
    .employee_listing .employee{
        width: 320px;
    }
    
}

  .employee-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
			grid-auto-flow: dense;
            gap: 10px;
        }

        .item {
            padding: 10px;
			border: 1px solid #fff;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .employee-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .employee-container {
                grid-template-columns: 1fr;
			}
        }