@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Posts
7. Sidebar
8. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Yesteryear&display=swap');
/*********************************
5. Home
*********************************/

.home {
	width: 100%;
	height: 215px;
}

.home::before {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	content: '';
	background: rgba(98, 70, 147, 0.7);
	z-index: 10;
}

.home::before {
	top: 0;
	height: 0;
}

.home_content_container1 {
	align-items: center;
	background-image: url(../images/footer.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 215px;
	display: flex;
	flex-direction: row;
}

.home_content_container {
	top: 40%;
	z-index: 11;
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	border-bottom: 2px solid #ff483a;
}

.home_content {
	padding-bottom: 50px;
}

.home_title {
	font-size: 40px;
	color: #FFFFFF;
	margin-top: 2px;
	line-height: 1.2;
	font-weight: 700;
}

.wrapper {
	margin-bottom: 25px;
	margin-top: 25px;
}

.gallery-thumbs .content {
	width: 100%;
	top: 0;
	bottom: 0;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: background-color .3s ease;
	display: flex;
	flex-direction: row;
	vertical-align: middle;
	align-items: center;
}

.gallery-thumbs .content .home_text {
	margin-top: 0px;
}

.wrapper:nth-child(odd) .gallery a.viewMoreQuotes {
	right: 0;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.wrapper:nth-child(even) .gallery a.viewMoreQuotes {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	left: 0;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.breadcrumbs {
	margin-top: 9px;
}

.breadcrumbs ul li:not(:last-child)::after {
	display: inline-block;
	content: '/';
	margin-left: 5px;
	margin-right: 5px;
}

.breadcrumbs ul li,
.breadcrumbs ul li a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.71);
}

.breadcrumbs ul li a {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.breadcrumbs ul li a:hover {
	color: #61e49b;
}

/*********************************
6. Posts
*********************************/
.quotes {
	height: 100%;
	width: 100%;
	/* vertical-align: middle; */
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.quotes h3 {
	font-weight: 700;
}

.quotes a {
	color: black;
	font-weight: 500;
}

.quotes a:hover {
	color: white;
	background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
	;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.quotes img {
	border-radius: 50%;
	height: 200px;
	width: 200px;
	object-fit: cover;
	margin: auto;
	display: block;
}

.content_container {
	margin-top: 15px;
	padding-bottom: 40px;
	background: #FFFFFF;
}

.featured {
	width: 100%;
	background: #FFFFFF;
}

.featured_posts {
	margin-top: 95px;
}

.post_item {
	padding-bottom: 10px;
	width: 100%;
	margin-bottom: 10px;
}

.post_h_large .post_title {
	font-size: 1.5em;
}

.post_v_small:not(:last-child) {
	margin-bottom: 41px;
}

.post_h_large:not(:last-child) {
	margin-bottom: 66px;
}

.post_image {
	width: 250px;	
	height: 250px;
	border-radius: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.featured_title .post_image {
	min-height: 250px;
	background-size: cover;
	background-position: center;
}

.featured_post_image {
	width: 100%;
}

.featured_post_image img {
	max-width: 100%;
}

.featured_post .post_content {
	height: 100%;
}

.post_image img {
	max-width: 100%;
}

.post_v_large .post_content {
	width: 100%;
	padding-top: 38px;
}

.post_v_med {
	margin-bottom: 60px;
}

.post_v_med .post_content {
	width: 100%;
	padding-top: 30px;
}

.post_v_small .post_content {
	padding-top: 0;
}

.menu_post .post_content {
	padding-top: 25px;
}

.post_category {
	display: inline-block;
	height: 29px;
	padding-left: 13px;
	padding-right: 13px;
}

.post_v_small .post_category {
	margin-left: 0;
}

.post_category a {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: #FFFFFF;
	line-height: 29px;
	margin-right: -0.35em;
}

.post_item .post_image .post_title {
	bottom: 25px;
	position: absolute;
	left: 10px;
	color: white;
}

.post_item .post_image .post_title a {
	color: white;
}

a.read_more {
	color: black;
	text-decoration: none;
}

a.read_more:hover {
	background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
	;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
blockquote.post_title p{
	font-family:'Yesteryear', cursive !important;
	font-size:1.5em;
}
blockquote.post_title:before,
blockquote.post_title:after {
	font-family: FontAwesome;
	display: inline-block;
	vertical-align: top;
	height: 40px;
	line-height: 48px;
	font-size: 30px;
	opacity: 1;
}

blockquote.post_title::before {
	content: "\f10d";
	margin-right: 4px;
	margin-left: -8px;
	background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
	;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

blockquote.post_title::after {
	content: "\f10e";
	margin-left: 4px;
	margin-right: -8px;
	background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
	;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
blockquote p{
	font-size: 1.2em;
    line-height: normal;
    color: black;
    padding: 20px;
    display: inline;

}

.post_title a {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.post_v_large .post_title,
.post_h_large .post_title,
.post_v_med .post_title {
	margin-top: 13px;
}

.post_v_large .post_title a,
.post_h_large .post_title a,
.post_v_med .post_title a {
	font-size: 30px;
	color: #000000;
	line-height: 1.2;
}

.post_v_small .post_title {
	margin-top: 18px;
}

.post_v_small .post_title a {
	font-size: 20px;
	color: #000000;
	line-height: 1.2;
}

.post_title a:hover {
	color: #61e49b;
}

.post_info {
	margin-top: 10px;
}

.post_v_small .post_info {
	margin-top: 5px;
}

.post_info>div:first-child::after {
	display: inline-block;
	content: '|';
	margin-left: 12px;
	margin-right: 16px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #838383;
}

.post_author_image {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	overflow: hidden;
}
.post_author_image img{
	width: 24px;
	height: 24px;
	object-fit: cover;
}

.post_author_name {
	margin-left: 14px;
	margin-top: 1px;
}

.post_date {
	margin-top: 1px;
}

.post_author_name a,
.post_date a {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #838383;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.post_author_name a:hover,
.post_date a:hover,
.post_comments a:hover {
	background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
	;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.post_comments a {
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #a1a1a1;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.post_comments a::after {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 2px;
	background: #eaeaea;
	content: '';
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.post_comments a:hover::after {
	background: #61e49b;
}

.post_text {
	margin-top: 29px;
}

.post_text a {
	color: #000000;
}

.post_text a:hover {
	background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
	;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.post_button {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 184px;
	height: 51px;
	background: #61e49b;
	text-align: center;
}

.post_button:hover {
	background: #624693;
}

.post_button a {
	display: block;
	font-size: 12px;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	font-weight: bold;
	line-height: 51px;
}

.posts {
	margin-top: 95px;
}

.load_more {
	margin-top: 91px;
}

.load_more_button {
	width: 264px;
	height: 59px;
	background: #624693;
	border: solid 1px #dcdcdc;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.load_more_button a {
	display: block;
	text-align: center;
	line-height: 59px;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	margin-right: -0.35em;
}

.load_more_button:hover {
	background: -webkit-linear-gradient(left, #ff483a 0, #3b29de 100%);
	background: linear-gradient(to right, #ff483a 0, #3b29de 100%);
	background: -moz-linear-gradient(left, #ff483a 0, #3b29de 100%);
}

/*********************************
7. Sidebar
*********************************/

.sidebar {
	width: 100%;
	margin-top: 0px;
}

.sidebar_title {
	font-size: 18px;
	color: #000000;
}

.sidebar_extra {
	margin-top: 20px;
}

.sidebar_extra a {
	display: block;
}

.sidebar_extra_container {
	width: 100%;
	height: 352px;
	margin-top: 30px;
}

.sidebar_extra_content {
	position: absolute;
	left: 0;
	bottom: 0;
	padding-left: 31px;
	padding-bottom: 25px;
}

.sidebar_extra_title {
	font-size: 60px;
	color: #FFFFFF;
	line-height: 0.75;
}

.sidebar_extra_title:not(:last-child) {
	margin-bottom: 4px;
}

.sidebar_extra_subtitle {
	font-size: 16px;
	color: #FFFFFF;
	margin-top: 9px;
	padding-left: 5px;
}

.sidebar_latest {
	margin-top: 0px;
}

.latest_posts {
	margin-top: 20px;
}

.latest_post:not(:last-child) {
	margin-bottom: 26px;
}

.latest_post_image {
	width: 103px;
	height: 103px;
}

.latest_post_image img {
	max-width: 100%;
}

.latest_post_content {
	padding-left: 22px;
}

.post_category_small {
	display: inline-block;
	height: 22px;
}

.post_category_small a {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	color: #FFFFFF;
	padding-left: 8px;
	padding-right: 10px;
	line-height: 22px;
	letter-spacing: 0.35em;
	margin-right: -0.35em;
}

.latest_post_title {}

.latest_post_title a {
	font-size: 16px;
	color: #000000;
	line-height: 1.75;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.latest_post_title a:hover {
	color: #61e49b;
}

.latest_post_date {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	color: #878787;
	margin-top: 10px;
}

.most_viewed {
	margin-top: 56px;
}

.most_viewed_items {
	margin-top: 64px;
}

.most_viewed_item:not(:last-child) {
	margin-bottom: 26px;
}

.most_viewed_num {
	width: 55px;
	height: 55px;
	font-size: 36px;
	color: #c7c7c7;
	line-height: 0.75;
}

.most_viewed_content {
	padding-left: 6px;
}

.most_viewed_title {
	margin-top: 2px;
}

.most_viewed_title a {
	font-size: 16px;
	color: #000000;
}

.most_viewed_title a:hover {
	color: #61e49b;
}

.most_viewed_date {
	margin-top: 5px;
}

.most_viewed_date a {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	color: #878787;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.most_viewed_date a:hover {
	color: #61e49b;
}

.tags {
	margin-top: 52px;
}

.tags_content {
	margin-top: 20px;
}
