@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css?family=Bree+Serif&display=swap");

/*==============================
			Root Color
===============================*/
:root {
	--thA_White: #ffffff;
	--thA_Black: #111;
	--thA_Gray: #777;
	--thA_Gray1: #333;
	--thA_Gray2: #666;
	--thA_Gray3: #47505fb2;
	--thA_Gray4: #383838;
	--thA_White2: #ddd;
	--thA_BlackOPCT20: rgba(0, 0, 0, 0.2);
	--thA_Violet: rgb(218, 174, 218);
	--thA_Indigo: rgb(102, 26, 109);
	--thA_Gray5: rgb(165, 165, 165);
}
* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
	font-family: "Bree Serif", sans-serif;
}
.contentfull {
	margin-top: 2rem;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}
p {
	font-weight: 200 !important;
}

/*==============================
     Author profile header
===============================*/
.profile-header {
	background: var(--thA_White);
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 190px;
	position: relative;
	-webkit-box-shadow: 0px 3px 4px var(--thA_BlackOPCT20);
	box-shadow: 0px 3px 4px var(--thA_BlackOPCT20);
}

/*==============================
     Author profile Image
===============================*/
.profile-img {
	float: left;
	width: 340px;
	height: 200px;
}

.profile-img img {
	border-radius: 50%;
	height: 230px;
	width: 230px;
	border: 5px solid var(--thA_White);
	-webkit-box-shadow: 0px 5px 10px var(--thA_BlackOPCT20);
	box-shadow: 0px 5px 10px var(--thA_BlackOPCT20);
	position: absolute;
	left: 50px;
	top: 20px;
	z-index: 3;
	background: var(--thA_White);
}

/*==============================
    Author profile Information
===============================*/
.profile-navig-info {
	float: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 60px;
}

.profile-navig-info h3 {
	font-variant: small-caps;
	font-size: 2rem;
	font-family: sans-serif;
	font-weight: bold;
}

.profile-navig-info .address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-weight: bold;
	color: var(--thA_Gray);
}

.profile-navig-info .address p {
	margin-right: 5px;
}

/*==============================
   Left side Author Information
===============================*/
.left-side {
	position: -webkit-sticky;
	position: sticky;
	top: 0.25rem;
	right: 0;
	height: 100vh;
}
.main-bd {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-right: 15px;
}
.profile-side {
	width: 300px;
	background: var(--thA_White);
	-webkit-box-shadow: 0px 3px 5px var(--thA_BlackOPCT20);
	box-shadow: 0px 3px 5px var(--thA_BlackOPCT20);
	padding: 90px 30px 20px;
	font-family: "Bree Serif", serif;
	margin-left: 10px;
	z-index: 99;
}

.profile-side p {
	margin-bottom: 7px;
	color: var(--thA_Gray1);
	font-size: 14px;
}

.profile-side p i {
	color: var(--thGnrlColor);
	margin-right: 10px;
}

.mobile-no i {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	color: var(--thGnrlColor);
}

.profile-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.profile-side ul {
	padding-left: 2rem;
}

button.chatbtn,
button.followbtn {
	border: 0;
	padding: 10px;
	width: 100%;
	border-radius: 3px;
	background: var(--thGnrlColor);
	color: var(--thA_White);
	font-family: "Bree Serif";
	font-size: 1rem;
	margin: 5px 2px;
	cursor: pointer;
	outline: none;
	margin-bottom: 10px;
	-webkit-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
	-webkit-box-shadow: 0px 5px 7px 0px var(--thA_BlackOPCT20);
	box-shadow: 0px 5px 7px 0px var(--thA_BlackOPCT20);
}

button.chatbtn:hover,
button.followbtn:hover {
	background: var(--th2ndGnrlColor);
}

button.chatbtn i,
button.followbtn i {
	margin-right: 5px;
}

.user-rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.user-rating h3 {
	font-size: 2.5rem;
	font-weight: 200;
	margin-right: 5px;
	letter-spacing: 1px;
	color: var(--thA_Gray2);
}

.user-rating .no-of-user-rate {
	font-size: 0.9rem;
}

.rate {
	padding-top: 6px;
}

.rate i {
	font-size: 0.9rem;
	color: var(--thGnrlColor);
}

/*==============================
Navigation between post, about, Settings
===============================*/
.navig {
	width: 100%;
}

.navig ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	list-style-type: none;
	height: 40px;
	background: var(--thA_White);
	-webkit-box-shadow: 0px 2px 5px var(--thA_BlackOPCT20);
	box-shadow: 0px 2px 5px var(--thA_BlackOPCT20);
}

.navig ul li {
	padding: 10px;
	width: 100%;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navig ul li a {
	color: var(--thA_Black);
}

.navig ul li:hover,
.navig ul li.active {
	-webkit-box-shadow: 0px -3px 0px var(--thGnrlColor) inset;
	box-shadow: 0px -3px 0px var(--thGnrlColor) inset;
}
.tab {
	display: none;
}

.tab {
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.profile-navig-info .address span {
	line-height: 1.9;
}
#about p {
	padding: 1.5rem;
}
/*==============================
    	See more link
===============================*/
#see-more-bio,
#see-less-bio {
	color: blue;
	cursor: pointer;
	text-transform: lowercase;
}

/*==============================
    Post Navigation Content
===============================*/
.tab h1 {
	font-size: calc(16px + 2vw);
	font-family: "Bree Serif", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 20px auto;
}
.tab .text {
	padding: 0.5rem;
	text-align: start;
}
.profile-posts-content {
	display: block;
	width: 100%;
}
.posts-wrapper {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	width: 100%;
	max-width: 820px;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 1rem;
	margin: 0 auto;
}

.post-grid-space {
	max-width: 45%;
	margin: 0.5rem;
}
.author_post {
	border-radius: 1.5rem;
	overflow: hidden;
}

.author_post {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0.5rem;
	background: var(--thA_White);
	-webkit-box-shadow: 2px 2px 5px var(--thA_Gray5);
	box-shadow: 2px 2px 5px var(--thA_Gray5);
}
.author_post .text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.author_post .text h3 a {
	color: var(--thA_Black);
	font-weight: 600;
}
.author_post .text h3 a:hover {
	color: var(--th2ndGnrlColor);
}
.author_post .text p {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
/* After read more*/
.readmore_link {
	display: block;
	width: 100px;
	margin: 1em auto 1em;
	text-align: center;
	font-size: 0.9em;
	color: var(--thA_Black);
	line-height: 1;
	position: relative;
	font-weight: 700;
}

.readmore_link::after {
	content: "\21d2";
	opacity: 0;
	font-size: 22px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.readmore_link:hover::after {
	-webkit-transform: translate(5px, -50%);
	-ms-transform: translate(5px, -50%);
	transform: translate(5px, -50%);
	opacity: 1;
}

.readmore_link:hover,
.readmore_link:hover::after {
	color: var(--th2ndGnrlColor);
}
/*Post Image Section*/
.image {
	position: relative;
	min-height: 10rem;
	max-height: 14rem;
	overflow: hidden;
}
.image img {
	width: 100%;
}
.author_post .image {
	max-height: 10rem;
}

.post_hover_display .image .gradient {
	height: 100%;
	width: 100%;
	bottom: 0;
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(var(--thA_Gray3)),
		to(transparent)
	);
	background: -o-linear-gradient(bottom, var(--thA_Gray3) 0%, transparent 100%);
	background: linear-gradient(0deg, var(--thA_Gray3) 0%, transparent 100%);
	position: absolute;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.post_hover_display:hover .gradient {
	opacity: 1;
}
.info {
	padding-left: 10px !important;
	padding-bottom: 0;
	display: none;
	position: absolute;
	color: var(--thA_White);
	font-weight: bold;
	bottom: 0;
	width: 100%;
	z-index: 2;
	-webkit-animation: fadeUp 0.4s;
	animation: fadeUp 0.4s;
	-webkit-transition: all 2s;
	-o-transition: all 2s;
	transition: all 2s;
}
.info .post-meta {
	padding-left: 0;
	font-size: 11px;
}
.info .post-meta .post-views {
	padding-left: 10px;
}
.post_hover_display:hover .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@-webkit-keyframes fadeUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.info .avatar1 {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}
.info .avatar1 img {
	width: 100%;
	height: 100%;
}
.info .author {
	text-align: start;
	color: var(--thA_White);
}
.info .author:hover {
	color: var(--th2ndGnrlColor);
}

/**----------Pagination----------------**/
.pagination {
	position: relative;
	background: var(--thA_White);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: auto;
	max-width: 450px;
	height: 50px;
	padding: 10px 10px;
	border-radius: 50px;
	-webkit-box-shadow: 0 5px 15px var(--thA_BlackOPCT20);
	box-shadow: 0 5px 15px var(--thA_BlackOPCT20);
}

.pagination li {
	list-style: none;
	margin: 0 5px;
}

.pagination li.pageNumber {
	width: 10%;
	height: 80%;
	text-align: center;
}

.pagination li a {
	display: block;
	text-decoration: none;
	color: var(--thA_Gray4);
	font-weight: 600;
	border-radius: 50%;
}

.pagination li.pageNumber:hover a,
.pagination li.pageNumber.active a {
	background: var(--thA_Black);
	color: var(--thA_White);
}

.pagination li:first-child {
	margin-right: 10px;
	font-weight: 700;
	font-size: 20px;
}

.pagination li:last-child {
	margin-left: 10px;
	font-weight: 700;
	font-size: 20px;
}

/*==============================
    	Form Contact
===============================*/

.contact input {
	background: none;
}
.contact textarea {
	background: none;
}
.contact {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	margin: auto;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.contact::after {
	content: " ";
	display: table;
	clear: both;
}

.contact__form-info,
.contact__form-text {
	width: 100%;
	margin: 0;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.contact__form-info {
	float: left;
}
.contact__form-text {
	float: right;
}

.contact__form-field {
	position: relative;
}
.contact__form-label {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	font: 700 1.125em "Open Sans", "Helvetica Neue", "Arial", "sans-serif";
	cursor: text;
	pointer-events: none;
}

.contact__form-label-text {
	display: block;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	opacity: 0;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	-o-transition-property: transform, opacity;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
}
.contact__form-input:focus::-webkit-input-placeholder {
	color: transparent;
}
.contact__form-input:focus + .contact__form-label .contact__form-label-text {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.contact__form-label::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 3px;
	background: var(--thA_Black);
	bottom: 1em;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.contact__form-input:focus + .contact__form-label::after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.contact__form-input {
	position: relative;
	width: 100%;
	padding: 0.3em 0;
	border: 0;
	outline: 0;
	margin: 1em 0;
	border-bottom: 3px solid var(--thA_White2);
	vertical-align: bottom;
	font: 400 1.125em "Open Sans", "Helvetica Neue", "Arial", "sans-serif";
}

.contact__form-textarea {
	min-width: 100%;
	max-width: 100%;
	min-height: 110px;
}

.contact__form-submit {
	padding: 0.5em;
	margin: 1em 0;
	background: none;
	border: 3px solid var(--thGnrlColor);
	font: 700 1em "Open Sans", "Helvetica Neue", Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	cursor: pointer;
	opacity: 0.5;
	float: right;
}

.contact__form-submit:hover {
	opacity: 1;
}

@media screen and (min-width: 1020px) {
	.contact {
		min-width: 795px;
		padding-left: 10px;
		margin-left: 20px;
	}
}
/*==============================
    	Media Queries
===============================*/
@media screen and (min-width: 1400px) {
	.tab h1 {
		font-size: 3em;
	}
}
@media (max-width: 1100px) {
	.profile-side {
		width: 250px;
		padding: 90px 15px 20px;
	}

	.profile-img img {
		height: 200px;
		width: 200px;
		left: 50px;
		top: 50px;
	}
}
@media (max-width: 991px) {
	.contentfull {
		margin-top: 0;
	}
	.left-side {
		position: relative;
		height: auto;
	}
	.profile-header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		padding-bottom: 20px;
	}

	.profile-img {
		float: left;
		width: 100%;
		height: 200px;
	}

	.profile-img img {
		position: relative;
		height: 200px;
		width: 200px;
		left: 0px;
	}

	.profile-navig-info {
		text-align: center;
	}
	.main-bd {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-right: 0;
	}

	.profile-side {
		width: 100%;
		text-align: center;
		padding: 20px;
		margin: 5px 0;
	}

	.profile-navig-info .address {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.user-rating {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (max-width: 691px) {
	.post-grid-space {
		max-width: 100%;
	}
	.author_post {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.author_post .image {
		-ms-flex-preferred-size: 40%;
		flex-basis: 40%;
		width: 40%;
		min-height: 8rem;
		max-height: 20rem;
	}
	.author_post .image img {
		width: auto;
		height: 100%;
	}
	.author_post .text {
		width: 60%;
	}
}
@media screen and (max-width: 500px) {
	.posts-wrapper {
		padding: 0;
	}

	.author_post .text h3,
	.author_post .text p {
		overflow: hidden;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.author_post {
		max-height: 12rem;
	}
	.author_post .text h3 {
		font-size: 1.1rem;
	}
	.author_post .text p {
		margin-bottom: 0.5rem;
	}

	.post_hover_display:hover .info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.post_card_info1 {
		padding-left: 0;
	}
}

@media (max-width: 400px) {
	body {
		margin: o;
	}

	.profile-header h3 {
		background: none;
	}
	.profile-navig-info h3 {
		font-size: 1.9rem;
	}

	.profile-navig-info .address p,
	.profile-navig-info .address span {
		font-size: 0.7rem;
	}
}
