/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2026 | 05:22:23 */
/*======================================
    RESET
======================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* body{


    color:#111827; 
    line-height:1.6;
} */

img{
    max-width:100%;
    display:block;
}

/*======================================
    EVENTS GRID
======================================*/

.events-section{
	font-family: "Plus Jakarta Sans", Sans-serif;
    width:100%;
    max-width:1320px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

/*======================================
    CARD
======================================*/

.event-card{
    width:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s ease;
}

/* .event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
} */

/*======================================
    IMAGE
======================================*/

.event-image{
    position:relative;
    overflow:hidden;
    height:250px;
}

.event-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.event-card:hover .event-image img{
    transform:scale(1.08);
}

/*======================================
    DATE
======================================*/

.event-date{

    position:absolute;
    top:20px;
    left:20px;

    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:#5B34F4;
    color:#fff;

    border-radius:10px;

    font-size:14px;
    font-weight:600;
}

.event-date svg{
    width:18px;
    height:18px;
}

/*======================================
    CONTENT
======================================*/

.event-content{
    padding:25px;
}

.event-content h3 a{
	color: #20376B !important;
    font-size:20px;
    line-height:1.2;
    font-weight:700 !important;
	 display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	overflow: hidden;
    text-overflow: ellipsis;
}
.event-content h3 a:hover{
	color: #217C3E !important;
	background: none;
}

.event-content ul {
    list-style: none;
	padding-top: 20px;
    margin: 0 !important;
}

.event-content ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom: 10px;
    color:#616977;
    font-size:16px;
}

.event-content .dashicons{
    color: #20376B !important;
    font-size: 20px;
    width:18px;
    height:18px;
}

/*======================================
    BUTTON
======================================*/

.event-det-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:160px;
    height:52px;
    text-decoration:none;
    background:#FFE5F4;
    color:#E94090;
    font-size:17px;
    font-weight:700;
    transition:.3s;
    clip-path:polygon(0 0,92% 0,100% 50%,92% 100%,0 100%);
}

.event-content a:hover{

    background:#5B34F4;
    color:#fff;
}

/*======================================
    LAPTOP
======================================*/

@media(max-width:1199px){

.events-section{

grid-template-columns:repeat(2,minmax(0,1fr));

}

}

/*======================================
    TABLET
======================================*/

@media(max-width:767px){

.events-section{

grid-template-columns:1fr;

}

.event-image{

height:220px;

}

.event-content{

padding:20px;

}

.event-content h3{

font-size:26px;

}

.event-content ul li{

font-size:16px;

}

.event-content a{

width:100%;

}

}

/*======================================
    MOBILE
======================================*/

@media(max-width:480px){

.events-section{

padding:20px 10px;

}

.event-content{

padding:18px;

}

.event-content h3{

font-size:22px;

}

.event-date{

font-size:12px;
padding:8px 14px;

}

}