/*.parentDiv {
    background-color: lightcoral;
    padding: 30px;
    min-height: 100vh;
}
*/
.slidingLine {
    /*position: relative;*/
    height: 30px;
    width: auto;
    margin: 0px 0px;
}

.marker {
    position: relative;
    height: 25px;
    overflow: hidden;
}

.visitformTextSliderTitle {
    color: white;
    font-size: clamp(25px, 5vw, 25px);
    letter-spacing: 1px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.slidingLine .visitformTextSliderTitle {
    line-height: 20px;
}

button {
    background-color: white;
}

/* Text 1 */

.cp1 {
    animation: clipOut1 12s cubic-bezier(0, 0, 0, 0.75) infinite forwards;
}

@keyframes clipOut1 {
    /* 1 Stays Put */

    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    /* 1 Arrives */

    3.3% {
        opacity: 1;
        transform: translateY(0px);
    }
    /* 1 Stays */

    3.3%, 29.7% {
        opacity: 1;
        transform: translateY(0px);
    }
    /* 1 Gone */

    33% {
        opacity: 0;
        transform: translateY(-20px);
    }

    33%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Text 2 */

.cp2 {
    animation: clipOut2 12s cubic-bezier(0, 0, 0, 0.75) infinite forwards;
}

@keyframes clipOut2 {
    /* 2 Stays Put */

    0%, 33% {
        opacity: 0;
        transform: translateY(20px);
    }
    /* 2 Arrives */

    36.9% {
        opacity: 1;
        transform: translateY(0px);
    }
    /* 2 Stays */

    36.9%, 62.7% {
        opacity: 1;
        transform: translateY(0px);
    }
    /* 2 Gone */

    66% {
        opacity: 0;
        transform: translateY(-20px);
    }

    66%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Text 3 */

.cp3 {
    animation: clipOut3 12s cubic-bezier(0, 0, 0, 0.75) infinite forwards;
}

@keyframes clipOut3 {
    /* 3 Stays Put */

    0%, 66% {
        opacity: 0;
        transform: translateY(20px);
    }
    /* 3 Arrives */

    69.3% {
        opacity: 1;
        transform: translateY(0px);
    }
    /* 3 Stays */

    69.3%, 95.7% {
        opacity: 1;
        transform: translateY(0px);
    }
    /* 3 Gone */

    99% {
        opacity: 0;
        transform: translateY(-20px);
    }

    99%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


.discover-link:hover{
   text-decoration: none;
   color: #ccc;
}