.vu-container_activities {
    display: flex;
    flex-direction: column;
    margin: 30px;
    padding: 50px 0px 50px 100px;
    border: 2px solid green;
    border-radius: 3rem;
    background-color: #fff;
    font-family: Oswald, sans-serif;
}
img{
    object-fit: cover
}
.vu-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vu-container_activities_title {
    margin-bottom: 20px;
}

.vu-big-title {
    font-size: 40px;
    font-weight: bold;
    color: #087f23;
    text-transform: uppercase;
    font-family: Oswald, sans-serif;
}

.vu-container_activities_content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.vu-event_content {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-evenly;
}

.vu-event_name {
    font-size: 30px;
    font-weight: bold;
    color: #1c1c1c;
}

.vu-event_decription {
    font-size: 23px;
    color: #333;
    line-height: 1.5;
}

.vu-see_more_btn {
    display: flex;
    width: 8rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: green;
    color: white;
    font-size: 1.2rem;
    -webkit-border-bottom-left-radius: 1.75rem;
    -webkit-border-top-right-radius: 1.75rem;
}

.vu-see_more_btn:hover {
    background-color: #146b00;
    transform: translateX(0.3rem) translateY(0.3rem);
}

.vu-slider_img {
    width: 57%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vu-event_img {
     width: 650px;
    height: 380px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.vu-dots {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    /*justify-content: center;*/
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: green;
}
