/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #161A2D;
	--secondary-color			: #F6F6F7;
	--bg-color					: #FFFFFF;
	--text-color				: #737681;
	--accent-color				: #e11d48;
	--white-color				: #FFFFFF;
	--divider-color				: #161A2D1A;
	--dark-divider-color		: #FFFFFF1A;
}



.container{
	max-width: 1500px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}


/************************************/
/*** 	18. About Us Page css     ***/
/************************************/

.page-header{
	position: relative;
	background: url('./images/alina.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 7% 0 7%;
	overflow: hidden;
}

.page-header::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-box{
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
    font-size: 2em;
    line-height: 1.1em;
	font-weight: 800;
    letter-spacing: -0.02em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}
.page-header-box ol{
	position: relative;
	margin: 0;
	padding: 0;
    justify-content: center;
	z-index: 1;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
    text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}



 /************************************/
/*** 	  16. Our Blog CSS	      ***/
/************************************/

.readmore-btn{
	position: relative;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	transform: translate(-2px, -50%);
	background-image: url('./images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	width: 18px;
	height: 18px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	transform: translate(0, -50%);
}

.cb-cursor:before{
	background: var(--accent-color);
}


.our-blog{
	padding: 5% 0;
}

.post-item{
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: 100%;
	align-content: center;
	padding: 10px;
}

.post-featured-image a{
	cursor: none;
}

.post-featured-image a figure{
	display: block;
	border-radius: 10px;
}

.post-featured-image a figure img{
	width: 100%;
	aspect-ratio: 1 / 0.604;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image a figure img{
	transform: scale(1.06);
}

.post-item-body{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 30px;
}

.post-item-meta{
	margin-bottom: 20px;
	color:var(--text-color);
}

.post-item-meta ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
	margin: 0;
	padding: 0;
}

.post-item-meta ul li{
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 10px;
}

.post-item-meta ul li img{
	width: 100%;
	max-width: 20px;
}

.post-item-content h2{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
}

.post-item-content h2 a{
	color: var(--primary-color);text-decoration: none;
}

.post-item-content p{
	margin: 10px 0 0;
}

.post-item-btn{
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

.post-item-list .post-item{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.post-item-list .post-item:last-child{
	margin-bottom: 0;
}

.post-item-list .post-item .post-featured-image{
	width: 49%;
}

.post-item-list .post-item .post-featured-image a, 
.post-item-list .post-item .post-featured-image a figure{
	height: 100%;
}

.post-item-list .post-item .post-featured-image a figure img{
	height: 100%;
	aspect-ratio: 1 / 0.975;
}

.post-item-list .post-item .post-item-body{
	width: 51%;
	padding: 40px 20px 40px 30px;
}
/************************************/
/*** 	22. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-blog .post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--white-color);
}

 
