.main_news{
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}
.main_news .main_news_display{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0 5rem;
}
.main_news .main_news_display .carts_main_news{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.main_news .main_news_display .carts_main_news .main_carts{
    width: 100%;
    height: 100%;
    margin-bottom: 4rem;
    position: relative;
}
.main_news .main_news_display .carts_main_news .main_carts .carts{
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.main_news .main_news_display .carts_main_news .main_carts .carts li{
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
}
.main_news .main_news_display .carts_main_news .main_carts .carts li a{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    display: block;
}
.main_news .main_news_display .carts_main_news .main_carts .carts li a::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 20rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    left: 0;
    z-index: 1;
}
.main_news .main_news_display .carts_main_news .main_carts .carts li a img{
    width: 100%;
    height: 40rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.main_news .main_news_display .carts_main_news .main_carts .carts li a .description_cart{
    width: 100%;
    position: absolute;
    left: 3.5rem;
    bottom: 4.7rem;
    z-index: 3;
}
.main_news .main_news_display .carts_main_news .main_carts .carts li a .description_cart h2{
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 2.9rem;
    text-align: left;
    color: #fff;
    margin-bottom: 0.5rem;
    width: 90%;
}
.main_news .main_news_display .carts_main_news .main_carts .carts li a .description_cart .desc{
    display: flex;
    align-items: center;
}
.main_news .main_news_display .carts_main_news .main_carts .carts li a .description_cart .desc p{
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 2rem;
    text-align: left;
    color: #fff;    
}
.main_news .main_news_display .carts_main_news .main_carts .carts li a .description_cart .desc span{
    width: 0.1rem;
    height: 1.1rem;
    background-color: #FFFFFF;
    display: block;
    margin: 0 1rem;
}
.main_news .main_news_display .carts_main_news .main_carts .arrow_right{
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    cursor: pointer;
}
.main_news .main_news_display .carts_main_news .main_carts .arrow_left{
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    cursor: pointer;
}
.main_news .main_news_display .carts_main_news .main_carts .list_dots{
    display: flex;
    position: absolute;
    bottom: 1.7rem;
    left: 50%;
    transform: translateX(-50%);
}
.main_news .main_news_display .carts_main_news .main_carts .list_dots li{
    display: flex;
    align-items: center;
}
.main_news .main_news_display .carts_main_news .main_carts .list_dots li span{
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background-color: #707070;
    display: block;
    margin: 0 0.6rem;
    cursor: pointer;
}
.main_news .main_news_display .carts_main_news .main_carts .list_dots li.selected span{
    background-color: #DF2820;
}
.main_news .main_news_display .carts_main_news .main_articles_cards{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li{
    width: 48%;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li a{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #161616;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li a .image{
    width: 100%;
    max-height: 22rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li a .image img{
    width: 100%;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li a .image::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 10rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 0;
    left: 0;
    z-index: 2;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li a .desc{
    padding: 0 1.2rem 1.8rem;
    width: 100%;
    position: relative;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li a .desc span{
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.1rem;
    text-align: left;
    color: #FFFFFF;
    padding: 0.4rem 1.7rem 0.7rem;
    background-color: #cc9d35;
    border-radius: 1.2rem;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 3;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li a .desc h3{
    font-weight: bold;
    font-size: 1.9rem;
    line-height: 2.1rem;
    text-align: left;
    color: #fff;
    padding: 1.8rem 0 1.5rem;
}
.main_news .main_news_display .carts_main_news .main_articles_cards li a .desc p{
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.4rem;
    text-align: left;
    color: #cc9d35;
}
.main_recent{
    width: 24%;
    display: flex;
    flex-direction: column;
}
.main_recent h2{
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 3.6rem;
    text-align: left;
    color: #df2820;
    padding-top: 1rem;
    margin-bottom: 2rem;
    position: relative;
}
.main_recent h2::after{
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 0.5rem;
    background-color: #DF2820;
    left: 0;
    bottom: -2rem;
}
.main_recent ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.main_recent ul li{
    width: 100%;
    height: 100%;
    padding: 3rem 1rem 1.5rem;
    border-bottom: 0.1rem solid #DF2820;
}
.main_recent ul li a{
    width: 100%;
    height: 100%;
}
.main_recent ul li a h3{
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: left;
    color: #161616;
    padding-bottom: 1.6rem;
}
.main_recent ul li a p{
    font-family: Inter;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2rem;
    text-align: left;
    color: #707070;    
}
.main_articles{
    width: 24%;
    display: flex;
    flex-direction: column;
}
.main_articles h2{
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 3.6rem;
    text-align: left;
    color: #CC9D35;
    padding-top: 1rem;
    margin-bottom: 2rem;
    position: relative;
}
.main_articles h2::after{
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 0.5rem;
    background-color: #CC9D35;
    left: 0;
    bottom: -2rem;
}
.main_articles ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.main_articles ul li{
    width: 100%;
    height: 100%;
    padding: 3rem 1rem 1.5rem;
    border-bottom: 0.1rem solid #CC9D35;
}
.main_articles ul li a{
    width: 100%;
    height: 100%;
}
.main_articles ul li a h3{
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: left;
    color: #161616;
    padding-bottom: 1.6rem;
}
.main_articles ul li a .author{
    display: flex;
    align-items: center;
}
.main_articles ul li a .author .image img{
    border-radius: 50%;
    width: 5.6rem;
    height: 5.6rem;
}
.main_articles ul li a .author .desc{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 1rem;
    justify-content: center;
}
.main_articles ul li a .author .desc h4{
    font-family: Inter;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.8rem;
    text-align: left;
    color: #707070;
    padding-bottom: 0.5rem;   
}
.main_articles ul li a .author .desc p{
    font-family: Inter;
    font-weight: normal;
    font-size: 1.3rem;
    line-height: 1.8rem;
    text-align: left;
    color: #707070;      
}
.banner_donativo{
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(239,239,239,1) 0%, rgba(239,239,239,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
}
.banner_donativo .content{
    width: 100%;
    height: 100%;
    position: relative;
}
.banner_donativo .content .image{
    width: 100%;
    height: 100%;
    border-radius: 1.9rem;
    position: relative;
    z-index: 1;
}
.banner_donativo .content .image img{
    width: 100%;
    height: 100%;
    border-radius: 1.9rem;
}
.banner_donativo .content .info{
    position: absolute;
    top: 7rem;
    left: 10rem;
    z-index: 2;
}
.banner_donativo .content .info h2{
    font-weight: 400;
    font-size: 8rem;
    line-height: 8.5rem;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 5rem; 
}
.banner_donativo .content .info h2 strong{
    font-weight: bold;
    font-style: italic;
}
.banner_donativo .content .info p{
    font-weight: 400;
    font-size: 2.7rem;
    line-height: 3.2rem;
    text-align: left;
    color: #FFFFFF;
}
.banner_donativo .content a{
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 2.6rem;
    text-align: center;
    color: #DF2820;
    background-color: #FFFFFF;
    padding: 0.8rem 5.6rem 1.5rem;
    border-radius: 0.7rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4rem;
    z-index: 3;
}
.articles{
    width: 100%;
    height: 100%;
    background-color: #EFEFEF;
}
.articles .content{
    width: 100%;
    height: 100%;
    padding: 5rem 0 10rem;
}
.articles .content h2{
    font-weight: bold;
    font-size: 5rem;
    line-height: 5.5rem;
    text-align: center;
    color: #cc9d35;
    position: relative;
    margin-bottom: 7rem; 
}
.articles .content h2::after{
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    width: 40rem;
    height: 0.5rem;
    background-color: #cc9d35;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2rem;
}
.articles .content .columns{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.articles .content .columns .articles_left{
    width: 24%;
    display: flex;
    flex-direction: column;
}
.articles .content .columns .articles_left li{
    width: 100%;
    height: 100%;
    padding-bottom: 4.5rem;
}
.articles .content .columns .articles_left li a{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.articles .content .columns .articles_left li a .image{
    width: 100%;
    max-height: 22rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.articles .content .columns .articles_left li a .image img{
    width: 100%;
}
.articles .content .columns .articles_left li a .desc{
    width: 100%;
}
.articles .content .columns .articles_left li a .desc h3{
    font-weight: bold;
    font-size: 1.9rem;
    line-height: 2.1rem;
    text-align: left;
    color: #161616;
    padding: 1.5rem; 
}
.articles .content .columns .articles_left li a .desc .author_date{
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.1rem solid #707070;
}
.articles .content .columns .articles_left li a .desc .author_date .date{
    font-family: Inter;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.1rem;
    text-align: left;
    color: #707070;    
}
.articles .content .columns .articles_left li a .desc .author_date .author{
    display: flex;
    align-items: center;
}
.articles .content .columns .articles_left li a .desc .author_date .author img{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}
.articles .content .columns .articles_left li a .desc .author_date .author p{
    font-family: Inter;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-align: left;
    color: #707070;
    margin-left: 1rem;  
}
.articles .content .columns .article_main_center{
    width: 48%;
    height: 100%;
}
.articles .content .columns .article_main_center a{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.articles .content .columns .article_main_center a .image{
    width: 100%;
    max-height: 41rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.articles .content .columns .article_main_center a .image img{
    width: 100%;
}
.articles .content .columns .article_main_center a .desc{
    width: 100%;
    height: 100%;
    padding: 1.1rem 1.3rem;
}
.articles .content .columns .article_main_center a .desc .author_date{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding-bottom: 1.1rem;
}
.articles .content .columns .article_main_center a .desc .author_date .date{
    font-family: Inter;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 2rem;
    text-align: left;
    color: #707070;
    margin-right: 2rem;   
}
.articles .content .columns .article_main_center a .desc .author_date .author{
    display: flex;
    align-items: center;
}
.articles .content .columns .article_main_center a .desc .author_date .author img{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}
.articles .content .columns .article_main_center a .desc .author_date .author p{
    font-family: Inter;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-align: left;
    color: #707070;
    margin-left: 1rem;
}
.articles .content .columns .article_main_center a .desc h3{
    font-weight: bold;
    font-size: 3rem;
    line-height: 3.4rem;
    text-align: left;
    color: #161616;
    padding-bottom: 1.7rem;  
}
.articles .content .columns .article_main_center a .desc .description{
    width: 100%;
    height: 100%;
}
.articles .content .columns .article_main_center a .desc .description p{
    font-family: Inter;
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 2.2rem;
    text-align: left;
    color: #707070;
    padding-bottom: 1rem;   
}
.articles .content .columns .articles_right{
    width: 24%;
    display: flex;
    flex-direction: column;
}
.articles .content .columns .articles_right li{
    width: 100%;
    height: 100%;
    padding-bottom: 4.5rem;
}
.articles .content .columns .articles_right li a{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.articles .content .columns .articles_right li a .image{
    width: 100%;
    max-height: 22rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.articles .content .columns .articles_right li a .image img{
    width: 100%;
}
.articles .content .columns .articles_right li a .desc{
    width: 100%;
}
.articles .content .columns .articles_right li a .desc h3{
    font-weight: bold;
    font-size: 1.9rem;
    line-height: 2.1rem;
    text-align: left;
    color: #161616;
    padding: 1.5rem; 
}
.articles .content .columns .articles_right li a .desc .author_date{
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.1rem solid #707070;
}
.articles .content .columns .articles_right li a .desc .author_date .date{
    font-family: Inter;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: rem;
    text-align: left;
    color: #707070;    
}
.articles .content .columns .articles_right li a .desc .author_date .author{
    display: flex;
    align-items: center;
}
.articles .content .columns .articles_right li a .desc .author_date .author img{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}
.articles .content .columns .articles_right li a .desc .author_date .author p{
    font-family: Inter;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-align: left;
    color: #707070;
    margin-left: 1rem;  
}
.campaing{
    width: 100%;
    height: 100%;
    background-color: #CC9D35;
}
.campaing .content{
    width: 100%;
    height: 100%;
    padding: 5rem 0 8.5rem;
}
.campaing .content h2{
    font-weight: bold;
    font-size: 5rem;
    line-height: 5.5rem;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    margin-bottom: 11rem;
}
.campaing .content h2::after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    width: 40rem;
    height: 0.5rem;
    background-color: #FFFFFF;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2rem;
}
.campaing .content ul{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
}
.campaing .content ul li{
    width: 32%;
}
.campaing .content ul li a{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #161616;
}
.campaing .content ul li a .image{
    width: 100%;
    height: 29.6rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}
.campaing .content ul li a .image img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.campaing .content ul li a .image::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 10rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 0;
    left: 0;
    z-index: 2;
}
.campaing .content ul li a .desc{
    padding: 0 1.4rem 2.9rem;
    width: 100%;
    position: relative;
    min-height: 27.1rem;
    display: flex;
    flex-direction: column;
}
.campaing .content ul li a .desc span{
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.1rem;
    text-align: left;
    color: #FFFFFF;
    padding: 0.4rem 1.7rem 0.7rem;
    background-color: #cc9d35;
    border-radius: 1.2rem;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 3;
}
.campaing .content ul li a .desc h3{
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 2.8rem;
    text-align: left;
    color: #fff;
    padding: 2.7rem 0 1.8rem; 
}
.campaing .content ul li a .desc .description{
    font-family: Inter;
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 2rem;
    text-align: left;
    color: #fff;    
}
.campaing .content ul li a .desc .date{
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2.5rem;
    text-align: left;
    color: #cc9d35;
    margin-top: auto;     
}
.banner_donativo_black{
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(204,157,53,1) 50%, rgba(204,157,53,1) 100%);
}
.banner_donativo_black .content{
    width: 100%;
    height: 100%;
    position: relative;
}
.banner_donativo_black .content .image{
    width: 100%;
    height: 100%;
    border-radius: 1.9rem;
    position: relative;
    z-index: 1;
}
.banner_donativo_black .content .image img{
    width: 100%;
    height: 100%;
    border-radius: 1.9rem;
}
.banner_donativo_black .content .info{
    position: absolute;
    top: 7rem;
    left: 10rem;
    z-index: 2;
}
.banner_donativo_black .content .info h2{
    font-weight: 400;
    font-size: 6.2rem;
    line-height: 6.7rem;
    text-align: left;
    color: #FFFFFF;
    padding-bottom: 0.5rem; 
}
.banner_donativo_black .content .info h3{
    font-weight: bold;
    font-style: italic;
    font-size: 6.2rem;
    line-height: 6.7rem;
    text-align: left;
    color: #DF2820;
    margin-bottom: 3rem; 
}
.banner_donativo_black .content .info p{
    font-weight: 400;
    font-size: 2.7rem;
    line-height: 3.2rem;
    text-align: left;
    color: #FFFFFF;
}
.banner_donativo_black .content .info p strong{
    font-weight: bold;
}
.banner_donativo_black .content a{
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 2.6rem;
    text-align: center;
    color: #DF2820;
    background-color: #FFFFFF;
    padding: 0.8rem 5.6rem 1.5rem;
    border-radius: 0.7rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4rem;
    z-index: 3;
}
.bottom_news{
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}
.bottom_news .content{
    width: 100%;
    height: 100%;
    padding: 5rem 0 4.5rem;
    display: flex;
    justify-content: space-between;
}
.bottom_news .content .police{
    width: 24%;
    display: flex;
    flex-direction: column;
}
.bottom_news .content .police h2{
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 3.6rem;
    text-align: left;
    color: #df2820;
    padding-top: 1rem;
    margin-bottom: 7rem;
    position: relative;
}
.bottom_news .content .police h2::after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 0.5rem;
    background-color: #DF2820;
    left: 0;
    bottom: -2rem;
}
.bottom_news .content .police ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.bottom_news .content .police ul li{
    width: 100%;
    height: 100%;
    padding-bottom: 4rem;
}
.bottom_news .content .police ul li a{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.bottom_news .content .police ul li a .image{
    width: 100%;
    max-height: 22rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.bottom_news .content .police ul li a .image img{
    width: 100%;
}
.bottom_news .content .police ul li a .desc{
    width: 100%;
}
.bottom_news .content .police ul li a .desc h3{
    font-weight: bold;
    font-size: 1.9rem;
    line-height: 2.1rem;
    text-align: left;
    color: #161616;
    padding: 1.5rem;
}
.bottom_news .content .police ul li a .desc .date{
    padding: 1rem 1.5rem;
    border-top: 0.1rem solid #707070;
}
.bottom_news .content .police ul li a .desc .date p{
    font-family: Inter;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.3rem;
    text-align: left;
    color: #707070;    
}
.bottom_news .content .recent_police{
    width: 24%;
    display: flex;
    flex-direction: column;
}
.bottom_news .content .recent_police h2{
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 3.6rem;
    text-align: left;
    color: #df2820;
    padding-top: 1rem;
    margin-bottom: 7rem;
    position: relative;
}
.bottom_news .content .recent_police h2::after{
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 0.5rem;
    background-color: #DF2820;
    left: 0;
    bottom: -2rem;
}
.bottom_news .content .recent_police ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.bottom_news .content .recent_police ul li{
    width: 100%;
    height: 100%;
    padding: 0 1rem 1.5rem;
    border-bottom: 0.1rem solid #DF2820;
    margin-bottom: 3rem;
}
.bottom_news .content .recent_police ul li a{
    width: 100%;
    height: 100%;
}
.bottom_news .content .recent_police ul li a h3{
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: left;
    color: #161616;
    padding-bottom: 1.6rem;
}
.bottom_news .content .recent_police ul li a p{
    font-family: Inter;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2rem;
    text-align: left;
    color: #707070;    
}
.bottom_news .content .religion{
    width: 24%;
    display: flex;
    flex-direction: column;
}
.bottom_news .content .religion h2{
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 3.6rem;
    text-align: left;
    color: #df2820;
    padding-top: 1rem;
    margin-bottom: 7rem;
    position: relative;
}
.bottom_news .content .religion h2::after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 0.5rem;
    background-color: #DF2820;
    left: 0;
    bottom: -2rem;
}
.bottom_news .content .religion ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.bottom_news .content .religion ul li{
    width: 100%;
    height: 100%;
    padding-bottom: 4rem;
}
.bottom_news .content .religion ul li a{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.bottom_news .content .religion ul li a .image{
    width: 100%;
    max-height: 22rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.bottom_news .content .religion ul li a .image img{
    width: 100%;
}
.bottom_news .content .religion ul li a .desc{
    width: 100%;
}
.bottom_news .content .religion ul li a .desc h3{
    font-weight: bold;
    font-size: 1.9rem;
    line-height: 2.1rem;
    text-align: left;
    color: #161616;
    padding: 1.5rem;
}
.bottom_news .content .religion ul li a .desc .date{
    padding: 1rem 1.5rem;
    border-top: 0.1rem solid #707070;
}
.bottom_news .content .religion ul li a .desc .date p{
    font-family: Inter;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.3rem;
    text-align: left;
    color: #707070;    
}
.bottom_news .content .recent_religion{
    width: 24%;
    display: flex;
    flex-direction: column;
}
.bottom_news .content .recent_religion h2{
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 3.6rem;
    text-align: left;
    color: #df2820;
    padding-top: 1rem;
    margin-bottom: 7rem;
    position: relative;
}
.bottom_news .content .recent_religion h2::after{
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 0.5rem;
    background-color: #DF2820;
    left: 0;
    bottom: -2rem;
}
.bottom_news .content .recent_religion ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.bottom_news .content .recent_religion ul li{
    width: 100%;
    height: 100%;
    padding: 0 1rem 1.5rem;
    border-bottom: 0.1rem solid #DF2820;
    margin-bottom: 3rem;
}
.bottom_news .content .recent_religion ul li a{
    width: 100%;
    height: 100%;
}
.bottom_news .content .recent_religion ul li a h3{
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: left;
    color: #161616;
    padding-bottom: 1.6rem;
}
.bottom_news .content .recent_religion ul li a p{
    font-family: Inter;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2rem;
    text-align: left;
    color: #707070;    
}
