/*  */
.InnerWrapper {
    overflow: hidden;
}

img{
    max-width: 100%;
    object-fit: contain;
}


/**/
.PostsWrap{  
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
    justify-content: space-between;
}

.PostsWrap .SinglePost{ 
    width: 31%;
    margin: 0;
    padding: 20px 15px 30px 15px;
    background-color: #fff;
    box-shadow: 0px 0px 6px rgb(0 0 0 / 30%);
    border-radius: 3px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.PostsWrap .SinglePost .FeaturedImage{ 
    display: block;
    width: 100%;
    height: 175px;
    background-size: cover;
    background-position: center center;
    margin: 0 0 20px 0;
}

.PostsWrap .SinglePost .SinglePostMeta{
    text-align: center;
}

.PostsWrap .SinglePost h2.PostTitle{ 
    font-size: 17px !important;
    line-height: 23px;
    font-weight: 600;
}

.PostsWrap .SinglePost h2.PostTitle a{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 71px;
    color: #333;
    font-weight: 700;
}

.PostsWrap .SinglePost .ReadMoreBtn{ 
    display: block;
    padding: 10px 20px;
    background-color: #206ea9;
    margin: 10px 0 0 0;
}

.PostsWrap .SinglePost .ReadMoreBtn a{ 
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
}

.ShowMoreBtn{
    display: block;
    padding: 10px 20px;
    background-color: #34a201;
    margin: 20px auto 30px auto;
    width: 26%;
    text-align: center;
    box-sizing: border-box;
}

.ShowMoreBtn a{ 
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
}

@media only screen and (max-width:1024px){

    {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .PostsWrap .SinglePost {
        width: 48%;
    }

}

@media only screen and (max-width:600px){

    .PostsWrap .SinglePost {
        width: 100%;
    }

    .ShowMoreBtn{
        width: 100%;
    }

}

/*Top Hero Banner*/
.topHeroBanner {
	width: 100%;
	min-height: 230px;
	padding: 20px;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
.topHeroBanner .InnerWrapper{
    display: flex;
    align-items: center;
}
.topHeroBanner .ContentWrap {
	width: 70%;
	text-align: center;
	margin: 0 auto;
	position: absolute;
	left: 0px;
	right: 0px;
}
.topHeroBanner .ContentWrap .heading {
	display: block;
	font-size: 43px !important;
	line-height: 53px !important;
	color: #fff;
	margin: 0 0 20px 0;
	font-weight: 700;
}
.topHeroBanner .ContentWrap p {
	font-size: 24px;
	color: #fed700;
	line-height: 32px;
	margin-bottom: 0;
}

@media only screen and (max-width:600px){

    .topHeroBanner{
        min-height: 300px;
    }

    .topHeroBanner .ContentWrap{
        width: 90%;
    }

}