

.timeline {
    position: relative;
    width: 1000px;
    display: flex;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    top: 30%;
    left: 0;
    transform: translateY(-50%);
    z-index: 0;
}

.container {
position: relative;
width: 360px;
margin: 0 10px;
z-index: 1;
display: flex;
flex-direction: column; /* Stack items vertically */
align-items: center;    /* Center items horizontally */

    }


    .content {
        width: 300px;
        height: 225px;
        background-color: white;
        border-radius: 8px 8px 0px 0px; 
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

.content:hover {
    transform: scale(1.05);
}

.content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: black;

    /*border-radius: 50%;*/
}
    .content2 {
        width: 295px;
        height: 55px;
        position: relative;
        z-index: 2;
        padding: 4px;
        text-align: left;
        margin-top: 2px;
        border-radius: 0px 0px 8px 8px; 
    }

    .content2 p{
        font-size :14px;
        margin: 0;
        color: black;
        font-weight: bold;
        
       
    }
    .content2 h3{
        font-size : 14px;
        margin: 0;
        color: rgb(255, 255, 255);
        background-color: rgb(202, 0, 0);
        width: 150px;
        text-align: left;
        border-radius: 6px;
        padding: 2px 0px;
       clip-path: polygon(75% 0%, 83% 50%, 75% 100%, 0% 100%, 10% 50%, 0% 0%);
      
    }

.als-container {
    position: relative;
    margin-top: 0;
    width: 100%;
    height: 90%;
    z-index: 0;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
}

.als-viewport {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.als-wrapper {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.als-item {
    position: relative;
    display: block;
    text-align: center;
    cursor: pointer;
    flex: 0 0 auto;
    margin: 0 5px;
    height: 400px;
    width: 370px;
}

.als-prev, .als-next {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

.als-prev {
    top: 53%;
    left: 30px;
    transform: translateY(-50%);
}

.als-next {
    top: 53%;
    right: 30px;
    transform: translateY(-50%);
}

.als-prev:hover, .als-next:hover
{
    scale: 1.15;
    transition: 0.5s ease-in-out;
    
}