/* Title */

/* .title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 12rem;
    background-image: url('../images/img3.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: title1 1.75s ease-in-out;
}

@keyframes title1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.title h4 {
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

@media only screen and (max-width:700px) {
    .title h4 {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width:420px) {
    .title h4 {
        font-size: 1rem;
    }
} */

/* Main */

.List_wrapper {
    width: 100%;
    height: auto;
    /* border: 2px solid black; */
    margin: 5rem 0;
    margin-bottom: 10rem;
}

.List_container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 1rem;
    width: 80%;
    margin: auto;
    padding-bottom: 5rem;
    /* border: 2px solid black; */
}

.single_announcement_container {
    width: 90%;
    min-height: 70rem;
    /* background: red; */
    animation: single_slide_appear 1.5s ease;
   
}
@keyframes single_slide_appear{
    0%{
        opacity: 0;
        transform: translateX(-100px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}

.single_announcement_container img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}
.description11_container{
    margin: 3rem 0;
    width: 100%;
    
}
.description11_container h3{
    color: black;
    margin-bottom: 1.2rem;
}
.description11_container h4{
    color: black;
    margin:0.8rem 0;
}
.announcement_detail_container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    
}
.description11_container > p,.description11_container > pre{
    color: rgba(3, 3, 3, 0.685);
    white-space: pre-wrap;
}
.announcement_detail{
    margin: 3rem 0;
    width: 50%;
    height: auto;
}

.announcement_detail h4{
    margin-bottom: 1.5rem;
}
.announcement_detail p{
    display: inline-block;
    width: 80px;
    line-height: 2rem;
}
.announcement_detail span{
    color: rgba(70, 70, 70, 0.616);
    display: inline-block;
}
.announcement_detail a{
    color: #FF3115;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    margin-left: 2rem;
}
.announcement_detail a i{
    font-size: 2rem;
    margin-right: 1rem;
}
@media screen and (max-width:1520px) {}

@media screen and (max-width:1250px) {
    .description11_container{
        font-size: 0.8rem;
    }
    .announcement_detail p{
        font-size: 0.8rem;
    }
    .announcement_detail span{
        font-size: 0.7rem;
    }
    .announcement_detail a{
        font-size: 0.7rem;
    }
    .announcement_detail a i{
        font-size: 1.5rem;
        
    }
}

@media screen and (max-width:980px) {
    .announcement_detail{
        margin: 1rem 0;
        width: 100%;
    }
    .announcement_detail p{
        margin-left: 1.5rem;
    }
    .announcement_detail_container{
        flex-direction: column;
    }
}

@media screen and (max-width:680px) {
    .List_container {
       grid-template-columns: 1fr;
    }
    .single_announcement_container {
        width: 100%;
        margin: 0 auto;
        min-height: 60rem;
        overflow: auto;
    }
}

@media screen and (max-width:420px) {}

#search_btn_smt{
   border: 2px solid #fff;

}

.list-img{
    display: flex;
    flex-wrap: wrap;
    border: 2px dashed #ffb4aa;
    width: 100%;
    height: auto;
    padding: 10px;
    gap: 8px;
    /* justify-content: center;
    align-items: center; */
}

.list-img img{
    width: 100px;
    height: 100px;
}

.line1{
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #ff9595;
    margin: 1rem 0;
}
#showmore{
    /* border: 2px solid black; */
    width: 100px;
    height: 100px;
    opacity: 0.9;
    position: relative;
    display: inline-block;
}
#num11{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0e0e0e;
    font-size: 2rem;
    /* font-weight: bold; */
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0.8;
    color: white;
}
@media screen and (max-width:890px) {
    .list-img  img,#showmore{
        width: 80px;
        height: 80px;

    }
    #num11{
        font-size: 1rem;
    }
}
@media screen and (max-width:680px) {
    .list-img  img,#showmore{
        width: 60px;
        height: 60px;
    }
}
.popupslide{
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: rgba(116, 116, 116, 0.795);
    /* opacity: 0.5; */
    transition: all 0.25s ease-in-out;
    visibility: hidden;
    opacity: 0;
    
}
.popupslide.active{
    visibility: visible;
    opacity: 1;
}
.popup-con{
    margin: auto;
    width: 90%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid black; */
    z-index: 0;
}
.popup-btn-group{
    position: absolute;
    top: 50%;
    /* border: 2px solid white; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-btn-group .btn-arrow{
    font-size: 2rem;
    cursor: pointer;
    /* color: white; */
}
.popup-listimg{
    border: 2px solid white;
    width: 80%;
    height: 80%;
    margin: auto;
    background-color: gray;
    opacity: 1;
    position: relative;
    z-index: 2000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mySlides{
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}
.btn-close{
    font-size: 1.5rem;
    position: absolute;
    right: 0%;
    top: 1%;
    cursor: pointer;
    color: white;
    color: black;
}

@media screen and (max-width:890px) {
    
    .btn-arrow{
        font-size: 1.8rem;
    }
    .btn-close{
        right: 1%;
    }
    
    
}
@media screen and (max-width:680px) {
    .popup-btn-group{
        width: 92%;
        top: 12%;
        z-index: 3000;
    }
    
    .popup-listimg{
        width: 95%;
    }


   
}

.boxdetail1{
    display: flex;
    /* flex-direction: column; */

    margin-top: 1.5rem ;
    justify-content: space-between;
    gap: 8px;
    
}
.rdatebox,.obox{
    width: 50%;
    border: 2px dashed #ff9595;
    padding: 10px;
    height: fit-content;
}
.rdatebox span,.obox span{
    color: #FF3115;
}
.rdatebox p{
    margin-left: 16px;
    margin: 1rem 16px;
}
.obox pre{
    white-space: pre-wrap;
    margin: 1rem 16px;
}
