.community_page{
    margin: 2rem 0px 10rem;
}
.community_page h1{
	text-transform: uppercase;
	text-align: center;
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.community_page .contents{
	margin-bottom: 1rem;
}
.community_page .box{
	margin-bottom: 2rem;
}
.community_page .box h2{
	font-size: 1.2rem;
	color: #0046A1;
}
.community_page .box .item{
	border: 1px solid #ededed;
    -webkit-box-shadow: 1px 1px 2px 1px rgb(51 51 51 / 10%);
    -moz-box-shadow: 1px 1px 2px 1px rgba(51,51,51,0.1);
    box-shadow: 1px 1px 2px 1px rgb(51 51 51 / 10%);
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 10px 0px 1.5rem;
    padding: 15px;
    border-radius: 10px;
}
.community_page .box .item .box_img{
	width: 100%;
    height: 350px;
    background-position: center;
    background-size: cover;
    position: relative;
}
.community_page .box .item .box_img .type{
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #FFA600;
    color: #FFF;
    padding: 8px 20px;
    font-weight: 500;
}
.community_page .box .item h3{
    font-size: 1.2rem;
    font-weight: 500;
    color: #811815;
    margin: 1rem 0 0;
    text-transform: uppercase;
}
/*======================== for resposive screen ========================*/
/* Medium devices (tablets, 768px and up)*/
@media screen and (max-width: 768px) { 
    .community_page .box .item .box_img {
        height: 230px;
    }
}
/* Small devices (landscape phones, 667px and up)*/
@media screen and (max-width: 668px) {
    .community_page h1 {
        font-size: 1.6rem;
    }
}