.event_filer_panel_wrap{
    display: flex;
}
.event_filer_panel {
    display: flex;
   border: 2px solid #2a3272;
    border-radius: 8px;
    overflow: hidden;
}
.event_filer_panel input{
    display: none;
}
.event_filer_panel input+label{
    display: block;
       padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    margin: 0;
        color: #2a3272;
}
.topic_filter{
    border-right: 1px solid #ccc;
}
.event_filer_panel .topic_filter:last-child{
    border: none;
}
.event_filer_panel input:checked+label{
    background-color: #2a3272;
    color:#fff;
}
.event-info-outer {
    width: 100%;
}
.event_item_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 40px 24px;
    position: relative;
}
.event-item .link_overlay{
    position: absolute;
    display: block;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    color: #242424;
}
.event-item{
    position: relative;   
        border: 1px solid #e8ecf0;
            box-shadow: 0 2px 12px rgba(42, 50, 114, 0.07);   
    backdrop-filter: blur(3px);
    border-radius: 16px;
	overflow: hidden;
	transition:.2s;
}
.event-item:hover{
	box-shadow: 0 8px 28px rgba(42, 50, 114, 0.15);
    transform: translateY(-3px);

}
.event-item .featured{
    position: relative;
    padding-bottom: 56.2%;
    border-radius: 0px;
    overflow: hidden;
}
.event-item .featured img{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	
}
.event-item:hover .featured img{
	
}
.event-date {
    line-height: 1;
    text-transform: uppercase;    
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #242424;
    text-align: center;
    min-width: 44px;
}
.e_d {
    font-size: 16px;
    color: #888;
	margin-bottom: 5px;
}
.e_n {
   font-size: 28px;
    font-weight: 800;
    color: #2a3272;
    line-height: 1;
}
.e_d {
    color: #6b7a8d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.event_d_t {
        flex: 1;
    /* flex-basis: calc(100% - 50px);
    width: calc(100% - 50px); */
}

.event-title {
        font-size: 18px;
    font-weight: 700;
    color: #2a3272;
    margin: 0 0 12px;
}
.event_filer_panel_wrap {
    margin-bottom: 40px;
}

.page-numbers, .page-numbers:hover {
    background: #4460ef;
    padding: 10px 10px;
    display: block;
    line-height: 1;
    color: #fff;
    margin: 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 40px;
    justify-content: center;
    border-radius: 8px;
}
.page-numbers.current, .page-numbers.current:hover{
    background-color: #ccc;
    color:#000;
}
.blog_paginate_wrap.ajax_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:40px
}

.ajax_loader .circle{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.ajax_loader .circle svg{
    margin: auto;
    animation: spin 2s linear infinite;
}
.event_content {     
    padding: 20px 22px 22px;   
}
.event_content .event_info{
       display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;  
    flex-wrap: wrap;
    justify-content: space-between;   
    font-family: inherit;
    font-weight: inherit;
}
.event-time {
    font-size: 13px;
    line-height: 1;
    color: #6b7a8d;
}
.no-event-fount {
    text-align: center;
    font-size: 24px;
}
.event-short-details {
    line-height: 1.2;
    margin-top: 8px;
    font-size: 16px;
    color: #404040;
}
.event-short-details p{
	    font-size: 14px;
    color: #6b7a8d;
    margin: 0;
}
.e_m {
        font-size: 11px;
    font-weight: 700;
    color: #2a3272;
    text-transform: uppercase;
    letter-spacing: .06em;
	    margin-bottom: 5px;
}
.event-badge{
        display: inline-block;
    background: #f5b800;
    color: #2a3272;
    font-weight: 700;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 100px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
@keyframes spin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@media (max-width: 600px){
    .event_item_wrapper{
        grid-template-columns: 1fr;
    }
}