
/*******************************/
/********* Service CSS *********/
/*******************************/
.spesial {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.spesial .spesial-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    
}

.spesial .spesial-img {
    position: relative;
    overflow: hidden;
}

.spesial .spesial-img img {
    width: 100%;
}

.spesial .spesial-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    transition: .5s;
    opacity: 0;
}

.spesial .spesial-item:hover .spesial-overlay {
    opacity: 1;
}

.spesial .spesial-overlay p {
    margin: 0;
    color: #ffffff;
}

.spesial .spesial-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #282727;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.spesial .spesial-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 25px;
    font-weight: 700;
    color: #B78D65;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.spesial .spesial-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color:  #000205;
    background: #B78D65;
    border-radius: 0;
    transition: .3s;
}

.spesial .spesial-item:hover a.btn {
    color: #ffffff;

}

