


=
/*===============================================================*/
#latest_activity_section{
    position: relative;
    padding-top: 20px;
    background: #fff;
}
#latest_activity_section::before{
    content: '';
    width: 100%;
    height: 70%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--background-color);
    opacity: .1;
}
.view_all_latest_activity_main_div{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    row-gap: 20px;
    margin-top: 20px!important;
}
.latest_activity_main_div{
    margin: auto;
    width: 90%;
}
.view_latest_activity_main_div{
    width: min(600px,90%);
}
.latest_activity_main_div .slick-track{
    margin-bottom: 46px;
    margin-top: 30px;
    justify-content: center;
    gap: 30px;
}

.latest_activity_item{
    border-radius: 12px;
    background: #fff;
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.view_all_activity_btn{
    height: 350px;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex!important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 10px;
    transform: .3s;
    color: #fff;
    background: var(--text-color);
    font-size: 30px;
    transition: transform .2s;
}.view_all_activity_btn:hover{
    transform: scale(1.02);
}
.view_all_activity_btn span{
    
    font-weight: bold;
}
.view_all_activity_btn i{
    
    font-size: 20px;
}
.latest_event_content_main_div{
    padding: 20px;
}
.latest_event_content_main_div h2{
    font-size: 22px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limits text to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    line-height: auto;
}
.latest_event_detail{
    color: #818090;
     display: -webkit-box;
    -webkit-line-clamp: 4; /* Limits text to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
.event_img_div{
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    background: #eef4f8;
}
.event_img_div img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.view_activity_btn {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1.5px solid var(--text-color);
    background: rgb(255, 255, 255);
    transition: 0.3s;
}
.view_activity_btn:hover{
    background: var(--text-color);
    color: #fff;
}
.date_share_div{
    display: flex;
    justify-content: space-between;
}
.date_share_div{
    margin-top:10px;
}
.date_share_div .date_div{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #818090;
}
.event_share_div {
    color: #605d5d;
    font-size: 23px;
    cursor: pointer;
    text-shadow: 1px 1px rgba(0, 0, 0,.7);
    line-height: 0;
    padding-left: 20px;
    transition: .2s;
}
.event_share_div:hover{
    color: var(--text-color);
}
.latest_activity_main_div .slick-prev:before,.latest_activity_main_div .slick-next:before,#news-slider .slick-prev:before, #news-slider .slick-next:before{
    font-size: 40px;
    color: var(--text-color);
}


.slick-prev{
    left: -50px;
}


.post_slider{
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
.post_slider .carousel-inner{
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: relative;
    background: #fff;
}
.post_slider .carousel-inner::before{
    content: '';
    height: 100%;
    width: 100%;
    background: var(--background-color);
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
}
.post_slider .carousel-item{
    height: 100%;
    width: 100%;
}
.post_slider_image{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.event_youtube_div{
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
.event_youtube_div iframe{
    height: 100%;
    width: 100%;
}

#youtube_section{
    margin-top: 30px;
    padding-top: 10px;
    background: #fff;
    position: relative;
}
#youtube_section::before{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--text-color);
    opacity: .08;
}
.youtube_div{
    width: 90%;
    margin: auto;
}
.youtube_2{
    width: 100%;
    height: auto;
    border: 2px solid var(--text-color);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    color: var(--text-color);
}

.youtube_2 iframe {
height: 100% !important;
width: 100%!important;
padding: 0 !important;
display: block;
margin: auto !important;

}


#news-slider{
    width: 90%;
    margin: auto;
}












/*---------------------------------------------------------------*/
.spin_border{
    position: relative;
    padding:1px!important;
}
@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}   
.spin_border button{
    border: none!important;
}
.spin_border::after,.spin_border::before{
    content: '';
    top: 0;
    left:0;
    inset:0;
    height: 100%;
    width: 100%;
    background-image:conic-gradient(from var(--angle),transparent 60%,var(--text-color));
    position: absolute;
    border-radius:5px;
    z-index: -1;
    animation: 3s spin_border linear infinite;
}
.spin_border::before{
    filter: blur(1em);
    opacity: .5;
}
@keyframes spin_border{
    from{
        --angle:0deg;
    }to{
        --angle:360deg;
    }
}
/*---------------------------------------------------------------*/










@media only screen and (max-width: 768px) {
    .view_all_latest_activity_main_div{
        grid-template-columns: 1fr;
        width: 92%!important;
    }
    .view_all_activity_btn{
        height: 340px;
    }
    .youtube_div{
        width: 100%;
    }
   
    /*.member_list_div_design::before{*/
        /*clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);*/
    /*    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);*/
    /*    top: unset;*/
    /*    right: 0;*/
    /*    bottom:0;*/
    /*    height: 55px;*/
    /*    width: calc(100% - 30%);*/
    /*    display: none;*/
    /*}*/
    /*.member_list_div_design::after{*/
        /*clip-path: polygon(0 0, 0% 100%, 100% 100%);*/
    /*    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);*/
    /*    top: unset;*/
    /*    bottom: 0;*/
    /*    left: 0;*/
    /*    height: 100%;*/
    /*    width: 30%;*/
    /*}*/
    /*.management_list_div_design::before{*/
    /*    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);*/
    /*    top: unset;*/
    /*    bottom: 0;*/
    /*    left: 0;*/
    /*    height: 100%;*/
    /*    width: 30%;*/
    /*}*/
    /*.management_list_div_design::after{*/
    /*    clip-path: circle(39% at 0 100%);*/
    /*    top: 0;*/
    /*    left: 0;*/
    /*    display: none;*/
    /*}*/
        
    
    
}
