.wrapper {
    position: relative;
    width: 100%;
    height: 740px;
    overflow: hidden;
    z-index: 2;
}
.wrapper .img {
    position: absolute;
    width: 100%;
    height: 100%;
    
}
.wrapper .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: circle(0% at 0% 100%);
    transition: all 0.7s;
}
#one:checked ~ .img-1 img,
#two:checked ~ .img-2 img,
#three:checked ~ .img-3 img,
#four:checked ~ .img-4 img,
#five:checked ~ .img-5 img {
    clip-path: circle(150% at 0% 100%);
}
.wrapper .sliders {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
}
.wrapper .sliders label {
    border: 2px solid rgb(142, 197, 252);
    width: 13px;
    height: 13px;
    margin: 0 3px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
input[type="radio"] {
    display: none;
    z-index: 1;
}
.title{
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    top: 0;
    font-size: 65px;
    opacity: 1;
}

#animated-title {
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Slightly below its final position */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition */
    display: inline-block;
    border-right: 2px solid #333; /* Cursor effect */
    animation: blink 0.6s steps(2, start) infinite;
    background-color: #ca0505a6;
    padding: 0 31px;
    border-radius: 5px;
    box-shadow: 0px 0px 9px 0px #212121;
}

#animated-title.active {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to its final position */
    transform: translatez(0);
}



@keyframes blink {
    50% {
        border-color: transparent;
    }
}
