.event_details{
    padding: 60px 0px;
}
.event_details .event_info{
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: sticky;
    top: 140px;
    left: 0;
    text-align: center;
}
.event_details .event_info .from_date{
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}
.event_details .event_info .to_date{
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}
.event_details .event_info .sperator i{
    font-size: 18px;
    margin: 5px 0px;
    color: #047aaa;;
}
.event_details .event_info .location{
    font-size: 14px;
    color: #000;
    margin-top: 14px;
    font-weight: 600;
}
.sahre_event{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.sahre_event a{
    font-size: 14px;
    color: #fff;
    background-color: #333;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
}
.sahre_event a:hover{
    background-color: #047aaa;
}

.event_details .content_event{
    margin-bottom: 20px;
}
.event_details .content_event .image_event{
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}
.event_details .content_event .image_event img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.event_details .content_event h1{
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.event_details .content_event p{
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}
.event_details .content_event iframe{
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
}