/* =====================================
Template Name: 	Mediplus.
Author Name: Naimur Rahman
Website: http://wpthemesgrid.com/
Description: Mediplus - Doctor HTML Template.
Version:	1.1
========================================*/   
/*======================================
[ CSS Table of contents ]
* Global CSS
* Header CSS
	+ Topbar
	+ Logo
	+ Widget
	+ Main Menu
	+ Search
* Hero Slider CSS
* Schedule CSS
* Feautes CSS
* Fun Facts CSS
* Why Choose CSS
* Call to Action CSS
* Portfolio CSS
	+ Portfolio Single CSS
* Services CSS
* Testimonials CSS
* Departments CSS
* Pricing Table CSS
* Clients CSS
* Team CSS
	+ Single Team
* Blog CSS
	+ Latest Blog CSS
	+ Blog Single CSS
	+ Blog Sidebar CSS
* Appointment CSS
* Login CSS
* Register CSS
* Faq CSS
* Contact Us CSS
* Error 404 CSS
* Mail Success CSS
* Newsletter CSS
* Doctor Calendar CSS
* About Us CSS
* Footer CSS
========================================*/ 
/*=============================
	Global CSS 
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap');
*{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  box-sizing: border-box;
}

/*  Variables */
:root {
  --container-color: #1a1e21;
  --second-color: #fd8f44;
  --text-color: #172317;
  --bg-color: #fff;
}
::selection{
  color: var(--bg-color);
  background: var(--second-color);
}
a {text-decoration: none;}
li {list-style: none;}
img {width: 100%;}
section {padding: 3rem 0 2rem;}
.container {
  max-width: 1068px;
  margin: auto;
  width: 100%;
}

/*  Post filter */
.post-filter{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  margin-top: 2rem !important;
}
.filter-item{
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
}
.active-filter{
  background: var(--second-color);
  color: var(--bg-color);
  padding: 4px 10px;
  border-radius: 4px;
}
/*  Posts */
.post{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,auto));
  justify-content: center;
  gap: 1.5rem;
}
.post-box{
  background: var(--bg-color);
  box-shadow: 0 4px 14px hsl(355deg 25% 20% / 15%);
  padding: 15px;
  border-radius: .5rem;
}
.post-img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: .5rem;
}
.category{
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--second-color);
}
.post-title{
  font-size: 1.3rem;
  font-weight: 600;
  color: #b17c32;
  /*  To remain tittle in 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-date{
  display: flex;
  font-size: .87rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 4px;
}
.post-description{
  font-size: .9rem;
  line-height: 1.5rem;
  margin: 5px 0 10px;
  /*  To remain tittle in 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.profile{
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-img{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--second-color);
}
.profile-name{
  font-size: .82rem;
  font-weight: 500;
}
/*  Post content */
.post-header{
  width: 100%;
  height: 500px;
  background: var(--container-color);
}
.post-container{
  max-width: 800px;
  margin: auto;
  width: 100%;
}
.header-content{
  display: flex;
  flex-direction: column;margin-top: 4rem !important;
  align-items: center;
}
#back-home{
  color: gold;
  font-size: 1rem;
}
#back-home:hover{
  color: #b17c32;

}
.header-title{
  width: 90%;
  font-size: 1.5rem;
  color: var(--bg-color);
  text-align: center;
  margin-bottom: 1rem;
}
.header-img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
.post-content{
  margin-top: 10rem !important;
}
.sub-heading{
  font-size: 1.2rem;
}
.post-text{
  font-size: 1rem;
  line-height: 1.7rem;
  margin: 1rem 0;
  text-align: justify;
}
 
.share{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.share-title{
  font-size: 1.1rem;
}
.post_social{
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.post_social .bx{
  font-size: 1.5rem;
}
.post_social .bxl-facebook{
  color: #3b5998;
}
.post_social .bxl-twitter{
  color: #00acee;
}
.post_social .bxl-instagram{
  color: rgb(228,64,95);
}
.post_social .bxl-linkedin{
  color: #0a66c2;
}



