*/
/*--------------------------------------------------------------
>>> CSS TABLE OF CONTENTS:
----------------------------------------------------------------
# Header CSS
# Blog CSS
# Shop CSS
# Page CSS
	Archive Page
	Search Page
	404 Page CSS
	Content none CSS
# BreadCrumbs CSS
# Pagination CSS
# WordPress Default CSS
# Footer CSS
--------------------------------------------------------------*/

/*======================================
	Header CSS
========================================*/
.bostami-header-wrap {
	background: var(--light-white);
	padding: 20px;
	border-radius: 12px;
  }
  
  .bostami-header-menu-btn {
	display: flex;
	align-items: center;
	justify-content: end;
  }
  .bostami-header-menu-btn .menu-btn {
	position: relative;
	display: inline-flex;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	text-align: center;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 1s;
	overflow: hidden;
  }
  .bostami-header-menu-btn .menu-btn:hover {
	background: linear-gradient(180deg, #1b74e4 0%, #1b74e4 100%);
  }
  .bostami-header-menu-btn .menu-btn.menu-btn-2 {
	background: linear-gradient(180deg, #fa5252 0%, #e12a72 100%) !important;
}
.bostami-header-menu-btn .menu-btn.menu-btn-2:hover,
.bostami-header-menu-btn .menu-btn.menu-btn-2.active {
	background: linear-gradient(180deg, #1b74e4 0%, #1b74e4 100%) !important;
}

.bostami-header-menu-btn .menu-btn.menu-btn-3:hover,
.bostami-header-menu-btn .menu-btn.menu-btn-3.active {
	background: linear-gradient(180deg, #1b74e4 0%, #1b74e4 100%) !important;
}

  .menu-btn span {
	position: absolute;
	width: 12px;
	height: 2px;
	background-color: var(--common-white);
	border-radius: 2px;
	transition: 0.5s;
  }
  
  .menu-btn span:nth-child(1) {
	transform: translateY(-5px);
  }
  
  .menu-btn span:nth-child(2) {
	transform: translateY(5px);
  }
  
  .menu-btn.active {
	background: linear-gradient(180deg, #1b74e4 0%, #1b74e4 100%);
  }
  
  .menu-btn.active span:nth-child(1) {
	transform: rotate(45deg);
  }
  
  .menu-btn.active span:nth-child(2) {
	transform: rotate(-45deg);
  }
  
  .menu-btn.active span:nth-child(3) {
	transform: translateX(30px);
  }
  
  .mobile-menu-wrap {
	position: relative;
  }
  .mobile-menu-wrap .mobile-menu {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transform: scaleY(0);
	transform-origin: top;
	z-index: 5;
	transition: 0.5s;
  }
  .mobile-menu-wrap .mobile-menu .mean-bar {
	background-color: var(--common-white);
	border-radius: 12px;
	box-shadow: 0px 6px 6px rgba(238, 238, 238, 0.2);
	padding-top: 20px;
	padding-bottom: 20px;
  }
  .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav {
	margin-top: 0;
	background-color: var(--common-white);
  }
  .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a {
	border: none;
	font-size: 13px;
	text-transform: capitalize;
	font-weight: 500;
	color: var(--body-text);
	padding: 5px 70px;
  }
  @media (max-width: 767px) {
	.mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a {
	  padding: 5px 0px;
	}
  }
  .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a span {
	display: inline-block;
  }
  .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a span svg {
	width: 16px !important;
	margin-right: 8px;
  }
 .bostami-header-area.bostami-header-2 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a:hover,
 .bostami-header-area.bostami-header-3 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a:hover {
	color: var(--theme-secondary);
  }
  .bostami-header-area.bostami-header-2 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a:hover span svg *,
  .bostami-header-area.bostami-header-3 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a:hover span svg * {
	fill: var(--theme-secondary);
  }
  @media (max-width: 767px) {
	.mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li {
	  padding: 0px 40px;
	}
  }


  .bostami-header-area.bostami-header-2 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:is(.active) a,
  .bostami-header-area.bostami-header-3 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:is(.active) a {
	color: var(--theme-secondary);
  }
  .bostami-header-area.bostami-header-2 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:is(.active) a span svg *,
  .bostami-header-area.bostami-header-3 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:is(.active) a span svg * {
	fill: var(--theme-secondary);
  }
  
  .mobile-menu.active {
	transform: scaleY(1);
  }
  
  .bastami-main-menu ul li {
	background-color: var(--light-white);
	border-radius: 12px;
	width: 84px;
	height: 84px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: 0.3s;
  }
  .bastami-main-menu ul li:not(:last-child) {
	margin-bottom: 20px;
  }
  .bastami-main-menu ul li a {
	display: block;
	font-size: 13px;
	text-transform: capitalize;
	font-weight: 500;
	line-height: 1;
  }
  .bastami-main-menu ul i {
	font-size: 24px !important;
	margin: 0 0 8px !important;
}
.bastami-main-menu.main_menu_2 ul i {
	font-size: 20px !important;
}
.bastami-main-menu.main_menu_2 li i,.bastami-main-menu.main_menu_2 li span{
	margin:0 !important;
}
.bastami-main-menu.main_menu_2 li i {
	margin-right: 8px !important;
}
  .bastami-main-menu ul li a span {
	display: block;
  }
  .bastami-main-menu ul li:is(.active) {
	background-color: var(--theme-primary);
  }
  .bastami-main-menu ul li:is(.active) a {
	color: var(--common-white);
  }
  .bastami-main-menu ul li:is(.active) a span svg * {
	fill: var(--common-white);
  }
  .bastami-main-menu ul li:is(.active) a span img {
	filter: brightness(5);
  }
  .bastami-main-menu ul li:hover {
	background-color: var(--theme-primary);
  }
  .bastami-main-menu ul li:hover a {
	color: var(--common-white);
  }
  .bastami-main-menu ul li:hover a span svg * {
	fill: var(--common-white);
  }
  .bastami-main-menu ul li:hover a span img {
	filter: brightness(5);
  }
  .dark-theme .bastami-main-menu ul li a span img {
	filter: invert(0.8) !important;
  }
  
  .dark-theme .bastami-main-menu ul li.active a span img {
	filter: brightness(5) !important;
  }
  
  .bastami-main-menu ul li a span img {
	width: 20px;
  }
  .bastami-main-menu ul li.active:first-child a span img {
	filter: invert(1) !important;
  }
  .bastami-main-menu ul li:first-child:hover a span img {
	filter: invert(1);
  }
  .header-right-flex {
	display: flex;
	justify-content: right;
	align-items: center;
  }
  
  .main-style-2 {
	background-color: transparent;
  }
  .main-style-2 .bostami-main-menu-wrap {
	width: unset;
	background: transparent;
	border-radius: 0px;
	padding: 0;
	position: unset;
	top: unset;
	display: inline-block;
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu {
	display: inline-block;
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul {
	display: inline-block;
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li {
	display: inline-block;
	background-color: var(--light-white);
	border-radius: 8px;
	width: unset;
	height: unset;
	text-align: unset;
	transition: 0.3s;
	margin-bottom: 0;
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li:not(:first-child) {
	margin-left: 16px;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li:not(:first-child) {
	  margin-left: 5px;
	}
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li a {
	background: #fff;
	border-radius: 8px;
	padding: 0px 19px;
	transition: 0.3s;
	height: 40px;
	display: flex !important;
	align-items: center;
}
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li a {
	  padding: 0px 10px;
	}
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li a:hover {
	background: rgb(250, 82, 82);
	background: linear-gradient(97deg, rgb(250, 82, 82) 0%, rgb(221, 36, 118) 100%);
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li a span {
	display: inline-block;
	margin-bottom: 0;
	margin-right: 8px;
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li a span i {
	font-size: 20px;
  }
  .main-style-2 .bostami-main-menu-wrap .bastami-main-menu ul li:is(.active) a {
	background: rgb(250, 82, 82);
	background: linear-gradient(97deg, rgb(250, 82, 82) 0%, rgb(221, 36, 118) 100%);
  }
  
  .bostami-header-logo {
	flex: 0 0 auto;
  }
  
   .menu-btn.menu-btn-2 {
	  width: 45px;
	  height: 45px;
	  margin-left: 10px;
   }
   .menu-btn-wrap {
	   display: flex;
	   justify-content: center;
	   align-items: center;
	}
  
  .page-wrapper.page-wrapper-2 .bostami-header-logo .site-logo img {
	width: 150px;
  }
  @media (max-width: 767px) {
	.page-wrapper.page-wrapper-2 .bostami-header-logo .site-logo img {
	  width: 110px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.page-wrapper.page-wrapper-2 .bostami-header-logo .site-logo img {
	  width: 150px;
	}
  }
  .dark-theme .page-wrapper.page-wrapper-2 {
	background-image: url(../img/bg/page-bg-dark-2.jpg) !important;
  }
  .home-3 .text-right {
	text-align: right;
	margin-bottom: 40px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
	.home-3 .text-right {
	  margin-bottom: 0;
	}
  }
  .home-3 .bostami-main-menu-wrap {
	width: unset;
	position: unset;
	display: inline-block;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
	.home-3 .bostami-main-menu-wrap {
	  display: none;
	}
  }
  .bastami-main-menu.main_menu--v3  ul li {
	display: inline-flex;
	margin-bottom: 0;
  }
  .bastami-main-menu.main_menu--v3  ul li:not(:first-child) {
	margin-left: 16px;
  }
  .bastami-main-menu.main_menu--v3  ul li:hover,
  .bastami-main-menu.main_menu--v3  ul li:focus {
	background: linear-gradient(97deg, rgb(250, 82, 82) 0%, rgb(221, 36, 118) 100%);
  }
  .bastami-main-menu.main_menu--v3  ul li.active {
	background: linear-gradient(97deg, rgb(250, 82, 82) 0%, rgb(221, 36, 118) 100%);
  }



  
  .inner-page .bostami-header-wrap {
	padding: 20px 0;
  }
  
  .home-3 .bostami-header-menu-btn .menu-btn {
	width: 40px;
	height: 40px;
  }
  .home-3 .menu-btn.active {
	background: linear-gradient(97deg, rgb(250, 82, 82) 0%, rgb(221, 36, 118) 100%);
  }
  
  .bostami-header-area.bostami-header-1 {
	margin-bottom: 205px !important;
}
.bostami-header-area.bostami-header-2{
	margin-bottom: 80px !important;
}
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
	only screen and (min-width: 992px) and (max-width: 1199px),
	only screen and (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.bostami-header-area.bostami-header-1 {
		margin-bottom: 30px !important;
	}
	.bostami-header-area.bostami-header-2 {
		margin-bottom: 50px !important;
	  }
  }
  .bostami-header-wrap.main-style-1 {
	margin-left: -112px;
	margin-right: -70px;
	background-color: transparent;
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.bostami-header-wrap.main-style-1 {
	  margin-left: -50px;
	  margin-right: -40px;
	}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
	only screen and (min-width: 992px) and (max-width: 1199px),
	only screen and (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.bostami-header-wrap.main-style-1 {
	  margin-left: 0px;
	  margin-right: 0px;
	}
  }
 .bostami-header-menu-btn .menu-btn {
	width: 40px;
	height: 40px;
  }
  @media (min-width: 1800px),
	only screen and (min-width: 1600px) and (max-width: 1799px),
	only screen and (min-width: 1400px) and (max-width: 1599px) {
	.home-1 .bostami-header-menu-btn .menu-btn {
	  display: none;
	}
  }
  .bostami-header-menu-btn .menu-btn {
	background: #1b74e4;
  }
 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:is(.active) a {
	color: #1b74e4;
  }
 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:hover a {
	color: #1b74e4;
  }
 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:hover a span img {
	filter: saturate(20.5);
  }
 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:is(.active) a span img {
	filter: saturate(20.5);
  }
 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a:hover span svg * {
	fill: #1b74e4;
  }
 .mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li:is(.active) a span svg * {
	fill: #1b74e4;
  }
  
/*======================================
	End Header CSS
========================================*/

/*======================================
	Blog CSS
========================================*/  

.bizmax-entry-page ol li,.blog-single ol li {
  line-height: 30px;
}
.bizmax-entry-page ul {
	margin-bottom: 0;
}
.bizmax-entry-page ol li ol {
  margin-left: 14px;
}


/*----------------------------------------*/
/*  4. blog CSS START
/*----------------------------------------*/

@media (max-width: 767px) {
	.blog__space {
	  padding-bottom: 0;
	}
  }
  .blog__mlr {
	margin: 0 200px;
  }
  @media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.blog__mlr {
	  margin: 0 200px;
	}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog__mlr {
	  margin: 0 100px;
	}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog__mlr {
	  margin: 0 30px;
	}
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog__mlr {
	  margin: 0 50px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog__mlr {
	  margin: 0 30px;
	}
  }
  @media (max-width: 767px) {
	.blog__mlr {
	  margin: 0;
	}
  }
  .blog__content {
	padding-top: 30px;
  }
  .blog__catagory {
	margin-right: 30px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog__catagory {
	  margin-right: 26px;
	}
  }
  @media (max-width: 767px) {
	.blog__catagory {
	  margin-right: 20px;
	}
  }
  .blog__catagory a {
	font-weight: 500;
	font-size: 17px;
	color: var(--it-common-blue);
	padding: 6px 30px;
	border: 1px solid var(--it-common-blue);
	border-radius: 35px;
	display: inline-block;
  }
  @media (max-width: 767px) {
	.blog__catagory a {
	  font-size: 15px;
	  padding: 6px 25px;
	}
  }
  .blog__catagory-color-2 a {
	border: 1px solid var(--it-common-paste);
	color: var(--it-common-paste);
  }
  .blog__catagory-color-3 a {
	border: 1px solid var(--it-common-pink-4);
	color: var(--it-common-pink-4);
  }
  .blog__main-img:hover img {
	transform: scale(1.1) rotate(5deg);
  }
  .blog__main-img img {
	width: 100%;
	transition: 0.6s;
  }
  .blog__title {
	font-weight: 700;
	font-size: 22px;
	padding-bottom: 10px;
	transition: 0.3s;
	color: var(--it-common-black);
	line-height: 1.2;
  }
  .blog__title a{
	font-weight: 700;
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog__title {
	  font-size: 20px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
	.blog__title br {
	  display: none;
	}
  }
  .blog__title:hover {
	color: var(--it-common-blue);
  }
  .blog__title-color-2:hover {
	color: var(--it-common-paste);
  }
  .blog__title-color-3:hover {
	color: var(--it-common-pink-4);
  }
  .blog__text {
	border-bottom: 1px solid var(--it-border-1);
	margin-bottom: 15px;
	padding-bottom: 15px;
}
  .blog__text p {
	padding-right: 30px;
  }
  @media (max-width: 767px) {
	.blog__text p {
	  padding-right: 0;
	}
  }
  .blog__link a {
	font-weight: 500;
	font-size: 18px;
	color: var(--it-common-black);
  }
  .blog__link a span {
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background-color: var(--it-common-blue);
	line-height: 14px;
	display: inline-block;
	text-align: center;
	margin-left: 5px;
  }
  .blog__link a span i {
	font-size: 14px;
	color: var(--it-common-white);
  }
  .blog__link a:hover span {
	animation: tfLeftToRight 0.4s forwards;
  }
  .blog__link-color-2 a span {
	background-color: var(--it-common-paste);
  }
  .blog__link-color-3 a span {
	background-color: var(--it-common-pink-4);
  }
  
  .blog-2__plr {
	padding: 0 220px;
  }
  .blog__date {
	display: flex;
	align-items: center;
	gap: 8px;
}
.blog__date a {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}
  @media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.blog-2__plr {
	  padding: 0 100px;
	}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-2__plr {
	  padding: 0 30px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-2__plr {
	  padding: 0 30px;
	}
  }
  @media (max-width: 767px) {
	.blog-2__plr {
	  padding: 0px;
	}
  }
  .blog-2__item {
	margin-bottom: 70px;
  }
  .blog-2__item:hover .blog-2__thumb img {
	transform: scale(1.2);
  }
  .blog-2__thumb img {
	transition: 0.6s;
	width: 100%;
	transform: scale(1);
  }
  .blog-2__meta-img {
	flex: 0 0 auto;
	padding-right: 20px;
  }
  @media (max-width: 767px) {
	.blog-2__meta-img {
	  padding-right: 10px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-2__meta-img {
	  padding-right: 20px;
	}
  }
  .blog-2__meta-box {
	padding: 0 70px;
	margin-top: -30px;
  }
  @media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.blog-2__meta-box {
	  padding: 0 60px;
	}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-2__meta-box {
	  padding: 0 50px;
	}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-2__meta-box {
	  padding: 0 24px;
	}
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-2__meta-box {
	  padding: 0 50px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-2__meta-box {
	  padding: 0 18px;
	}
  }
  @media (max-width: 767px) {
	.blog-2__meta-box {
	  padding: 0 17px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-2__meta-box {
	  padding: 0 70px;
	}
  }
  .blog-2__meta {
	box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.05);
	background-color: var(--it-common-white);
	padding: 11px 20px;
	border-radius: 5px;
	position: relative;
	z-index: 2;
  }
  .blog-2__date span {
	font-size: 17px;
	font-weight: 400;
  }
  .blog-2__meta-img img {
	max-width: 35px !important;
	border-radius: 100% !important;
}
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-2__date span {
	  font-size: 14px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-2__date span {
	  font-size: 14px;
	}
  }
  @media (max-width: 767px) {
	.blog-2__date span {
	  font-size: 14px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-2__date span {
	  font-size: 17px;
	}
  }
  .blog-2__content-text {
	border-bottom: 1px solid var(--it-border-1);
	padding-top: 30px;
	margin: 0 30px;
	padding-bottom: 30px;
}
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-2__content-text {
	  margin: 0 15px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-2__content-text {
	  margin: 0 9px;
	}
  }
  @media (max-width: 767px) {
	.blog-2__content-text {
	  margin: 0 15px;
	}
  }
  @media only screen and (min-width: 440px) and (max-width: 575px) {
	.blog-2__content-text {
	  margin: 0 30px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-2__content-text {
	  margin: 0 80px;
	}
  }
  .blog-2__content-text p {
	padding-bottom: 10px;
	padding: 0 !important;
}
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-2__content-text p {
	  padding: 0;
	  padding-bottom: 10px;
	}
  }
  @media (max-width: 767px) {
	.blog-2__content-text p {
	  font-size: 14px;
	}
  }
  @media only screen and (min-width: 440px) and (max-width: 575px) {
	.blog-2__content-text p {
	  font-size: 16px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-2__content-text p {
	  font-size: 16px;
	}
  }
  .blog-2__content-title-sm {
	font-size: 22px;
	font-weight: 700;
	color: var(--it-common-black);
	transition: 0.3s;
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-2__content-title-sm br {
	  display: none;
	}
  }
  @media (max-width: 767px) {
	.blog-2__content-title-sm {
	  font-size: 19px;
	}
	.blog-2__content-title-sm br {
	  display: none;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-2__content-title-sm br {
	  display: block;
	}
  }
  .blog-2__content-title-sm:hover {
	color: var(--it-common-blue-4);
  }
  .blog-2__content-button {
	padding-top: 30px;
  }
  
  .blog-3__mlr {
	margin: 0 200px;
  }
  @media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.blog-3__mlr {
	  margin: 0 100px;
	}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-3__mlr {
	  margin: 0 100px;
	}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-3__mlr {
	  margin: 0 30px;
	}
  }
  @media (max-width: 767px) {
	.blog-3__mlr {
	  margin: 0;
	}
  }
  .blog-3__item:hover .blog-3__meta span::after {
	width: 100%;
	opacity: 1;
	visibility: visible;
  }
  .blog-3__item:hover .blog-3__link span {
	color: var(--it-common-blue);
  }
  .blog-3__item:hover .blog-3__link span i {
	color: var(--it-common-blue);
  }
  .blog-3__item:hover .blog-3__main-thumb img {
	transform: scale(1.2);
  }
  .blog-3__main-thumb {
	position: relative;
	border-radius: 20px;
  }
  .blog-3__main-thumb img {
	width: 100%;
	transition: 0.6s;
  }
  .blog-3__thumb-overly {
	position: absolute;
	content: "";
	right: 0;
	bottom: 0;
	background-color: var(--it-theme-1);
	padding: 6px 32px;
	border-radius: 30px;
	margin: 10px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-3__thumb-overly {
	  padding: 4px 15px;
	}
  }
  @media (max-width: 767px) {
	.blog-3__thumb-overly {
	  padding: 4px 18px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-3__thumb-overly {
	  padding: 6px 30px;
	}
  }
  .blog-3__thumb-overly span {
	font-weight: 500;
	font-size: 17px;
	color: var(--it-common-black);
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-3__thumb-overly span {
	  font-size: 13px;
	}
  }
  @media (max-width: 767px) {
	.blog-3__thumb-overly span {
	  font-size: 14px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-3__thumb-overly span {
	  font-size: 14px;
	}
  }
  .blog-3__content {
	padding: 25px 0;
  }
  .blog-3__meta span {
	font-weight: 400;
	font-size: 17px;
	color: #333333;
	padding-bottom: 10px;
	display: inline-block;
	transition: 0.3s;
	position: relative;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-3__meta span {
	  font-size: 14px;
	}
  }
  @media (max-width: 767px) {
	.blog-3__meta span {
	  font-size: 14px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-3__meta span {
	  font-size: 16px;
	}
  }
  .blog-3__meta span::after {
	content: "";
	position: absolute;
	bottom: 9px;
	left: 0;
	height: 1px;
	width: 0;
	background-color: var(--it-common-black);
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
  }
  .blog-3__title-sm {
	font-weight: 700;
	font-size: 22px;
	transition: 0.3s;
	line-height: 1.3;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-3__title-sm {
	  font-size: 19px;
	}
	.blog-3__title-sm br {
	  display: none;
	}
  }
  @media (max-width: 767px) {
	.blog-3__title-sm {
	  font-size: 18px;
	}
	.blog-3__title-sm br {
	  display: none;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-3__title-sm {
	  font-size: 20px;
	}
  }
  .blog-3__title-sm:hover {
	color: var(--it-common-blue);
  }
  .blog-3__text {
	border-bottom: 1px solid var(--it-border-1);
  }
.blog-3__text p {
	padding-right: 120px;
	padding-bottom: 10px;
	margin-bottom: 15PX;
}
  @media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.blog-3__text p {
	  padding-right: 90px;
	}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-3__text p {
	  padding-right: 20px;
	}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-3__text p {
	  padding-right: 0;
	}
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-3__text p {
	  padding-right: 90px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-3__text p {
	  padding-right: 0;
	  font-size: 15px;
	}
  }
  @media (max-width: 767px) {
	.blog-3__text p {
	  padding-right: 0;
	  font-size: 14px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-3__text p {
	  padding-right: 0;
	  font-size: 15px;
	}
  }
  .blog-3__link {
	padding-top: 15px;
  }
  .blog-3__link a {
	font-weight: 500;
	font-size: 18px;
	color: var(--it-common-black);
	transition: 0.3s;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-3__link a {
	  font-size: 15px;
	}
  }
  @media (max-width: 767px) {
	.blog-3__link a {
	  font-size: 14px;
	}
  }
  @media (max-width: 767px) {
	.blog-3__link a {
	  font-size: 16px;
	}
  }
  .blog-3__link a:hover {
	color: var(--it-common-blue);
  }
  .blog-3__link a:hover i {
	animation: tfLeftToRight 0.4s forwards;
  }
  .blog-3__link a i {
	padding-left: 8px;
	transform: translateY(2px);
	font-size: 17px;
	font-weight: 500;
	transition: 0.3s;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-3__link a i {
	  font-size: 15px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-3__link a i {
	  font-size: 15px;
	}
  }
  @media (max-width: 767px) {
	.blog-3__link a i {
	  font-size: 14px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-3__link a i {
	  font-size: 16px;
	}
  }
  .blog-3__link a i:hover {
	color: var(--it-common-black);
  }
  .blog-3__top-text p {
	padding-right: 106px;
  }
  @media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.blog-3__top-text p {
	  padding-right: 85px;
	}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-3__top-text p {
	  padding-right: 7px;
	}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-3__top-text p {
	  padding-right: 0;
	}
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
	.blog-3__top-text p {
	  padding-right: 0;
	  font-size: 15px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-3__top-text p {
	  padding-right: 0;
	}
  }
  
  .blog-4__mlr {
	margin: 0px 200px;
  }
  @media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.blog-4__mlr {
	  margin: 0 100px;
	}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-4__mlr {
	  margin: 0 100px;
	}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-4__mlr {
	  margin: 0 30px;
	}
  }
  @media (max-width: 767px) {
	.blog-4__mlr {
	  margin: 0;
	}
  }
  .blog-4__item-bg {
	border-radius: 15px;
	background-repeat: no-repeat;
	background-size: cover;
  }
  .blog-4__item {
	padding: 70px 30px;
	border-radius: 5px;
	padding-bottom: 50px;
	position: relative;
	z-index: 1;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-4__item {
	  padding: 70px 26px;
	  padding-bottom: 50px;
	}
  }
  .blog-4__item::after {
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #f9f8f8;
	position: absolute;
	z-index: -1;
	transition: 0.4s;
	border-radius: 10px;
  }
  .blog-4__item:hover::after {
	background-color: rgba(34, 34, 34, 0.8);
  }
  .blog-4__item:hover .border-btn-2 {
	background-color: var(--it-common-white);
	color: var(--it-common-black);
  }
  .blog-4__item:hover .blog-4__title {
	color: var(--it-common-white);
  }
  .blog-4__item:hover .blog-4__content p {
	color: var(--it-common-white);
  }
  .blog-4__item:hover .blog-4__meta span {
	color: var(--it-common-white);
  }
  .blog-4__tag {
	position: absolute;
	top: 0;
	left: 30px;
  }
  .blog-4__tag.tag-color-2 span {
	background-color: var(--it-theme-1);
  }
  .blog-4__tag.tag-color-3 span {
	background-color: #ffb995;
  }
  .blog-4__tag span {
	background-color: #7ee1f0;
	padding: 12px 20px;
	display: inline-block;
	border-radius: 0 0 5px 5px;
	color: var(--it-common-black);
	font-size: 14px;
	font-weight: 600;
	transition: 0.3s;
  }
  .blog-4__meta {
	padding-bottom: 15px;
  }
  .blog-4__meta span {
	color: #818282;
	font-size: 16px;
	font-weight: 400;
	transition: 0.3s;
  }
  @media (max-width: 767px) {
	.blog-4__meta span {
	  font-size: 15px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-4__meta span {
	  font-size: 16px;
	}
  }
  .blog-4__title {
	font-size: 22px;
	color: var(--it-common-black);
	line-height: 1.2;
	padding-bottom: 10px;
	transition: 0.3s;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-4__title {
	  font-size: 19px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-4__title {
	  font-size: 20px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-4__title {
	  font-size: 20px;
	}
  }
  @media (max-width: 767px) {
	.blog-4__title {
	  font-size: 19px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-4__title {
	  font-size: 22px;
	}
  }
  .blog-4__title:hover.title-color-1 {
	color: #7ee1f0;
  }
  .blog-4__title:hover.title-color-2 {
	color: var(--it-theme-1);
  }
  .blog-4__title:hover.title-color-3 {
	color: #ffb995;
  }
  .blog-4__content {
	padding-bottom: 35px;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-4__content {
	  padding-bottom: 20px;
	}
  }
  .blog-4__content p {
	font-size: 16px;
	transition: 0.3s;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-4__content p {
	  font-size: 15px;
	}
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-4__content p {
	  font-size: 14px;
	}
  }
  
  .blog-5__plr {
	padding: 0 200px;
  }
  @media only screen and (min-width: 1600px) and (max-width: 1800px) {
	.blog-5__plr {
	  padding: 0 100px;
	}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-5__plr {
	  padding: 0 100px;
	}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-5__plr {
	  padding: 0 30px;
	}
  }
  @media (max-width: 767px) {
	.blog-5__plr {
	  padding: 0;
	}
	.blog-5__item {
		flex-direction: column;
	}
  }
  .blog-5__space {
	padding-top: 100px;
	padding-bottom: 70px;
  }
  .blog-5__item {
	padding: 10px;
	border-radius: 10px;
	background-color: #31303f;
	transition: 0.3s;
	border: 1px dashed transparent;
  }
 
  .blog-5__item:hover {
	background-color: var(--it-common-black-7);
	border: 1px dashed #89abf1;
  }
  .blog-5__item:hover .blog-5__link a {
	color: #89abf1;
  }
  .blog-5__item:hover .blog-5__title-sm {
	color: #89abf1;
  }
  .blog-5__main-img {
		padding-right: 30px;
		min-width: 330px;
	}
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-5__main-img {
	  padding-right: 30px;
	}
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-5__main-img {
	  padding-right: 60px;
	}
  }
  @media (max-width: 767px) {
	.blog-5__main-img {
	  padding-right: 0;
	  margin-bottom: 30px;
	  width: 100%;
	}
  }
  .blog-5__main-img img {
	border-radius: 10px;
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-5__main-img img {
	  width: 100%;
	}
  }
  @media (max-width: 767px) {
	.blog-5__main-img img {
	  width: 100%;
	}
  }
  .blog-5__meta span {
	color: #89abf1;
	display: inline-block;
	margin-bottom: 13px;
  }
  .blog-5__title-sm {
	font-size: 22px;
	color: var(--it-common-white);
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-5__title-sm {
	  font-size: 19px;
	}
	.blog-5__title-sm br {
	  display: none;
	}
  }
  @media (max-width: 767px) {
	.blog-5__title-sm {
	  font-size: 19px;
	}
	.blog-5__title-sm br {
	  display: none;
	}
  }
  .blog-5__content p {
	color: var(--it-common-white-2);
	padding-bottom: 10px;
	padding-right: 40px;
  }
  @media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.blog-5__content p {
	  font-size: 15px;
	  padding-right: 0;
	}
  }
  .blog-5__link a {
	font-size: 18px;
	color: var(--it-common-white);
	font-weight: 500;
	transition: 0.3s;
  }
  .blog-5__link a:hover i {
	animation: tfLeftToRight 0.4s forwards;
  }
  .blog-5__link a i {
	padding-left: 15px;
  }
  .blog-5__item-box-2 .blog-5__meta span {
	color: var(--it-theme-1);
  }
  .blog-5__item-box-2:hover {
	background-color: var(--it-common-black-7);
	border: 1px dashed var(--it-theme-1);
  }
  .blog-5__item-box-2:hover .blog-5__link a {
	color: var(--it-theme-1);
  }
  .blog-5__item-box-2:hover .blog-5__title-sm.title-color-2 {
	color: var(--it-theme-1);
  }
  .blog-5__item-box-3 .blog-5__meta span {
	color: var(--it-common-pink-4);
  }
  .blog-5__item-box-3:hover {
	background-color: var(--it-common-black-7);
	border: 1px dashed var(--it-common-pink-4);
  }
  .blog-5__item-box-3:hover .blog-5__link a {
	color: var(--it-common-pink-4);
  }
  .blog-5__item-box-3:hover .blog-5__title-sm.title-color-3 {
	color: var(--it-common-pink-4);
  }
  .blog-5__item-box-4 .blog-5__meta span {
	color: var(--it-common-green);
  }
  .blog-5__item-box-4:hover {
	background-color: var(--it-common-black-7);
	border: 1px dashed var(--it-common-green);
  }
  .blog-5__item-box-4:hover .blog-5__link a {
	color: var(--it-common-green);
  }
  .blog-5__item-box-4:hover .blog-5__title-sm.title-color-4 {
	color: var(--it-common-green);
  }
  
  @media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
	.postbox__wrapper {
	  padding-right: 0px;
	  margin-bottom: 50px;
	}
  }
  
  .postbox__p-right {
	margin-right: 20px;
  }
  @media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
	.postbox__p-right {
	  margin-right: 0px;
	}
  }

.main-image {
	margin-bottom: 15px;
}
.main-image img {
	border-radius: 20px;
	width: 100%;
}

.news-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}
.news-meta li i {
	color: #fa5252;
}
.news-meta li {
	display: flex;
	align-items: center;
	gap: 5px;
}
.blog-detail p {
	line-height: initial;
	margin-bottom: 25px;
}
.blog-detail p:last-child{
	margin:0;
}
/* Blockquote */
blockquote,blockquote  p{
	font-size: 15px;
	font-weight: 400;
	font-style: italic;
	color: #202124;
	line-height: 30px;
}
blockquote {
	padding: 40px 58px !important;
	background-color: #f3f6f6;
	border: none !important;
}
.blog-details-blockquote cite {
	display: block;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #696969;
	margin-top: 10px;
  }
  
@media (max-width: 767px) {
	.blockquote {
	  padding: 30px 20px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blockquote {
	  padding: 40px 58px;
	}
  }
#comments .comments-title {
	font-size: 22px;
	font-weight: 500;
	line-height: 30px;
}
.comment-metadata a {
	color: #fa5252;
}
.comment-metadata time {
	font-weight: 400;
	font-size: 13px;
	color: #555;
}
.comment-author .says, .comment-edit-link {
	color: #555 !important;
	font-weight: 400 !important;
}
/* Comment List */
.comment-list {
	padding: 25px 20px;
	position: relative;
	margin-bottom: 30px;
	list-style: none;
	border: 1px solid #fa5252;
	border-radius: 15px;
}
.comment-author.vcard img {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	padding: 0;
	background: #fff;
	border-radius: 8px;
}
.comment-author.vcard {
	display: inline-block;
}
.comment-meta a {
	font-weight: 500;
	font-size: 22px;
	line-height: 20px;
	color: var(--it-common-black);
	position: relative;
}
.comment-meta a:hover{
	color:#fa5252;
}
.comment-author.vcard .fn, .comment-author .says {
	display: inline-block !important;
}

.logged-in-as a {
	color: #555;
	font-weight: 400;
}
.logged-in-as a:hover {
	color: #00255D !important;
}
.logged-in-as a:first-child{
	color:#666;
}
.comment-meta {
	margin-bottom: 5px;
	position: relative;
}
.comment-metadata a {
	font-weight: 400;
	font-size: 13px;
}
.comment-author.vcard .fn {
	font-size: 20px;
	color: #18191d;
	display: block;
	font-weight: 500;
}
.comment-reply-link {
	display: inline-block;
	line-height: 27px;
	font-weight: 500;
	transition: 0.3s;
	font-size: 16px;
	color: var(--body-text);
	background: transparent !important;
}
.comment-reply-link:hover{
	color: var(--it-common-white);
	background: var(--it-common-blue-4);
	border-color:transparent;
}
.comment-list li.comment {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--it-border-1);
}
.comment-list ol.children {
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #ebebeb;
	list-style: none;
	margin-left: 15px;
	padding-left: 5px;
}
.comment-list ol.children ol.children {
	margin-left: 15px;
}
.comment-list li.comment:last-child {
	border: none;
}
.comment-list .comment-body .comment-content p {
	font-weight: normal;
	font-size: 15px;
	margin: 0;
}
#comments .comments-title,.bottom-title h2{
	position: relative;
}
.comment-list .reply, .comment-list .comment-body .comment-content, .comment-meta {
	padding-left: 70px;
}
.comment-list .reply {
	margin-top: 10px;
}
#respond .comment-reply-title {
	font-size: 20px;
}
.comment-respond p:last-child {
	margin: 0;
}
.comment-respond input, .comment-respond textarea {
	text-shadow: none;
	box-shadow: none;
	color: #666;
	transition: all 0.4s ease;
	font-weight: 400;
	width: 100%;
	border: none;
	border-radius: 5px;
	padding: 15px;
	font-size: 12px !important;
	margin: 0;
	height: 50px;
}
.comment-respond input::-webkit-input-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond input::-moz-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond input::-ms-input-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond textarea::-moz-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond textarea::-ms-input-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond textarea {
	height: 150px;
	width: 100%;
	background: transparent;
	background: #F6F6F6;
	resize: none;
}
.comment-respond input {
	height: 50px;
	font-size: 14px;
	line-height: 48px;
	background: #f6f6f6;
}
.comment-form .form-group i,
 .comment-form .comment-message i {
    line-height: 25px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 10px;
    right: 15px;
    color: #fa5252;
}
.comment-respond .form-submit {
	display: inline-block;
}
.comment-form-cookies-consent {
	display: none;
}
.comment-form button.btn i {
	margin-left: 10px;
}
.blog-comment-button {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  border: none;
  outline: none;
  padding: 8px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fa5252 0%, #e12a72 100%);
  color: white;
}
.blog-comment-button:hover {
  background: linear-gradient(80deg, #fa5252 0%, #e12a72 100%);
}
/* Blog Comment Form */
.comment-respond {
    margin-top: 50px;
    position: relative;
}
.bottom-title h2 {
	font-weight: 600;
	font-size: 22px;
	line-height: 18px;
	letter-spacing: -0.02em;
	color: #000;
}
.blog-single .bottom-title h2 {
	margin-bottom: 25px;
}
.comment-form .form-group label span, 
.comment-form .comment-message label span {
	color: #fa5252;
}
.logged-in-as a:hover {
	color: #fa5252;
}
.comment-form .comment-form-wrap {
	margin-top: 20px;
}
.comment-form .form-group, 
.comment-form .comment-message {
	position: relative;
	display: block;
	margin: 0 0 25px;
}
.comment-form .form-group input:hover,
.comment-form .form-group input:focus,
.comment-form .comment-message textarea:hover{
	
}
.comment-form .form-group input:hover,
.comment-form .comment-message textarea:hover{
	border-color:#fa5252;
}
/* Comment Form Reply */
.comment-list .bottom-title h2.comments-heading {
	background: transparent !important;
	color: #555;
	left: auto;
}
.comment-list .bottom-title h2.comments-heading a {
	color: #fa5252;
	font-size: 15px;
	margin-left:5px;
}
.comment-list .bottom-title h2.comments-heading a:hover{
	color:#555;
}
.blog-post-tag ul {
	margin: 0 !important;
	top: 0 !important;
}
.blog-post-tag ul li a {
	margin: 0 !important;
}
@media (max-width: 767px) {
.blog-post-tag .share-tag.post-tag {
	flex-direction: column;
	align-items: start;
}
}
.bizmax-blog-main-section {
	padding: 80px 0 130px;
	z-index: 100;
	position: relative;
}
.bizmax-blog-main-section .sidebar-main,
.bizmax-blog-main-section__blog {
	margin-top: 50px;
}
.bizmax-blog-main-section__archive {
	margin-top:20px;
}
.blog-single-column {
	margin-top:30px;
}

/* Extra */

/*
************
*************************
13. blog details
******************************************************* 
*************************************************************** */

.breadcrumb-title {
	font-size: 30px;
	font-weight: 400;
	text-transform: capitalize;
	color: #000;
	line-height: 1.33;
	font-family: "Roboto Slab", serif;
	margin-bottom: 15px;
  }
  @media (max-width: 767px) {
	.breadcrumb-title {
	  font-size: 26px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.breadcrumb-title {
	  font-size: 30px;
	}
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
	.breadcrumb-title br {
	  display: none;
	}
  }
  
  .breadcrumb-meta-wrap .meta-item {
	display: inline-block;
	position: relative;
	padding: 0 10px;
  }
  .breadcrumb-meta-wrap .meta-item:not(:last-child)::after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #696969;
	top: 42%;
	right: -4px;
  }
  .breadcrumb-meta-wrap .meta-item .img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
  }
  .breadcrumb-meta-wrap .meta-item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .breadcrumb-meta-wrap .meta-item .author-name,
  .breadcrumb-meta-wrap .meta-item .date,
  .breadcrumb-meta-wrap .meta-item .comment {
	display: inline-block;
	font-size: 14px;
	line-height: 21px;
	text-transform: capitalize;
	color: #44566c;
  }
  
  .blog-details-inner-title {
	font-size: 18px;
	font-weight: 500;
	color: #202124;
  }
  
  .blog-details-content p {
	font-size: 15px;
	line-height: 30px;
	color: #77838f;
  }
  
  .blog-details-list-item-wrap {
	padding: 0 !important;
	margin: 0 0 30px !important;
}
  .blog-details-list-item-wrap li {
	font-size: 15px;
	line-height: 46px;
	font-weight: 400;
	color: #696969;
	list-style: none !important;
}
  .blog-details-list-item-wrap li i {
	display: inline-block;
	font-size: 18px;
	margin-right: 7px;
  }
  
  .blog-details-short-list li {
	font-size: 15px;
	font-weight: 400;
	line-height: 46px;
	color: #696969;
	position: relative;
	padding-left: 19px;
  }
  .blog-details-short-list li::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #696969;
	top: 20px;
	left: 0;
  }
  
  .blog-details-tag {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 20px 0;
	border-top: 1px solid #ecedf2;
	border-bottom: 1px solid #ecedf2;
  }
  .blog-details-tag .title {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #000;
	text-transform: capitalize;
	margin-bottom: 0;
  }
  .blog-details-comment-item .ratting {
	text-align: right;
  }
  .blog-details-comment-item .ratting i {
	display: inline-block;
	font-size: 13px;
	color: #ffc78b;
  }
  .blog-details-comment-item .flex {
	display: flex;
	gap: 32px;
  }
  .blog-details-comment-item .flex .img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 auto;
  }
  .blog-details-comment-item .flex .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .blog-details-comment-item .flex .content .name {
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #202124;
	text-transform: capitalize;
  }
  .blog-details-comment-item .flex .content .bio {
	display: block;
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 21px;
	color: #696969;
	margin-bottom: 18px;
  }
  .blog-details-comment-item .flex .content p {
	font-weight: 400;
	font-size: 15px;
	line-height: 26px;
	color: #696969;
	margin-bottom: 0;
  }
  
  .blog-details-comment-box {
	padding: 50px;
	border: 1px solid #ecedf2;
	border-radius: 8px;
  }
  
  @media (max-width: 767px) {
	.blog-details-comment-box {
	  padding: 25px;
	}
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-details-comment-box {
	  padding: 50px;
	}
  }
  .blog-details-comment-box .blog-details-inner-title {
	margin-bottom: 0;
  }
  .blog-details-comment-box .ratting i {
	display: inline-block;
	font-size: 13px;
	color: #ffc78b;
  }
  .blog-details-comment-box form .input-title {
	text-transform: capitalize;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	color: #202124;
	display: block;
	margin-bottom: 3px;
  }
  .blog-details-comment-box form input,
  .blog-details-comment-box form textarea {
	display: block;
	width: 100%;
	border: none;
	background: #f0f5f7;
	border-radius: 8px;
	height: 60px;
	font-size: 14px;
	font-weight: 400;
	color: #77838f;
	padding: 22px;
  }
  .blog-details-comment-box form input::placeholder,
  .blog-details-comment-box form textarea::placeholder {
	font-size: 14px;
	font-weight: 400;
	color: #77838f;
	text-transform: capitalize;
  }
  .blog-details-comment-box form textarea {
	height: 195px;
	padding: 19px 25px;
  }
  .blog-details-comment-box form .submit-comments {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	text-transform: capitalize;
	color: #1a1a1a;
	background: #f8fbfb;
	border: 2px solid #44566c;
	border-radius: 12px;
	padding: 12px 34px;
	transition: 0.3s;
  }
  .blog-details-comment-box form .submit-comments:hover {
	background: linear-gradient(97deg, rgb(250, 82, 82) 0%, rgb(221, 36, 118) 100%);
	color: #fff;
	border-color: transparent;
  }
  
  .sidebar-wrap {
	padding: 30px;
	background: #f3f6f6;
	border-radius: 8px;
	margin-left: 20px;
}
/*======================================
	End Blog CSS
========================================*/  

/*====================================
	Page CSS
======================================*/
/* BLog Single */
.news-area.archive.single {
	padding-top: 70px 0 0;
}
/* Search Page CSS */
.search-page{
	padding:70px 0 100px;
}
/* Content None CSS*/
.no-results {
	margin-top: 30px;
	width: 100%;
}
.no-results .page-header {
  margin-bottom: 5px;
}
.no-results.not-found .page-content {
	max-width: 65%;
}
.no-results .page-header .page-title {
	font-size: 30px;
	font-weight: 600;
}
.no-results .search-form {
  margin-top: 15px;
}

/* 404 Page CSS */
.error__area {
	padding: 80px 0 130px;
}
.error__heading {
	margin: 0 0 5px;
}
.error__main-img img {
	max-width: 260px;
}
.error__main-title {
	font-size: 36px;
	margin: 0 0 10px !important;
}
.error__button {
	margin-top: 30px;
}
@media (max-width: 991px) {
	.cs_footer_logo {
	  display: none;
	}
	.error__area {
		padding: 0 0 50px;
	}
  }
/*====================================
	End Page CSS
======================================*/

/*====================================
	BreadCrumbs CSS
======================================*/
.breadcrumbs {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 100px 0;
	z-index: 10;
	background-color: #667D9E;
}
.bread-inner {
	text-align: center;
	z-index: 100;
	position: relative;
}
.breadcrumbs::before {
	background: #555;
	opacity: 0.6;
}
.breadcrumbs .bread-title {
    z-index: 5553;
    position: relative;
    border-radius: 5px;
}
.breadcrumbs .bread-title p {
    color: #fff;
    font-size: 13px;
}
.breadcrumbs h2 {
	color: #fff;
	text-transform: capitalize;
	font-size: 45px;
	margin: 0;
	padding: 0;
	line-height: 45px;
	z-index: 555;
	position: relative;
}
.breadcrumbs .bread-list {
	display: block;
	margin-top:20px;
}
.breadcrumbs ul li {
	display: block;
	display: inline-block;
}
.breadcrumbs ul li span {
	margin: 0px 10px;
	font-size: 11px;
	font-weight: 400;
	color:#fff;
}
.breadcrumbs.style2 ul li span {
	font-size: 14px;
}
.breadcrumbs ul li a{
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}
.breadcrumbs ul li a:hover{
	opacity:0.8;
	color:#fff !important;
}
.breadcrumbs.style2 ul li a{
	font-weight:500;
}
.breadcrumbs.style2 ul li a:hover{
	color:#fa5252;
}
.breadcrumbs .bread-menu {
	color: #fff;
	z-index: 555;
	position: relative;
	line-height: initial;
	font-size: 0;
	margin-top: 15px;
}
.breadcrumbs .bread-menu span {
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 16px;
	padding-right: 8px;
	margin-right: 8px;
	display: inline-block;
	font-weight: 500;
}
.breadcrumbs .bread-menu span:hover{
	color:#fa5252;
}
.breadcrumbs .bread-menu span:last-child{
	margin:0;
	padding:0;
}
.breadcrumbs .bread-menu span + span::before {
	content: "\f105";
	font-family: 'FontAwesome';
	left: -7px;
	position: relative;
}
/* Blog Single */
.breadcrumb.bread-two {
	background: #F8F9FA;
	margin: 0;
	padding: 30px 0;
	border-top: 1px solid #cccccc61;
	text-align: center;
}
.breadcrumb.bread-two:before{
	display:none;
}
.breadcrumb.bread-two .bread-menu {
	color: #fa5252;
	font-size: 0;
	line-height: initial;
}
.breadcrumb.bread-two .bread-menu span {
	color: #555;
	font-size: 14px;
	margin-right: 15px;
	padding-right: 15px;
	position: relative;
	transition: all 0.3s ease;
	font-weight: 500;
}
.breadcrumb.bread-two .bread-menu span:last-child{
	margin:0;
	padding:0;
}
.breadcrumb.bread-two .bread-menu span:hover{
	color:#fa5252;
}
.breadcrumb.bread-two span::before {
	content: "/";
	position: absolute;
	right: -4px;
	width: 9px;
	height: 9px;
	top: 2px;
	border-radius: 100%;
	font-size: 12px;
}
.breadcrumb.bread-two .home::before {
	content: "\f015";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-right: 5px;
}
.breadcrumb.bread-two span:last-child:before{
	display:none;
}
.breadcrumb.bread-two .bread-menu span span{
	margin:0;
	padding:0;
}
.breadcrumb.bread-two .bread-menu span span:before{
	display:none;
}
.breadcrumb.bread-two .bread-menu span.current-item {
	color: #fa5252;
}
/*====================================
	End BreadCrumbs CSS
======================================*/

/*====================================
	Pagination CSS
======================================*/
.pagination-main {
	text-align: left;
	margin: 0px 0 0 0;
	display: flex;
}
.pagination-main.full-width {
	text-align: center;
}
.pagination-main.full-width{
	text-align: left;
}
.pagination-main .pagination-list li {
	margin-left: 5px;
	display: inline-block;
	margin-top: 5px;
}
.pagination-main .pagination-list li:last-child{
	margin-right:0px;
}
.pagination-main .pagination-list li a, .pagination-list a, .pagination-list span {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	font-weight: 600;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #666;
}
.pagination-list li:hover span {
	color: #fff !important;
}
.pagination-main .pagination-list li.active a,
.pagination-main .pagination-list li:hover a,
.pagination-list span.current,
.pagination-list .page-numbers:hover {
	background: #FA5252;
	color: #fff;
}
.pagination-main .pagination-list li.prev a, 
.pagination-main .pagination-list li.next a {
	box-shadow: none;
	padding: 0 20px;
	text-align: center;
}

.pagination-plugin {
	display: flex;
}
.pagination-list {
	margin-left: -5px;
	margin-top: -5px;
	border: 1px solid #ecedf2;
	border-radius: 100px;
	display: inline-block;
	padding: 10px;
	display: flex;
	margin-top: 30px;
	gap: 8px;
	margin: 0 !important;
}
.pagination-list .next, .pagination-list .prev {
	background: transparent !important;
	color: #666666 !important;
}
.pagination-list .next:hover, .pagination-list .prev:hover{
	color:#FA5252 !important;
}
/*====================================
	End Pagination CSS
======================================*/

/*====================================
	Wordpress Default CSS
======================================*/
p b, strong {
	color: #555;
}
.single-news.news-large img {
	width: auto;
}
.widget {
	border-radius: 0;
	padding: 40px 30px;
	background: #F2F3F7;
}
.widget:last-child{
	margin:0;
}
.wp-block-archives-dropdown label, 
.wp-block-search .wp-block-search__label {
	color: #555;
	font-weight: 500;
	padding-bottom: 5px;
}
/* Widget Select CSS*/
.widget select, .wp-block-categories select, .wp-block-archives select {
	width: 100%;
	height: 50px;
	padding: 0 10px;
	margin-top:10px;
	appearance: none;
	background-image: url('../img/select-arrow.png');
	background-repeat: no-repeat;
	background-position: right;
	background-color: transparent;
	color: #555;
	background-size: 24px;
}
/* Sidebar Default CSS */
.widget ul li {
	line-height: 35px;
	margin-bottom: 5px;
	list-style: none !important;
	padding-bottom: 5px;
}
.widget ul li:last-child{
	margin:0;
}
.widget a, .widget ul li a {
    color: #555;
    font-size: 15px;
}
.widget ul li a:hover {
	color: #fa5252;
}
/* Akismet Widget */
.widget_akismet_widget .a-stats a {
	background: #F60 !important;
	border: none;
	color: #fff;
}
.widget_akismet_widget .a-stats a strong {
  color: #fff;
}
/* Widget MENU */
.widget_nav_menu ul {
    border-radius: 8px;
    overflow: hidden;
    margin-left: 15px;
}
.widget_nav_menu ul li a {
    padding: 5px 10px;
    background: #fff;
    color: #666;
    display: block;
    font-size: 15px;
}
.widget_nav_menu ul li a::before, .widget_categories ul li a::before {
	content: "\f101";
	font-family: 'FontAwesome';
	margin-right: 12px;
	float: right;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.widget_nav_menu ul li a:hover:before,
.widget_categories ul li a:hover:before{
	color:#fff;
}

.widget_nav_menu ul li a:hover{
	color:#fa5252;
}
.widget_nav_menu ul li a i {
	display: inline-block;
	margin-right: 15px;
}
/* Category List */
.widget_categories ul {
}
.widget_categories ul li {
	margin-bottom: 5px;
	padding-bottom: 5px;
}
.widget_categories ul li:last-child{
	margin-bottom:0px;
}
.widget.widget_categories ul li a {
    font-size: 15px;
}
.widget_categories ul li a:hover{
	color:#fa5252;
}
.widget_categories ul li a span{
	display:inline-block;
	color:#fa5252;
}

.widget_recent_entries .post-date,.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
	font-size: 13px;
	font-weight: 400;
}
.recentcomments,.tagcloud {
	padding-top: 5px;
}
.widget_recent_comments a,#recentcomments a {
  font-weight: 500;
  color: #555;
}
.widget_recent_comments a:hover{
	color: #fa5252;
}
.widget_recent_comments .wp-block-latest-comments__comment-link, .widget_recent_comments .recentcomments a, .wp-block-latest-comments__comment .wp-block-latest-comments__comment-link {
	color: #fa5252 !important;
}
.widget_recent_comments .wp-block-latest-comments__comment-link:hover,#recentcomments a:hover,.wp-block-latest-comments__comment .wp-block-latest-comments__comment-link:hover{
	color:#555;
}
.widget_recent_comments .comment-author-link a, .wp-block-latest-comments__comment a {
	color: #555 !important;
}
.widget_recent_comments .comment-author-link a:hover{
	color:#fa5252;
}
#recentcomments a::before {
	display: none;
}

.wp-block-latest-comments li {
	border-bottom: 1px solid #cccccc87;
	padding-left: 0px;
}
.wp-block-latest-comments li:last-child{
	padding:0;
	border:none;
}
.wp-block-latest-comments__comment-date {
	display: block;
	font-size: 13px;
}
.wp-block-latest-comments__comment-excerpt p {
	color: #555;
	line-height: 22px;
	margin: 0;
	font-weight: 400;
	margin-top: 5px;
}
.wp-block-latest-comments li {
	padding-bottom: 12px;
	margin-bottom: 12px;
}
.wp-block-latest-comments li:last-child{
	padding:0;
	margin:0;
}
.sidebar-main .widget_recent_comments ul li a {
	line-height: initial !important;
	padding: 0 !important;
	margin: 0 !important;
	display: inline !important;
}
.widget_recent_comments .comment-author-link {
	display: inline !important;
}
.sidebar-main .widget_recent_comments ul li {
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.sidebar-main .widget_recent_comments ul li:last-child{
	margin:0;
}
.sidebar-main .widget.widget_recent_comments a:hover {
	color: #555 !important;
}
/* Subscribe */
.blog-sidebar .subscribe form,
.widget_mc4wp_form_widget .form-main{
	position:relative
}
.blog-sidebar .subscribe form input, .mc4wp-form .mc4wp-form-fields input[type="email"] {
	height: 54px;
	padding: 0 110px 0 30px;
	border: none;
	width: 100%;
	position: relative !important;
	font-size: 14px;
	border: 1px solid #ebebeb;
	line-height: 50px;
	background: #fff;
}
.widget_mc4wp_form_widget .mc4wp-form-fields{
	position:relative;
}
.blog-sidebar .subscribe h2,
.blog-sidebar .widget_mc4wp_form_widget .widget-title {
	border: none !important;
	margin-bottom: 20px;
}
.widget_mc4wp_form_widget label {
	overflow: hidden;
	left: 0;
	top: 0;
	margin: 0 !important;
	font-size: 0px;
	display: block;
}
.footer .widget_mc4wp_form_widget .widget-title:before {
	display: none;
}
.blog-sidebar .subscribe form button,
.mc4wp-form .mc4wp-form-fields input[type="submit"] {
    background: #fa5252;
    position: relative;
    right: 0;
    top: 0;
    border: none;
    box-shadow: none;
    width: auto;
    padding: 0 20px;
    height: 53px;
    text-align: center;
    display: block;
    margin: 0;
    border-radius: 0px;
    cursor: pointer;
    color: #fff;
}
.mc4wp-form .mc4wp-form-fields input[type="submit"] {
	margin-top: 10px;
}
.blog-sidebar .subscribe form button:hover,
.mc4wp-form .mc4wp-form-fields input[type="submit"]:hover{
	color:#fff;
	background:#2A2D2F;
}
.blog-sidebar .subscribe form button i{
	margin:0;
}

.mc4wp-alert p, .mc4wp-alert p a {
	color: #fff;
}
/* Widget Select */
.single-widget select {
	width: 100%;
	padding: 12px;
	font-size: 14px;
	border: 1px solid #ebebeb;
	background: #F5F8F9;
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	-ms-user-select: none;
	background-image: url(../img/select-arrow.png) !important;
	background-repeat: no-repeat !important;
	background-position: right 50% !important;
}
/* Widget Tags*/
.widget_tag_cloud .tagcloud a {
	color: #555;
	font-size: 14px !important;
	display: inline-block;
	padding: 8px 12px;
	background: #fff;
	margin-top: 5px;
}
.widget_tag_cloud .tagcloud a:hover{
	background:#fa5252;
	color:#fff;
}
/* Tag */
.widget_tag_cloud .tagcloud a {
	background: #f6f6f6;
}
.widget_tag_cloud .tagcloud a:hover{
	background:#fa5252;
	color:#fff;
}
/* Widget RSS */
.widget_rss .rsswidget {
  display: inline-block;
}
.widget_rss ul li a {
}
.widget_rss ul.wp-block-rss li a, .widget_rss ul li a {
	line-height: 26px !important;
	color: #555;
	margin-bottom: 5px;
}
.widget_rss ul.wp-block-rss li a:hover, .widget_rss ul li a:hover,ul.wp-block-rss li a:hover{
	color:#fa5252;
}
.widget_rss ul.wp-block-rss li, .widget_rss ul li {
	margin-bottom: 12px;
	padding-bottom: 12px;
}
.widget_rss .widget-title a {
	color: #555;
	font-size: 20px;
	line-height: 28px;
}
.widget_rss .rss-date, .widget_rss cite {
	font-size: 13px;
}
.widget_rss cite{
	margin-top:5px;
}
.widget_rss .rss-date {
	display: block;
	line-height: initial;
}
.blog-detail ul li a:hover {
	color: #fa5252;
}
.sidebar-main .widget.widget_rss h2::before {
	display: none;
	padding: 0;
}
.widget_rss .rssSummary, .wp-block-rss__item-excerpt {
	line-height: 24px;
	font-weight: 400;
	color: #555;
	font-size: 14px;
}
.widget_rss .widget-title {
	padding-left: 0 !important;
}
.sidebar-main .widget_rss ul li a::before {
	top: 14px;
}
.wp-block-rss__item-author, .widget_rss cite {
	color: #fa5252;
	text-transform: ;
	text-decoration: ;
	font-style: initial;
}
.page-links {
	padding-left: 30px;
}
/* RSS Block */
.wp-block-rss__item-excerpt, .widget_rss .rssSummary {
	margin-top: 10px;
}
.wp-block-rss__item-author, .wp-block-rss__item-publish-date {
	display: initial;
	font-size: 13px;
}


/* Default Search */
.search-form{
	position:relative;
}
.search-form input[type="search"] {
	width: 100%;
	height: 50px;
	border-radius: 0px;
	padding: 0 95px 0 20px;
	font-size: 14px;
	background: #fff;
	border: none;
}
.search-form label {
	width: 100%;
	position: relative;
	margin: 0;
}
.search-form input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	background: #fa5252;
	color: #fff;
	height: 50px;
	border: none;
	border-radius: 0px;
	padding: 0 20px;
	cursor: pointer;
	height: 100%;
}
.search-form input[type="submit"]:hover{
	background:#555;
	color:#fff;
}
.bizmax-entry-page ol.comment-list li {
	padding-left: 0;
}
/* Password Form */
form.post-password-form input {
    border-radius: 0px;
    height: 40px;
}
form.post-password-form input[type="submit"] {
    background: #fa5252;
    padding: 9px 15px;
    color: #fff;
    border-radius: 0px;
    border: none;
}
form.post-password-form input[type="submit"]:hover{
	background:#555;
	color:#fff;
}
/* Caption */
.gallery-caption {
	display: block;
	font-size: 13px;
	line-height: 18px;
	margin-top: 8px;
}
.sidebar-main .gallery-size-thumbnail .gallery-item {
	margin: 0;
}
/* Pagiantion */
.page-links{
	margin-top:10px;
}
.page-links a, .page-links span {
	padding: 4px 12px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	width: auto;
	background: #555;
	color: #fff;
}
.page-links span.current,.page-links a:hover {
    background: #fa5252;
    color: #fff;
}
.sidebar-main .widget_nav_menu ul{
	margin:0;
	padding-left:0px;
}
.sidebar-main .widget_nav_menu ul ul{
	padding-left:15px;
}
.sidebar-main .widget_nav_menu ul ul ul{
	padding-left:10px;
}

.widget_nav_menu ul li a::before {
	top: 15px;
}
.sidebar-main .widget_nav_menu ul ul {
	padding-left: 15px;
	padding-top: 10px;
}
.wp-block-latest-posts li a {
  line-height: 28px !important;
}
.wp-block-latest-posts li a:before {
  top: 15px !important;
}
ol.comment-list li {
	line-height: 24px;
	margin-bottom: 5px;
}
ol.comment-list li:last-child{
	margin-bottom:0;
	padding-bottom:0;
}
.comment-list li.comment::before {
	display: none;
}
ol.comment-list li a:hover{
	color:#fa5252;
}
.comment-list ul li a::before, .blog-detail ul li a::before, .blog-single ul li::before,.bizmax-entry-page ul li:before{
	top: 14px;
}
.bizmax-entry-page ul li::before {
	top: 15px;
}
ol.comment-list li:before{
	top:12px;
}
.comment-reply-link:hover {
	background: #555;
	color: #fa5252 !important;
}
.logged-in-as {
	margin-bottom: 20px;
}
table tr, table td, table th {
	border: 1px solid #cccccc87 !important;
	padding: 10px !important;
	border-top: 0px solid !important;
}
table thead th,table tr th {
	color: #fa5252;
}
.share-tag.post-tag li a:hover {
	color: #fa5252;
}
p a {
	color: #fa5252;
}
p.has-large-font-size {
    line-height: 43px;
}


ol {
  padding-left: 18px;
}
ol li ol {
  padding-left: 10px;
}


.blockquote strong {
	color: #fff !important;
  }
  blockquote strong {
	color: #fff;
  }
  blockquote code {
	color: #fa5252;
  }
  .blog-details-list-item-wrap  li::before {
	  content: "\f00c";
	  font-family: "Font Awesome 5 Free";
	  font-weight: 900 !important;
	  background: #696969;
	  border-radius: 100%;
	  color: #fff;
	  width: 18px;
	  height: 18px;
	  font-size: 9px;
	  display: inline-block;
	  line-height: 18px;
	  text-align: center;
	  margin-right: 10px;
  }
  .blog-details-list-item-wrap {
	  margin-bottom: 30px;
  }
  
  .blog-main-layout  ul li {
	  list-style: disc;
	}
	.blog-main-layout  ul {
	  margin-left: 15px;
	}


.share-tag.post-tag {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}
.share-tag.post-tag h5 {
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 12px;
	color: #000;
	margin-right: 8px;
}
.share-tag.post-tag ul {
	display: flex;
	align-items: center;
	gap: 10px;
}

.blog-details-tag .tag-item a, .wp-block-tag-cloud a {
	display: inline-block;
	font-size: 14px !important;
	font-weight: 400;
	line-height: 21px;
	text-transform: capitalize;
	color: #696969;
	background: #f0f5f7;
	border-radius: 4px;
	padding: 7px 20px;
	transition: 0.3s;
}
  @media (max-width: 767px) {
	.blog-details-tag .tag-item a {
	  margin-bottom: 8px;
	}
  }
  .blog-details-tag .tag-item a:hover,.wp-block-tag-cloud a:hover  {
	background: linear-gradient(97deg, rgb(250, 82, 82) 0%, rgb(221, 36, 118) 100%);
	color: #fff;
  }
  

.wp-block-tag-cloud, .share-tag.post-tag ul {
	position: relative;
	top: -10px;
}
.wp-block-tag-cloud a, .share-tag.post-tag ul a {
	margin-top: 10px;
	background: #fff;
}
.wp-caption {
	padding: 20px 0;
}
.wp-block-latest-comments {
	margin: 0;
	margin-top: 10px !important;
}
/* Widget Calender CSS */
.widget .calendar_wrap,.gallery-size-thumbnail {
	padding-top: 5px;
}
.calendar_wrap th,
.calendar_wrap td {
	padding: 5px 10px;
	text-align: center;
	display: nherit;
	border: 1px solid #ebebeb;
	color: #555;
}
.calendar_wrap #wp-calendar {
	max-width: 100%;
	margin-bottom: 15px;
}
.calendar_wrap #wp-calendar thead th, 
.calendar_wrap #wp-calendar tfoot td, 
.wp-block-calendar table th {
	background: #f6f6f6;
	color: #555;
	font-size: 15px;
	font-weight: 500;
}
.calendar_wrap #wp-calendar caption {
	caption-side: top;
	background: #fa5252;
	color: #fff;
	text-align: center;
	padding: 10px;
	font-size: 15px;
}
.calendar_wrap #wp-calendar tbody tr a {
	color: #fff;
	border-radius: 100%;
	display: inline-block;
	width: 26px;
	height: 26px;
	line-height: 26px;
	padding: 0;
	background: #fa5252;
	padding: 0;
	text-align: center;
}
.calendar_wrap #wp-calendar tfoot tr a {
	color: #353535;
}
.calendar_wrap #wp-calendar tfoot tr a:hover{
	color:#fa5252;
}
.wp-block-gallery ul.blocks-gallery-grid li {
	padding-left: 0px !important;
}
.blocks-gallery-caption {
	padding-bottom: 10px;
}
.has-large-font-size {
	color: #555;
}
.wp-calendar-nav {
	text-align: center;
}
.wp-block-calendar table caption {
	color: #555;
}
.wp-block-calendar table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 5px;
}
.wp-calendar-nav a {
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
	background: #232323;
	text-decoration: none;
}
.wp-calendar-nav a:hover {
	background: #fa5252;
	color: #fff;
}
.wp-block-image {
	overflow: hidden;
}
.widget_archive select {
	margin-top: 5px;
}
#recent-posts-2 {
}
.widget_recent_entries ul li a:before {
  display: none;
}
.widget_recent_entries ul li a {
	padding: 0 !important;
	font-weight: 500;
	color: #fa5252;
	line-height: 26px !important;
}
.widget_recent_entries ul li a:hover{
	color:#555;
}
.widget_recent_entries ul li {
	padding-bottom: 12px;
	margin-bottom: 8px;
}
.wp-block-latest-posts__post-excerpt {
  margin-top: 0;
  line-height: 25px;
}
.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date {
  display: inline-block;
  line-height: initial;
}
.wp-block-latest-posts__post-date {
	display: inline-block;
	line-height: 14px;
	font-size: 12px;
}
.wp-block-latest-posts__post-date::before {
	content: "\f073";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	color: #fa5252;
	margin-right: 5px;
}
.wp-block-latest-posts__post-excerpt {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #555;
	margin-top: 5px;
}
.sidebar-main .widget ul.wp-block-latest-posts li a {
	color: #18191d !important;
	font-size: 15px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 3px;
	line-height: 22px !important;
}
.wp-block-latest-posts__featured-image {
	margin-bottom: 5px;
	padding-top: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
	clear: both;
	padding-bottom: 5px;
	margin-bottom: 5px;
	padding-left: 95px;
}
.sidebar-main .wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
	padding: 0; 
	margin: 0;
}
.footer-news-list li .wp-block-latest-posts__post-title {
	font-weight: 600;
	font-size: 17px;
	color: var(--it-common-white);
	margin-bottom: 0;
	line-height: 1.2;
	transition: 0.3s;
	display: block;
}

.comments-area .comment-list .comment-content ol li:before {
  display: none;
}
.comments-area .comment-list .comment-content ol li {
  padding-left: 2px;
}
.wp-block-cover p:not(.has-text-color) {
	color: #fff;
}

.blocks-gallery-grid,.blocks-gallery-grid li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blocks-gallery-grid li:before {
  display: none;
  padding: ;
}
.blocks-gallery-grid {
	margin-left: -15px;
}
.blog-detail p{
	line-height:initial;
}
/* BLog Sidebar Widget */
.sidebar-main .widget .widget {
	box-shadow: none;
}
.sidebar-main .widget ul li {
	padding-left: 0px;
	line-height: 30px;
}
.sidebar-main .widget ul li:last-child {
	border: none;
	padding: 0;
	margin: 0;
}
.sidebar-main .widget ul li a {
	line-height: 30px;
	position: relative;
	width: 100%;
	display: block;
	background: transparent;
	color: #696969 !important;
}
.sidebar-main .widget ul li a:hover{
	color:#fa5252 !important;
}
.sidebar-main .widget ul li a:hover::before{
	background-color:#fa5252 !important;
}
.wp-block-latest-comments__comment a:hover{
	color:#fa5252;
}

/* Categories */
.wp-block-categories li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 500 !important;
	font-size: 14px;
}
.wp-block-categories li a::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #202124;
	display: inline-block;
	margin-right: 8px;
	position: relative;
	top: -2px;
}
.wp-block-categories li a {
	color: #18191d !important;
}
.sidebar-main ol {
	padding-left: 0;
}
.sidebar-main .widget h2, .sidebar-main .wp-block-search__label {
	position: relative;
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 500;
	color: #000000;
}
.wp-block-search .wp-block-search__label {
    width: auto;
}
.wp-block-search .wp-block-search__input {
	width: 100%;
	height: 60px;
	line-height: 0;
	padding: 0 15px 0 60px;
	padding-right: 25px;
	text-transform: capitalize;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-o-border-radius: 7px;
	-ms-border-radius: 7px;
	border-radius: 7px;
	border: 0;
	outline: none;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	background: #fff;
	margin: 0 !important;
	font-size: 14px;
	border: 1px solid #ecedf2 !important;
}
.wp-block-search .wp-block-search__button {
	background: #fa5252;
	color: #fff;
	border: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: absolute;
	left: 0;
	font-size: 0;
	background: transparent !important;
	height: 100%;
	padding: 0 24px;
	line-height: 50%;
	margin: 0;
}
.wp-block-search .wp-block-search__button::before {
	content: "";
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.01371 15.2219C11.9525 15.2219 15.1456 12.0382 15.1456 8.11096C15.1456 4.18368 11.9525 1 8.01371 1C4.07488 1 0.881836 4.18368 0.881836 8.11096C0.881836 12.0382 4.07488 15.2219 8.01371 15.2219Z' stroke='%235F6168' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M16.9287 16.9996L13.0508 13.1331' stroke='%235F6168' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 100%;
	height: 18px;
}
.wp-block-search .wp-block-search__button:hover{
	background:#555;
	color:#fff;
}
.wp-block-search__inside-wrapper {
	position: relative;
}


.wp-block-latest-posts__featured-image {
	left: 0;
	border-radius: 8px;
	width: 70px;
	height: 70px;
	flex: 0 0 auto;
	object-fit: cover;
	overflow: hidden;
	margin: 0;
	float: left;
	margin-right: 15px;
}
.widget_categories ul li a,.widget_archive ul li a {
	
}
.widget_categories ul li a,
.widget_archive ul li a,
.widget_nav_menu ul li a,
.widget_pages ul li a,
.widget .wp-block-page-list li a{
	color:#555;
}

#comments {
	margin-top: 50px;
	clear: both;
}
#comments .comments-title {
	font-size: 22px;
	letter-spacing: -0.02em;
	color: #000;
	margin-bottom: 40px;
}
article.page .page-links {
	padding-top: 15px;
}
.post-tag ul li::before {
	display: none;
}
.blog-single .blog-detail ul li::before {
	top: 15px;
}

.sidebar-main .widget_categories ul li a,.sidebar-main .widget_archive ul li a {
	display: inline !important;
}
.sidebar-main .widget_categories ul li a::before, .sidebar-main .widget_archive ul li a::before {
	top: 12px;
}
.sidebar-main .widget_pages ul li a::before{
	top:16px !important;
}
.widget_meta ul li a::before {
	top: 16px;
}
.widget_recent_comments ul li {
	margin-bottom: 6px !important;
	padding-bottom: 6px !important;
	line-height: 25px !important;
	padding-top: 0;
}
/*====================================
	Wordpress Default Sidebar
======================================*/

/*====================================
	Footer CSS
======================================*/
.footer__area {
	background-color: #0C0D0F;
	padding: 40px 0 70px;
}
.footer .widget .widget {
	margin: 0;
}
/* Footer */
.footer {
	position: relative;
}
.enable-cta {
	padding-top: 200px;
}
.footer .widget {
	padding: 0;
	border: none;
	background: transparent;
	margin-top: 30px;
}
.footer-logo {
	/* text-align: left; */
}
.footer .footer-top {
	padding: 50px 0 80px;
	margin: 0;
	background-color: transparent;
}
.footer.no-footer .copyright {
	border-top: 1px solid #cccccc87;
}
.footer.newsletter-padding .footer-top {
	padding: 105px 0 80px;
}
.footer.newsletter-padding.no-footer .copyright {
	margin-top: 65px;
}
.footer-bottom-single.copyright-content a:hover {
	color: #555 !important;
}
.footer .sidebar-main .widget ul li {
	color: #eee;
	margin-bottom: 6px;
}
.footer .sidebar-main .widget ul li:last-child{
	margin-bottom:0px;
}
.footer .single-widget h3, footer .sidebar-main .widget h2 {
	color: #fff;
	font-size: 18px;
	position: relative;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.footer .single-widget:hover h3:before{
	background:#fa5252;
	color:#fff;
}
.footer-logo .text-logo a {
	font-size: 20px;
	display: block;
	line-height: initial;
}
.footer-section p{
	color:#fff;
}
.footer-section .elementor-heading-title {
	text-align: left;
}
.footer p {
	color: #ccc;
	font-size:14px;
}
.footer-about {
	padding-right: 30px;
}
.footer-about .logo {
    margin-bottom: 15px;
}
.footer-about .logo img {
	max-width: 150px;
}
.footer-about .text-logo a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.footer-about .text {
	margin-bottom: 35px;
}
.footer-about .button .bizwheel-btn {
    background: #fa5252;
    margin-top: 20px;
    color: #fff;
}
.footer-about .button .bizwheel-btn:hover{
	background:#fff;
	color:#fa5252
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* Footer Link */
.footer .widget_nav_menu ul li {
	margin-bottom: 0px;
	position: relative;
	padding-bottom: 0px;
	border: none;
}

.footer .widget_nav_menu ul li a {
    display: inline-block;
    color: #B4B4B4;
    padding: 0;
    margin: 0;
    background: transparent;
    font-size: 14px;
    font-weight: normal;
}
.footer .widget_nav_menu ul {
    box-shadow: none;
    margin: 0;
}
.footer .widget_nav_menu ul li a::before{
	display:none;
}
.footer .widget_nav_menu ul li a:hover {
	color:#fa5252;
}
/* Footer Mail Chimp */
.footer .widget_mc4wp_form_widget .widget-title {
	margin-bottom: 0px;
	font-size: 18px;
	font-weight: 600;
	text-align:center;
}
.footer .widget_mc4wp_form_widget .mc4wp-form-fields p:last-child {
    margin: 0;
    position: absolute;
    right: 0;
    top: -9px;
    border-radius: 0px;
}
.footer .widget_mc4wp_form_widget form {
    background: #fff;
    padding: 15px;
    line-height: initial;
}
/* Footer News */
.footer-news .single-f-news .content {
  padding-left: 85px;
}
.footer-news .single-f-news .content .title {
	font-size: 14px;
	margin: 0;
}
.footer .footer-newsletter .address {
	color: #777;
	font-size: 15px;
	margin-bottom: 20px;
}
.footer .single-f-news .post-meta i {
    color: #fa5252;
}
.footer .sidebar-main .address-widget-list li {
	display: block;
	margin-bottom: 10px;
	line-height: 25px;
	position: relative;
	padding-left: 40px !important;
	border: none;
	padding-bottom: 0;
}
.footer .address-widget-list li,
.footer .address-widget-list li a {
    font-weight: normal;
    color: #ccc;
    font-size: 15px;
}
.footer .address-widget-list li a{
	padding-left: 0px !important;
}
.footer .address-widget-list li a:before{
	display:none;
}
.footer .address-widget-list li i {
	color: #fff;
	text-align: center;
	border-radius: 100%;
	font-size: 15px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	left: 0;
	top: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid transparent;
	margin-top: -15px !important;
}
.footer .address-widget-list li:hover i{
	background:#fff;
	color:#fa5252;
}
.footer .sidebar-main .address-widget-list li:last-child {
	margin-bottom: 0px;
}
.footer .address-widget-list li span{
	color:#fa5252;
	display:inline-block;
}
.footer_contact p {
	margin-bottom: 15px;
}
/* Social */
.footer .social{
	margin-top:22px;
}
.footer .sidebar-main .social li {
	display: inline-block;
	margin: 0 10px 0 0;
	border: none;
}
.footer .social li:last-child{
	margin-right:0px;
}
.footer .sidebar-main .social li a {
	display: block;
	font-size: 16px;
	text-align: center;
	width: 32px;
	height: 32px;
	line-height: 32px !important;
	border: 1px solid #fff !important;
	border-radius: 100%;
	background: #fff;
	color: #555;
	padding:0;
}
.footer .social-icons li:before,.footer .sidebar-main .social li a:before {
  display: none;
}

/* Copyright */
.footer .copyright {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #ebebeb3b;
	background: #fff;
	z-index: 10000;
	position: relative;
}
.footer .copyright-content p {
    font-size: 15px;
    color: inherit;
}
.footer .copyright-content p span{
	font-size:17px;
	font-weight:800;
	text-transform:uppercase;
}
.footer .copyright-content a:hover{
	color:#fa5252;
}

#footer-menu li {
  display: inline-block;
  font-size: 13px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #cccccca1;
  line-height: initial;
}
#footer-menu li:first-child {
  margin: 0;
  padding: 0;
  border: none;
}
#footer-menu li:hover a {
	color: #fa5252;
}
.footer-logo .img-logo img {
	max-width: 150px;
}
#footer-menu li{
	position:relative;
}
.newsletter-main .mc4wp-form input {
	background: #f6f6f6;
}
.newsletter-2__input-box input {
	height: 80px !important;
	border-radius: 50px;
	margin: 0;
}
/* Footer Widget */
.footer .sidebar-main .widget {
	box-shadow: none;
	padding: 0;
	background: transparent;
	border:none;
}
.footer #recentcomments .comment-author-link a, .footer .wp-block-latest-comments__comment a {
  color: #ccc;
}
.footer .sidebar-main .widget ul li.recentcomments {
	color: #fa5252;
}
.footer .widget_recent_entries .post-date, .footer .wp-block-latest-posts__post-author, 
.footer .wp-block-latest-posts__post-date {
	color: #fff;
}
/*  Nav & Pages */
.footer .widget_categories ul li a, .footer .widget_archive ul li a, .footer .widget_nav_menu ul li a, .footer .widget_pages ul li a, .footer .widget .wp-block-page-list li a, .footer .widget_meta ul li a {
	color: var(--it-common-white);
	font-weight: 400;
	transition: 0.3s;
}
/*  Calendar */
.footer #calendar_wrap th, .footer #calendar_wrap td {
	color: #fff;
}
.footer .wp-block-calendar tbody td {
	color: #fff;
}
.footer-top.sidebar-main .wp-calendar-nav a:hover {
	background: #fa5252;
	color: #fff;
}
.footer .widget_rss .widget-title a {
  color: #fff;
}
.footer .widget_rss .rss-date {
	color: #ccc;
}
.footer .widget_rss ul.wp-block-rss li a, .footer .widget_rss ul li a {
	color: #fff;
}
.footer .wp-block-calendar table caption,
.footer .wp-block-latest-comments__comment-meta,
.footer .wp-block-latest-comments__comment-date {
	color: #fff;
}
.footer .calendar_wrap th, .footer .calendar_wrap td {
	color: #ccc;
}
.footer .sidebar-main .widget_nav_menu ul ul {
	padding-left: 0;
}
.footer .widget_rss .rssSummary {
  color: #ccc;
}
.footer .wp-calendar-nav a {
	background: #fff;
	color: #555;
}
.footer .widget_recent_comments li a::before {
	display: none;
}
.footer .sidebar-main .widget_recent_comments ul li a {
	color: #ccc !important;
}
.footer .sidebar-main .widget_recent_comments ul li a:hover{
	color:#fff !important;
}
.footer .single-widget .widget-title,
.footer .wp-block-heading {
	font-weight: 700;
	font-size: 22px;
	color: var(--it-common-white);
	padding-bottom: 30px;
	margin: 0;
}
.footer .widget_nav_menu ul li a, .footer .widget_nav_menu ul li, .footer p {
	font-size: 15px;
}

.footer-newsletter-main {
  position: relative;
}
.footer-shape-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.footer-shape-bg img {
	width: 100%;
	height: 100%;
}
.footer-top div {
	position: relative;
	z-index: 333;
}


.footer-2__social-box span {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: var(--it-common-white);
	padding-bottom: 12px;
	display: inline-block;
  }
  .footer-2__social-box a {
	height: 33px;
	width: 33px;
	border-radius: 50%;
	border: 1px solid #a1a1a2 !important;
	display: inline-block;
	line-height: 33px;
	text-align: center;
	margin-right: 5px;
	transition: 0.3s;
	padding: 0 !important;
}
  .footer-2__social-box a svg {
	color: #a1a1a2 !important;
	transition: 0.3s;
  }
  .footer-2__social-box a:hover {
	background-color: var(--it-theme-1);
	border-color:transparent !important;
  }
  .footer-2__social-box a:hover svg {
	color: var(--it-common-black) !important;
  }
  .footer-2__social-box li {
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}
.wp-block-heading.footer-inside-heading {
	margin: 0 !important;
	padding: 0;
	font-weight: 500;
	font-size: 18px;
	color: var(--it-common-white);
	padding-bottom: 12px;
	display: inline-block;
	margin-top: 15px !important;
}

.footer-news-list {
	position: relative;
  }
  .footer-news-list .wp-block-latest-posts__featured-image {
	width: 85px;
	height: 85px;
	position: absolute;
	left: 0;
}
  .footer-news-list  li {
  }
  .footer-news-list li .wp-block-latest-posts__post-title,.footer-news-list li a {
	color: #fff !important;
  }
  .footer-news-list li a {
	color: ;
  }
  .footer-news-list .wp-block-latest-posts__featured-image img {
	border-radius: 100%;
  }

  .cs_footer_top {
	border-bottom: 1px solid #353535;
  }
  
  .cs_copyright {
	background-color: #1b1b1b;
	color: #8a8a8a;
  }
  .cs_copyright a {
	color: #FA5252;
  }
  .cs_copyright a:hover {
	text-decoration: underline;
  }
  
  .cs_widget_title,
  .cs_newsletter_title {
	line-height: 1.6em;
  }
  
  .cs_menu_widget {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(2, 1fr);
  }
  
  .cs_text_widget p {
	margin: 0;
  }
  .cs_text_widget + .cs_social_btns {
	margin-top: 30px;
  }
  
  .cs_newsletter.cs_style_1 .cs_newsletter_input {
	background-color: #2e2d2d !important;
	padding: 10px 70px 10px 20px !important;
	outline: none !important;
	height: 58px !important;
}
.cs_newsletter.cs_style_1 .cs_newsletter_btn {
	top: 8px;
	right: 8px;
	border: none;
	z-index: 1;
	outline: none;
	height: 42px;
	width: 45px;
	color: #fff;
}
  .cs_newsletter.cs_style_1 .cs_newsletter_btn:hover {
	opacity: 0.8;
  }
  
  @media (max-width: 767px) {
	.cs_footer_logo {
	  display: none;
	}
	
  }
  .footer-list-style ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid !important;
	grid-gap: 10px !important;
	grid-template-columns: repeat(2, 1fr) !important;
}
.copyright-footer p {
	margin: 0;
}
/*====================================
	End Footer CSS
======================================*/

/* Custom CSS */
figure {
	margin-bottom: 30px !important;
}
.bostami-page-content-wrap{
	background:transparent;
}

.bastami-main-menu ul li a{
	display: block !important;
}
.bastami-main-menu ul li.active .hfe-menu-item,
.bastami-main-menu ul li:hover .hfe-menu-item {
	color: #fff !important;
  }
.bastami-main-menu ul {
	text-align: center;
	justify-content: center !important;
}
.sticky-column {
	position: sticky;
	position: -webkit-sticky;
	top:0;
}
.mobile-menu-wrap .mobile-menu .mean-bar .mean-nav ul li a i {
	min-width: 18px;
	font-size: 13px;
	margin: 0 2px 0 0;
}

@media (max-width: 767px) {
	.site-logo img {
		max-width: 110px;
	}
	.page-wrapper.home-1{
		padding-top:0  !important;
	}
}
.sidebar-wrap .widget {
	padding: 0;
	background: transparent;
}

.blog-main-layout,.blog-details-left  ul li {
	list-style: disc;
}
.blog-main-layout,.blog-details-left  ul {
	margin-left: 15px;
}
.footer-copyright {
	margin-top: 80px;
}
.footer-copyright a {
	color: #FA5252;
}
.blog-details-content p a,
.blog-details-content a{
  text-decoration: underline;
}
.blog-details-content p a:hover,
.blog-details-content p a:focus,
.blog-details-content a:hover,
.blog-details-content a:focus{
  color:#fa5252 !important;
}
.blog-title {
	word-break: break-all;
}
.sticky-column {
	position: sticky !important;
	position: -webkit-sticky !important;
	top:100px !important;
}


@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.sticky-column {
		top:0px !important;
	}
  }