/* home page
/**
 * CSS for Different Category Display Options
 * Add this to your theme's style.css or create a new CSS file and enqueue it
 */

/* General Article Styling */
.box-article-index,
.box-article-category,
.box-article-list,
.box-article-featured,
.box-article-masonry {
    transition: all 0.3s ease;
    height: 100%;
}

.box-article-index:hover,
.box-article-category:hover,
.box-article-list:hover,
.box-article-featured:hover,
.box-article-masonry:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* */

/* Grid Layout Styling */
.box-article-index,
.box-article-category {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
}

.box-article-index .img-post,
.box-article-category .img-post {
    margin: 0;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.box-article-index .img-post img,
.box-article-category .img-post img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.box-article-index:hover .img-post img,
.box-article-category:hover .img-post img {
    transform: scale(1.05);
}

.box-article-index .info-index,
.box-article-category .info-index {
    padding: 1rem;
}

.box-article-index .category-post-index a,
.box-article-category .category-post-index a {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 5px;
    background-color: var(--accent-color, #0066cc);
    color: #fff;
    text-decoration: none;
}

.box-article-index .link-post,
.box-article-category .link-post {
    color: var(--text-primary, #333);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.box-article-index a:hover .link-post,
.box-article-category a:hover .link-post {
    color: var(--accent-color, #0066cc);
}

.box-article-index .excerpt,
.box-article-category .excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary, #6c757d);
    margin-bottom: 1rem;
}

.time-posts-index {
    font-size: 0.8rem;
    color: var(--text-secondary, #6c757d);
    display: block;
}

/* List Layout Styling */
.box-article-list {
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    background-color: var(--card-bg, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
}

.box-article-list .img-post {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.box-article-list .img-post img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/16;
}

.box-article-list:hover .img-post img {
    transform: scale(1.05);
}

.box-article-list .info-list {
    padding: 0.5rem 0;
}

.box-article-list .link-post {
    color: var(--text-primary, #333);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.box-article-list a:hover .link-post {
    color: var(--accent-color, #0066cc);
}

.box-article-list .excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary, #6c757d);
    margin-bottom: 0.5rem;
}

.time-posts-list {
    font-size: 0.8rem;
    color: var(--text-secondary, #6c757d);
    display: block;
}

/* Featured Layout Styling */
.box-article-featured {
    padding: 1rem;
    background-color: var(--card-bg, #ffffff);
    border-radius: 10px;
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
}

.box-article-featured .img-post {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.box-article-featured .img-post img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.box-article-featured:hover .img-post img {
    transform: scale(1.05);
}

.box-article-featured .info-featured {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.box-article-featured .category-post-featured a {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 5px;
    background-color: var(--accent-color, #0066cc);
    color: #fff;
    text-decoration: none;
}

.box-article-featured .link-post {
    color: var(--text-primary, #333);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.box-article-featured a:hover .link-post {
    color: var(--accent-color, #0066cc);
}

.box-article-featured .excerpt-featured {
    font-size: 0.9rem;
    color: var(--text-secondary, #6c757d);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.time-posts-featured {
    font-size: 0.8rem;
    color: var(--text-secondary, #6c757d);
    display: block;
}

/* Masonry Layout Styling */
.masonry-grid .row {
    margin-left: -15px;
    margin-right: -15px;
}

.box-article-masonry {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    margin-bottom: 15px;
}

.box-article-masonry .img-post {
    margin: 0;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.box-article-masonry .img-post img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.box-article-masonry:hover .img-post img {
    transform: scale(1.05);
}

.box-article-masonry .info-masonry {
    padding: 1rem;
}

.box-article-masonry .link-post {
    color: var(--text-primary, #333);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.box-article-masonry a:hover .link-post {
    color: var(--accent-color, #0066cc);
}

.time-posts-masonry {
    font-size: 0.8rem;
    color: var(--text-secondary, #6c757d);
    display: block;
}

/* View All Button */
.view-all-btn {
    padding: 8px 20px;
    background-color: var(--button-primary-bg, #0066cc);
    color: var(--button-primary-text, #ffffff);
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
}

.view-all-btn:hover {
    background-color: var(--link-color, #0056b3);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
/* related posts */ 

.related-post-card {
    background-color: var(--card-bg, #ffffff);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
}

.img-post img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.related-post-title {
    font-size: 1.1rem;
    margin: 0 0 10px;
    padding: 0 15px;
}

.related-post-title a {
    color: var(--text-primary, #333333);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--accent-color, #0066cc);
}

.related-post-meta {
    font-size: 0.8rem;
    color: var(--text-secondary, #6c757d);
    padding: 0 15px 15px;
}

.no-related-posts {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary, #6c757d);
    background-color: var(--card-bg, #ffffff);
    border-radius: 8px;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
}

/* Dark mode support */
.dark-mode .related-post-card {
    background-color: var(--card-bg, #1e1e1e);
}

.dark-mode .related-post-title a {
    color: var(--text-primary, #e0e0e0);
}

.dark-mode .related-post-meta {
    color: var(--text-secondary, #b0b0b0);
}

.dark-mode .no-related-posts {
    background-color: var(--card-bg, #1e1e1e);
    color: var(--text-secondary, #b0b0b0);
}


/* Category Section Styling */
.category-section {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color, #e0e0e0);
}

.category-section h3 {
    position: relative;
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--text-primary, #333);
}

.category-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color, #0066cc);
}

.category-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-secondary, #6c757d);
}

/* Dark Mode Toggle Button Styles */
.dark-mode-toggle {
    position: relative;
    z-index: 1000;
}

.header-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
}

.footer-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-section h3 {
        font-size: 1.5rem;
    }
    
    .box-article-featured .link-post {
        font-size: 1.2rem;
    }
    
    .box-article-list {
        text-align: center;
    }
    
    .box-article-list .info-list {
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {
    .masonry-grid .row > div {
        width: 100%;
    }
}
/*  end of home page*/ 

.navbar-brand img{
	width: 250px;
	height: 250px;
	object-fit: contain;
}
.navbar-collapse{
	order: 3;
}
.navbar-brand2 img{
	width: 90px;
	height: 90px;
	object-fit: contain;
}
html {
	position: -webkit-sticky;
	position: sticky;
	overflow-x:hidden;
}
a,
ol,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #113b51;
	font-weight: 600;
	text-decoration: none;
}

h2,
h3,
h4,
h5,
h6{
	margin: 1.5rem 0
}
.a:hover,
.a:hover h2,
.a:hover i,
button:hover {
	filter: brightness(.8)
}

.special a,
.specialbutton {
	background-color: #04bf7e;
	color: #fff;
	text-decoration: none;
	padding: 16px 41px;
	font-weight: 700;
	letter-spacing: 2px;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s
}

.special a:hover,
.special button:hover {
	color: #fff;
	filter: brightness(.8)
}

.dropdown-item {
	padding: 1.5rem 1rem;
	font-weight: 600
}
/* Main dropdown menu styling */
.navbar-nav .dropdown-menu {
    background-color: #f8f8f8;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 0;
    min-width: 220px;
    margin-top: 0;
	
}

/* Remove any default transition and display for clean look */
.navbar-nav .dropdown-menu {
    transition: opacity 0.2s ease;
    display: none;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
}

/* Base item styling */
.navbar-nav .dropdown-item {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 25px;
    transition: all 0.2s ease;
    background-color: transparent;
	position: relative;
    transition: all 0.25s ease;
}
/* Hidden arrow by default */
.navbar-nav .dropdown-item:after {
    content: "→";
    position: absolute;
    right: 25px;
    opacity: 0;
    transition: all 0.2s ease;
    transform: translateX(-10px);
}

/* Show arrow on hover and push text slightly left */
.navbar-nav .dropdown-item:hover:after {
    opacity: 1;
    transform: translateX(0);
}

/* Add a bit more padding-right to make room for the arrow */
.navbar-nav .dropdown-item {
    padding-right: 40px;
}

/* Hover effect - clean and minimal */
.navbar-nav .dropdown-item:hover {
    background-color: transparent;
    color: #000;
    padding-left: 28px;
}
.navbar-nav .dropdown-item{
	font-size: 1.2rem;
	
	margin: 10px 0;
}
/* Current/active item styling */
.navbar-nav .dropdown-item.active {
    background-color: transparent;
    color: #000;
    font-weight: 500;
}

/* Type-specific styling */
.navbar-nav .dropdown-item.standard-type {
    color: #777;
}

.navbar-nav .dropdown-item.gallery-type {
    color: #777;
}

.navbar-nav .dropdown-item.quote-type {
    color: #777;
}

/* Link with dash before it */
.navbar-nav .dropdown-item.link-type:before {
    content: "– ";
    margin-right: 3px;
    color: #333;
}

/* Audio link styling - blue color */
.navbar-nav .dropdown-item.audio-type {
    color: #4a90e2;
}

/* Video link styling - orange color */
.navbar-nav .dropdown-item.video-type {
    color: #e27c4a;
}
/* Optional: if you want the arrow to only appear on certain item types */
.navbar-nav .dropdown-item.standard-type:hover:after,
.navbar-nav .dropdown-item.gallery-type:hover:after,
.navbar-nav .dropdown-item.quote-type:hover:after,
.navbar-nav .dropdown-item.link-type:hover:after,
.navbar-nav .dropdown-item.audio-type:hover:after,
.navbar-nav .dropdown-item.video-type:hover:after {
    opacity: 1;
    transform: translateX(0);
}
/* Mobile adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: none;
    }
    
    .navbar-nav .dropdown.show > .dropdown-menu {
        display: block;
    }
	.navbar-nav .dropdown-toggle:after {
		margin-left: 0.5em;
	}
}/*
a,
ol,
ul,
li,
form,
button,
h1,
h2,
h3,
h4,
h5,
h6,
input,
label,
p,
span {
	font-family: Poppins, sans-serif
}
p{
	line-height: 1.5;
	font-size: 1.125rem;
}*/
input,form{
	width: 100%;
}
.t-3 {
	margin-bottom: 3rem
}

.t-8 {
	margin-bottom: 8rem
}

.t-5 {
	margin-bottom: 5rem
}

.t-6 {
	margin-bottom: 6rem
}

.t-10 {
	margin-bottom: 10rem
}

.heading-home {
	font-weight: 700;
	letter-spacing: 2px
}

.heading-home:after {
	content: '';
	max-width: 103px;
	height: 3px;
	background-color: rgb(15 56 0 / 21%);
	display: block;
	position: relative;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 17px
}

body {
	print-color-adjust: exact;
	-webkit-print-color-adjust: exact;
	line-height: 1.5;
	color: #333;
	overflow-x: hidden;

}

.ads-under-nav {
	width: 100%
}

.navbar-light .navbar-nav .nav-link {
	font-weight: 700;
	padding: 0 1.2rem;
	color: #2a2727
}

.nav-shadow {
	background-color: #fafafa;
	box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-webkit-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-moz-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-o-box-shadow: 0 1px 18px rgb(134 137 141 / 13%)
}


.social-media {
	margin-bottom: 0;
	list-style: none;
	width: 100%;
}

.social-media li {
	margin-right: 2%;
	float: right
}

.social-media li i {
	color: #c1b1b1
}

.searchy {
	display: inline-flex
}

.searchy input {
	border: none;
	background-color: transparent;
	width: 180px;
	font-size: 13px
}

::placeholder {
	color: #857171;
	opacity: 1
}

.searchy i {
	color: #c1b1b1
}

.searchy input:focus {
	outline: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	background-color: transparent
}

.searchy button:focus {
	outline: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none
}

.top-header {
	background-color: #fafafa;
	padding: 5px 0
}

.nav-link {
	text-transform: uppercase;
	letter-spacing: 3px
}


.navbar-toggler:focus {
	box-shadow: none
}

.features {
	position: relative
}

.features img {
	object-fit: cover;
	width: 100%;
	min-height: 300px;
	max-height: 450px;
	aspect-ratio: 4/1.4
}

.features .overlay {
	position: absolute;
	left: 0;
	top: 0;
	background: #332e2e;
	background: linear-gradient(0deg, rgba(51, 46, 46, 0) 0, rgba(51, 46, 46, .7259278711484594) 26%, #332e2e 100%);
	opacity: .75;
	bottom: 0;
	width: 100%
}

.features h2 {
	position: absolute;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -50%);
	z-index: 999999;
	color: #fff;
	font-weight: 700;
	letter-spacing: 3px;
	font-size: 3rem;
	width: 90%;
	overflow: hidden
}

.features-btn {
	position: absolute;
	bottom: 68px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%
}

.features-btn a {
	text-decoration: none;
	letter-spacing: 2px;
	font-weight: 700;
	margin: 0 20px;
	padding: 15px 40px;
	background-color: #04bf7e;
	color: #ffff;
	text-transform: uppercase;
	border: none;
	transition: all .5s;
	font-size: 1.1rem
}
/* post navigation */

.navigation img{
	width: 100px;
	height: 100px
}
.link-next, .link-prev{
	display: none
}
.next, .prev{
	transition: all 1s ease;
	padding: 10px 20px;
	box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-webkit-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-moz-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-o-box-shadow: 0 1px 18px rgb(134 137 141 / 13%)

}
.next a, .prev a{
	text-decoration: none
}

.next img, .prev img{
	transition: all 0.5s ease
}
.next:hover img{
	transform: scale(1.2);
	position: relative;
  left: -10px;
  vertical-align: bottom;
}
.prev:hover img{
	transform: scale(1.2);
	position: relative;
  right: -10px;
  vertical-align: bottom;

}
.link-next, .link-prev{
	animation: simo 1s ease 10ms 1 normal backwards;
}
.link-prev{
	animation: sim 1s ease 10ms 1 normal backwards;
}

.prev:hover .link-prev, .next:hover .link-next{
  display: inline-flex;
max-width: 165px;
flex-wrap: wrap;

}
@keyframes simo {
  0% {
    opacity: 0;
    transform: rotateY(-100deg);
    transform-origin: right;
  }

  100% {
    opacity: 1;
    transform: rotateY(0);
    transform-origin: right;
  }
}
@keyframes sim {
  0% {
    opacity: 0;
    transform: rotateY(100deg);
    transform-origin: left;
  }

  100% {
    opacity: 1;
    transform: rotateY(0);
    transform-origin: left;
  }
}

.features-btn a:hover {
	background-color: #069764
}

.newsletter {
	background-color: #fafafa;
	width: 100%;
	padding: 20px 0
}

.submit-btn {
	margin: 0 1.625rem
}

.submit-btn input,
.submit-btn-side input {
	padding: 8px 12px;
	border: 1px solid #ddd;
	width: 100%
}

.submit-btn-side input {
	text-align: center
}

.submit-btn button,
.submit-btn-side button {
	padding: 8px 12px;
	transition: all .5s;
	outline: 0;
	border: none;
	width: 100%;
	background-color: transparent;
	letter-spacing: 2px
}

.submit-btn button:hover,
.submit-btn-side:hover button {
	background-color: #04bf7e;
	border: transparent;
	color: #fff
}

.navbar-light .navbar-toggler {
	color: transparent;
	border-color: transparent
}

.animated-icon1,
.animated-icon2,
.animated-icon3 {
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer
}

.animated-icon1 span,
.animated-icon2 span,
.animated-icon3 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out
}

.animated-icon1 span {
	background: #212529
}

.animated-icon2 span {
	background: #212529
}

.animated-icon3 span {
	background: #212529
}

.animated-icon1 span:nth-child(1) {
	top: 0
}

.animated-icon1 span:nth-child(2) {
	top: 10px
}

.animated-icon1 span:nth-child(3) {
	top: 20px
}

.animated-icon1.open span:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg)
}

.animated-icon1.open span:nth-child(2) {
	opacity: 0;
	left: -60px
}

.animated-icon1.open span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg)
}

.box-article-index {
	background-color: #fafafa;
	box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-webkit-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-moz-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-o-box-shadow: 0 1px 18px rgb(134 137 141 / 13%)
}
.box-article-popular {
	position: relative
}

.box-article-popular span {
	color: #ede9e9;
	padding: 2px 9px;
	position: absolute;
	z-index: 9999;
	top: 0;
	display: none;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s
}

.box-article-popular span:before {
	content: '';
	height: 10px;
	width: 10px;
	background-color: #ffe217;
	display: inline-block;
	margin-right: 5px;
	border-radius: 50%
}

.box-article-popular:hover span {
	display: block;
	top: 5px;
	-webkit-animation: scale-up-bottom .5s cubic-bezier(.39, .575, .565, 1) both;
	animation: scale-up-bottom .5s cubic-bezier(.39, .575, .565, 1) both
}

.img-post-popular {
	overflow: hidden;
	cursor: pointer;
	position: relative;
	border-radius: 8px
}

.img-post-popular img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	border-radius: 8px
}

.img-post-popular:focus img,
.img-post-popular:hover img {
	transform: scale(1.2)
}

.img-post-popular .overlay {
	position: absolute;
	background-color: #332e2e;
	opacity: .75;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 998;
	width: 100%;
	height: 100%
}
.blog-author-img img{
	border-radius: 50%;
	border: 5px solid #ffff;
	object-fit: cover;
}
.img-post-popular:hover .overlay {
	display: block
}

.img-post-popular h3 {
	position: absolute;
	color: #fff;
	font-size: 18px;
	bottom: 0;
	left: 8%;
	display: none;
	z-index: 999;
	font-weight: 700;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.img-post-popular:hover h3 {
	display: block;
	bottom: 50px;
	-webkit-animation: scale-up-bottom .5s cubic-bezier(.39, .575, .565, 1) both;
	animation: scale-up-bottom .5s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes scale-up-bottom {
	0% {
		-webkit-transform: scale(.5);
		transform: scale(.5);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%
	}
}

@keyframes scale-up-bottom {
	0% {
		-webkit-transform: scale(.5);
		transform: scale(.5);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%
	}
}

.wp-block-separator {
	margin: 3rem 0
}

input:focus {
	outline: 1px solid #707070
}

.comment-form-author input,
.comment-form-comment textarea,
.comment-form-email input,
.comment-form-url input {
	width: 100%;
	background-color: #dedede;
	border: none;
	padding: 5px
}

.form-submit input {
	background-color: transparent;
	border: 1px solid #e4e4e4;
	outline: 0;
	padding: 10px 20px
}

.form-submit input:hover {
	background-color: #a6a1a1;
	color: #ffff;
	border-color: transparent
}

.comment-form p {
	display: grid
}

.comment-form label {
	color: #7d7c7c
}

.load-more button {
	background-color: #04bf7e;
	width: 100%;
	border: none;
	padding: 12px 0;
	border-radius: 7px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px
}

.load-more button:hover {
	color: #fff;
	background-color: #069764
}

.box-article {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center
}

.box-article-index:hover h2 a,
.box-article:hover h2 a {
	color: #04bf7e
}

.category-post a {
	text-decoration: none;
	color: #ede9e9;
	padding: 2px 9px;
	position: absolute;
	z-index: 9999;
	top: 0;
	left: 0;
	display: none;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s
}

.category-post a:before {
	content: '';
	height: 10px;
	width: 10px;
	background-color: #ffe217;
	display: inline-block;
	margin-right: 5px;
	border-radius: 50%
}

.box-article:hover .category-post a {
	display: block;
	top: 5px;
	-webkit-animation: scale-up-bottom .5s cubic-bezier(.39, .575, .565, 1) both;
	animation: scale-up-bottom .5s cubic-bezier(.39, .575, .565, 1) both
}

.img-post {
	overflow: hidden;
	cursor: pointer;
	position: relative;
	display: inline-block
}

.img-post-single img {
	width: 100%;
	height: auto;
	aspect-ratio: 16/16;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 10px 30px 0 rgb(17 59 81 / 20%);
	-webkit-box-shadow: 0 10px 30px 0 rgb(17 59 81 / 20%);
	-o-box-shadow: 0 10px 30px 0 rgb(17 59 81 / 20%);
	-moz-box-shadow: 0 10px 30px 0 rgb(17 59 81 / 20%)
}

.next a i,
.prev a i {
	font-size: 2rem
}

.single-post p {
	line-height: 1.75;
	font-size: 1.125rem
}

.img-post img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	border-radius: 8px;
	aspect-ratio: 4/3.2
}

.img-post:focus img,
.img-post:hover img {
	transform: scale(1.2)
}

.img-post img:before {
	content: "";
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0
}

.img-post:focus img:before,
.img-post:hover img:before {
	display: block
}

.info {
	width: 100%
}

.info .category-post {
	float: right
}

.info h2 {
	vertical-align: -webkit-baseline-middle;
	font-size: 1.6rem;
	font-weight: 700
}

.info a,
.link-post:hover {
	color: #dfd8d8;
	text-decoration: none
}

.info-index a {
	text-decoration: none
}

.info-index span,
.info-index span a {
	color: #b5a5a5
}

.info-index p {
	color: #666
}

.page-content {
	padding: 47px;
	box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-webkit-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-moz-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-o-box-shadow: 0 1px 18px rgb(134 137 141 / 13%)
}

.category-post-index a:hover {
	color: #395263
}

.comment-post-index:hover i {
	color: #395263
}

.read-more {
	background-color: #ddd;
	width: 123px;
	text-align: center;
	padding: 8px 0;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.read-more:hover {
	background-color: #04bf7e
}

.read-more a:hover {
	color: #fff
}

.sidebar-features {
	height: 100%
}

.ads {
	background-color: #212529;
	width: 100%;
	height: 300px
}
.ads-sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	text-align: center;
	box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-webkit-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-moz-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-o-box-shadow: 0 1px 18px rgb(134 137 141 / 13%)
}/*
.ads-sidebar > div{
	
}*/

.disclaimer-label {
	font-weight: 700;
	font-family: inherit; /* Ensures it uses the same font */
}
  .sidebar-disclaimer-container #disclaimer-placeholder {
    font-size: 0.9em;
    margin-bottom: 20px;
}

.sidebar-disclaimer-container #disclaimer-placeholder p {
    margin: 0;
}  
.ads-sidebar > div > ul {
	list-style: none;
}
.ads-sidebar > div > ul > li{
	padding: 10px 0;
}
/* Add to Appearance > Customize > Additional CSS */
.sidebar-features .wp-block-heading {
	margin-bottom: 0;
    border-bottom: 1px solid #b9b6b6;
    padding: 15px;
    border-top: 1px solid #b9b6b6;
	width: 60%;
	margin-left: auto;
    margin-right: auto;
	font-size: 1.5rem;
	text-align: center;
}

.cat:before {
	content: '';
	height: 10px;
	width: 10px;
	background-color: #ffe217;
	display: inline-block;
	margin-right: 12px
}
.breadcrumb-item a {
	text-decoration: none;
	color: #6f5762;
	font-weight: 700
}
.guides-post-features {
	position: relative;
	padding: 0;
	margin: 0
}
.btn-guides {
	height: 100%;
	position: absolute;
	top: 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	right: 149px;
	z-index: 99999999999
}
.guides-post-features h2 {
	position: absolute;
	top: -47px;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
	align-items: center;
	justify-content: center
}
.guides-post-features span {
	position: absolute;
	top: .9rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
	align-items: center;
	justify-content: center;
	max-width: 480px;
	overflow: hidden
}
.btn-guides {
	height: 100%
}
.post-features {
	position: relative
}
.post-features img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-height: 450px
}
.post-features .overlay {
	position: absolute;
	left: 0;
	top: 0;
	background-color: #332e2e;
	opacity: .75;
	bottom: 0;
	width: 100%
}
.line-footer {
	border-bottom: 1px solid #cfcdcd;
	margin: 2rem 0
}

.footer-nav ul {
	list-style: none;
}
.footer-nav .nav-link {
	font-size: 12px;
	color: #444;
	font-weight: 700;
	padding: 0 1rem;
}
.footer-nav .nav-link:hover {
	filter: brightness(.6)
}
.footer-div {
	background-color: #efefef
}
.icon-top i {
	position: fixed;
	bottom: 65px;
	right: 33px;
	font-size: 32px;
	color: #04bf7e
}
.icon-top i:hover{
	filter: brightness(.7);
}
.author-post img {
	border-radius: 50%;
	object-fit: cover;
}
.author-post-sidebar img{
	width: 100%;
	height: 100%;
	max-width: 240px;
	max-height: 240px;
	border-radius: 50%;
	object-fit: cover;
}
.author-name {
	display: grid;
	padding: 0 20px
}
.author-name span {
	font-size: .85rem
}
.social-share {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	align-items: center
}
.social-share a i {
	font-size: 1.7rem
}
.facebook a i:hover {
	color: #026ae3
}
.twitter a i:hover {
	color: #2aa6e2
}
.pinterest a i:hover {
	color: #e83f46
}
.reddit a i:hover {
	color: #ff4601
}
.brief {
	background-color: #fafafa;
	padding: 2rem;
	line-height: 1.75;
	font-size: .875em;
	color: #777
}
.page-item.active .page-link{
	background-color: #414242;
  border-color: #414242;
}
.page-link{
	color: #414242;
}
/* menu */
.sub-menu{
	display: none
}
.nav_link:hover .depth_0{
	display:block
}
.dropdown-menu{
	border:none;
	box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-webkit-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-moz-box-shadow: 0 1px 18px rgb(134 137 141 / 13%);
	-o-box-shadow: 0 1px 18px rgb(134 137 141 / 13%)
}
@media only screen and (max-width:540px) {
	.dropdown-item{
		white-space: pre-wrap;
		line-height: 1;
		  padding: 1.1rem 1rem;
}
	.dropdown-menu{
		box-shadow: none
	}
	.link-prev:before{
		content: "\003C";
	font-weight: bold;
	}
	.link-next:after{
		content: "\003E";
	font-weight: bold;
	}

	.time-posts-index {
		font-size: 15px;
		line-height: 0
	}
	.comment-post-index,
	.time-posts-index {
		font-size: 14px
	}
	.box-article-popular span {
		display: block
	}
	.category-post a {
		left: 0;
		display: block
	}
	.img-post {
		width: 100%
	}
	.navbar {
		padding: 1.5rem;
		line-height: .2;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.navbar-nav {
		margin: 1.5rem 0
	}
	.searchy input {
		width: 140px
	}
	.navbar-light .navbar-nav .nav-link {
		padding: 1rem 0
	}
	.social-media {
		justify-content: center;
		display: flex;
		padding: 1.1rem 0
	}
	.social-media i {
		font-size: 15px
	}
	.searchy {
		display: flex;
		justify-content: center;
		padding: 1rem 0 0
	}
	.ads-header img {
		width: 100%;
		height: auto
	}
	.features h2 {
		font-size: 1.6rem;
		width: 95%
	}
	.features-btn {
		bottom: 50px
	}
	.features-btn button {
		font-size: .8125rem;
		padding: 6px 30px
	}
	.text-submit {
		text-align: center;
		margin-bottom: 1rem
	}
	.submit-btn input {
		font-size: .8125rem;
		font-size: .9rem
	}
	.submit-btn button {
		font-size: .8125rem;
		width: fit-content
	}
	.img-post-popular h3 {
		left: 0;
		padding: 0 10px;
		text-align: center;
		display: block
	}
	.text-footer {
		text-align: center
	}
	.post-features {
		height: 260px
	}
	.btn-guides {
		width: 100%;
		justify-content: end;
		right: 0
	}
	.guides-post-features h2 {
		left: 0;
		right: 0;
		top: -60px;
		text-align: center;
		padding: 0 2px
	}
	.guides-post-features span {
		text-align: center;
		left: 0;
		right: 0
	}
	.features-btn a {
		margin: 0 10px;
		font-size: .8125rem;
		padding: 8px 15px;
		text-align: center
	}
	.show li{
		display: block;
	}
	.show .sub-menu{
		display: block;
		margin-left: 40px
	}
	.navbar-nav .dropdown-menu{
		background-color: transparent
	}
}

@media only screen and (min-width:541px) and (max-width:768px) {
	.dropdown-item{
		white-space: pre-wrap;
		line-height: 1;
		  padding: 1.1rem 1rem;
}

	.dropdown-menu{
		box-shadow: none
	}
	.link-prev:before{
		content: "\003C";
	font-weight: bold;
	}
	.link-next:after{
		content: "\003E";
	font-weight: bold;
	}
	.navbar {
		padding: 1.5rem;
		line-height: .2;
		display: block;
	}
	.navbar-nav {
		margin: 1.5rem 0
	}
	.show li{
		display: block;
	}
	.show .sub-menu{
		display: block;
		margin-left: 40px
	}
	.navbar-nav .dropdown-menu{
		background-color: transparent
	}
	.fixed{
		top: 100px
	}
	.btn-guides {
		right: 1rem
	}
	.navbar-light .navbar-nav .nav-link {
		padding: 1rem 0
	}
	.navbar {
		padding: 1.5rem;
		line-height: .2;
	}
	.features-btn a {
		margin: 0 10px;
		font-size: 1rem;
		padding: 11px 25px;
		text-align: center
	}
	.features h2 {
		font-size: 2.3rem
	}
	.box-article-popular span {
		display: block
	}
	.category-post a {
		left: 0;
		display: block
	}
	.img-post-popular h3 {
		left: 0;
		padding: 28px 13px;
		text-align: center;
		display: block
	}
	.guides-post-features span {
		max-width: 444px
	}
	.img-post {
		display: block
	}
}

@media only screen and (min-width:769px) and (max-width:991px) {
	.dropdown-item{
		white-space: pre-wrap;
		line-height: 1;
		  padding: 1.1rem 1rem;
	}
	.dropdown-menu{
		box-shadow: none
	}
	.link-prev:before{
		content: "\003C";
	font-weight: bold;
	}
	.link-next:after{
		content: "\003E";
	font-weight: bold;
	}
	.box-article {
		align-items: unset
	}
	.btn-guides {
		right: 1.2rem
	}
	.navbar-light .navbar-nav .nav-link {
		padding: 1rem 0
	}
	.features-btn a {
		margin: 0 10px;
		font-size: 1rem;
		padding: 11px 25px;
		text-align: center
	}
	.features h2 {
		font-size: 2.5rem
	}
	.box-article-popular span {
		display: block
	}
	.category-post a {
		left: 0;
		display: block
	}
	.img-post-popular h3 {
		left: 0;
		padding: 28px 13px;
		text-align: center;
		display: block
	}
	.navbar {
		padding: 1.5rem;
		line-height: .2;

	}

	.img-post {
		display: block
	}
}

@media all and (min-width:992px) {

	.show li{
		display: block;
	}
	.show:hover .sub-menu{
		display: block;
		margin-left: 40px
	}
	.navbar .nav-item .dropdown-menu {
		margin-top: 0
	}
	.box-layout1{
		width: 48%;
		margin: 0 10px
	}
	.dropdown-item{
		white-space: pre-wrap;
		line-height: 1;
		  padding: 1.1rem 1rem;
	}
	.nav-link:hover .dropdown-menu{
		display: block
	}
}
