
/* =========================
   GLOBAL
========================= */
.empcont{
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
}


.emp-ar{
	float: right;
	text-align: right;
}
.emp-en{
	float: left;
	text-align: left;
}

.employee-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* =========================
   GRID
========================= */
.employee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
	margin-top: 30px
}

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

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

/* =========================
   CARD
========================= */
.employee-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    transition: transform .4s ease;
	height: 480px
}

.employee-card:hover {
    transform: translateY(-10px);
}
	
	.employee-content{
	height: 200px;
	z-index: 1;
		position: absolute
	}
/* =========================
   IMAGE
========================= */
.employee-image img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
	    border-radius: 15px;
}

/* =========================
   SOCIAL ICONS
========================= */
.employee-socials {
    position: absolute;
    left: 10%;
    bottom: 20%;
    background: #fff;
    border-radius: 30px;
    padding: 10px 8px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;

    opacity: 0;
    transform: translateY(15px) scale(0.95);
    
    transition:
        opacity .45s ease,
        transform .6s cubic-bezier(.22,1,.36,1);
}

/* Hover state */
.employee-card:hover .employee-socials {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.employee-socials a {
    width: 38px;
    height: 38px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background .3s;
}

.employee-socials a:hover {
    background: #0a5cff;
    color: #fff;
}

/* =========================
   SHAPES
========================= */
.employee-shape {
    position: absolute;
    left: 0%;
    width: 100%;
    height: 200px;
/*    border-radius: 120px 120px 0 0;*/
/*    transform: rotate(-4deg);*/
	
}

.employee-shape-orange {
	bottom: 25px;
	z-index: 1;
	width: 70%;
    clip-path: url(#employeeClip);	height: 170px;
    left: 10%;
	background-color: #015FC9
	}

.employee-shape-blue {
	bottom: 0;
	z-index: 2;
	width: 90%;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
	clip-path: url(#employeeClip);
	height: 170px;
	background-color: #F2F5F9
}
.employee-card:hover .employee-shape-blue {
    background-color: #015FC9;
}
.employee-card:hover .employee-shape-orange {
    background-color: #ff9f2d;
}
/* =========================
   TEXT
========================= */
.employee-info {
    position: absolute;
    bottom: 22px;
    left: 30px;
    z-index: 3;
    color: var(--dark-color);
}
.employee-card:hover .employee-info {
    color: #ffffff;
}
.employee-info h3 {
    margin: 0;
    font-size: 20px;
}

.employee-info p {
    margin: 6px 0 0;
    font-size: 14px;
    opacity: .9;
}

