.turn_image {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.turn_image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
    border-radius: 0.5rem;
}

.turn_image-overlay {
    position: absolute;
    top: 40%;
    right: 50%;
    transform: translate(50%, -50%);
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    z-index: 2;
    width: 100%;
}

.turn_image-button {
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    background-color: #bccdf7;
    color: #000000;
    padding: 8px 20px;
    border-radius: 7%;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    overflow: hidden;
}

.turn_image-button::before {
    content: '';
    position: absolute;
    top: 100%;
    right: -100%;
    width: 200%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.5s ease;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
}

.turn_image-button:hover {
    background-color: #92affa;
}

.turn_image-button:hover::before {
    right:100%;
}

.bg_img{
    width: 100%; 
    height: 250px;
}