.employee-carousel {
    position: relative;
}

.employee-carousel .carousel__button {
    border: 1px solid #f1f1f1;
}

.employee-carousel .carousel__button.is-prev {
    left: -15px;
}

.employee-carousel .carousel__button.is-next {
    right: -15px !important;
}

.employee-item {
    cursor: move;
}

a.employee {
    color: black;
}

.team-container .employee-wrapper .employee-card-wrapper {
    padding: 25px;
}

.employee-card {
    position: relative;
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s;
}

.employee-card .mask {
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: .0;
    transition: all .3s;
}

.employee-card:hover .mask {
    visibility: visible;
    opacity: .7;
}

.employee-card .mask .detail-icon {
    font-size: 50px;
}

.employee-card .photo {
    height: 400px;
    overflow: hidden;
}

.employee-card .photo img {
    max-width: 100%;
    border-radius: 15px;
}

.employee-card .title {
    text-align: center;
    margin: 25px 0;
}

.employee-card .title h5.small-label {
    font-size: 16px !important;
}

.employee-card .profession {
    text-align: center;
    margin: 25px 0;
}

.employee-card .profession h6.small-label {
    font-size: 14px !important;
}

.employee-wrapper {
    margin: 50px 0;
}

.employee-wrapper.carousel__slide {
    width: 350px !important;
}

.employee-wrapper .employee-photo {
    float: left;
}

.employee-wrapper .employee-photo img {
    max-width: 350px;
    margin-right: 50px;
    margin-bottom: 50px;
    border-radius: 15px;
}

.employee-wrapper .employee-description {
    margin-top: 50px;
}

.employee-certification {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.employee-certification .certificate {
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.employee-certification .certificate img {
    height: 200px;
    width: 300px;
}