/*!
Theme Name: MT Minimag
Theme URI: https://mightythemes.com/products/mt-minimag-theme/
Author: MightyThemes
Author URI: https://mightythemes.com
Description: A WordPress Magazine or blog theme with a creative and clean look.
Version: 1.1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mtminimag
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, theme-options, right-sidebar, left-sidebar, magazine, blog-theme
*/

* {
	margin: 0;
	padding: 0;
}
  

:root {
	--fontawesome: "Font Awesome 5 free";
	/* Mobile Menu */
	--link-color-mobile: #252525;
	--link-bgcolor-mobile: var(--main-menu-bg-mobile);
	--link-color-active-mobile: var(--main-color);
	--link-color-hover-mobile: var(--main-color);
	--main-menu-bg-mobile: #f9f9f9;
	--main-menu-top-border-color: #ebeff5;
	/* Submenu */
	--submenu-bg: #fff;
	--submenu-link-color: #000;
	--submenu-link-color-active: #000;
	--submenu-width: 200px;
	--submenu-border-color: #f5f5f5;
}

/* Preloaders */
#wp-preloader {
	background: #fff;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
}

/*
01. Rotating Plane
02. Fading Circle
03. Folding Cube
04. Double Bounce
05. Wave
06. Wandering Cubes
07. Pulse
08. Chasing Dots
09. Three Bounce
10. Circle
11. Cube Grid
12. Bouncing Loader
13. Donut
*/
/* 01. Rotating Plane */
.sk-rotating-plane {
	width: 40px;
	height: 40px;
	background-color: #210048;
	margin: 0px auto;
	animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@keyframes sk-rotatePlane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	}

	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

/* 02. Fading Circle */
.sk-fading-circle {
	margin: 0px auto;
	width: 40px;
	height: 40px;
	position: relative;
}

.sk-fading-circle .sk-circle {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.sk-fading-circle .sk-circle:before {
	content: '';
	display: block;
	margin: 0 auto;
	width: 15%;
	height: 15%;
	background-color: #210048;
	border-radius: 100%;
	animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
	transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
	transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
	transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
	transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
	transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
	transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
	transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
	transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
	transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
	transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
	transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
	animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
	animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
	animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
	animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
	animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
	animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
	animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
	animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
	animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
	animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
	animation-delay: -0.1s;
}

@keyframes sk-circleFadeDelay {

	0%,
	39%,
	100% {
		opacity: 0;
	}

	40% {
		opacity: 1;
	}
}

/* 03. Folding Cube  */
.sk-folding-cube {
	margin: 0px auto;
	width: 40px;
	height: 40px;
	position: relative;
	transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #210048;
	animation: sk-foldCubeAngle 2.4s infinite linear both;
	transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
	transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
	transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
	transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
	animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
	animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
	animation-delay: 0.9s;
}

@keyframes sk-foldCubeAngle {

	0%,
	10% {
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

/* 04. Double Bounce  */
.sk-double-bounce {
	width: 40px;
	height: 40px;
	position: relative;
	margin: 0px auto;
}

.sk-double-bounce .sk-child {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #210048;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	animation: sk-doubleBounce 2.0s infinite ease-in-out;
}

.sk-double-bounce .sk-double-bounce2 {
	animation-delay: -1.0s;
}

@keyframes sk-doubleBounce {

	0%,
	100% {
		transform: scale(0);
	}

	50% {
		transform: scale(1);
	}
}

/* 05. Wave  */
.sk-wave {
	margin: 0px auto;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}

.sk-wave .sk-rect {
	background-color: #210048;
	height: 100%;
	width: 6px;
	display: inline-block;
	animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect1 {
	animation-delay: -1.2s;
}

.sk-wave .sk-rect2 {
	animation-delay: -1.1s;
}

.sk-wave .sk-rect3 {
	animation-delay: -1s;
}

.sk-wave .sk-rect4 {
	animation-delay: -0.9s;
}

.sk-wave .sk-rect5 {
	animation-delay: -0.8s;
}

@keyframes sk-waveStretchDelay {

	0%,
	40%,
	100% {
		transform: scaleY(0.4);
	}

	20% {
		transform: scaleY(1);
	}
}

/* 06. Wandering Cubes  */
.sk-wandering-cubes {
	margin: 0px auto;
	width: 40px;
	height: 40px;
	position: relative;
}

.sk-wandering-cubes .sk-cube {
	background-color: #210048;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 0;
	left: 0;
	animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}

.sk-wandering-cubes .sk-cube2 {
	animation-delay: -0.9s;
}

@keyframes sk-wanderingCube {
	0% {
		transform: rotate(0deg);
	}

	25% {
		transform: translateX(30px) rotate(-90deg) scale(0.5);
	}

	50% {
		/* Hack to make FF rotate in the right direction */
		transform: translateX(30px) translateY(30px) rotate(-179deg);
	}

	50.1% {
		transform: translateX(30px) translateY(30px) rotate(-180deg);
	}

	75% {
		transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
	}

	100% {
		transform: rotate(-360deg);
	}
}

/* 07. Pulse */
.sk-spinner-pulse {
	width: 40px;
	height: 40px;
	margin: 0px auto;
	background-color: #210048;
	border-radius: 100%;
	animation: sk-pulseScaleOut 1.0s infinite ease-in-out;
}

@keyframes sk-pulseScaleOut {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
		opacity: 0;
	}
}

/* 08. Chasing Dots */
.sk-chasing-dots {
	margin: 0px auto;
	width: 40px;
	height: 40px;
	position: relative;
	text-align: center;
	animation: sk-chasingDotsRotate 2s infinite linear;
}

.sk-chasing-dots .sk-child {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	background-color: #210048;
	border-radius: 100%;
	animation: sk-chasingDotsBounce 2s infinite ease-in-out;
}

.sk-chasing-dots .sk-dot2 {
	top: auto;
	bottom: 0;
	animation-delay: -1s;
}

@keyframes sk-chasingDotsRotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes sk-chasingDotsBounce {

	0%,
	100% {
		transform: scale(0);
	}

	50% {
		transform: scale(1);
	}
}

/* 09. Three Bounce */
.sk-three-bounce {
	margin: 0px auto;
	width: 80px;
	text-align: center;
}

.sk-three-bounce .sk-child {
	width: 20px;
	height: 20px;
	background-color: #210048;
	border-radius: 100%;
	display: inline-block;
	animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
	animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
	animation-delay: -0.16s;
}

@keyframes sk-three-bounce {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

/* 10. Circle */
.sk-circle {
	margin: 0px auto;
	width: 40px;
	height: 40px;
	position: relative;
}

.sk-circle .sk-child {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.sk-circle .sk-child:before {
	content: '';
	display: block;
	margin: 0 auto;
	width: 15%;
	height: 15%;
	background-color: #210048;
	border-radius: 100%;
	animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
	transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
	transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
	transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
	transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
	transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
	transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
	transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
	transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
	transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
	transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
	transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
	animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
	animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
	animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
	animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
	animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
	animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
	animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
	animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
	animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
	animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
	animation-delay: -0.1s;
}

@keyframes sk-circleBounceDelay {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

/* 11. Cube Grid */
.sk-cube-grid {
	width: 40px;
	height: 40px;
	margin: 0px auto;
}

.sk-cube-grid .sk-cube {
	width: 33.33%;
	height: 33.33%;
	background-color: #210048;
	float: left;
	animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
	animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
	animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
	animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
	animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
	animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
	animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
	animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
	animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
	animation-delay: 0.2s;
}

@keyframes sk-cubeGridScaleDelay {

	0%,
	70%,
	100% {
		transform: scale3D(1, 1, 1);
	}

	35% {
		transform: scale3D(0, 0, 1);
	}
}

/* 12. Bouncing Loader */
.bouncing-loader {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.bouncing-loader>div {
	width: 30px;
	height: 30px;
	margin: 1rem 0.2rem 0;
	background: #210048;
	border-radius: 50%;
	animation: bouncing-loader 0.6s infinite alternate;
}

.bouncing-loader>div:nth-child(2) {
	animation-delay: 0.2s;
}

.bouncing-loader>div:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes bouncing-loader {
	to {
		opacity: 0.1;
		transform: translate3d(0, -1rem, 0);
	}
}

/* 13. Donut */
.donut {
	display: inline-block;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-left-color: #210048;
	border-radius: 50%;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	animation: donut-spin 1.2s linear infinite;
}

@keyframes donut-spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Ends Preloader */

/* Back To top */
#backtotop {
	line-height: 0;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1020;
	padding: 10px;
	text-align: center;
	box-sizing: content-box;
}

#backtotop.circle {
	border-radius: 100%;
}
/* Ends Back To Top */

/* --------- */
/* Main Menu
==================== */

.main-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	background-color: var(--main-menu-bg);
}

.main-menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.main-menu .menu li {
	position: relative;
	display: flex;
	align-items: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-horizontal .main-menu .menu li {
	padding: 10px;
}

.header-stacked .main-menu .menu>li>a {
	padding: 25px 15px;
}

/* Menu */

.main-menu .menu > li.menu-item-has-children > a {
	padding-right: 0;
}

.main-menu .menu li.menu-item-has-children span{
	padding: 0 15px;
	cursor: pointer;
	display: inline-flex;
}

.main-menu .menu li.menu-item-has-children span:after {
	content: "\f107";
	font-family: var(--fontawesome);
	font-weight: bold;
	font-size: 12px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.main-menu .menu li.menu-item-has-children ul li a {
	flex-basis: 100%;
	padding: 12px 20px;
	color: var(--submenu-link-color);
}

.main-menu .menu li.menu-item-has-children li:not(:first-child) {
	border-top: 1px solid var(--submenu-border-color);
}

.main-menu .menu>li ul {
	width: 100%;
	background-color: var(--submenu-bg);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
}

@media (min-width:992px) {
	.main-menu .menu {
		display: flex;
		flex-wrap: wrap;
	}

	.main-menu .menu > li ul {
		width: var(--submenu-width);
		position: absolute;
		top: 100%;
		transition: all 0.1s ease;
		transform: translate3d(0, 10px, 0);
		box-shadow: 0 1px 7px rgba(0, 0, 0, .05);
	}

	.main-menu .menu li.menu-item-has-children:hover>ul {
		opacity: 1;
		transform: translate3d(0, 0px, 0);
		visibility: visible;
	}

	.main-menu .menu>li ul ul {
		margin-left: var(--submenu-width);
		top: 1px;
	}

	.main-menu .menu > li.menu-item-has-children > span {
		padding: 7px;
	}
	

	.main-menu .menu > li.menu-item-has-children:hover > span:after {
		transform: rotate(-180deg);
	}

	.main-menu .menu ul li.menu-item-has-children:hover > span:after {
		transform: rotate(-90deg);
	}
}

@media (max-width:991px) {
	.menu-main-container {
		flex-basis: 100%;
		flex-grow: 1;
		-webkit-box-flex: 1;
		max-height: 300px;
		overflow-y: scroll;
		box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
	}

	.main-menu .menu li.menu-item-has-children span:after {
		padding: 0 15px;
	}

	.main-menu li {
		background-color: var(--link-bgcolor-mobile);
	}

	.main-menu .menu li.menu-item-has-children span {
		position: absolute;
		right: 0;
	}

	.header-stacked .main-menu .menu li.menu-item-has-children span {
		margin-top: 15px;
	}

	.main-menu .menu li.menu-item-has-children.open > span:after{
		transform: rotate(-180deg);
	}

	.main-menu .menu li:not(:first-child),
	.main-menu .menu li.menu-item-has-children li:not(:first-child){
		border-top: 1px solid var(--main-menu-top-border-color);
	}

	.main-menu .menu li.menu-item-has-children ul {
		border-top: 1px solid var(--main-menu-top-border-color);
		display: none;
	}

	.main-menu .menu li.menu-item-has-children.open > ul {
		display: block;
		opacity: 1;
		visibility: visible;
		margin-top: 10px;
	}

	.main-menu .menu li {
		flex-direction: column;
		align-items: inherit;
	}

	.search-link form.search-form button .icon-search {
		margin-left: inherit;
	}

	.search-link form.search-form button {
		margin: 0;
	}

	.main-menu {
		width: 100%;
		border-top: 2px solid var(--main-menu-top-border-color);
		background-color: var(--main-menu-bg-mobile);
		opacity: 0;
		visibility: hidden;
		position: absolute;
		left: 0;
		z-index: 9999;
		transition: all 0.3s ease;
		transform: translate3d(0, 10px, 0);
	}

	.header-horizontal .main-menu {
		margin-top: 30px;
	}

	.main-menu.show {
		display: block;
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 0px, 0);
	}
}

/* ----- Header Stacked ----- */

header .header {
	padding-top: 15px;
	padding-bottom: 15px;
}

header .header-stacked .header-inner {
	display: grid;
	grid-template-columns: 50px auto 50px;
	align-items: center;
	grid-gap: 15px;
}

header .header-stacked .header-inner .logo-area {
	text-align: center;
}

header .header-stacked .header-menu {
	transition: all 0.3s ease-out;
}

header .header-stacked .header-menu .big-container{
	border-bottom: 1px solid #f9f9f9;
}

@media (min-width: 992px) {
	header .header-stacked .menu {
		justify-content: center;
	}
}

.header-search i {
	font-size: 25px;
}

header .header-stacked .header .header-action-items .header-search i {
	display: inline-flex;
	padding: 15px;
	cursor: pointer;
}

header .header-stacked .stacked-border {
	border-bottom: 1px solid #eee;
}

header .header-horizontal .header {
	padding-top: 0;
	padding-bottom: 0;
}

header .header-horizontal .header-search {
	padding: 15px;
	cursor: pointer;
}

header .header-horizontal .header .logo-area .logo {
	font-size: 32px;
}

header .header-horizontal-inner {
	display: grid;
	grid-template-columns: auto auto auto;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

header .header-action-items {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #111111;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #111111;
}

ul {
	list-style: outside none none;
}

.blog-detail ul,
.mt-page-content ul {
	list-style: inside disc;
}

.blog-detail ol,
.mt-page-content ol {
	list-style-position: inside;
}

ul.horizontal-view {
	display: flex;
	flex-wrap: wrap;
}

ul.horizontal-view li {
	margin-right: 5px;
	margin-bottom: 5px;
}

ul.horizontal-view li a {
	display: inline-block;
}

a {
	color: #000;
	transition: all 0.3s ease;
}

a:hover {
	color: #000000;
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	outline: none;
}

.form-control:focus {
	box-shadow: none;
	border-color: inherit;
}

.btn {
	padding: 8px 20px;
}

.btn-link {
	color: #111111;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 14px;
	padding: 5px;
}

.btn-link i {
	color: #cccccc;
	font-size: 12px;
	margin-left: 8px;
}

.btn-link:hover {
	color: #111111;
	text-decoration: none;
}

.btn-link:hover i {
	animation: headShake 0.5s;
}

.btn-black {
	color: #fff;
	background-color: #111111;
}

.btn-black:hover {
	color: #fff;
	background-color: var(--primary-color);
}

.btn-video {
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 50px;
	color: #fff;
	background: #111111;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.btn-video:hover {
	color: #fff;
	background-color: rgba(17, 17, 17, 0.5);
}

.btn-video:hover i {
	transform: scale(1.2);
}

@media (min-width: 1240px) {
	.container {
		max-width: 1210px;
	}
}

.h-30 {
	height: 30px;
}

.h-50 {
	height: 50px;
}

.gutters-10 {
	padding-left: 10px;
	padding-right: 10px;
}

.gutters-10>[class^="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}

/* Social Icons */

.social-icon{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

ul.social-icon li {
	margin-bottom: 0;
}

ul.social-icon li a {
	padding: 5px;
}

img {
	max-width: 100%;
}

.close:not(:disabled):not(.disabled) {
	cursor: pointer;
}

header .header {
	padding-top: 15px;
	padding-bottom: 15px;
}

header .header-stacked .header-inner {
	display: grid;
	grid-template-columns: 50px auto 50px;
	align-items: center;
	grid-gap: 15px;
}

header .header-stacked .header-inner .logo-area {
	text-align: center;
}

header .header-stacked .header-menu {
	transition: all 0.3s ease-out;
}

@media (max-width: 991px) {
	header .header-stacked .header-menu {
		background-color: #f5f5f5;
	}
}

/* Header Horizontal */
header.sticky-header {
	transition: all 0.5s ease;
	position: sticky;
	background-color: #fff;
	top: 0;
	width: 100%;
	box-shadow: 0px 4px 0px 0px rgba(34, 34, 34, 0.03);
	z-index: 5;
	left: 0;
	right: 0;
}

/* Header stacked */
header .header-stacked .header-menu.sticky-header {
	transition: all 0.5s ease;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
	left: 0;
	right: 0;
}

header.sticky-header .big-container:before{
	display: none;
}

header .header-stacked .stacked-border {
	border-bottom: 1px solid #eee;
}

header .header-horizontal .header {
	padding-top: 0;
	padding-bottom: 0;
}

header .header-horizontal .header-search {
	padding: 15px;
	cursor: pointer;
}

header .header-horizontal .header .logo-area .logo {
	font-size: 32px;
}

header .header-horizontal-inner {
	display: grid;
	grid-template-columns: auto auto auto;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

footer a:hover {
	color: #fff;
}

/* ----- Keyframes ----- */

@keyframes open_first_bar {
	0% {
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}

	50% {
		top: 50%;
		transform: translateY(-50%);
	}

	to {
		top: 65%;
		transform: translateY(-50%);
	}
}

@keyframes close_first_bar {
	0% {
		top: 65%;
		transform: translateY(-50%);
	}

	50% {
		top: 50%;
		transform: translateY(-50%);
	}

	to {
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
}

@keyframes open_second_bar {

	0%,
	50% {
		top: 50%;
		transform: translateY(-50%);
		opacity: 0;
	}

	51%,
	to {
		top: 50%;
		transform: translateY(-50%);
		opacity: 1;
	}
}

@keyframes close_second_bar {

	0%,
	50% {
		top: 50%;
		transform: translateY(-50%);
		opacity: 1;
	}

	51%,
	to {
		top: 50%;
		transform: translateY(-50%);
		opacity: 0;
	}
}

@keyframes open_third_bar {
	0% {
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
	}

	50% {
		top: 50%;
		transform: translateY(-50%);
	}

	to {
		top: 35%;
		transform: translateY(-50%);
	}
}

@keyframes close_third_bar {
	0% {
		top: 35%;
		transform: translateY(-50%);
	}

	50% {
		top: 50%;
		transform: translateY(-50%);
	}

	to {
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
	}
}

.scale img, 
.rotate img{
	transition: all 0.5s ease;
}

.scale:hover img {
	transform: scale(1.1);
}

.scale.rotate:hover img {
	transform: scale(1.1) rotate(2deg);
}

.rotate:hover img {
	transform: rotate(2deg);
}

.breadcrumb {
	justify-content: center;
	padding: 0;
	background-color: transparent;
}

@media (min-width: 768px) {
	.breadcrumb {
		padding-top: 10px;
	}
}

.video-popup {
	position: relative;
}

.video-popup .modal-header {
	padding: 0;
	border: none;
}

.video-popup .modal-header .close {
	padding: 0;
	font-size: 16px;
	opacity: 1;
}

.video-popup .modal-header .close span {
	width: 25px;
	height: 25px;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	text-shadow: none;
	font-weight: normal;
}

.video-popup .modal-dialog {
	margin-top: 4rem;
}

.video-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: all 0.5s ease;
}

.video-btn:hover {
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
}

.sidebar .widget {
	margin-bottom: 2rem;
}

.sidebar .widget-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.sidebar .widget-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	height: 2px;
	width: 50px;
}

.sidebar .widget-content.letest_posts li {
	position: relative;
}

.sidebar .widget-content .count-number {
	position: absolute;
	top: 5px;
	left: 10px;
	color: #fff;
	font-size: 14px;
}

.sidebar .widget-content .author-figure img {
	border-radius: 50%;
}

.sidebar .widget_categories ul li,
.sidebar .widget_recent_entries ul li {
	position: relative;
	border-bottom: 1px solid #eee;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 10px 0px;
}

.sidebar .widget_categories ul li a,
.sidebar .widget_recent_entries ul li a {
	position: relative;
	font-size: 15px;
	display: flex;
	justify-content: space-between;
}

.sidebar .widget_categories ul li:first-child,
.sidebar .widget_recent_entries ul li:first-child {
	padding-top: 0;
}

.sidebar .widget_categories ul li:last-child,
.sidebar .widget_recent_entries ul li:last-child {
	border-bottom: none;
}

.sidebar .widget_categories ul li:after,
.sidebar .widget_recent_entries ul li:after {
	content: "";
	height: 1px;
	width: 0%;
	background-color: #111111;
	position: absolute;
	bottom: -1px;
	z-index: 1;
	transition: all 0.3s ease-out;
}

.sidebar .widget_categories ul li:hover:after,
.sidebar .widget_recent_entries ul li:hover:after {
	width: 100%;
}

.sidebar .widget_categories .follow_social_icon li,
.sidebar .widget_recent_entries .follow_social_icon li {
	max-width: 18%;
	flex: 0 18%;
}

.sidebar .widget_categories .follow_social_icon li a,
.sidebar .widget_recent_entries .follow_social_icon li a {
	background-color: #eee;
	text-align: center;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sidebar .widget_categories .follow_social_icon li a:hover,
.sidebar .widget_recent_entries .follow_social_icon li a:hover {
	color: #fff;
	background-color: #111111;
}

ul.pagination li.page-item .page-link {
	font-size: 18px;
	padding: 8px 18px;
	border-radius: 0;
	color: #111111;
	border: none;
	line-height: normal;
	background-color: #f5f5f5;
}

ul.pagination li.page-item.active .page-link,
ul.pagination li.page-item:hover .page-link {
	color: #fff;
	background-color: #111111;
}

ul.pagination li.page-item:not(:last-child) {
	margin-right: 10px;
}

.carousel-item {
	transition: transform 1.3s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
	background-color: #fff;
	width: 60px;
	height: 60px;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 50px;
	border-radius: 50px;
	opacity: 1;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.carousel-control-prev i,
.carousel-control-next i {
	color: var(--site-color);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	background: var(--primary-color);
	opacity: 1;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
	color: #fff;
}

@media (max-width: 767px) {

	.carousel-control-prev,
	.carousel-control-next {
		width: 40px;
		height: 40px;
	}

	.carousel-control-prev i,
	.carousel-control-next i {
		font-size: 14px;
	}
}

.carousel-control-next {
	left: auto;
	right: 50px;
}

.carousel-content {
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #fff;
	margin-top: -40px;
}

.blog-item-subtitle {
	color: var(--site-color);
}

.blog-item-content .social-share {
	margin: 20px 0px;
}

.offcanvas-sidebar .blog-item.scale .item-img {
	width: 100%;
	height: 150px;
	overflow: hidden;
}

.blog-item.scale .item-img {	
	width: 100%;
	height: 350px;
	overflow: hidden;
}

.entry-blog:nth-child(1) .blog-item .item-img {
	max-width: 100%;
	height: 500px;
}

.blog-item .item-img a img {
	object-fit: cover;
    width:100%;
    height:100%;
}

/* Widget Thumbnail */
.related-posts-section .blog-item .item-img {
	width: 100%;
	height: 150px;
}

/* Related Post Thumbnail */
aside .widget .blog-item .item-img {
	width: 100%;
	height: 150px;
}

.mt-single-post-wrap .item-img {
	width: 100%;
	height: 500px;
}

.mt-single-post-wrap .item-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.blog-item,
.blog-tag,
.blog-author {
	margin-bottom: 30px;
}

.detail-view-2 {
	position: relative;
	background-color: #fff;
	border-radius: 5px;
}

.detail-view-2-inner {
	max-width: 800px;
	margin: 0 auto;
}

.detail-view-2-inner .blog-item-title {
	margin-bottom: 20px;
}

.detail-view-2-inner .blog-item-content {
	padding-top: 10px;
	padding-bottom: 10px;
}

@media (min-width: 991px) {
	.single-post .item-img + .detail-view-2 {
		margin-top: -70px;
	}
}

ul.entry-meta.horizontal-view {
	align-content: center;
	justify-content: center;
	margin: 10px 0px;
}

ul.entry-meta li {
	margin-right: 12px;
}

ul.entry-meta li i {
	font-size: 12px;
	color: var(--primary-color);
	margin-right: 5px;
}

ul.entry-meta.meta-color-dark li {
	color: var(--site-color);
}

ul.entry-meta.meta-color-dark li a {
	color: var(--site-color);
}

.social-share li {
	margin: 0 3px;
}

.social-share li a {
	padding: 5px 15px;
	font-size: 14px;
	border-radius: 4px;
	color: #fff;
	background-color: var(--site-color);
}

.social-share li a.facebook {
	background-color: #3b5997;
}

.social-share li a.twitter {
	background-color: #56acec;
}

.social-share li a.google {
	background-color: #dc4a39;
}

.social-share li a.pinterest {
	background-color: #c80909;
}

.social-share li a:hover {
	background-color: #111111;
}

.response-area li {
	position: relative;
}

.response-area li:not(:last-child):after {
	content: "";
	width: 2px;
	height: 40%;
	background-color: var(--site-color);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.response-area li aa {
	padding-top: 0;
	padding-bottom: 0;
}

blockquote {
	position: relative;
	color: #111111;
	font-size: 24px;
	font-weight: bold;
	font-style: italic;
	text-align: center;
	line-height: 1.5;
	padding: 20px 50px;
	z-index: 9;
}

@media (max-width: 575px) {
	blockquote {
		padding: 20px;
	}
}

blockquote span {
	text-align: center;
	display: block;
	font-size: 14px;
	color: var(--site-color);
	letter-spacing: 1px;
	font-weight: 400;
	font-style: normal;
	margin-top: 22px;
}

blockquote:after {
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 30px;
	top: -15px;
	font-size: 52px;
	z-index: -9;
	color: #f5f5f5;
}

.blog-tag {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding-top: 20px;
	padding-bottom: 20px;
}

.blog-tag ul {
	margin-bottom: 0;
}

.blog-tag-item {
	align-items: center;
}

.blog-tag-item li {
	margin-right: 5px;
}

.blog-author {
	background-color: #f9f9f9;
	border-radius: 4px;
	position: relative;
}

.blog-author .media {
	display: none;
	flex-wrap: wrap;
	padding: 50px 50px 28px;
}

.blog-author .media-body {
	margin-left: 30px;
}

.blog-author .media-body .blog-item-title {
	margin-bottom: 0;
}

.blog-author .media-body .blog-item-subtitle {
	margin-bottom: 10px;
}

.blog-author .media-body .social-icon li a {
	color: #999;
}

.blog-author .media .author-img {
	border-radius: 50%;
}

@media (min-width: 576px) {
	.blog-author .media {
		display: flex;
	}
}

@media (min-width: 992px) {
	.blog-author .media .social-icon {
		position: absolute;
		right: 50px;
		top: 50px;
	}
}

form .form-control {
	font-family: 'Arial';
	font-size: 14px;
	padding: 10px 15px;
	min-height: 50px;
	background: #f9f9f9;
	border-radius: 3px;
	border: 1px solid #eee;
}

form button {
	min-height: 50px;
}

form.newsletter_subscribe_form .form-control {
	background-color: #fff;
	border: 1px solid #ddd;
}

.newsletter_subscribe {
	background-color: #f9f9f9;
}

.search-content {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	transition: all 0.5s ease-in-out;
	transform: translate(0px, -100%) scale(0, 0);
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
}

.search-content.open {
	transform: translate(0px, 0px) scale(1, 1);
	opacity: 1;
	visibility: visible;
}

.search-content .close {
	position: fixed;
	top: 15px;
	right: 15px;
	color: #fff;
	background-color: #111111;
	opacity: 1;
	visibility: visible;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.search-content .header-search-form {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}

.search-content .header-search-form input[type="search"] {
	width: 60%;
	color: #ffffff;
	font-size: 24px;
	text-align: left;
	border: none;
	margin: 0px auto;
	padding: 25px 10px 25px 30px;
	outline: none;
	background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.5), transparent);
}

.search-content .header-search-form .search-btn {
	padding: 24px 10px;
	background-color: transparent;
	box-shadow: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.search-content .header-search-form .search-btn i {
	color: #fff;
	font-size: 22px;
}

a:focus,
button:focus {
	outline: none;
	box-shadow: none;
}

.logo-area .logo {
	font-size: 42px;
	line-height: normal;
	color: #111111;
}

@media (max-width: 991px) {
	.logo-area .logo {
		font-size: 32px;
	}
}

@media (max-width: 575px) {
	.logo-area .logo {
		font-size: 26px;
	}
}

.topbar {
	background-color: #fff;
	border-bottom: 1px solid #ddd;
}

.topbar ul li {
	margin: 4px 10px 4px 0px;
	font-size: 14px;
}

.topbar .main-menu .menu li {
	padding: 5px;
}

.topbar .main-menu {
	justify-content: flex-start;
}

.topbar .main-menu .menu > li.menu-item-has-children > span {
	padding: 0px 5px;
}

@media (min-width: 768px){
	.topbar .social-icon{
		justify-content: flex-end;
	}
}

.big-container {
	max-width: 1370px;
	margin: 0 auto;
	position: relative;
}

.big-container:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1201px) {
	.big-container {
		padding: 0 80px;
	}
}

.instagram-sec-title {
	position: absolute;
	z-index: 5;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

.instagram-sec-title a {
	font-size: 14px;
	letter-spacing: 2px;
	padding: 12px 20px;
	background-color: #fff;
}

.instagram-sec-title a:hover {
	background-color: #111111;
	color: #fff;
}

.scrollup {
	overflow: hidden;
	position: fixed;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 45px;
	bottom: -50px;
	right: 20px;
	text-align: center;
	z-index: 9999;
	background-color: rgba(17, 17, 17, 0.8);
	display: block;
	font-size: 16px;
	color: #ffffff;
	-webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
	-moz-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
	-ms-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
	-o-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
	transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
}


.hero-sec {
	background-color: #fafbfc;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}

/* Main Content*/
.page-content-404 {
	min-height: 50vh;
}

/*# sourceMappingURL=style.css.map */

/* First Post */
.main-content .entry-blog:nth-child(1) {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 20px;
}

/* Shake */
.blog-item a:hover i {
	animation: shake 0.92s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

@keyframes shake {

	10%,
	90% {
		transform: translate3d(-4px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(4px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}

/* Accessibility */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/* ----- Offcanvas ----- */
.offcanvas-icon,
.mobile-menu {
	width: 30px;
	height: 25px;
	position: relative;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
}

.offcanvas-icon span,
.mobile-menu span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #666;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.offcanvas-icon span:nth-child(1),
.mobile-menu span:nth-child(1) {
	top: 0px;
}

.offcanvas-icon span:nth-child(2),
.offcanvas-icon span:nth-child(3),
.mobile-menu span:nth-child(2),
.mobile-menu span:nth-child(3) {
	top: 10px;
}

.offcanvas-icon span:nth-child(4),
.mobile-menu span:nth-child(4) {
	top: 20px;
}

.offcanvas-icon.open span:nth-child(1),
.mobile-menu.open span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}

.offcanvas-icon.open span:nth-child(2),
.mobile-menu.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.offcanvas-icon.open span:nth-child(3),
.mobile-menu.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.offcanvas-icon.open span:nth-child(4),
.mobile-menu.open span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
}

/* ----- Offcanvas Sidebar ----- */
.offcanvas-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	overflow-Y: scroll;
	box-shadow: 0px 5px 16px 0px rgba(202, 202, 202, 0.75);
	z-index: 9999;
	transform: translateX(-100%);
	transition: all 0.5s ease;
	max-width: 500px;
}

.offcanvas-sidebar.open {
	transform: translateX(0);
}

.offcanvas-sidebar-inner{
	padding: 25px 20px;
}

.offcanvas-sidebar-inner > div:not(:last-child){
	margin-bottom: 30px;
}

/* pagination
==================== */
.paging {
	margin: 30px 0 0;
}

.pagination .nav-links {
	display: flex;
}

.pagination .page-numbers:not(:last-child) {
	margin-right: 5px;
}

.pagination-next-prev {
	margin: 20px 0;
}

.pagination a,
.pagination span,
.pagination-next-prev a {
	color: #fff;
	padding: 4px 12px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	background-color: #000;
}

.pagination a:hover,
.pagination-next-prev a:hover {
	background-color: #000;
	opacity: 0.8;
}

.pagination .page-numbers{
	color: #000;
	background-color: #f2f2f2;
}

.pagination .page-numbers:hover,
.pagination .page-numbers:focus,
.pagination .page-numbers.current{
	color: #fff;
	background-color: #000;
}

/* Comments Area */

#commentform .form-submit {
	width: 100%;
	text-align: center;
}

.comments-area {
	background-color: #f8f8f8;
	margin-bottom: 20px;
	padding: 30px;
}

.comments-list .children {
	margin-left: 35px;
}

.comment-list li {
	padding-top: 20px;
}

.comments-list .children > .is-thread {
	display: block !important;
}

.comments-list > .comment {
	margin-bottom: 3px;
	background-color: #fff;
	padding: 20px;
}
.comments-list > li.comment .user-comment {
	display: flex;
	width: 100%;
	padding: 15px;
}
@media (max-width: 767px) {
	.comments-list > li.comment .user-comment {
		display: block;
	}
}
.comments-list > li.is-thread {
	display: block;
}
.comments-list li.comment.parent {
	display: block;
}

.comments-list .author-box{
	min-width: 100px;
	margin-right: 25px;
}

.comments-list .comment-body {
	position: relative;
	width: 100%;
}

.comments-list .comment-author {
	display: block;
	color: #111;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 2px;
}
.comments-list .comment-date {
	font-size: 14px;
	color: #a5a5a5;
	display: block;
	font-weight: 400;
	margin-bottom: 8px;
}

.comments-list .comment-reply-link{
	display: inline-block;
	font-size: 12px;
	background-color: #f8f8f8;
	border-radius: 20px;
	color: #646464;
	font-weight: 500;
	padding: 5px 20px;
	position: absolute;
	top: -11px;
	right: 0;
	transition: 0.3s ease-in-out;
}
 .comments-list .comment-reply-link:hover {
	background-color: #111111;
	color: #ffffff;
 }

.author-box .mt-img-border img {
	border-radius: 50%;
}

/* ===================*/
/* WP Accessiblity
==================== */
.gallery-caption {
	display: block;
}

.bypostauthor {
	display: block;
}

.alignleft {
	text-align: left;
}

.aligncenter {
	text-align: center;
}

.alignright {
	float: right;
	margin-left: 30px;
	margin-bottom: 12px;
	max-width: 100%;
	border-radius: 0;
	padding: 0;
	clear: both;
}

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0;
	color: grey;
	font-size: 15px;
}

/* MT Minimag Popular Post */

.feature-posts .mt-popular-post-list {
	display: flex;
	margin: 0 -15px;
	flex-wrap: wrap;
}

.feature-posts .mtminimag-popular-widget {
	width: 33%;
	height: 100%;
	padding: 0 15px;
}

.feature-posts .entry-meta {
	align-content: center;
	justify-content: center;
}

.feature-posts .blog-item-title{
	text-align: center;
}

.feature-posts .widget-title {
	position: relative;
	font-size: 30px;
	line-height: 1.3em;
	margin-bottom: 25px;
	text-align: center;
}

.feature-posts .widget-title::after{
	content: "";
	bottom: 0;
	background-color: var(--primary-color);
	height: 2px;
	width: 50px;
	display: block;
	margin: 0 auto;
}

@media (max-width:767px) {
	.feature-posts .mt-popular-post-list {
		display: block;
	}
	.feature-posts .mtminimag-popular-widget {
		width: 100%;
	}
}

.mt-popular-post-list article{
	margin-bottom: 20px;
}

.mt-popular-post-list .blog-item {
	margin: 0;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
}

.entry-meta , .entry-meta a,
.entry-meta [class*="fa"]{
	color: #646464;
}

.blog-item-content {
	margin-top: 15px;
}

.blog-item-title{
	font-size: 20px;
	line-height: 1.3em;
}

.offcanvas-sidebar .mt-popular-post-list article:not(last-child),
.sidebar .mt-popular-post-list article:not(last-child){
	border-bottom: 1px solid #ddd;
}

/* Slider */
.partial-slides {
	overflow: hidden;
}

.partial-slides .carousel-inner {
	width: 250%;
	left: -75%;
}

.partial-slides .carousel-item-next:not(.carousel-item-left),
.partial-slides .carousel-item-right.active {
	-webkit-transform: translate3d(33%, 0, 0);
	transform: translate3d(33.33333%, 0, 0);
}

.partial-slides .carousel-item-prev:not(.carousel-item-right),
.partial-slides .carousel-item-left.active {
	-webkit-transform: translate3d(-33%, 0, 0);
	transform: translate3d(-33.33333%, 0, 0);
}

.partial-slides .slider-item {
	float: left;
	position: relative;
	width: 33.33333333%;
}

.partial-slides .slider-item .slider-image img {
	height: 100%;
	width: auto;
}

.partial-slides .carousel-item .slider-item:nth-last-child(1),
.partial-slides .carousel-item .slider-item:nth-last-child(3) {
	opacity: 0.5;
}

.partial-slides .carousel-item .slider-item:nth-last-child(2) img {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.partial-slides .slider-image {
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.partial-slides .slider-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 768px) {
	ul#primary-menu li.menu-item {
		line-height: 20px;
	}
}

/* WP Subscribe */
.home-top-widget-area .feature-posts,
.home-bottom-widget-area .feature-posts {
	margin: 10px 0;
}

#wp-subscribe {
	background: #f9f9f9;
}

#wp-subscribe h4,
#wp-subscribe p,
#wp-subscribe label {
	color: #000;
}

#wp-subscribe form input[type="email"] {
	background: #fff;
	color: #000;
}

#wp-subscribe form input[type="submit"] {
	background: #000;
	color: #fff;
}

/* Blockqoute */
cite {
	font-size: 0.6em;
    font-weight: 700;
    color: #d3d3cf;
}

/* Comments Template */
@media only screen and (max-width: 767px) {
	.comments-list .comment-reply-link {
		position: inherit;
		margin-top: 10px;
	}

	.comments-list .author-box {
		margin-right: 0;
	}

	.comments-list .comment-body {
		margin-top: 20px;
	}
}