.project-info {
	padding: 50px 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	top: -50px;
	padding-bottom: 0;
	height: 250px;
}

.project-title {
	font-weight: 500;
	font-size: 1.2em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: black;
	transition: all 0.2s ease-in-out;
}

.lighter {
	font-size: 0.9em;
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tag {
	font-weight: 400;
	color: var(--clr-theme-1);
	transition: all 0.2s ease-in-out;

}
.tag:hover {
	font-weight: 400;
	color: #e1530b;
}
.tag:hover a{
	font-weight: 400;
	color: #e1530b;
}


.card-imgs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.card-img div {
	width: 90%;
}

.card {
	background-color: white;
	color: black;
	width: 100%;
	border-radius: 8px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 10px 20px -20px, rgba(0, 0, 0, 0.3) 0px 20px 30px -30px;
	transition: all 0.3s ease-in-out;
	   
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: rgba(50, 50, 93, 0.3) 0px 10px 20px -20px, rgba(0, 0, 0, 0.4) 0px 20px 30px -30px;
	 border: 1px solid var(--clr-theme-1);
}

.card-img {
	position: relative;
	top: -20px;
	height: 250px;
	display: flex;
	justify-content: center;
}

.card-img a,
.card-img div {
	height: 250px;
	width: 90%;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card-imgs {
	transition: all 0.5s;
}

.mb-5 {
	margin-bottom: 3rem !important;
}
a .project-title:hover {
	color: var(--clr-theme-1);

}

.bd-sidebar__widget-link ul li {
    list-style: none;
    line-height: 2;
}

.bd-basic__pagination ul li{
	color:var(--clr-theme-1)
}

.bd-basic__pagination ul li a {
	border: 2px solid #f9f0e8;
	color: var(--clr-theme-1);
}

.bd-basic__pagination ul li a.current {
    border-color:var(--clr-theme-2);
    color: #f9f0e8;
}

.bd-basic__pagination ul li a i {
	color: var(--clr-theme-1);
}

.bd-basic__pagination ul li a:hover {
	background-color: #f9f0e8;
	color: #db590082;
	border-color: #db590082;
}

.bd-basic__pagination ul li a:hover i{
    color: #db590082;
}

.bd-postbox__navigation {
	border-top: 1px solid var(--clr-border-17);
	border-bottom: none;
	padding-bottom: 0px;
}
.bd-postbox__navigation-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #d99b87;
    letter-spacing: 1px;
}
.bd-section__title{
	    font-size: 32px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.bd-postbox__inner .bd-section__title{
	overflow: initial;
	text-overflow: initial;
	white-space: normal;
	margin-bottom: 12px;
}
.bd-postbox__wrapper{
	border-right: 0px
}

.bd-postbox__sidebar{
	height: 100vh;
}
.bd-sidebar__widget-content{
	height: 100%;
}
.bd-sidebar__widget{
	position: sticky;
    top: 150px;
}

.bd-postbox__inner p {
    overflow-wrap: break-word;
    word-break: break-word;
}

.bd-postbox__thumb{
	aspect-ratio: 4/3;
	overflow: hidden;
}

.w-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (width<= 1200px) {
	.bd-sidebar__widget{
		position: initial;
		top: 0;
	}
	.bd-postbox__sidebar{
		height: auto;
	}
}

@media (width<= 992px) {
	.bd-basic__pagination ul {
        justify-content: center;
    }

	.project-info{
		height: 280px;
	}
}

@media (width<= 768px) {
	.project-info{
		height: 230px;
	}
}


@media (width<= 576px) {
    .bd-basic__pagination ul {
        gap: 8px;
    }
}

@media (width<= 425px) {
    .bd-basic__pagination ul li a,
    .bd-basic__pagination ul li span {
        width: 40px;
        height: 40px;
    }

	.project-info{
		height: 250px;
	}
}

@media (width<= 375px) {
	.project-info{
		height: 250px;
	}
}


@media (width<= 320px) {
	.project-info{
		height: 280px;
	}
}

@media (width<= 358px) {
    .bd-basic__pagination ul {
        gap: 6px;
    }
    .bd-basic__pagination ul li a,
    .bd-basic__pagination ul li span {
        width: 36px;
        height: 36px;
    }
}