.wrapper-main-content.has-sidebar{
	--width-sidebar: 360px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--width-sidebar);
	gap: 80px;
}
.wrapper-container{
	width: 1515px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
/*--------------------------
		1.HEADER
---------------------------*/
header{	
	position: relative;
	border-bottom: 1px solid #e0e0e0;
}
.header-wrapper > .melinda-logo{display: none;}
.header-wrapper{
	display: grid;
	grid-template-columns: 195px auto 195px;
	grid-gap: 10px;
	align-items: center;
	width: 1850px;
	margin: 0 auto;
	max-width: 100%;
	padding: 0 30px;
}
.no-socials.header-wrapper{
	grid-template-columns: auto 20px;
}
.header-wrapper .header-right{
	display: flex;
	justify-content: flex-end;
}
.header-wrapper .header-content{
	display: flex;
	justify-content: center;
}
.melinda-main-menu .menu-item-logo .custom-logo-link{
	padding: 0 15px;
}
/*Main Menu*/
.melinda-main-menu{
	padding: 0;
}
.melinda-main-menu > ul,
ul.melinda-main-menu{padding: 0}
.melinda-main-menu li{
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	font-family: var(--body-font);
}
div.melinda-main-menu > ul > li,
ul.melinda-main-menu > li{
	display: inline-block;
	font-size: 14px;
}
/* div.melinda-main-menu > ul > li > a, */
.melinda-main-menu li a{
	color: var(--heading-color);
	font-weight: var(--variant-medium);
	text-transform: uppercase;
	line-height: 30px;
	display: inline-block;
	padding: 30px 1.5em;
	font-size: 12px;
	letter-spacing: 1px;
}
.melinda-main-menu li a:hover,
.melinda-main-menu li.current_page_item > a:hover{
	color: var(--accent-color)
}
div.melinda-main-menu > ul > li:first-child,
ul.melinda-main-menu > li:first-child{
	margin-left: 0
}
div.melinda-main-menu > ul > li:last-child,
ul.melinda-main-menu > li:last-child{
	margin-right: 0
}
.melinda-main-menu .sub-menu,
.melinda-main-menu .children{
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	padding: 0;
	min-width: 200px;
	z-index: 50;
	text-align: left;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	height: 0;
	-webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-ms-transform-origin: top center;
	-o-transform-origin: top center;
	transform-origin: top center;
}
.melinda-main-menu li:focus-within > .sub-menu,
.melinda-main-menu li:hover > .sub-menu,
.melinda-main-menu .show-submenu > .sub-menu,
.melinda-main-menu li:focus-within > .children,
.melinda-main-menu li:hover > .children,
.melinda-main-menu .show-submenu > .children{
	visibility: visible;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	height: auto;
	opacity: 1;
}
.melinda-main-menu .sub-menu .sub-menu,
.melinda-main-menu .children .children{
	top: 0;
	left: 100%;
}
.melinda-main-menu .sub-menu li,
.melinda-main-menu .children li{
	list-style: none;
	display: block;
	white-space: nowrap;
}
.melinda-main-menu .sub-menu li a,
.melinda-main-menu .children li a{
	padding: 1em 1.5em;
	border-bottom: 1px solid #ddd;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: capitalize;
	font-size: 14px;
}
.melinda-main-menu .sub-menu li a:hover,
.melinda-main-menu .children li a:hover,
.melinda-main-menu .sub-menu li.current_page_item > a,
.melinda-main-menu .children li.current_page_item > a{
	color: var(--accent-color);
}
.melinda-main-menu .sub-menu li:last-child > a,
.melinda-main-menu .children li:last-child > a{
	border-bottom: none;
}
.melinda-main-menu .wrap-linkmenu{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.melinda-main-menu .sub-menu .wrap-linkmenu{
	padding-right: 15px;
}
.melinda-main-menu .icon-dropdown{
	padding-left: 8px;
	cursor: pointer;
	display: inline-block;
	z-index: 2;
	font-size: 0.8rem;
}
div.melinda-main-menu > ul > li > .wrap-linkmenu .icon-dropdown,
ul.melinda-main-menu > li > .wrap-linkmenu .icon-dropdown{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.melinda-main-menu li:hover > .wrap-linkmenu > .icon-dropdown{
	color: var(--accent-color);
}
.melinda-main-menu .sub-menu .icon-dropdown{
	padding-left: 20px;
}
/*Search header*/
.navbar-search, .menu-touch{color: var(--heading-color);font-size: 14px;}
.header-search .inner-search-header{
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 0;
	bottom: 0;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	z-index: -1;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header-search.search-active .inner-search-header{
	opacity: 1;
	visibility: hidden;
	z-index: 999999;
}
.header-search .searchform {
	position: absolute;
	top: 50%;
	text-align: center;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.header-search .close-search{
	color: #fff;
	font-size: 30px;
	position: absolute;
	top: 50px;
	right: 50px;
}
.searchform{
	background: #fff;
	color: inherit;
	border: 1px solid #ddd;
}
.searchform input[type="text"]{
	border: none;
	padding: 13px 18px;
	width: calc(100% - 55px);
}
.searchform .button-search{
	background: transparent;
	color: var(--accent-color);
	padding: 0 16px;
	font-size: 16px;
}
.header-search .searchform{
	width: 600px;
	max-width: 80%;
	padding: 15px;
}
/*Social Network*/
.social-network a{
	display: inline-block;
	color: var(--heading-color);
	margin-right: 10px;
	font-size: 14px;
}
.social-network a:last-child{margin-right: 0}
.social-network a:hover{
	color: var(--accent-color);
}
.social-network .social-slug{display: none;}
/*--------------------------------
		2.MAIN CONTAINER
---------------------------------*/
/*----- 2.1 Featured Posts -----*/
.feature-blog .post-inner{
	position: relative;
	display: flex;
	align-items: center;
}
.feature-blog .post-inner:after{
	content: "";
	padding-top: 65%;
	display: block;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.35);
	z-index: 1;
}
.feature-blog .post-image{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.feature-blog .post-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.feature-blog .post-info{
	color: #fff;
	width: 850px;
	padding: 30px;
	max-width: 100%;
	z-index: 2;
	text-align: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s;
}
.feature-blog .post-author img{
	width: auto;
	display: inline-block;
}
.feature-blog .post-author a, .feature-blog .post-author span{color: inherit}
.feature-blog .post-info .post-title{
	color: inherit;
	font-size: 3rem;
}
.feature-blog .post-info .post-title a{
	background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px)
}
.feature-blog .post-meta div{color: inherit;}
.feature-blog .owl-item:not(.center) .post-info{
	opacity: 0;
}
/*-------- 2.2 Promo Box ------*/
.melinda-promo-boxes{padding-top: 25px}
.inner-promo-boxes{border-bottom: 1px solid #e0e0e0;}
.promobox-item{
	display: flex;
	align-items: center;
}
.promobox-item .image-promoxbox{
	flex: 0 0 105px;
}
.promobox-item .image-promoxbox img{
	width: 100%;
	height: 135px;
	object-fit: cover;
}
.promobox-item .info-promobox{
	padding-left: 25px;
}
.promobox-item .info-promobox .title{
	font-size: 2rem;
	margin-bottom: 5px;
}
.promobox-item .info-promobox .desc{font-size: 1.05rem;padding-bottom: 15px}
.promobox-item .info-promobox .link{
	color: var(--heading-color);
	text-decoration: underline;
}
/*-------- 2.3 Page -----*/
.main-contaier{padding: 60px 0;}
.elementor-template-full-width .main-contaier{
	padding: 0;
}
.page-image{margin-bottom: 30px;}
.page-excerpt ul{margin-bottom: 30px}
.wpcf7-form .wpcf7-form-control-wrap{
	margin-bottom: 30px;
	display: inline-block;
	width: 100%;
}
.wpcf7-form .wpcf7-form-control{
	width: 100%;
	border-color: #9BA78A;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit{
	width: auto;
}
.error-page{
	text-align: center;
	max-width: 850px;
	margin: 0 auto;
	padding: 70px 0;
}
.page-title{
	margin-bottom: 50px;
	text-align: center;
	font-family: inherit;
}
.page-title::after {
	content: "";
	height: 2px;
	width: 50px;
	margin: 10px auto 0;
	display: block;
	background: var(--accent-color);
}
.error-page .page-title{margin-bottom: 10px;}
/*Breadcrumbs*/
.melinda-breadcrumbs a{
	color: inherit;
}
.melinda-breadcrumbs a:hover{
	color: var(--accent-color);
}
.melinda-delimiter{margin: 0 5px;}

/*-------- 2.4 BLog -----*/
.melinda-blogs .post-title{
	margin-bottom: 0px;
	font-size: 2rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-webkit-box-orient: vertical;
	padding-bottom: 2px;
}
.melinda-blogs .post-inner{text-align: center}
.post-title a {
	color: inherit;
	background-image: linear-gradient(transparent calc(100% - 1px), var(--heading-color) 1px);
	background-size: 0;
	background-repeat: no-repeat;
	padding-bottom: 1px;
	display: inline;
	-webkit-transition: 0.5s ease;
	transition: 1s ease;
}
.post-title a:hover {
	background-size: 100%;
	color: inherit;
}
.post-cats a{
	display: inline-flex;
	padding: 4px 10px;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1px;
	color: #fff;
	line-height: 20px;
	background: #1a1a1a;
	font-weight: 500;
	margin: 0 10px 10px 0;
}
.post-cats a:hover{
	background: rgba(var(--accent-color-rgb), 0.7);
	color: #fff;
}
.melinda-blogs .post-info{
	position: relative;
	z-index: 2;
}
.melinda-blogs .post-content{
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-top: 15px;
}
.post-meta div{
	display: inline-block;
	font-size: 15px;
	margin-right: 20px;
	color: #7b7b7b;
}
.post-author .avatar{
	margin-right: 5px;
	border-radius: 50%;
}
.post-author span{
	color: #999;
}
.post-author a{
	color: var(--heading-color);
	text-transform: capitalize;
}
.melinda-blogs .post-meta{margin-top: 15px;}
.post-meta div:last-child:after{display: none;}
.date-post i{margin-right: 5px;}
/*Post format*/
.post .post-format{
	position: relative;
	--post-image-ratio: 3/4;
}
.post .post-format:after{
	content: "";
	width: 100%;
	display: block;
	padding-top: calc( var(--post-image-ratio) * 100%)
}
.post .post-format img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post .post-format a.post-image{
	display: block;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.post.format-audio .post-format,
.post.format-video .post-format{position: relative;}
.post.format-audio .post-format a.post-image:before,
.post.format-video .post-format a.post-image:before{
	font-family: 'Font Awesome 5 Free';
	color: #fff;
	font-size: 14px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-weight: 900;
	background: rgba(0,0,0,0.3);
	position: absolute;
	right: 15px;
	top: 15px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}
.post.format-audio .post-format a.post-image:before{
	content: "\f001";
}
.post.format-video .post-format a.post-image:before{
	content: "\f03d";
}
.melinda-post-audio{position: relative;}
.post.has-post-thumbnail .melinda-post-audio .post-audio{
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
}
.post.format-audio .post-format.melinda-post-audio a:before{
	display: none;
}
.melinda-primary .post.format-audio .melinda-post-audio .mejs-container {
	background: var(--accent-color);
	width: 100%!important;
}
.melinda-primary .post.format-audio .melinda-post-audio .mejs-controls:not([style*="display: none"]){
	background: none;
}
.melinda-primary .post.format-audio .melinda-post-audio .mejs-button button:hover,
.melinda-primary .post.format-audio .melinda-post-audio .mejs-button button:focus{
	background-color: transparent;
}
.melinda-primary .post.format-audio .melinda-post-audio .mejs-time{font-size: 13px;}
.melinda-primary .post.format-audio .melinda-post-audio .mejs-container .mejs-controls > .mejs-time-rail .mejs-time-total,
.melinda-primary .post.format-audio .melinda-post-audio .mejs-container .mejs-time-loaded{
	height: 6px;
	overflow: hidden;
}
.melinda-primary .post.format-audio .melinda-post-audio .mejs-container .mejs-horizontal-volume-total{
	height: 6px;
	top: 16px;
}
.melinda-primary .post.format-audio .melinda-post-audio .mejs-container .mejs-time-rail{padding-top: 12px}
.melinda-primary .post.format-audio .melinda-post-audio .mejs-container .mejs-controls .mejs-time-rail .mejs-time-current {
	background: var(--heading-color);
}
/*Blog Standard */
.blog-standard .post-title{
	font-size: 3rem;
}
.blog-standard .post-meta{margin-bottom: 30px}
.blog-standard .post{
	margin-bottom: 50px;
}
.blog-standard  .post-format{margin-bottom: 40px}
.blog-standard .post-info{margin-top: 10px}
.melinda-blogs.blog-standard .post-cats a{
	margin: 0 5px 10px 5px;
}
.blog-standard .post .post-format{
	--post-image-ratio: 2/3;
}
/*Blog Grid*/
.blog-grid .post{
	margin-bottom: 60px;
}
.blog-grid .post-info{margin-top: 20px;}
/* Blog 1 full Post Grid */
.blog-1st_fullpost_grid .post{
	margin-bottom: 60px;
}
.blog-1st_fullpost_grid .post:not(.item-1) .post-info{
	margin-top: 20px;
}

/*Blog  1Full Post List*/
.blog-1st_fullpost_list .post .post-format{
	--post-image-ratio: 2/3;
}
.blog-1st_fullpost_list .post-cats{display: none;}
.blog-1st_fullpost_grid .post.item-1 .post-format{
	--post-image-ratio: 2/3;
}
.no-sidebar .blog-1st_fullpost_grid .post.item-1 .post-format,
.no-sidebar .blog-1st_fullpost_list .post.item-1 .post-format{
	--post-image-ratio: 1/2;
}
.blog-1st_fullpost_list .post.item-1 .post-inner,
.blog-1st_fullpost_grid .post.item-1 .post-inner{
	position: relative;
}
.blog-1st_fullpost_grid .post.item-1 .post-inner:after,
.blog-1st_fullpost_list .post.item-1 .post-inner:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.35);
}
.blog-1st_fullpost_grid .post.item-1:not(.has-post-thumbnail) .post-inner::after, 
.blog-1st_fullpost_list .post.item-1:not(.has-post-thumbnail) .post-inner::after {
	display: none;
}
.blog-1st_fullpost_grid .post.item-1.has-post-thumbnail .post-info,
.blog-1st_fullpost_list .post.item-1.has-post-thumbnail .post-info{
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 40px;
	color: #fff;
}
.blog-1st_fullpost_grid .post.item-1 .post-info .post-title,
.blog-1st_fullpost_list .post.item-1 .post-info .post-title{
	font-size: 3rem;
}
.blog-1st_fullpost_grid .post.item-1.has-post-thumbnail .post-info .post-title,
.blog-1st_fullpost_list .post.item-1.has-post-thumbnail .post-info .post-title{
	color: inherit;
}
.blog-1st_fullpost_grid .post.item-1 .post-info .post-title a,
.blog-1st_fullpost_list .post.item-1 .post-info .post-title a{
	background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px)
}
.no-sidebar .blog-1st_fullpost_list .post:not(.item-1) .post-info .post-title{
	font-size: 2.5rem;
}
.blog-1st_fullpost_grid .post.item-1 .post-info .post-content,
.blog-1st_fullpost_list .post.item-1 .post-info .post-content{
	display: none;
}
.blog-1st_fullpost_list .post.item-1 .post-meta div,
.blog-1st_fullpost_grid .post.item-1 .post-meta div{color: inherit}
.blog-1st_fullpost_list .post.item-1 .post-author a,
.blog-1st_fullpost_grid .post.item-1 .post-author a{
	color: inherit;
}
.blog-1st_fullpost_grid .post.item-1 .post-author span,
.blog-1st_fullpost_list .post.item-1 .post-author span{
	color: inherit;
}
.blog-1st_fullpost_list .post:not(.item-1) .post-inner{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid #E0E0E0;
	align-items: center;
}
.blog-1st_fullpost_list .post.has-post-thumbnail:not(.item-1) .post-format{
	flex: 0 0 calc(50% - 0.75rem);
	max-width: calc(50% - 0.75rem);
	margin-right: 1.5rem;
}
.blog-1st_fullpost_list .post.has-post-thumbnail:not(.item-1) .post-info{
	flex: 1;
	flex-direction: column;
	max-width: 100%;
}

/*Pagination*/
.melinda-pagination{margin-top: 50px;}
.melinda-pagination .pagination{
	justify-content: center;
}
.pagination .page-numbers{
	display: inline-block;
	width: 50px;
	height: 50px;
	color: var(--heading-color);
	line-height: 50px;
	text-align: center;
	margin-right: 10px;
	border: 1px solid #E0E0E0;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current{
	color: #fff;
	background: var(--accent-color);
	border-color: var(--accent-color);
}
/*----------2.5 Single Post----------*/
.main-contaier.page-single-post{
	padding-top: 0
}
.melinda-single-post .wrapper-main-content {margin-top: 50px;}
.melinda-single-post .post-format{
	position: relative;
}
.melinda-single-post > .post-format:after{
	content: "";
	width: 100%;
	display: block;
	padding-top: 30%;
}
.melinda-single-post > .post-format.post-video:after{
	display: none;
}
.melinda-single-post > .post-format.post-video,
.melinda-single-post > .post-format.melinda-post-audio{
	width: 1400px;
	margin: 70px auto 0;
	max-width: 100%;
}
.melinda-single-post > .post-format.melinda-post-audio:after{padding-top: 45%}
.melinda-single-post .post-format .post-audio{
	position: absolute;
	bottom: 0;
	width: 100%;
}
.melinda-single-post .post-format .post-audio .mejs-container{
	width: 100%!important;
}
.melinda-single-post .post-format img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.melinda-single-post .post-single .post-header{
	text-align: center;
	margin-bottom: 30px;
}
.no-sidebar .melinda-single-post .post-single .post-header{
	margin-bottom: 50px;
}
.melinda-single-post .post-single .post-info,
.melinda-single-post .post-single .post-header,
.melinda-single-post .post-about,
.melinda-single-post .post-related,
.melinda-single-post .comment-respond,
.melinda-single-post .comments-area{
	width: 950px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.melinda-single-post .post-footer{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 10px;
	padding: 1.5rem 0;
	border-top: 2px solid #000;
	border-bottom: 1px solid #E0E0E0;
}
.melinda-single-post .post-footer .post-tags{
	background: #fff;
	padding-right: 10px;
}
.melinda-single-post .post-single .post-title{
	margin-bottom: 5px;
	font-size: 3rem;
}
.post-single .post-format{text-align: center}
.post-tags a{
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--heading-color);
	border: 1px solid #E0E0E0;
	padding: 5px 10px;
	margin-right: 3px
}
.post-tags a:hover{
	background-color: var(--accent-color);
	color: #fff;
}
/* Post share */
.post-share a{
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center;
	color: #fff;
	display: inline-block;
	background-color: #000;
	font-size: 13px;
}
/* Post About */
.post-about{
	padding: 40px 50px;
	background-color: #f7f6f5;
	display: flex;
	margin-top: 50px;
}
.post-about .ab-img{
	width: 145px;
	height: 145px;
	border-radius: 50%;
	flex: 0 0 auto;
	margin-right: 35px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	padding: 14px;
}
.post-about .ab-img img{
	border-radius: 50%
}
.post-about .ab-text{
	margin-bottom: 1.5rem;
}
.post-about .name-ath{
	font-size: 2.5rem;
	margin-bottom: 10px
}
.post-about .name-ath a{
	color: inherit;
	position: relative;
	z-index: 1;
}
.post-about .name-ath a:after{
	position: absolute;
	bottom: 5px;
	background-color: rgba(var(--accent-color-rgb), 0.7);
	mask: url(../images/title-bg.svg) no-repeat center / contain;
	-webkit-mask: url(../images/title-bg.svg) no-repeat center / contain;
	height: 1rem;
	width: calc(100% + 1.5rem);
	content: "";
	display: block;
	left: -0.5rem;
	right: 0;
	z-index: -1;
	display: block;
}
/*Posts related*/
.post-related .post-title{
	font-size: 1.35rem;
	margin-bottom: 5px
}
.post-related, .comment-respond, .comments-area{margin-top: 2rem;}
.post-related-title{
	padding-top: 2rem;
	margin-bottom: 2rem;
	border-top: 2px solid #000;
}
.item-relate .post-format a.post-image::after {
	padding-top: 115%;
}
.item-relate .inner-post{position: relative;}
.item-relate .post-info {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 15px 0px;
}
/*Comment*/
.comments-title{
	padding-top: 2rem;
	margin-bottom: 2rem;
	border-top: 2px solid #000;
}
.comment-reply-title{
	font-size: 0.825rem;
	text-transform: uppercase;
	font-family: inherit;
	letter-spacing: 1px;
}
.comment-reply-title small{
	margin-left: 15px
}
.logged-in-as {
	margin-bottom: 10px;
}
.comment-form .input-form, .comment-form .textarea-form{
	margin-bottom: 30px;
	width: 100%
}
.comment-form .textarea-form, .textarea-form .input-form{width: 100%}
.comment-form input[type="checkbox"]{margin-right: 10px}
.comment-list{
	padding: 0;
	list-style: none;
}
.comment-body {
	padding: 20px 0;
	border-top: 1px solid #e0e0e0;
}
.comment-body .comment-author{
	float: left;
	margin-right: 20px;
}
.comment-body .comment-author .avatar{
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}
.comment-body .comment-content{
	overflow: hidden;
}
.comment-content .author-name{
	font-family: inherit;
	font-size: 1rem;
	display: inline-block;
	margin-bottom: 0px;
	text-transform: capitalize;
}
.comment-content .author-name a{color: inherit;}
.comment-content .date-comment{
	font-size: 0.85rem;
	display: inline-block;
	margin-left: 10px;
}
.comment-content .date-comment a{color: inherit;}
.comment-content .reply{
	font-size: 1rem;
}
.comment-content .reply a{color: var(--heading-color);}
.comment-content .reply a:hover{color: var(--accent-color);}
.comment-content .reply .comment-reply-link:after{
	content: "\f3e5";
	display: inline-block;
	margin-left: 5px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}
.comment-content .comment-text {
	margin-top: 15px;
}
.comment-list ol.children{
	list-style: none;
}
.melinda-single-post .comment-respond{
	padding: 40px;
	background-color: #f7f6f5;
	font-size: 0.925rem;
}
.comment-form input[type="submit"]{
	background-color: var(--heading-color)
}
.comment-form input[type="submit"]:hover,
.comment-form input[type="submit"]:focus{
	background-color: var(--accent-color)
}
/*--------- 2.6 Widget -----------*/
.widget ul{padding: 0}
.widget ul ul,.widget ol ol{padding-left: 20px}
.widget ul li{
	list-style: none;
}
.wpb_widgetised_column .widget,
.sidebar .widget{
	padding: 50px;
	margin-bottom: 3px;
	background-color: #f7f6f5;
}
.sidebar .widget.widget_instagram-feed-widget{
	padding: 50px 20px;
}
.widget_rss li{margin-bottom: 20px;}
.widget_rss li cite:before{
	content: "";
	width: 20px;
	height: 1px;
	background: #999;
	display: inline-block;
	margin-right: 5px;
}
.widget_rss li .rsswidget{display: block;}
.widget_rss li .rss-date{font-style: italic;}
.tagcloud a {
	font-size: 13px !important;
	color: inherit;
	border: 1px solid #ddd;
	padding: 3px 20px;
	border-radius: 25px;
	margin: 0 5px 10px 0;
	display: inline-block;
}
.tagcloud a:hover{
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
}

/*Social Network*/
.widget_melinda_social_network .follow_desc{margin-bottom: 15px}
.widget_melinda_social_network .follow_desc,
.widget_melinda_social_network .social-network{text-align: center;}
.widget_melinda_social_network .social-network a{
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: #000;
	color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	margin: 0 4px;
}
.widget_melinda_social_network .social-network a:hover{
	color: #fff;
	background: var(--heading-color);
}
/*Latest Post*/
.list-latest-posts .post{
	border-top: 1px solid #E0E0E0;
	padding-top: 20px;
	margin-top: 20px;
}
.list-latest-posts .post:first-child{border-top: none;}
.list-latest-posts .post-title{
	font-size: 1.25rem;
	text-transform: capitalize;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	overflow: hidden;
	-webkit-box-orient: vertical;
	padding-bottom: 2px;
}
.list-latest-posts .post-inner{
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.list-latest-posts .post-image{
	margin-right: 25px;
	margin-bottom: 0;
	position: relative;
	width: 95px;
	flex: 0 0 auto;
}
.list-latest-posts .post-image img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.widget-blog-list .date-post, .item-relate .date-post{
	display: block;
	font-size: 0.9rem;
	font-style: italic;
}
.list-latest-posts .post-image > a{
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
}
.list-latest-posts .post-image > a:after{
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
	background: #e0e0e0;
}
.list-latest-posts .post .post-number{
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	color: #fff;
	background: #000;
	font-size: 12px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: -10px;
	right: -10px;
}
/* Popuplar Posts */
.list-popular-post .post{
	margin-bottom: 30px;
	position: relative;
	text-align: center;
}
.list-popular-post .post:last-child{margin-bottom: 0}
.list-popular-post .post-content{
	text-align: center;
	position: absolute;
	margin: 0 10%;
	width: 80%;
	padding: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	background: rgba(255,255,255,0.8);
}
.list-popular-post .post-image{margin-bottom: 15px}
.list-popular-post .post .post-image:after{padding-top: 80%}
.list-popular-post .post-title{
	font-size: 1.5rem;
	text-transform: capitalize;
	margin-bottom: 0;
}
/*Newsletter*/
.melinda-newsletter{
	text-align: center;
	padding: 50px 20px;
	background: #f3f3f3;
}
.form-newsletter input[type="email"] {
	padding: 13px 18px;
	border: 1px solid #e0e0e0;
	width: 100%;
}
.form-newsletter button {
	padding: 13px 18px;
	width: 100%;
	position: relative;
	background: #9ba78a;
	margin-top: 1rem;
}
/* About me */
.melinda-about-me{
	text-align: center
}
.melinda-about-me .about-image{
	padding: 18px;
	width: 163px;
	margin: 0 auto;
	border: 1px solid #e0e0e0;
	background: #fff;
	position: relative;
	border-radius: 50%;
	margin-bottom: 2rem;
}
.melinda-about-me .about-image:after{
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
}
.melinda-about-me .about-image img{
	padding: 18px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.melinda-about-me .about-title{
	position: relative;
	display: inline-block;
	z-index: 2;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.melinda-about-me .about-title::after {
	position: absolute;
	bottom: 5px;
	background-color: rgba(var(--accent-color-rgb), 0.7);	
	mask: url(../images/title-bg.svg) no-repeat center / contain;
	-webkit-mask: url(../images/title-bg.svg) no-repeat center / contain;
	height: 1rem;
	width: calc(100% + 1.5rem);
	content: "";
	display: block;
	left: -0.5rem;
	right: 0;
	z-index: -1;
	display: block;
}
.melinda-about-me .about-text{
	margin-bottom: 30px;
}
/* ----- 2.7 Elementor ------ */
/* Service */
.melinda-service {
	width: 400px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}
.service-subtitle{
	background: #9ba78a;
	font-family: var(--script-font);
	padding: 10px 30px 3px;
	font-size: 1.5rem;
	color: #fff;
	font-weight: normal;
	line-height: 45px;
	transform: translateY(-50%);
	margin: 0 50px;
	display: flex;
	justify-content: center;
	letter-spacing: 1px;
}
.service-title{
	color: var(--heading-color);
	font-size: 1.6rem;
	text-transform: capitalize;
	margin-bottom: 0;
	margin-top: -8px;
}
.service-title a{color: inherit}
/* Category Image */
.melinda-cat-image{
	padding: 0 30px;
	text-align: center;
}
.melinda-cat-image .inner-cat{
	position: relative;
	padding: 30px 0;
}
.melinda-cat-image .image-cat{
	position: relative;
}
.melinda-cat-image .image-cat:after{
	content: "";
	display: block;
	width: 100%;
	padding-top: calc(100% * 5/4);
}
.melinda-cat-image .image-cat img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.melinda-cat-image .bg-image-cat{
	position: absolute;
	width: 80%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	opacity: 0.7;
	z-index: -1;
}

.melinda-cat-image .bg-image-cat.pos-center{
	margin-left: auto;
	margin-right: auto;
}
.melinda-cat-image .bg-image-cat.pos-left{
	left: -30px;
}
.melinda-cat-image .bg-image-cat.pos-right{
	margin-left: auto;
	right: -30px;
}
.melinda-cat-image .cat-info{
	position: absolute;
	width: 80%;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255, 0.7);
	padding: 10px;
}
.melinda-cat-image .cat-name{
	margin-top: 10px;
	margin-bottom: 5px;
	font-family: var(--script-font);
	font-weight: normal;
}
.melinda-cat-image .cat-name a{
	color: inherit;
}
/* Client Star */
.melinda-clients{
	--color-client: #fff;
	color: var(--color-client);
}
.melinda-clients .client-inner{
	width: 750px;
	max-width: 100%;
	text-align: center;
	margin: 0 auto;
}
.client-star{
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.client-star .star-icon{
	width: 35px;
	height: 32px;
}
.client-star .star-icon svg{
	fill: #9BA78A;
}
.item-client .quote-auth{
	text-transform: uppercase;
	color: var(--accent-color);
	font-family: lato;
	font-weight: font-weight: 100;
}
.item-client .quote-title{
	color: inherit;
}
.item-client .quote-text{
	margin-bottom: 40px;
}
.melinda-clients .swiper-pagination-bullet{
	background: var(--color-client);
}
/* Latest Posts */
.melinda-posts-layout .post-item{
	margin-bottom: 50px;
}
.melinda-posts-layout .wrap-post-format{
	position: relative;
	margin-bottom: 80px;
}
.melinda-posts-layout .post-title{font-size: 1.875rem;}
.melinda-posts-layout .post-format{position: relative}
.melinda-posts-layout .post-format .post-image{
	padding: 10px;
}
.melinda-posts-layout .post-item .post-format img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.melinda-posts-layout .post-item .post-format{
	--post-image-ratio: 1;
}
.melinda-posts-layout .post-item .post-format::after {
	content: "";
	width: 100%;
	display: block;
	padding-top: calc( var(--post-image-ratio) * 100%);
}
.melinda-posts-layout .wrap-post-format .bg-shape{
	background: rgba(var(--accent-color-rgb), 0.4);
	position: absolute;
	bottom: -45px;
	top: 80px;
	z-index: -1;
	width: 999%;
}
.melinda-posts-layout .post-format img{
	border:  10px solid #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1)
}
.melinda-posts-layout .post-item:nth-child(2n+1) .post-inner{
	padding-left: 45px;
	padding-right: 0;
}
.melinda-posts-layout .post-item:nth-child(2n) .post-inner{
	padding-left: 0;
	padding-right: 45px;
}
.melinda-posts-layout .post-item:nth-child(2n+1) .wrap-post-format .bg-shape{
	right: 45px;
}
.melinda-posts-layout .post-item:nth-child(2n) .wrap-post-format .bg-shape{
	left: 45px;
}
.melinda-posts-layout .post-info{
	text-align: center;
	width: 450px;
	max-width: 100%;
	margin: 0 auto;
}
.melinda-posts-layout .post-cats a{
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--heading-color);
	font-weight: var(--variant-medium);
	font-size: 0.85rem;
	background: transparent;
}
/*-------------------------------
			FOOTER
-------------------------------*/
.footer{
	background: #19191A;
	color: #fff;
}
.footer a{
	color: inherit;
}
.footer a:hover{
	color: var(--accent-color);
}
.footer-ins{
	padding: 55px 30px 0;
	text-align: center;
}
.footer-ins .ft-title{
	color: inherit;
	margin-bottom: 15px;
	font-size: 26px;
}
.footer-ins .ft-title span{
	font-family: var(--script-font);
	font-weight: normal;
	text-transform: capitalize;
}
.footer-social .social-network a{
	color: inherit;
}
.footer-social .social-network a:hover{
	color: var(--accent-color)
}
.footer-social{
	margin-bottom: 30px
}
.menu-footer{
	display: flex;
	justify-content: center;
	padding-bottom: 17px;
	list-style: none;
	padding-left: 0;
	flex-wrap: wrap;
}
.menu-footer ul{padding: 0;list-style: none}
.menu-footer ul > li, ul.menu-footer > li{
	display: inline-block;
	margin: 0 15px;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: var(--variant-medium);
}
.footer-copyright{
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 0;
	font-size: 14px;
}
.footer-nav{
	position: relative;
	width: 100%;
	display: flex;
}
.footer-nav .backtotop{
	position: absolute;
	right: 30px;
	font-size: 10px;
	text-transform: uppercase;
	color: #fff;
	top: -5px;
}
.footer-nav .backtotop i{
	display: block;
	text-align: center;
	font-size: 16px;
	margin-bottom: -5px;
}
/*--------------------------------
		4.RESPONSIVE
--------------------------------*/
@media (min-width : 1330px){
	.container{
		max-width: 1330px;
	}
}
/*MENU MOBILE*/
@media (min-width: 1200px) and (max-width: 1399.98px){
	.social-network a{margin-right: 8px;}
	.header-wrapper{
		grid-template-columns: 185px auto 185px;
	}
	.header-wrapper{padding: 0 20px}
	.melinda-main-menu li a{padding: 30px 1em;}
	.logo-img img{max-width: 210px;}
	.feature-blog .post-info .post-title{font-size: 2.5rem}
	.wrapper-main-content.has-sidebar{gap: 50px;}
	.has-sidebar  .blog-1st_fullpost_grid .post.item-1 .post-info .post-title,.has-sidebar .blog-1st_fullpost_list .post.item-1 .post-info .post-title{font-size: 2.75rem}
	.has-sidebar  .blog-1st_fullpost_grid .post:not(.item-1) .post-title{font-size: 1.75rem}
	.has-sidebar .blog-standard .post-title{font-size: 2.65rem}
}
@media (min-width: 992px) and (max-width: 1199.98px){
	.header-wrapper{padding: 0 20px}
	.melinda-main-menu li a{padding: 20px 1.5em}
	.header-wrapper .social-network{ grid-area: header-social; }
	.header-wrapper .header-right{ grid-area: header-right; }
	.header-wrapper .header-content{ grid-area: header-content; }
	.header-wrapper > .melinda-logo { grid-area: logo; display: block; text-align: center;}
	.melinda-main-nav li.menu-item-logo{display: none}
	.header-wrapper{
		padding: 15px 20px 0 20px;
		grid-template-areas: 
		'header-social logo header-right'
		'header-content header-content header-content';
	}
	.no-socials.header-wrapper{
		grid-template-areas: 
		'logo header-right'
		'header-content header-content';
	}
	.feature-blog .post-inner::after {padding-top: 80%;}
	.feature-blog .post-info .post-title{font-size: 2rem}
	.wrapper-main-content.has-sidebar{
		--width-sidebar:  320px;
		gap: 40px;
	}
	.wpb_widgetised_column .widget, .sidebar .widget{padding: 30px}
	.blog-1st_fullpost_grid .post.item-1 .post-info, .blog-1st_fullpost_list .post.item-1 .post-info{polar-distance: 30px;}
	.blog-1st_fullpost_grid .post.item-1 .post-info .post-title, .blog-1st_fullpost_list .post.item-1 .post-info .post-title{font-size: 2.5rem}
	.melinda-blogs .post-title{font-size: 1.65rem}
	.post-meta div{margin-right: 15px}
	.blog-standard .post-title{font-size: 2rem}
	.no-sidebar .blog-standard .post-title{font-size: 2.5rem}
	.no-sidebar .blog-1st_fullpost_list .post:not(.item-1) .post-info .post-title {font-size: 2.2rem;}
	.melinda-single-post .post-single .post-title{font-size: 2.5rem}
}
@media (max-width: 991.98px){
	.wrapper-main-content.has-sidebar{
		grid-template-columns: 100%;
	}
	.header-wrapper{
		padding: 15px 30px;
		grid-template-columns: 180px auto 150px 20px;
	}
	.header-wrapper .header-content{justify-content: flex-end}
	.header-wrapper > .melinda-logo{display: block;text-align: center}
	.melinda-main-nav li.menu-item-logo{display: none}
	.melinda-main-nav{
		display: none;
		position: absolute;
		width: 100%;
		left: 0;
		top: 100%;
		background: #fff;
		padding: 0 20px;
		z-index: 5;
		margin-top: 1px;
	}
	.header-wrapper .social-network a{margin-right: 8px}
	div.melinda-main-menu > ul > li > .wrap-linkmenu .icon-dropdown,
	ul.melinda-main-menu > li > .wrap-linkmenu .icon-dropdown{
		position: static;
		transform: translateY(0);
	}
	div.melinda-main-menu > ul > li, ul.melinda-main-menu > li{display: block;}
	.melinda-main-menu li a{
		display: -webkit-flex;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0;
	}
	.melinda-main-menu li > a, .melinda-main-menu li > .wrap-linkmenu{
		border-bottom: 1px solid #e0e0e0;
	}
	.melinda-main-menu li > .wrap-linkmenu > a{border-bottom: none}
	.melinda-main-menu .sub-menu{
		position: relative;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-top: none;
		padding-left: 20px
	}
	.melinda-main-menu .sub-menu li a{padding: 10px 0}
	.melinda-main-menu .sub-menu .sub-menu, .melinda-main-menu .children .children{left: 0; top: 0}
	.melinda-single-post .post-single .post-title{font-size: 2.5rem}
	.header-wrapper .social-network{ grid-area: header-social; }
	.header-wrapper .header-right{ grid-area: header-right; }
	.header-wrapper .header-content{ grid-area: header-content; }
	.header-wrapper > .melinda-logo { grid-area: logo; display: block; text-align: center;}
	.melinda-main-nav li.menu-item-logo{display: none}
	.header-wrapper{
		padding: 15px 20px 0 20px;
		grid-template-columns: auto 20px 20px ;
		grid-template-areas:
		'logo logo logo'
		'header-social header-content header-right';
	}
	.no-socials.header-wrapper{
		grid-template-columns: auto 20px 20px;
		grid-template-areas:
		'logo header-content header-right';
		padding-bottom: 15px;
	}
	.no-socials.header-wrapper > .melinda-logo{text-align: left;}
}
@media (min-width: 768px) and (max-width: 991.98px){
	.service-subtitle{
		font-size: 1.05rem;
		padding: 10px 20px 3px;
		margin: 0 25px;
	}
	.service-title{font-size: 1.4rem}
	.melinda-cat-image{padding: 0 20px;}
	.melinda-cat-image .cat-name{font-size: 1.15rem}
	.melinda-cat-image .bg-image-cat.pos-left{left: -20px}
	.melinda-cat-image .bg-image-cat.pos-right{right: -20px}
	.melinda-posts-layout .post-item:nth-child(2n+1) .post-inner{padding-left: 40px;}
	.melinda-posts-layout .post-item:nth-child(2n) .post-inner{padding-right: 40px;}
	.melinda-posts-layout .wrap-post-format .bg-shape{bottom: -40px}
	.feature-blog .post-info .post-title{font-size: 2.6rem}
	.column-3 .promobox-item {
		flex-direction: column;
		text-align: center;
	}
	.column-3 .promobox-item .info-promobox{padding-top: 15px; padding-left: 0}
	.melinda-blogs .post-title{font-size: 1.75rem}
	.blog-standard .post-title{font-size: 2.5rem}
	.blog-1st_fullpost_grid .post.item-1 .post-info .post-title, .blog-1st_fullpost_list .post.item-1 .post-info .post-title{font-size: 2.5rem}
	.no-sidebar .blog-1st_fullpost_list .post:not(.item-1) .post-info .post-title {font-size: 2rem;}
	.blog-1st_fullpost_list .post .post-format {--post-image-ratio: 4/5;}
	.no-sidebar .blog-1st_fullpost_grid .post.item-1 .post-format, .no-sidebar .blog-1st_fullpost_list .post.item-1 .post-format {
		--post-image-ratio: 2/3;
	}
	.post-meta div{margin-right: 15px}
}
@media (max-width: 767.98px){
	.header-wrapper .melinda-logo img{max-width: 70%}
	.wp-block-quote.is-style-default, .wp-block-quote.is-large, .wp-block-quote.is-style-large {
		padding:0px 30px 40px 50px;
	}
	.wp-block-quote.is-style-large{padding: 40px 30px}
	.wp-block-quote.is-large p, .wp-block-quote.is-style-large p{font-size: 20px;}
	.wp-block-quote.is-style-large::before{left: -25px}
	.header-wrapper{padding: 15px 20px;grid-row-gap:20px;}
	.melinda-posts-layout .post-item:nth-child(2n+1) .post-inner{padding-left: 0}
	.melinda-posts-layout .post-item:nth-child(2n) .post-inner{padding-right: 0}
	.melinda-posts-layout .wrap-post-format .bg-shape{display: none}
	.melinda-clients .elementor-swiper-button{display: none}
	.footer-nav .backtotop{right: 10px; top: calc(100% - 20px)}
	.promobox-item{margin-bottom: 20px}
	.blog-1st_fullpost_grid .post.item-1 .post-info, .blog-1st_fullpost_list .post.item-1 .post-info{padding: 30px}
	.blog-1st_fullpost_grid .post.item-1 .post-info .post-title, .blog-1st_fullpost_list .post.item-1 .post-info .post-title{font-size: 2rem}
	.feature-blog .post-info .post-title{font-size: 2.25rem;margin-bottom: 20px}
	.post-meta div{margin-right: 15px}
	.no-sidebar .blog-1st_fullpost_grid .post.item-1 .post-format, .no-sidebar .blog-1st_fullpost_list .post.item-1 .post-format {
		--post-image-ratio: 2/3;
	}
	.post-related .post-title{font-size: 1.5rem}
}
@media (min-width: 576px) and (max-width: 767.98px){
	.blog-standard .post-title{font-size: 2.25rem}
	.blog-1st_fullpost_grid .post.item-1 .post-format{--post-image-ratio: 3/4;}
	.blog-1st_fullpost_list .post .post-format {--post-image-ratio: 7/6;}
	.blog-1st_fullpost_list .post.has-post-thumbnail:not(.item-1) .post-format{margin-right: 1rem}
	.no-sidebar .blog-1st_fullpost_list .post:not(.item-1) .post-info .post-title,
	.blog-1st_fullpost_list .post:not(.item-1) .post-info .post-title{font-size: 1.75rem;}
	.melinda-single-post > .post-format::after {padding-top: 45%;}
	.post-about{padding: 40px 30px}
}
@media (max-width: 575.98px){
	.footer-nav .backtotop{
		right: 15px;
		top: auto;
		bottom: -8px;
	}
	.feature-blog .post-inner::after{padding-top: 95%}
	.wpb_widgetised_column .widget, .sidebar .widget{padding: 35px}
	.feature-blog .post-info .post-title{font-size: 2rem}
	.blog-standard .post-title{font-size: 2rem}
	.blog-1st_fullpost_grid .post.item-1 .post-format{--post-image-ratio: 4/3;}
	.blog-1st_fullpost_list .post.has-post-thumbnail:not(.item-1) .post-format {
		flex: 0 0 100%;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.no-sidebar .blog-1st_fullpost_list .post:not(.item-1) .post-info .post-title,
	.blog-1st_fullpost_list .post:not(.item-1) .post-info .post-title{font-size: 2rem}
	.blog-1st_fullpost_list .post .post-format {--post-image-ratio: 3/4;}
	.no-sidebar .blog-1st_fullpost_grid .post.item-1 .post-format, .no-sidebar .blog-1st_fullpost_list .post.item-1 .post-format {
		--post-image-ratio: 4/5;
	}
	.melinda-single-post > .post-format::after {padding-top: 65%;}
	.melinda-single-post .post-single .post-title {font-size: 2rem;}
	.post-about{flex-direction: column;padding: 40px;text-align: center}
	.post-about .ab-img{margin: 0 auto}
}