.serviceContainer{
    width: 100%;
    height: 100vh;
    position: relative;
}

.serviceButtons{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: black;
}

.singleServiseButton{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
    cursor: pointer;
}

.singleBtnBack{
    width: 98%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    transition: all 1000ms ease-in-out;
}

.exeptionText{
    font-family: 'uniSan';
}

.borderSingle{
    width: 100%;
    height: 0;
    background: linear-gradient(361deg,rgba(254, 218, 0, 1) 0%, rgba(215, 125, 10, 0) 100%);
    position: absolute;
    z-index: 0;
    bottom: 0;
    transition: all 500ms ease-in-out;
}

.shadeBtn{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;

    z-index: 2;
    opacity: 0;
    transition: all 250ms ease-in-out;
    right: 0;
}

.singleServiceTextCont{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 3;
}

.beforSpan{
    width: 30px;
    height: 80px;
    background-color: #ffffff;
    opacity: 0;
    transition: all 550ms ease-in-out;
}

.singleServiceText{
    font-size: 26px;
    font-family: 'castle';
    transform: translateX(250px);
    color: #ffffff;
    opacity: 0;
    transition: all 550ms ease-in-out;
}

.singleServiseButton:hover{
    .singleServiceText{
        transform: translateX(0);
        opacity: 1;
    }
    .beforSpan{
        opacity: 1;
        height: 40px;
        width: 15px;
    }
    .shadeBtn{
        opacity: 1;
    }
    .borderSingle{
        height: 100%;
    }
}