.s61-listing-emp-construction {}

.s61-listing-emp-construction>.container {
    position: relative;
    display: flex;
    column-gap: 55px;
    row-gap: 130px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
    .s61-listing-emp-construction>.container {
        row-gap: 90px;
    }

    .construction-emp-item .container .content .title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .construction-emp-item {
        flex: 0 0 100%;
    }
}

/* Emp item */
.construction-emp-item {
    font-family: 'Pretendard', sans-serif;
    flex: 0 0 calc((100% - 110px) / 3);
}

.construction-emp-item .container {}

.construction-emp-item .container .image {
    position: relative;
    overflow: hidden;
}

.construction-emp-item .container .image img {
    width: 100%;
    height: auto;
    display: block;
}


.construction-emp-item .container .image .progress {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    background-color: rgb(44 38 34 / 63%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.construction-emp-item:hover .container .image .progress {
    opacity: 1;
}

.construction-emp-item .container .image .progress .progress-title {
    font-size: 21px;
    font-weight: 200;
    line-height: 32px;
    color: #A49B98;
}

.construction-emp-item .container .image .progress .progress-item {
    display: flex;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    font-size: 0;
    animation: .4s ease-out reverse;
}

.construction-emp-item .container .image .progress .progress-item::after {
    content: attr(data-value) '%';
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 115px;
    margin: 2px;
    border-radius: 50%;
    background: #3A322D;
    font-size: 21px;
    font-weight: 200;
    line-height: 32px;
    color: #A49B98;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .s61-status .container {
        gap: 20px;
    }

    .construction-emp-item .container .image .progress .progress-title,
    .construction-emp-item .container .image .progress .progress-item::after {
        font-size: 15px;
        line-height: 23px;
    }

    .construction-emp-item .container .image .progress .progress-item {
        width: 86px;
        height: 86px;
    }

    .construction-emp-item .container .image .progress .progress-item::after {
        width: 86px;
    }

}

.construction-emp-item .container .content {
    margin-top: 40px;
    position: relative;
}

.construction-emp-item .container .content .title {
    color: #786E6B;
    margin-top: 10px;
    font-size: 45px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.construction-emp-item .container .content .infos {
    color: #A49B98;
    margin-top: 40px;
    font-size: 21px;
    line-height: 32px;
    border-left: 1px solid #FF5500;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: color 0.3s ease;
}

.construction-emp-item:hover .container .content .title,
.construction-emp-item:hover .container .content .infos {
    color: #E1E1DC;
}

.construction-emp-item .container .content .infos .address {
    font-weight: 700;
}

.construction-emp-item .container .content .infos .units_meters{
    margin: 32px 0;
}

@media only screen and (max-width: 1024px) {
    .construction-emp-item{
        flex: 0 0 calc((100% - 55px) / 2);
    }
    .construction-emp-item .container .content .infos {
        font-size: 16px;
        line-height: 21px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .construction-emp-item {
        flex: 0 0 100%;
    }
    .construction-emp-item .container .content .title {
        font-size: 33px;
        line-height: 40px;
    }

    .construction-emp-item .container .content .infos {
        font-size: 15px;
        line-height: 23px;
        margin-top: 25px;
    }

    .construction-emp-item:hover .container .content .infos {
        color: #A49B98;
    }

    .construction-emp-item:hover .container .content .title {
        color: #786E6B;
    }
}