.employee {
    padding: 2rem 0;
}

.content-employee {
    display: flex;
    gap: 70px;
    justify-content: center;
}

.card-employee {
    background: var(--Inchcape-Light-Grey);
    border: solid 2px white;
    border-bottom-right-radius: 50px;
    display: flex;
    flex-direction: column;
    width: 420px;
    height: 346px;
    position: relative;
    overflow: hidden !important;
    cursor: pointer;
}

    .card-employee a {
        text-decoration: none;
        width: 100%;
        height: 100%;
        padding: 35px 30px;
    }

.card-employee-container {
    overflow: hidden !important;
    position: relative;
}

    .card-employee-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.card-employee:hover .img-employee {
    transform: scale(1.125);
    transition: all 500ms;
    display: flex;
}

.card-employee:hover .arrow-employee {
    opacity: 1;
    transition: 0.5s;
    transform: translate(0.2rem, -0.2rem);
}

.title-employee {
    font-weight: 700;
    font-size: 14px;
    line-height: 23px;
    color: var(--Inchcape-Dark-Blue);
    font-family: AvantGarde Bk BT;
    margin-top: 1rem;
}

.arrow-employee {
    color: var(--Inchcape-Blue);
    --fa-rotate-angle: 145deg;
    position: absolute;
    right: 6%;
    bottom: 7%;
    opacity: 0.5;
}

.back-text {
    font-size: 20px;
    color: #16BAE7;
    align-self: center;
    justify-self: center;
    margin-top: auto !important;
    margin-bottom: auto !important;
    margin-left: 15px;
}

.backSection {
    display: flex;
    flex-direction: row;
    padding: 30px 30px 30px 30px;
    align-items: center;
    cursor: pointer;
}

.fa-arrow-left {
    font-size: 24px;
    color: #16BAE7;
}

.modalEmployee {
    width: 1000px;
}

.img-employee-modal {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bodyModal {
    margin-bottom: 30px !important;
}

@media(min-width:375px) and (max-width:420px) {
    .employee {
        padding: 1rem;
    }
.arrow-employee {
    bottom: 23%;
}
}

@media(min-width:320px) and (max-width:375px) {
    .employee {
        padding: 1rem;
    }

    .arrow-employee {
        bottom: 23%;
    }

    .card-employee {
        height: 310px;
    }

    .img-employee-modal {
        width: 100%;
        height: auto;
    }
}
