* {
  transition: background-color 0.3s ease, color 0.3s ease;
}

body{
    background-color: var(--bg-color);
}
.container{
    max-width: 70%;
    color: var(--text-color);

}


/* Header  */
header .navbar-brand .img{
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
header .navbar-brand{
    display: flex;
    gap: 10px;
    align-items: center;
}
header .text_wrap{
    display: grid;
    gap: 5px;
}
header .title,
header .desc{
    color: var(--text-color);
    font-family: var(--font-SpaceGrotesk);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}
header .desc{
    font-size: 13px;
    opacity: 0.6;
}
.menu_wrap .menu{
    list-style: none;
    padding: 0;
	display:flex;
	gap:15px;
}
.menu_wrap .menu-item a{
    font-family: var(--font-SpaceGrotesk);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-color);
    text-decoration: none;
	opacity: 0.6;
}
.menu_wrap .current-menu-item > a{
	opacity: 1;
    text-decoration: underline;
}
/* Header END */

.content,
.content a{
    font-family: var(--font-roboto);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
}

/* About Content  */
.about_content{
    margin-top: 100px;
    margin-bottom: 300px;
}
/* About Content END */


/* Blog listing  */
.blogs_listing{
    margin-top: 100px;
    margin-bottom: 300px;
}
.blogs_listing .col_grid{
    display: grid;
    gap: 80px;
}
.blogs_listing .card{
    border: none;
    background-color: transparent;
    text-decoration: none;
}
.blogs_listing .featured_img_wrap{
    border-radius: 15px;
    width: 100%;
    overflow: hidden;
    height: 100%;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.blogs_listing .featured_img_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: 5s ease;
}
.blogs_listing .card:hover .featured_img_wrap img{
    transform: scale(1.06);
}

.blogs_listing .card-title{
    font-family: var(--font-SpaceGrotesk);
    font-weight: 400;
    font-size: 25px;
    color: var(--text-color);
}
.blogs_listing .card-text{
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    color: var(--text-color);
    opacity: 0.6;
}
.blogs_listing .card-text small{
    font-size: 15px;
    opacity: 0.8;
    color: var(--text-color) !important;
}
.blogs_listing .card:hover .card-title{
    text-decoration: underline;
}
.blogs_listing .categories_listing{
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}
.blogs_listing .categories_listing a{
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.6;
    text-decoration: none;
}
.blogs_listing .categories_listing a.active{
    opacity: 1;
    text-decoration: underline;
}
/* Blog listing END */

/* Single Blog  */
.single_post{
    margin-top: 100px;
    margin-bottom: 80px;
}
.single_post .featured_img_wrap{
    max-width: 700px;
    margin-inline: auto;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 50px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.single_post .featured_img_wrap img{
    height: 100%;
    width: 100%;
    border-radius: inherit;
    transition: 5s ease;
}
.single_post .featured_img_wrap:hover img{
    transform: scale(1.06);
}
.single_post .title{
    font-family: var(--font-SpaceGrotesk);
    font-weight: 700;
    font-size: 35px;
    color: var(--text-color);
	line-height:1.3;
}
.single_post .post_data{
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 13px;
    opacity: 0.8;
}
.single_post .content{
    margin-top: 50px;
    opacity: 0.8;
}
.single_post .content a{
    font-weight: 700;
}
.single_post .content figure.wp-block-image{
    max-width: 70%;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 15px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.single_post .content img{
    border-radius: inherit;
    transition: 5s ease;
}
.single_post .content figure.wp-block-image:hover img{
    transform: scale(1.06);    
}
.single_post .content{
	h1,h2,h3,h4,h5,h6{
		margin-bottom:1.5rem;
/* 		font-size:95%; */
	}
}
.single_post .content{
	line-height: 1.6;
	letter-spacing: 0.003em;
}
.single_post .content p{
	margin-bottom: 2rem;
}
/* Single Blog END */

/* Work page START  */

.work_listing_page .the_row{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.work_listing_page .row_wrap{
	display: flex;
    flex-wrap: wrap;
}
.work_listing_page .col_grid{
	gap:unset;
	width: 50%;
}
.work_listing_page .featured_img_wrap{
	box-shadow: rgb(60 60 60 / 20%) 0px 2px 8px 0px;
}
/* Work page END  */

/* Footer  */
.footer_spacer{
    height: 90px;
}
.footer_items_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}
/* Footer END  */

/* Extra  START*/
.post_data,
.blogs_listing .card-body p.card-text{
	display:none;
}
/* Extra END */