/*event style*/
.eventsBox{
    width: 1140px !important;
    max-width: 100%;
    margin: auto;
}
.eventsBox .header_box{
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 50px 0;
    font-family: "poppins";
}
.eventsBox .header_box span{
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.eventsBox .header_box span.active{
    color: blue;
    border-bottom: 2px solid blue;
}
.eventsBox .header_box span:hover{
    color: blue;

}
.bodyContent .box{
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    background-color: #eee;

    margin-bottom: 30px;
    transition: 0.3s;
}
.bodyContent .box:hover{
    box-shadow: 0 25px 40px -20px #85a2ce;
}
.bodyContent .box .date{
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 0;
    display: block;
    width: 18%;
    height: auto;
    position: static;
    background: 0 0;
    color: blue;
    padding: 30px 20px;
}
.bodyContent .box .text_box .title{
    font-size: 26px;
    transition: 0.3s;
    cursor: pointer;
}
.bodyContent .box .text_box .title:hover{
    color: blue;
}
.bodyContent .box .infos_box {
    display: flex;
    margin: 20px 0;
    gap: 12px;
}
.bodyContent .box .infos_box > div {
    display: flex;
    font-size: 14px;
    vertical-align: middle;
    font-weight: 600;
    text-transform: uppercase;
    align-items: center;
    gap: 5px;
    line-height: 20px;
}
.bodyContent .box .infos_box > div i{
    color: #474747;
    font-size: 16px
}
.bodyContent .box img{
    height: 100%;
    width: 30%;
}
.bodyContent .box .text_box{
    padding: 30px 0;
    font-family: "poppins";
    width: 52%;
}
.bodyContent .box .text_box .descriptionBox{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-family: "poppins";
    color: var(--main-p-color);
    text-align: justify;
}
.dontShow{
    display: none;
}
@media screen and (max-width: 768px){
    .bodyContent .box{
        flex-direction: column;
        padding:0 20px;
    }

    .bodyContent .box .date{
        width: 100%;
        padding: 20px 0;
    }
    .bodyContent .box .text_box{
        order: 3;
        width: 100%;

    }
    .bodyContent .box img{
        order: 2;
        width: 100%;
        height: 30%;
    }
}
