:root {
    --primary-color: #16c47f;
    --secondary-color: #333;
    --accent-color: #f8f8f8;
    --text-light: #fff;
    --text-dark: #333;
    --transition: all 0.3s ease;
    --heading-font: 'Righteous', cursive;
    --body-font: 'Nunito', sans-serif;
}
a:hover{
	color: var(--primary-color);
}
body {
	background:none !important
}
#masthead{
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 110px;
}
#masthead .site-main-header-inner-wrap{
	display: flex;
    justify-content: space-between;
    align-items: center;
	
}
#inner-wrap{
	margin:80px 0 60px;
}
.single-content{
	margin:0
}
.blog-page-header {
    text-align: center;
    margin-top: 50px;
	padding:0 15px;
}
.blog-page-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.blog-page-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.container{
	max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}
.row{
	display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px -15px 0;
}
.cols{
	background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cols img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.con {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.meta{
	color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin:0 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.meta i {
	margin-right:10px
}
.con h6 {
    font-family: var(--body-font);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.3;
	font-weight:400
}
.con h6 + p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    max-height: calc(1.6em * 3);
    min-height: calc(1.6em * 3);
}
.btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    margin-top: auto;
}
.wp-pagenavi {
	padding:45px 0 0;
	display:flex;
	justify-content:center
}
footer {
    background-color: #1b1b1b;
    color: #f5f5f5;
    position: relative;
}
footer .widget-area .widget-title {
    font-family: var(--heading-font);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
	color:white;
	text-transform:capitalize;
	font-weight:500
}
footer h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}
footer ul {
    margin:0 0 30px;
	list-style:none
}
footer ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b7b7b7;
    line-height: 1.6;
}
footer li a{
	color:white !important;
}
footer li a i {
    color: var(--primary-color);
    margin-top: 5px;
	margin-right:10px;
}
.kadence-thumbnail-position-behind+.entry {
	background: none;
}
.content-width-narrow .content-container.site-container, .content-width-narrow .hero-container.site-container {
	max-width: 1100px;
	padding:0 15px;
}
.elementor-widget-image img {
	width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 10px;
}
.site-container, .site-header-row-layout-contained, .site-footer-row-layout-contained, .entry-hero-layout-contained, .alignfull>.wp-block-cover__inner-container, .alignwide>.wp-block-cover__inner-container {
	padding: 0;
}
.entry-content-wrap {
	padding: 0 20px;
}
.e-con {
	padding: 0;
}
.e-con.e-con>.e-con-inner>.elementor-widget, .elementor.elementor .e-con>.elementor-widget {
	margin-top: 30px;
}
.single-content h1, .single-content h2, .single-content h3, .single-content h4, .single-content h5{
	font-family: 'Righteous', cursive;
	font-size: 2rem;
    color: #333;
    margin: 40px 0 20px;
	font-weight: 400;
}
.single-content h3{
	margin: 30px 0 15px;
}
.single-content li,
.single-content p
{
	margin-bottom: 20px;
	line-height: 1.8;
    color: #333;
    font-size: 1.05rem;
	font-family: 'Nunito', sans-serif;;
    font-style: normal;
    font-weight: 300;
}
.wp-pagenavi span,
.wp-pagenavi a {
	margin:0 10px;
	padding:5px 10px;
	font-size:13px;
}
.wp-pagenavi span.current,
.wp-pagenavi a:hover {
	background: var(--primary-color);
	color:white;
	border-color:var(--primary-color)
}
h1.entry-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
	font-weight:500;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}
.entry-date {
	    color: #666;
    font-size: 0.95rem;
}
.entry-date:before{
	font-family: "Font Awesome 5 Free";
	content: "\f073";
	font-weight:900;
	color:var(--primary-color);
	padding-right:10px
}
#text-2 h4 {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
	    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--body-font);
    font-weight: 600;
}
#text-2 h4 + ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}
#text-2 h4 + ul li img {
    height: 30px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    opacity: 1;
    transition: opacity 0.3s ease;
    object-fit: contain;
    background-color: transparent;
}
#text-3 .textwidget {
	padding-right:35px
}
#text-3 .textwidget li{
	display:flex;
	justify-content:space-between;
	font-size:16px;
	color: white !important;
}
#custom_html-2 iframe {
    width: 100%;
    height: 530px;
    border: none;
    border-radius: 8px;
	overflow:hidden;
}
.site-bottom-footer-inner-wrap{
    border-top: none;
    padding: 20px 0;
    text-align: center;
    background-color: #1b1b1b;
    margin-top: 20px;
}
.site-bottom-footer-inner-wrap p {
    font-size: 14px;
    color: #ffffff;
    margin:0 0 2px;
	display: flex;
    justify-content: center;
}
.site-bottom-footer-inner-wrap p a{
	color:var( --primary-color)	
}
.site-bottom-footer-inner-wrap p img {
    width: 100px;
    margin-left:10px;
}
.entry-meta span {
	color: #666;
    font-size: 0.95rem;
	padding-right:15px;
}
.entry-meta span:after{
	display:none
}
.entry-meta span i {
	margin-right:10px;
	color: var(--primary-color);
}
.entry-footer{
	display:none !important
}
.bottom-con {
	padding:65px 35px;
}
.bottom-con .e-con-inner{
	display: flex;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: center !important;	
}
.bottom-con .elementor-widget-heading,
.bottom-con .elementor-widget-text-editor{
	width:100%;
}
.bottom-con h2 {
	font-family: var(--heading-font) !important;
	font-size:26px !important;
	font-weight:500 !important
}
.bottom-con p {
	font-family: var(--body-font) !important;
	font-size:18px !important;
	font-weight:500 !important;
	color:white;
	margin-bottom:15px !important;
}
.bottom-con a{
	font-family: var(--body-font) !important;
    width: 160px;
    height: 55px;
    border-radius: 8px;
    color: var(--primary-color) !important;
    box-shadow: none !important;
    background-color: white !important;
    border: 2px solid white;
    margin: 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700 !important;
}
.bottom-con a:hover{
	background:none !important;
	color:white !important
}
.bottom-con .elementor-element{
	margin:0 !important
}
@media(max-width:1099px){
	
	footer ul li br{
		display:none !important
	}
	footer{
		padding:35px 15px;
	}
}
@media(min-width:768px) and (max-width:991px){
	    .site-footer-row-container-inner .site-footer-row.site-footer-row-columns-3.site-footer-row-tablet-column-layout-equal {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
	.site-bottom-footer-inner-wrap{
		padding:0;
		margin:0;
	}
}
@media(max-width:767px){
	h1.entry-title {
		font-size: 1.5rem;
	}
	.con h6,
	.single-content h1, .single-content h2, .single-content h3, .single-content h4, .single-content h5{
		font-size:1.3rem;
	}
	.site-bottom-footer-inner-wrap{
		padding:0;
		margin:0;
	}
	.row{
		margin:40px 0 0
	}
}
@media(min-width:600px) and (max-width:767px){
	.row{
		grid-template-columns:repeat(auto-fill, minmax(250px, 2fr));
	}
}
@media(max-width:599px){
	#text-3 .textwidget li {
		flex-direction:column
	}
}