
/* CONJOIN EFFECT */

.split-text-container {
    /* display: flex; */
    /* font-size: 2.5rem; */
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
}

.text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.text-part.left {
    transform: translateX(-200%);
    animation-name: slide-in-left;
}

.text-part.right {
    transform: translateX(200%);
    animation-name: slide-in-right;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(200%);
    }
    100% {
        transform: translateX(0);
    }
}

.rotate-animate{
    transform: rotateX(50deg) rotateZ(45deg);
    box-shadow: 16px -16px 10px 4px rgba(0, 0, 0, 0.09);
    margin-bottom: 2rem !important;
}
.rotate-animate:hover{
    transform: rotateX(360deg) rotateY(360deg) !important;
}