.sd-block-employee {
    padding: 40px;
    border-radius: 10px;
    background-color: #FFF;
    position: relative;
    overflow: hidden;
    border: 1px solid #DEE0E2;
}

.sd-block-employee h3 {
    font-size: 25px;
    color: #12395b;
    margin-bottom: 0;
    z-index: 1;
    position: relative;
}

.sd-block-employee p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

.sd-block-employee ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    z-index: 1;
    position: relative;
}

.sd-block-employee ul a {
    color: #000000;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.sd-block-employee ul svg {
    color: #668119;
    max-width: 20px;
    max-height: 20px;
    margin-right: 10px;
}

.sd-block-employee img {
    position: absolute;
    right: -5px;
    bottom: 0;
    min-height: 100%;
    top: 0;
}

@media screen and (max-width: 1600px) {
    .sd-block-employee {
        padding: 30px;
    }

    .sd-block-employee h3 {
        font-size: 20px;
    }

    .sd-block-employee p {
        font-size: 16px;
    }

    .sd-block-employee ul a {
        font-size: 16px;
    }

    .sd-block-employee ul svg {
        max-width: 18px;
        max-height: 18px;
    }
}

@media screen and (max-width: 1400px) {
    .sd-block-employee h3 {
        font-size: 18px;
    }

    .sd-block-employee ul svg {
        max-width: 16px;
        max-height: 16px;
    }
}

@media screen and (max-width: 767px) {
    .sd-block-employee .employee-image-container {
        height: 60px;
        width: 60px;
        background-color: #f3f5f7;
        border-radius: 5px;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .sd-block-employee img {
        position: absolute;
        right: 0;
        bottom: 0;
        min-height: unset;
        min-width: unset;
        height: 55px;
        width: 55px;
    }
}