
/*--------------------------------------------------------------
>>> 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
# Others CSS
--------------------------------------------------------------*/

/*======================================
	Header CSS
========================================*/

.header {
	padding: 0;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 33333;
	min-height: 50px;
	display: flex;
	min-width: 100%;
	flex-direction: column;
}
  .header.header-style-4 {
	padding-top: 0px;
  }
  .header .main-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px;
	position: relative;
  }
  .header .main-header .header-left {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	gap: 30px !important;
}
.header .main-header .header-right {
	width: 30%;
	min-width: 245px;
	text-align: right;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: flex-end;
	gap: 20px;
}
  .header .nav-main-menu {
	display: inline-block;
	width: 100%;
	padding: 0px;
  }
  .header .main-menu li {
	float: left;
	position: relative;
	padding: 0px 15px;
}
  .header .main-menu li.has-children > a::after {
	content: "";
	height: 10px;
	width: 10px;
	background: url(../imgs/template/icons/arrow-up.svg) no-repeat center;
	opacity: 1;
	margin-left: 0px;
	position: absolute;
	top: 44px;
	right: 0px;
  }
  .header .main-menu li.has-children > a:hover::after {
	background: url(../imgs/template/icons/arrow-up-hover.svg) no-repeat center;
  }
  .header .main-menu li.hr {
	padding: 0px 22px;
  }
  .header .main-menu li.hr span {
	background-color: #ececec;
	height: 1px;
	width: 100%;
	display: block;
	margin: 5px 0;
  }
  .header .main-menu li a {
	font-family: "Urbanist", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 20px;
	color: #ffffff;
	display: block;
	padding: 37px 18px 37px 18px;
	text-decoration: none;
	position: relative;
  }
  .header .main-menu li a:hover {
	color: var(--accent);
  }
  .header .main-menu li a i {
	font-size: 10px;
	opacity: 0.5;
	margin-left: 3px;
  }
  .header .main-menu li ul {
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.2s;
	position: absolute;
	top: 100%;
	left: 0px;
	z-index: 999;
	min-width: 240px;
	border-radius: 8px;
	box-shadow: 0px 8px 18px -4px rgba(12, 49, 49, 0.1);
	padding: 20px 0px 20px 0px;
  }
  .header .main-menu li ul.sub-menu {
	background-color: #1E1E1E;
	border: 1px solid #2B2C2D;
	margin: 0;
}
  .header .main-menu li ul li {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
  }
  .header .main-menu li ul li a {
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 18px;
	color: var(--secondary);
	position: relative;
	padding: 10px 25px 10px 15px;
	transition: 0.3s;
	font-family: "Urbanist", sans-serif;
	font-style: normal;
	font-weight: 400;
	display: inline-block;
	min-width: 182px;
  }
  .header .main-menu li ul li a::after {
	content: "";
	position: absolute;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 15px;
	height: 15px;
	transition-duration: 0.2s;
	background: url(../imgs/template/icons/arrow-up-grey.svg) no-repeat right center;
  }
  .header .main-menu li ul li a:hover {
	transition: 0.5s;
	color: var(--accent);
  }
  .header .main-menu li ul li a:hover::after {
	opacity: 1;
	transition-duration: 0.3s;
	background: url(../imgs/template/icons/arrow-up-hover2.svg) no-repeat right center;
  }
  .header .main-menu li ul li ul {
	top: 0px;
	left: 100%;
  }
  .header .main-menu li.mega-li {
	position: static;
  }
  .header .main-menu li.mega-li .mega-menu {
	position: absolute;
	top: 100%;
	left: 0px;
	width: 100%;
	display: none;
  }
  .header .main-menu li.mega-li .mega-menu .mega-menu-inner {
	max-width: 1125px;
	margin: auto;
	border: 1px solid #2B2C2D;
	border-radius: 8px;
	padding: 35px;
	box-shadow: 0px 8px 18px -4px rgba(12, 49, 49, 0.1);
	background-color: #1E1E1E;
	position: relative;
	background-image: url(../imgs/template/bg-menu-dark.png);
	background-repeat: no-repeat;
	background-position: top right;
  }
  .header .main-menu li.mega-li .mega-menu .mega-menu-inner h6 {
	color: #ffffff;
	font-weight: 500;
	font-size: 20px;
  }
  .header .main-menu li.mega-li .mega-menu .mega-menu-inner ul {
	display: inline-block;
	box-shadow: none;
	padding: 0px;
	border: 0px;
	position: relative;
	top: auto;
	left: auto;
	opacity: 1;
	visibility: visible;
	margin-top: 16px;
	min-width: 100%;
  }
  .header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li {
	padding: 0px;
	margin-bottom: 12px;
  }
  .header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a {
	padding: 0px;
  }
  .header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a:after {
	display: none;
  }
  .header .main-menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
  }
  .header .main-menu li:hover > ul li {
	width: 100%;
  }
  .header .main-menu li:hover.mega-li .mega-menu {
	display: block;
  }
  .header.header-style-5 .top-bar {
	margin-bottom: 0px;
  }
  .header.stick {
	padding: 0px;
  }
  .header.header-6 {
	padding: 15px 0px;
  }
  .header.header-6.stick {
	padding: 10px 0px;
	background-color: #F4F6F9;
	border-bottom-color: #ECEEF2;
  }

  .box-desc-menu {
	border-radius: 8px;
	background-color: #2B2C2D;
	padding: 24px;
	margin-top: 40px;
  }
  .box-desc-menu p {
	color: var(--secondary);
  }

  .sticky-bar.stick {
	animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	left: 0;
	transition: all 0.3s ease 0s;
	border-bottom: 1px solid var(--primary);
	background: #2B2C2D;
  }
  .sticky-bar.stick .burger-icon {
	top: 15px;
  }
  .sticky-bar.stick.header-style-2 {
	background-color: #ffffff;
	border-bottom-color: #ECEEF2;
  }
  .sticky-bar.stick.header-style-2 .top-bar {
	display: none;
  }

  .user-account {
	display: flex;
	align-items: center;
  }
  .user-account img {
	max-width: 50px;
	border-radius: 50%;
	margin-right: 10px;
  }
  .user-account .user-name {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 14px;
  }

  .perfect-scroll {
	height: 100vh;
	width: 100%;
	position: relative;
  }

  .body-overlay-1 {
	background: transparent;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	visibility: hidden;
	width: 100%;
	cursor: crosshair;
	z-index: 997;
  }

  .mobile-menu-active .body-overlay-1 {
	opacity: 1;
	visibility: visible;
  }

  .form-search {
	position: absolute;
	top: 100%;
	right: 50%;
	width: 100%;
	max-width: 350px;
	z-index: 1234;
	padding: 5px 5px;
	display: none;
	border-radius: 8px;
	border: 1px solid #ECEEF2;
	box-shadow: 0px 8px 18px -4px rgba(12, 49, 49, 0.1);
	background-color: #ffffff;
  }
  .form-search.dark {
	background-color: #1E1E1E;
	border: 1px solid #2B2C2D;
  }
  .form-search.dark .form-control {
	border: 1px solid #434445 !important;
	border-radius: 8px;
	background-color: #1E1E1E;
	padding: 11px 15px 13px 15px;
	width: 100%;
	color: #727373;
}
  .form-search.dark .btn-search-2 {
	background-color: transparent;
  }
  .form-search.dark p.color-white {
	color: #D1D3D4;
  }
  .form-search .form-control {
	height: 46px;
	line-height: 1;
	padding: 10px 15px 10px 20px;
  }
  .form-search .btn-search-2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 56px;
	height: 46px;
	background-color: #1E1E1E;
	border: 0px;
	border-radius: 0px 8px 8px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form-search .search-form input, .form-search .search-form button {
	height: 46px !important;
	font-size: 16px !important;
}
  .popular-keywords a {
	color: var(--secondary);
  }
  .popular-keywords a:hover {
	color: var(--accent);
  }
  .mobile-header-wrapper-style {
	position: fixed;
	top: 0;
	max-width: 380px;
	width: 100%;
	min-height: 100vh;
	bottom: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
	background-color: #ffffff;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
	z-index: 10000006;
}
  .mobile-header-wrapper-style.sidebar-visible {
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0);
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner {
	padding: 0px 0px 30px;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .burger-icon {
	top: 25px !important;
	right: 30px;
}
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 34px 30px 30px 30px;
	background-color: #ffffff;
	align-items: center;
	align-self: center;
	border-bottom: thin solid #ececec;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a {
	display: block;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
	width: 100px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
	padding: 30px 30px 30px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li {
	display: block;
	position: relative;
	padding: 13px 0;
	width: 100% !important;
}
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.hr {
	display: none;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child {
	border-bottom: none;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children  .menu-expand {
	right: 0;
	position: absolute;
	cursor: pointer;
	z-index: 9;
	text-align: center;
	font-size: 12px;
	display: block;
	width: 30px;
	height: 30px;
	line-height: 38px;
	top: 5px;
	color: var(--primary);
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children  .menu-expand i {
	font-size: 18px;
	font-weight: 300;
	opacity: 0.5;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children.active > .menu-expand {
	background: rgba(255, 255, 255, 0.2);
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children.active > .menu-expand i::before {
	content: "\f077";
}
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a {
	font-size: 18px;
	line-height: 1;
	text-transform: capitalize;
	font-weight: 500;
	position: relative;
	display: inline-block;
	color: var(--primary);
	transition-duration: 0.2s;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i {
	margin-right: 5px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul {
	padding: 10px 0 0 10px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li {
	padding: 10px 0;
	border-bottom: none;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.menu-item-has-children  .menu-expand {
	top: 0px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a {
	padding-left: 13px;
	transition-duration: 0.2s;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a::before {
	opacity: 1;
	transition-duration: 0.2s;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
	font-size: 16px;
	display: block;
	font-weight: 500;
	color: #434445;
	padding-left: 15px;
	position: relative;
	transition-duration: 0.2s;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -2px;
	width: 5px;
	height: 5px;
	background-color: #B1B2B8;
	border-radius: 50%;
	opacity: 0.7;
	transition-duration: 0.2s;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul {
	margin-top: 0;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.menu-item-has-children.active {
	padding-bottom: 0;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover > a {
	color: var(--accent);
	padding-left: 3px;
	transition-duration: 0.2s;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .categories-dropdown-wrap ul li a {
	padding: 5px 15px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap {
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #ececec;
	margin: 17px 0 30px 0;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info {
	position: relative;
	margin-bottom: 13px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child {
	margin-bottom: 0;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a {
	font-size: 14px;
	display: block;
	font-weight: 500;
	color: var(--primary);
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a:hover {
	color: var(--accent);
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a i {
	font-size: 14px;
	color: var(--accent);
	margin-right: 8px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown {
	margin-top: 5px;
	display: none;
	background-color: transparent;
	box-shadow: none;
	padding: 10px 0 0 0;
	width: 100%;
	z-index: 11;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li {
	padding-bottom: 10px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child {
	padding-bottom: 0px;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
	color: var(--accent);
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover > a {
	color: var(--primary);
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-border {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .site-copyright {
	font-size: 13px;
	color: #434445;
  }

  .burger-icon {
	position: absolute;
	width: 24px;
	height: 20px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
	top: 15px;
	right: 15px;
	z-index: 999999;
	display: none;
  }
  .burger-icon > span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
  }
  .burger-icon > span.burger-icon-top {
	top: 2px;
  }
  .burger-icon > span.burger-icon-bottom {
	bottom: 2px;
  }
  .burger-icon > span.burger-icon-mid {
	top: 9px;
  }
  .burger-icon.burger-close > span.burger-icon-top {
	display: none;
	opacity: 0;
  }
  .burger-icon.burger-close > span.burger-icon-mid {
	top: 8px;
	transform: rotate(45deg);
  }
  .burger-icon.burger-close > span.burger-icon-bottom {
	bottom: 10px;
	transform: rotate(-45deg);
  }

  .burger-icon > span::before,
  .burger-icon > span::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #333;
  }

  .sidebar-visible .burger-icon.burger-icon-white > span::before,
  .sidebar-visible .burger-icon.burger-icon-white > span::after {
	background-color: #1E1E1E;
  }

  .burger-icon.burger-icon-white > span::before,
  .burger-icon.burger-icon-white > span::after {
	background-color: #D1D3D4;
  }
  .mobile-search form {
	background-color: #ECEEF2;
	border-radius: 8px;
	padding: 8px 15px 11px 30px;
	position: relative;
}
.mobile-search form input {
	border: 0;
	background-color: transparent;
	width: 100%;
	height: auto;
	padding: 0 0 0 15px;
	border: none !important;
}
  .mobile-search form i {
	position: absolute;
	left: 18px;
	top: 14px;
	font-size: 18px;
	color: #5A5B5B;
  }

  .mobile-social-icon h6 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 30px;
  }
  .mobile-social-icon a.icon-socials {
	background-color: #ECEEF2;
  }
  .mobile-social-icon a {
	text-align: center;
	font-size: 14px;
	margin-right: 5px;
	transition-duration: 0.5s;
	height: 30px;
	width: 30px;
	display: inline-flex;
	background: #efeaff;
	border-radius: 30px;
	line-height: 1;
	align-content: center;
	justify-content: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.social-icons-mobile{
	display: flex;
	gap: 5px;
}
  .mobile-social-icon a img {
	max-width: 18px;
  }
  .mobile-social-icon a img:hover {
	opacity: 0.8;
  }
  .mobile-social-icon a:hover {
	transform: translateY(-2px);
	transition-duration: 0.5s;
	margin-top: -2px;
  }
  .mobile-social-icon a:last-child {
	margin-right: 0;
  }

  .mobile-account {
	margin: 15px 0;
	padding: 30px 0 20px 0;
	border-top: thin solid #ececec;
  }
  .mobile-account .mobile-menu {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
  }
  .mobile-account h6 {
	font-weight: 600;
	font-size: 18px;
  }
  .mobile-account ul li {
	padding: 13px 0;
  }
  .mobile-account ul li a {
	font-size: 15px;
	line-height: 1;
	text-transform: capitalize;
	font-weight: 500;
	position: relative;
	display: inline-block;
	color: #434445;
	transition-duration: 0.2s;
  }
  .mobile-account ul li:hover a {
	padding-left: 3px;
	transition-duration: 0.2s;
	color: var(--accent);
  }

  .sidebar-title {
	border-bottom: thin solid #ececec;
	font-weight: 600;
	margin-bottom: 30px;
	padding-bottom: 10px;
  }

  .search-form form {
	position: relative;
  }
  .search-form form input {
	border: 1px solid #ececec;
	border-radius: 10px;
	height: 64px;
	box-shadow: none;
	padding-left: 20px;
	font-size: 16px;
	width: 100%;
  }
  .search-form form button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	border: none;
	font-size: 20px;
	height: 100%;
	padding: 0 24px;
	background-color: transparent;
	color: #242424;
  }
  .header .main-menu li a{
	position: relative;
  }
  .header .main-menu li.menu-item-has-children a::after,
  .header .main-menu li.page_item_has_children a::after {
	position: relative;
	padding-left: 6px;
	display: inline-block;
	margin-left: 5px;
	color: var(--it-common-black);
	transition: 0.3s;
	content: "";
	font-weight: 900;
	background: url(assets/img/arrow-up-white.png) no-repeat center;
	height: 10px;
	width: 15px;
}
.header .main-menu li.menu-item-has-children a:hover::after,
.header .main-menu li.page_item_has_children a:hover::after{
	background: url(assets/img/arrow-up-hover.svg) no-repeat center;
}

.header .main-menu li .sub-menu a::after,
.header .main-menu li .children a::after,
.header .main-menu li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu a::after,
.header .main-menu li.page_item_has_children .children li.page_item_has_children .children a::after,
.header .main-menu li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu a::after,
.header .main-menu li.page_item_has_children .children li.page_item_has_children .children li.page_item_has_children .children a::after{
	display:none;
}
.header .main-menu li.menu-item-has-children .sub-menu li.menu-item-has-children a::after, .header .main-menu li.page_item_has_children .children li.page_item_has_children a::after, .header .main-menu li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu li.menu-item-has-children a::after, .header .main-menu li.page_item_has_children .children li.page_item_has_children .children li.page_item_has_children a::after {
	display: inline-block;
	float: right;
	padding: 0;
	margin-right: 0;
	color: currentColor;
	position: absolute;
	right: 0;
	top: 50%;
	padding: 0 !important;
	margin: 0;
	margin-top: -5px;
}
.header-style-2 {
	padding-top: 0px;
	position: relative;
}

.top-bar {
	background-color: var(--primary);
	padding: 18px 0px;
}

.header-style-2 {
	padding-top: 0px;
	position: relative;
	top: 0 !important;
}
.header-style-2 .main-menu li a {
  color: var(--primary);
}

.header-style-2 .main-menu li.menu-item-has-children a::after,
.header-style-2 .main-menu li.page_item_has_children a::after {
	background: url(assets/img/arrow-up-black.svg) no-repeat center;
}

.header-style-2 .main-menu li.menu-item-has-children ul li a::after,
.header-style-2 .main-menu li.page_item_has_children  ul li a::after {
	background: url(assets/img/arrow-up-white.png) no-repeat center;
}

.header-style-2 .main-menu li.menu-item-has-children a:hover::after,
.header-style-2 .main-menu li.page_item_has_children a:hover::after {
	background: url(assets/img/arrow-up-hover.svg) no-repeat center;
}

.btn.btn-search.hover-up {
	color: #fff;
	padding: 0;
}
.btn.btn-search.hover-up svg {
	fill: currentColor;
  }
.btn.btn-search.hover-up:hover {
color: var(--common-primary-color) !important;
}
.header-style-2 .btn.btn-search.hover-up {
	color: var(--primary);
}
.text-logo a {
	font-size: 20px;
	font-weight: 500;
}
.header.header-style-2 .text-logo {
	color: var(--primary);
	padding: 0;
}
.cs_main_header_left {
	z-index: 101;
	position: relative;
}
/*======================================
	End Header CSS
========================================*/

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

.seapearl-entry-page ol li,.blog-single ol li {
  line-height: 30px;
}
.seapearl-entry-page ul {
	margin-bottom: 0;
}
.seapearl-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: var(--accent);
}
.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;
}

/*--------------------------------------------------------------
  20. Posts
----------------------------------------------------------------*/
.cs_post_meta_2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
  }
  .cs_post_meta_2 > span:not(:last-child)::after {
	content: "/";
	margin: 0 10px;
	-webkit-transform: rotate(10deg);
			transform: rotate(10deg);
	display: inline-block;
	color: var(--accent);
  }
  
  .cs_post_meta_3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
  }
  .cs_post_meta_3 > span:not(:last-child)::after {
	content: "—";
	margin: 0 10px;
	-webkit-transform: initial;
			transform: initial;
  }
  
  .cs_post_meta_4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	gap: 0px 35px;
  }
  @media (max-width: 360px) {
	.cs_post_meta_4 {
	  gap: 0px 20px;
	}
  }
  @media (max-width: 575px) {
	.cs_post_meta_4 {
	  gap: 0px 25px;
	}
  }
  .cs_post_meta_4 > span {
	position: relative;
	display: inline-block;
  }
  .cs_post_meta_4 > span:not(:last-child)::before {
	content: "";
	height: 5px;
	width: 5px;
	border-radius: 50%;
	background-color: var(--accent);
	position: absolute;
	top: 50%;
	right: -20px;
	margin-top: -2px;
  }
  @media (max-width: 575px) {
	.cs_post_meta_4 > span:not(:last-child)::before {
	  right: -15px;
	}
  }
  @media (max-width: 575px) {
	.cs_post_meta_4 > span:not(:last-child)::before {
	  right: -12px;
	}
  }
  
  .text-center .cs_post_meta_2 {
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
  }
  
  .cs_post.cs_style_1 .cs_post_title a,
  .cs_post.cs_style_2 .cs_post_title a {
	background-repeat: no-repeat;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
	background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
	-webkit-transition: background-size 0.6s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
	transition: background-size 0.6s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
	background-position: 100% calc(100% - 0px);
	background-size: 0 2px;
  }
  .cs_post.cs_style_1 .cs_post_title a:hover,
  .cs_post.cs_style_2 .cs_post_title a:hover {
	background-size: 100% 2px;
	background-position: 0 calc(100% - 0px);
  }
  
  .cs_post.cs_style_1 .cs_post_title, .cs_post_text.w-60 {
	max-width: 430px;
}
  .cs_post.cs_style_1 .cs_hover_icon {
	top: 20px;
	right: 20px;
	height: 40px;
	width: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-transition: all 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.5, 2.2, 0.7, 0.7);
	transition: all 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.5, 2.2, 0.7, 0.7);
	transition: transform 0.5s cubic-bezier(0.5, 2.2, 0.7, 0.7), all 0.3s ease;
	transition: transform 0.5s cubic-bezier(0.5, 2.2, 0.7, 0.7), all 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.5, 2.2, 0.7, 0.7);
	-webkit-transform: scale(0);
			transform: scale(0);
	opacity: 0;
  }
  .cs_post.cs_style_1 .cs_hover_icon:hover {
	color: var(--accent);
	background-color: rgba(255, 255, 255, 0.75);
  }
  .cs_post.cs_style_1 .cs_post_thumb::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	opacity: 0;
	z-index: 1;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .cs_post.cs_style_1 .cs_post_thumb img {
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
  }
  .cs_post.cs_style_1 .cs_post_thumb:hover img {
	-webkit-transform: scale(1.06);
			transform: scale(1.06);
  }
  .cs_post.cs_style_1 .cs_post_thumb:hover::before {
	opacity: 1;
  }
  .cs_post.cs_style_1 .cs_post_thumb:hover .cs_hover_icon {
	-webkit-transform: scale(1);
			transform: scale(1);
	opacity: 1;
  }
  .cs_post.cs_style_1 .cs_post_meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 5px 20px;
	padding-top: 2px;
  }
  .cs_post.cs_style_1 .cs_post_meta + .cs_post_title {
	padding-bottom: 10px;
  }
  .cs_post.cs_style_1 .cs_post_meta_seperator {
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
	height: 1px;
	background-color: var(--accent);
  }
  .cs_post.cs_style_1.cs_size_1 .cs_post_thumb {
	height: 412px;
  }
  @media (max-width: 1400px) {
	.cs_post.cs_style_1.cs_size_1 .cs_post_thumb {
	  height: 370px;
	}
  }
  .cs_post.cs_style_1.cs_size_2 .cs_post_thumb {
	height: 282px;
  }
  @media (max-width: 575px) {
	.cs_post.cs_style_1.cs_size_2 .cs_post_thumb {
	  height: initial;
	}
  }
  .cs_post.cs_style_1.cs_size_3 .cs_post_thumb {
	height: 350px;
  }
  .cs_post.cs_style_1.cs_size_4 .cs_post_thumb, .cs_post.cs_style_1.cs_size_5 .cs_post_thumb {
	height: 465px;
  }
  @media (max-width: 575px) {
	.cs_post.cs_style_1.cs_size_4 .cs_post_thumb, .cs_post.cs_style_1.cs_size_5 .cs_post_thumb {
	  height: 350px;
	}
  }
  .cs_post.cs_style_1.cs_size_4 .cs_post_title, .cs_post.cs_style_1.cs_size_5 .cs_post_title {
	max-width: 100%;
  }
  .cs_post.cs_style_1.cs_size_4:not(:last-child), .cs_post.cs_style_1.cs_size_5:not(:last-child) {
	margin-bottom: 80px;
  }
  @media (max-width: 991px) {
	.cs_post.cs_style_1.cs_size_4:not(:last-child), .cs_post.cs_style_1.cs_size_5:not(:last-child) {
	  margin-bottom: 60px;
	}
  }
  .cs_post.cs_style_1.cs_size_4 .cs_subtitle, .cs_post.cs_style_1.cs_size_5 .cs_subtitle {
  }
  .cs_post.cs_style_1.cs_size_4 .cs_video_block.cs_style_1 {
	height: 465px;
  }
  @media (max-width: 575px) {
	.cs_post.cs_style_1.cs_size_4 .cs_video_block.cs_style_1 {
	  height: 350px;
	}
  }
  .cs_post.cs_style_1.cs_size_4 .cs_video_block.cs_style_1 .cs_play_btn_2 {
	scale: 0.7;
  }
  .cs_post.cs_style_1.cs_size_5 .cs_video_block.cs_style_1 .cs_play_btn_2 {
	scale: 0.7;
  }
  @media (min-width: 992px) {
	.cs_post.cs_style_1.cs_size_5 {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  gap: 24px;
	}
	.cs_post.cs_style_1.cs_size_5 .cs_post_thumb {
	  -webkit-box-flex: 0;
		  -ms-flex: none;
			  flex: none;
	  width: 50%;
	  margin-bottom: 0;
	}
	.cs_post.cs_style_1.cs_size_5 .cs_video_block.cs_style_1 {
	  height: 550px;
	  margin-bottom: 0;
	}
  }
  
  .cs_post.cs_style_2 .cs_post_thumb {
	position: relative;
  }
  .cs_post.cs_style_2 .cs_post_thumb::before {
	content: "";
	position: absolute;
	border: 1px solid var(--accent);
	left: 25px;
	right: 25px;
	top: 25px;
	bottom: 25px;
	z-index: 1;
  }
  .cs_post.cs_style_2 .cs_post_thumb img {
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
  }
  .cs_post.cs_style_2 .cs_post_thumb:hover img {
	-webkit-transform: scale(1.06);
			transform: scale(1.06);
  }
  .cs_post.cs_style_2 .cs_posted_by {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 10px;
  }
  .cs_post.cs_style_2 .cs_posted_by svg {
	position: relative;
	top: -1px;
  }
  .cs_post.cs_style_2 .cs_posted_by span {
	position: relative;
  }
  .cs_post.cs_style_2 .cs_posted_by span::before {
	content: "";
	height: 1px;
	width: 50px;
	background-color: var(--accent);
	position: absolute;
	left: 100%;
	top: 50%;
	margin-left: 10px;
	margin-top: -1px;
  }
  .cs_post.cs_style_2 .cs_posted_by {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 10px;
  }
  .cs_post.cs_style_2.cs_size_1 .cs_post_thumb {
	height: 292px;
  }
  
  .cs_blog_details img {
	border-radius: 5px;
	margin-bottom: 40px;
  }
  .cs_blog_details .cs_video_block {
	margin-bottom: 40px;
	border-radius: 6px;
  }
  .cs_blog_details h2 {
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 15px;
  }
  .cs_blog_details p {
	margin-bottom: 35px;
  }
  .has-drop-cap:first-child:first-letter,
  .has-drop-cap:first-child +  .has-drop-cap:first-letter {
	float: left;
	font-size: 53px;
	line-height: 0.5em;
	font-weight: 400;
	margin: 10px 10px 0 0;
	text-transform: uppercase;
	font-style: normal;
	color: var(--primary);
	font-family: var(--primary-font);
  }
  .cs_blog_details blockquote {
	  border-left: 5px solid var(--secondary) !important;
	  font-size: 28px;
	  line-height: 1.25em;
	  font-style: normal;
	  font-weight: 400;
	  color: var(--primary);
	  font-family: var(--primary-font);
	  padding: 15px 0px 15px 30px;
	  margin: 40px 0;
  }
  .cs_blog_details blockquote p {
	font-family: inherit !important;
	font-size: 28px;
	line-height: 1.25em;
	font-style: normal;
	color: var(--primary);
	margin: 0;
}
  .cs_blog_details blockquote svg {
	display: block;
	margin-bottom: 25px;
  }
  .cs_blog_details blockquote cite, .cs_blog_details blockquote cite small {
	display: block;
	font-family: var(--secondary-font) !important;
	font-style: initial;
	font-size: 16px;
	line-height: 1.5em;
	color: var(--secondary);
	margin-top: 20px;
}
.cs_blog_details blockquote::before {
	font-family: "Font Awesome 6 Free";
	content: "\f10d";
	font-weight: 900;
	color: var(--accent);
	margin-bottom: 25px;
	display: block;
	font-size: 40px;
}
  .cs_blog_details ul {
	list-style: disc;
  }
  .cs_blog_details ul li:not(:last-child) {
	margin-bottom: 5px;
  }
  .cs_blog_details > * {
	margin-bottom: 0;
  }
  
  .cs_post_share {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 15px 20px;
	border: 1px solid var(--ternary);
	border-left: 0;
	border-right: 0;
	padding: 14px 0;
	justify-content: center;
	align-items: center;
}
  .cs_post_share > * {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 15px;
  }
  .cs_post_share .cs_categories a {
	display: inline-block;
  }
  .cs_post_share .cs_categories a:not(:last-child)::after {
	content: ",";
  }
  .cs_post_share .cs_social_share_btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 15px;
  }
  .cs_post_share .cs_social_share_btns a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  }
  
/* Blockquote */
blockquote {
	/* padding: 30px; */
	font-style: italic;
	border-left: 8px solid var(--common-primary-color) !important;
	font-size: 30px;
	line-height: 40px;
	/* font-weight: 600; */
	color: var(--accent);
}
#comments .comments-title {
	font-size: 22px;
	font-weight: 500;
	line-height: 30px;
}
.comment-metadata a {
	color: var(--accent);
}
.comment-metadata time {
	font-weight: 400;
	font-size: 13px;
	color: var(--accent);
}
.comment-author .says, .comment-edit-link {
	color: var(--primary) !important;
	font-weight: 400 !important;
}
/* Comment List */
.comment-list {
	padding: 25px 20px;
	position: relative;
	border-radius: 4px;
	margin-bottom: 30px;
	list-style: none;
}
.comment-author.vcard img {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	padding: 0;
}
.comment-author.vcard {
	display: inline-block;
}
.comment-meta a {
	color: var(--primary);
	font-weight: 500;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: var(--it-common-black);
	position: relative;
}
.comment-meta a:hover{
	color:var(--accent);
}
.comment-author.vcard .fn, .comment-author .says {
	display: inline-block !important;
}

.logged-in-as a {
	color: var(--primary);
	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: var(--primary);
	display: block;
	font-weight: 500;
}
.comment-reply-link {
	display: inline-block;
	height: 30px;
	line-height: 27px;
	padding: 0 18px;
	font-weight: 500;
	font-size: 13px;
	color: #202124;
	border: 1px solid #F0F0F0;
	border-radius: 20px;
	transition: 0.3s;
}
.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: 16px;
}

#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;
	font-weight: 400;
	margin: 0;
}
.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 {
	width: 100%;
}
.comment-respond input {
	max-height: 50px;
}
.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: var(--accent);
}
.comment-respond textarea {
	height: 225px !important;
}
.comment-respond .form-submit {
	display: inline-block;
}
.comment-form-cookies-consent {
	display: none;
}
.comment-form button.btn i {
	margin-left: 10px;
}

/* Blog Comment Form */
.comment-respond {
    position: relative;
}
.bottom-title h2 {
	font-weight: 600;
	font-size: 26px;
	line-height: 18px;
	letter-spacing: -0.02em;
	color: #202124;
	margin-bottom: 40px;
}
.blog-single .bottom-title h2 {
	margin-bottom: 25px;
}
.comment-form .form-group label span,
.comment-form .comment-message label span {
	color: var(--accent);
}
.logged-in-as a:hover {
	color: var(--accent);
}
.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 .comment-message textarea:hover{
	border-color:var(--accent);
}
/* Comment Form Reply */
.comment-list .bottom-title h2.comments-heading {
	background: transparent !important;
	color: var(--primary);
	left: auto;
}
.comment-list .bottom-title h2.comments-heading a {
	color: var(--accent);
	font-size: 15px;
	margin-left:5px;
}
.comment-list .bottom-title h2.comments-heading a:hover{
	color:var(--primary);
}
.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;
}
}

.seapearl-blog-main-section {
	padding: 100px 0 150px;
}

@media screen and (max-width: 991px) {
	.seapearl-blog-main-section {
		padding: 30px 0 80px;
	}
}

.seapearl-blog-main-section .sidebar-main,
.seapearl-blog-main-section__blog {
	margin-top: 50px;
}
.seapearl-blog-main-section__archive {
	margin-top:20px;
}
.blog-single-column {
	margin-top:30px;
}
.seapearl-blog-main-section.blog-single {
	padding: 100px 0 150px;
}

.card-news-style-2 {
	overflow: hidden;
	/* margin-bottom: 56px; */
}
.card-news-style-2 .card-image {
  margin-bottom: 29px;
}
.card-news-style-2 .card-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.card-news-style-2 .card-info .card-meta .date-post {
  background-image: url(assets/img/dot.png);
  background-repeat: no-repeat;
  background-position: left 14px center;
  display: inline-block;
  padding: 0px 0px 0px 26px;
}
.card-news-style-2 .card-info .card-title {
  margin-bottom: 29px;
}
.card-news-style-2 .card-info .card-title a {
  font-size: 26px;
  line-height: 31px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--primary);
}
.card-news-style-2 .card-info .card-title a:hover {
  color: var(--accent);
}
.card-news-style-2 .card-info .card-more .btn-learmore-2 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--primary);
}
.card-news-style-2 .card-info .card-more .btn-learmore-2 svg {
  margin-left: 10px;
  fill: var(--primary);
}
.card-news-style-2 .card-info .card-more .btn-learmore-2:hover {
  color: var(--accent);
}
.card-news-style-2 .card-info .card-more .btn-learmore-2:hover svg {
  fill: var(--accent);
}
.card-news-style-2.card-news-style-3 .card-title a {
  font-size: 48px;
  line-height: 58px;
}
.card-news-style-2.card-news-style-3 .card-image {
  margin-bottom: 0px;
}
.card-news-style-2.card-news-style-3 .card-image img {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.card-news-style-2.card-news-style-3 .card-info {
  padding: 42px 42px 42px 42px;
  border: 1px solid #D1D3D4;
  border-top: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.card-news-style-2.card-news-style-3 .card-info .card-title {
  margin-bottom: 10px;
}
.card-news-style-2.card-news-style-3 .card-info .card-desc {
  margin-bottom: 32px;
}
.card-news-style-2.card-news-style-3 .card-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-news-style-2.card-news-style-3 .card-more .card-author-comment .author {
  display: inline-block;
  padding: 1px 27px 0px 18px;
  background-image: url(assets/img/author.png);
  background-repeat: no-repeat;
  background-position: left top 0px;
  font-size: 14px;
  line-height: 14px;
  color: var(--secondary);
}
.card-news-style-2.card-news-style-3 .card-more .card-author-comment .comments {
  display: inline-block;
  padding: 0px 0px 0px 18px;
  background-image: url(assets/img/comment.png);
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 14px;
  line-height: 14px;
  color: var(--secondary);
}

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

/*====================================
	Page CSS
======================================*/
/* BLog Single */
.news-area.archive.single {
	padding-top: 70px 0 0;
}
/* 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: 130px 0;
}
.error__heading {
	margin: 0 0 5px;
}

@media (max-width: 991px) {
	.cs_footer_logo {
	  display: none;
	}
	.error__area {
		padding: 80px 0;
	}
  }
/*====================================
	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: var(--primary);
	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:var(--accent);
}
.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:var(--accent);
}
.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: var(--accent);
	font-size: 0;
	line-height: initial;
}
.breadcrumb.bread-two .bread-menu span {
	color: var(--primary);
	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:var(--accent);
}
.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: var(--accent);
}
/*====================================
	End BreadCrumbs CSS
======================================*/

/*====================================
	Pagination CSS
======================================*/
.pagination-main {
	text-align: left;
	margin: 50px 0 0 0;
	display: flex;
}
.pagination-main.full-width {
	text-align: center;
}
.pagination-main.full-width{
	text-align: left;
}
.pagination-list{
	list-style:none;
}
.pagination-list.pagination-list__center{
	justify-content: center;
}
.pagination-main .pagination-list li a, .pagination-list .page-numbers {
	display: inline-block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	font-weight: 600;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--secondary);
	border: 1px solid var(--border);
}
.pagination-main .pagination-list li.active a, .pagination-main .pagination-list li:hover a, .pagination-list span.current, .pagination-list .page-numbers:hover {
	background: var(--accent);
	color: #fff;
	border-color: transparent !important;
}
.pagination-main .pagination-list li a span {
	color: inherit !important;
}

.pagination-list {
	border-radius: 100px;
	display: flex;
	padding: 0;
	margin: 0;
	gap: 8px;
}
.pagination-plugin.align-left {
	justify-content: start;
}
/*====================================
	End Pagination CSS
======================================*/

/*====================================
	Wordpress Default CSS
======================================*/
p b, strong {
	color: var(--primary);
}

.sidebar-main .widget ul li a {
	line-height: 30px;
	position: relative;
	width: 100%;
	display: block;
	background: transparent;
	font-weight: 400;
}
.sidebar-main .widget ul li a:hover{
	color:var(--accent) !important;
}
.single-news.news-large img {
	width: auto;
}
.widget {
	border-radius: 0;
}
.sidebar-main .widget {
	padding-bottom: 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--ternary);
}
.sidebar-main .widget:last-child{
	margin:0 !important;
	padding: 0 !important;
	border:none !important;
}
.wp-block-search .wp-block-search__label{
	display: none;
}
.wp-block-archives-dropdown label,
.wp-block-search .wp-block-search__label {
	color: var(--primary);
	font-weight: 500;
	padding-bottom: 5px;
}
.widget.widget_search {
	border: none;
	padding-bottom: 22px !important;
}
/* 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('assets/img/select-arrow.png');
	background-repeat: no-repeat;
	background-position: right;
	background-color: transparent;
	color: var(--primary);
	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: var(--primary);
}
.widget ul li a:hover {
	color: var(--accent);
}
/* Akismet Widget */
.widget_akismet_widget .a-stats a {
	background: #F60 !important;
	border: none;
	color: #fff;
}
.widget_akismet_widget .a-stats a strong {
  color: #fff;
}

.sidebar-main .wp-block-social-links {
	margin-top: 10px;
}
/* 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:var(--accent);
}
.widget_nav_menu ul li a i {
	display: inline-block;
	margin-right: 15px;
}
.about-us-text p {
	font-weight: 500;
	line-height: 24px;
	color: var(--secondary) !important;
}
/* Category List */
.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:var(--accent);
}
.widget_categories ul li a span{
	display:inline-block;
	color:var(--accent);
}

.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: var(--primary);
}
.widget_recent_comments a:hover{
	color: var(--accent);
}
.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: var(--accent) !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:var(--primary);
}
.widget_recent_comments .comment-author-link a, .wp-block-latest-comments__comment a {
	color: var(--primary) !important;
}
.widget_recent_comments .comment-author-link a:hover{
	color:var(--accent);
}
#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: var(--primary);
	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: var(--primary) !important;
}
.wp-block-categories {
	padding: 0;
}
.sidebar-main  .wp-block-categories li {
	display: block;
  }
  .sidebar-main .wp-block-categories li a {
	width: initial !important;
	display: inline-block !important;
	color: var(--secondary) !important;
	font-size: 16px !important;
}
.sidebar-main .wp-block-categories li a:hover{
	text-decoration: none !important;
  color: var(--accent) !important;
}
.sidebar-main .wp-block-categories li {
	font-size: 16px;
	color: var(--secondary) !important;
	margin-bottom: 0;
}
  .sidebar-main .widget  .wp-block-categories li:hover,
  .sidebar-main .widget .wp-block-categories li:hover a,
  .sidebar-main .widget .wp-block-categories li a:hover,
  .sidebar-main .widget ul.wp-block-categories li a:hover {
	color: var(--accent) !important;
  }

/* Subscribe */
@media (min-width: 992px) {
.seapearl-blog-archive .sidebar-main {
	padding-left: 40px;
}
.seapearl-blog-archive.left-sidebar .sidebar-main{
	padding-left: 0px;
	padding-right:40px;
}
}

.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"] {
	padding: 0 30px 0 30px;
	width: 100%;
	position: relative !important;
	font-size: 14px;
	line-height: 50px;
}
.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;
}
/* Widget Select */
.single-widget select {
	width: 100%;
	padding: 12px;
	font-size: 14px;
	border: 1px solid #ebebeb;
	background: #F5F8F9;
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	user-select: none;
	-ms-user-select: none;
	background-image: url(assets/img/select-arrow.png) !important;
	background-repeat: no-repeat !important;
	background-position: right 50% !important;
}
/* Widget Tags*/
.widget_tag_cloud .tagcloud a {
	color: var(--primary);
	font-size: 14px !important;
	display: inline-block;
	padding: 8px 12px;
	background: #fff;
	margin-top: 5px;
}
.widget_tag_cloud .tagcloud a:hover{
	background:var(--accent);
	color:var(--primary);
}
/* Tag */
.widget_tag_cloud .tagcloud a {
	background: #f6f6f6;
}
.widget_tag_cloud .tagcloud a:hover{
	background:var(--accent);
	color:var(--primary);
}
/* Widget RSS */
.widget_rss .rsswidget {
  display: inline-block;
}
.widget_rss ul.wp-block-rss li a, .widget_rss ul li a {
	line-height: 26px !important;
	color: var(--primary);
	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:var(--accent);
}
.widget_rss ul.wp-block-rss li, .widget_rss ul li {
	margin-bottom: 12px;
	padding-bottom: 12px;
}
.widget_rss .widget-title a {
	color: var(--primary);
	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: var(--accent);
}
.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: var(--primary);
	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: var(--accent);
	font-style: initial;
}
.page-links {
	padding-left: 30px;
}
.btn.btn-learmore-2.post-btn span {
	transform: rotate(0);
	background: var(--accent);
}
/* 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;
}
.search-form label {
	width: 100%;
	position: relative;
	margin: 0;
}
.search-form input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--accent);
	color: #fff;
	height: 50px;
	border: none;
	border-radius: 0px;
	padding: 0 20px;
	cursor: pointer;
	height: 100%;
}
.search-form input[type="submit"]:hover{
	background:var(--primary);
	color:#fff;
}
.seapearl-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: var(--accent);
    padding: 9px 15px;
    color: var(--primary);
    border-radius: 0px;
    border: none;
}
form.post-password-form input[type="submit"]:hover{
	background:var(--primary);
	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: var(--primary);
	color: #fff;
}
.page-links span.current,.page-links a:hover {
    background: var(--accent);
    color: var(--primary);
}
.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:var(--accent);
}
.comment-list ul li a::before, .blog-detail ul li a::before, .blog-single ul li::before,.seapearl-entry-page ul li:before{
	top: 14px;
}
.seapearl-entry-page ul li::before {
	top: 15px;
}
ol.comment-list li:before{
	top:12px;
}
.comment-reply-link:hover {
	background: var(--primary);
	color: #fff !important;
}
.logged-in-as {
	margin-bottom: 20px;
}
table tr, table td, table th {
	border: 1px solid #cccccc87 !important;
	padding: 10px !important;
}
table thead th,table tr th {
	color: var(--accent);
}
.blog-single .comment-list {
	background: transparent;
	padding: 0;
	margin: 0;
	margin-bottom: 50px;
}
.share-tag.post-tag li a:hover {
	color: var(--accent);
}
p a {
	color: var(--accent);
}
p.has-large-font-size {
    line-height: 43px;
}

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

.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: #202124;
	margin-right: 8px;
}
.share-tag.post-tag ul {
	display: flex;
	align-items: center;
	gap: 10px;
}
.share-tag.post-tag ul li a {
	color: var(--primary);
	display: inline-block;
	transition: 0.3s;
	font-weight: 400;
	font-size: 12px !important;
	border-radius: 5px;
	background-color: #ECEEF2;
	padding: 13px 18px;
	margin: 0px 8px 8px 0px;
	box-shadow: none;
	font-weight: 500;
	margin: 0px 8px 8px 0px !important;
	font-size: 14px !important;
}
.wp-block-tag-cloud, .share-tag.post-tag ul {
	position: relative;
}
.wp-block-tag-cloud {
	margin: 0 !important;
}
.wp-block-tag-cloud a, .share-tag.post-tag ul a {
	margin-top: 10px;
}
.share-tag.post-tag ul li a:hover {
	background: var(--accent);
}
.share-tag.post-tag ul li {
	display: inline-block;
	padding-left: 0;
}
.share-tag.post-tag ul li:last-child{
	margin:0;
	padding:0;
	border:none;
}
.share-tag.post-tag ul {
	flex-wrap: wrap;
}

.wp-block-tag-cloud a {
	background-color: transparent;
	padding: 13px 18px;
	margin: 0px 8px 8px 0px;
	box-shadow: none;
	margin: 0px 8px 8px 0px !important;
	font-size: 14px !important;
	display: inline-block;
	padding: 7px 22px;
	border: 1px solid var(--ternary);
	border-radius: 20px;
	color: var(--secondary);
}

.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: var(--primary);
}
.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: var(--primary);
	font-size: 15px;
	font-weight: 500;
}
.calendar_wrap #wp-calendar caption {
	caption-side: top;
	background: #FFDC60;
	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: #FFDC60;
	padding: 0;
	text-align: center;
}
.calendar_wrap #wp-calendar tfoot tr a {
	color: #353535;
}
.calendar_wrap #wp-calendar tfoot tr a:hover{
	color:var(--accent);
}
.wp-block-gallery ul.blocks-gallery-grid li {
	padding-left: 0px !important;
}
.blocks-gallery-caption {
	padding-bottom: 10px;
}
.has-large-font-size {
	color: var(--primary);
}
.wp-calendar-nav {
	text-align: center;
}
.wp-block-calendar table caption {
	color: var(--primary);
}
.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: #FFDC60;
	color: #fff;
}
.wp-block-image {
	overflow: hidden;
}
.widget_archive select {
	margin-top: 5px;
}
.widget_recent_entries ul li a:before {
  display: none;
}
.widget_recent_entries ul li a {
	padding: 0 !important;
	font-weight: 500;
	color: var(--accent);
	line-height: 26px !important;
}
.widget_recent_entries ul li a:hover{
	color:var(--primary);
}
.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;
	font-size: 16px;
	margin-left: 0;
	background: none !important;
	line-height: 24px;
}
.wp-block-latest-posts__post-excerpt {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: var(--primary);
	margin-top: 5px;
}
ul.wp-block-latest-posts li a {
	color: var(--primary);
	margin-bottom: 10px;
	font-size: 21px;
	line-height: 1.28em !important;
	font-family: var(--primary-font);
}
.wp-block-latest-posts.wp-block-latest-posts__list{
	margin:0;
}
.wp-block-latest-posts__featured-image {
	margin-bottom: 5px;
	padding-top: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
	clear: both;
	margin-bottom: 20px;
}
.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;
}
.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;
}
.wp-block-latest-comments__comment a:hover{
	color:var(--accent);
}

/* Categories */
.wp-block-categories li {
	display: inline-flex;
	align-items: center;
	font-weight: 400 !important;
	font-size: 14px;
	gap: 10px;
}
.wp-block-categories li a {
	color: var(--primary) !important;
}
.sidebar-main ol {
	padding-left: 0;
}
.sidebar-main .widget h2 {
	position: relative;
	font-size: 28px;
	line-height: 1.25em;
	margin-bottom: 25px;
}
.wp-block-search .wp-block-search__label {
    width: auto;
}
.wp-block-search .wp-block-search__input {
	margin: 0 !important;
	width: 100%;
	border: 1px solid var(--ternary) !important;
	height: 50px;
	padding: 5px 20px 5px 50px;
	border-radius: 20px;
	outline: none;
	background-color: var(--web-wash);
}
.wp-block-search .wp-block-search__input:focus {
	border-color: var(--accent) !important;
}
.wp-block-search .wp-block-search__button {
	color: #fff;
	right: 0;
	font-size: 0;
	line-height: 50%;
	position: absolute;
	left: 0;
	height: 50px;
	border: none;
	background-color: transparent;
	width: 45px;
	margin: 0;
	padding: 0 0 0 10px;
	top: 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__inside-wrapper {
	position: relative;
}
.wp-block-latest-posts {
	padding: 0 !important;
}
.wp-block-latest-posts__featured-image {
	left: 0;
	width: 94px;
	height: 94px;
	flex: 0 0 auto;
	object-fit: cover;
	overflow: hidden;
	margin: 0;
	/* float: left; */
	display: block;
	margin-bottom: 10px;
	float: left;
	margin-right: 15px;
	border-radius: 4px;
}
.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:var(--primary);
}

#comments {
	clear: both;
}
#comments .comments-title {
	font-size: 26px;
	line-height: 18px;
	letter-spacing: -0.02em;
	color: #202124;
	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;
}
.blockquote strong {
  color: #fff !important;
}
blockquote strong {
  color: #fff;
}
blockquote code {
  color: var(--accent);
}
/*====================================
	Wordpress Default Sidebar
======================================*/

/*====================================
	Others 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 .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: var(--primary) !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:#FFDC60;
	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-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: #FFDC60;
    margin-top: 20px;
    color: #fff;
}
.footer-about .button .bizwheel-btn:hover{
	background:#fff;
	color:#FFDC60
}

.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-weight: normal;
	font-size: 16px;
}
.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:var(--accent);
}
/* 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: var(--accent);
}
.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:var(--accent);
}
.footer .sidebar-main .address-widget-list li:last-child {
	margin-bottom: 0px;
}
.footer .address-widget-list li span{
	color:var(--accent);
	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: var(--primary);
	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:var(--accent);
}

#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: var(--accent);
}
.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: var(--accent);
}
.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: #FFDC60;
	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: var(--primary);
}
.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-size: 28px;
	color: #fff;
	padding-bottom: 30px;
	margin: 0;
}
.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-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 .wp-block-latest-posts__post-title,.footer-news-list li a {
	color: #fff !important;
  }
  .footer-news-list .wp-block-latest-posts__featured-image img {
	border-radius: 100%;
  }

  .cs_footer_top {
	border-bottom: 1px solid #353535;
  }

  .cs_copyright a {
	color: var(--accent);
  }

  .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;
  }

  @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;
}

/* Newsletter Form */
div.newsletter-footer .newsletter-right input {
	background: transparent !important;
	background-color: #2B2C2D !important;
	border-radius: 8px;
	border-color: #2B2C2D !important;
	padding: 11px 15px 13px 15px !important;
}
div.newsletter-footer .newsletter-right input:focus{
	border-image-slice: 1 !important;
	border-width: 1px !important;
	border-image-source: linear-gradient(to left, #22D1EE, var(--common-primary-color)) !important;
}

div.newsletter-footer .newsletter-right input ,
div.newsletter-footer .newsletter-right button{
	height: 52px !important;
}
.newsletter-footer button {
  padding: 14px 25px;
  background-color: var(--common-primary-color) !important;
  padding: 14px 25px;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
}
.newsletter-footer button svg {
  fill: currentColor !important;
}
.newsletter-footer button:hover {
  background: #ECEEF2 !important;
}

@media (max-width: 1399.98px) {
	.header .main-menu li a {
		padding: 37px 6px 37px 6px;
		font-size: 18px;
	}
	.header .main-menu li {
		padding: 0px 14px;
	}
  }
  .sidebar-main ul.social-sidebar li{
	background: transparent !important;
  }
  .sidebar-main ul.social-sidebar a {
	width: 36px !important;
	height: 36px !important;
	border-radius: 100%;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 100% !important;
	display: flex !important;
	justify-content: center !important;
	background-color: #ECEEF2 !important;
	color: var(--primary) !important;
	align-items: center;
}
.sidebar-main ul.social-sidebar a svg {
	width: 18px;
}
  .sidebar-main ul.social-sidebar a:hover{
	background-color: var(--common-primary-color) !important;
	color:var(--primary) !important;

  }
  .sidebar-main .wp-block-social-links .wp-social-link svg {
	fill: var(--primary) !important;
	color: currentColor !important;
}
.sidebar-main .social-sidebar li {
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
  }
.wp-block-social-links {
	gap: 8px;
}
  .sidebar-main ul.social-sidebar a:hover {
	transform: translateY(-10px);
	animation: none;
	transform: translateY(-3px);
	transition-duration: 0.2s;
}
  .cs_post_meta * {
	color: var(--secondary);
	transition: all 0.3s ease;
}
  .cs_post_meta * a:hover,
  .cs_post_meta * span a:hover,
  .cs_post_meta * span:hover {
	color: var(--accent) !important;
  }
  .breadcrumb-style-v1 .contact-head {
	background-color: #F4F6F9;
	border-radius: 16px;
	padding: 88px 0px;
  }

  .breadcrumb-style-v1.with-bg {
	  background-size: cover;
	  background-position: center;
	  min-height: 700px;
  }
  .breadcrumb-style-v1.with-bg .contact-head {
	  margin: 0;
	  background: none;
  }

  .cs_footer ul {
	padding: 0;
  }
  .cs_footer ul li a {
	color: #fff;
  }
  @media (max-width: 767px) {
  .breadcrumb-style-v1.with-bg {
	  height: initial;
	  min-height: initial;
  }
  }

  .container-breadcrumb {
	display: inline-block;
  }

  .sidebar .sidebar-right {
	margin-bottom: 50px;
  }

  .sidebar-search {
	position: relative;
  }
  .sidebar-search .form-search {
	position: relative;
  }
  .sidebar-search .form-search .form-control {
	height: 64px;
	border: 0px;
	background-color: #F4F6F9;
  }

  .list-popular-posts {
	margin-top: 27px;
  }

  .sidebar-right .list-categories li {
	list-style: none;
  }

  .box-tags-sidebar .btn.btn-neutral-100 {
	padding: 13px 18px;
	margin: 0px 8px 8px 0px;
	font-size: 14px;
	line-height: 14px;
  }

  .content-blog-2 .col-lg-9 {
	flex: 0 0 auto;
	width: 72%;
  }
  .content-blog-2 .col-lg-3 {
	flex: 0 0 auto;
	width: 28%;
  }

  .box-list-news-2 {
	padding-right: 80px;
  }

  .box-content-blog-post .blog-head {
	max-width: 905px;
	margin: auto;
  }

  .box-detail-info {
	max-width: 780px;
	margin: auto;
  }
  .box-content-detail-blog {
	padding-top: 50px;
}
  .box-content-detail-blog .box-image-header img {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 50px;
  }
  .box-content-detail-blog .box-detail-info img {
	margin-bottom: 40px;
	border-radius: 8px;
	margin-top: 30px;
  }

  .box-content-recommended {
	background-color: #F4F6F9;
	padding: 145px 0px 170px 0px;
  }
  @media only screen and (max-width: 992px) {

	.box-content-recommended .col-lg-4 .card-news-style-2 {
		margin-bottom: 56px;
	}
	.box-content-recommended .col-lg-4:last-child .card-news-style-2 {
		margin: 0;
	}
  }
@media (min-width: 1399.98px) {
	.box-faqs-list.box-faqs-list--v2 .item-faqs .item-info p {
	  margin: 0;
	  padding-right: 120px;
	}
	.top-bar {
	  margin-bottom: 38px;
	}
  }
body.logged-in .header{
	top:32px;
}
@media (max-width: 780px) {
	body.logged-in .header{
		top:46px;
	}
}

/* Update CSS */
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children .menu-expand {
	top: 12px;
}
.card-news-style-2 .card-info .card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.elementor-editor-active .header {
    top: 0 !important;
}
@media (max-width: 780px) {
body.logged-in .header.stick {
	top: 0;
}
}

@media (max-width: 767px) {
.header .main-header .header-right {
	position: absolute;
	right: 0;
}
.hero-5 .banner-inner-top {
	padding-top: 120px;
	padding-bottom: 10px;
}
.box-button-slider {
	justify-content: start !important;
}
.hero-4 .banner-inner {
	padding: 120px 0px 0px 0px;
}
h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br{
	display: none !important;
}

.top-bar-inner {
	flex-direction: column;
	text-align: center;
  }
  .box-top-bar-left,.box-top-bar-right {
	width: 100%;
  }
  .box-top-bar-right {
	/*! min-width: 100%; */
	display: flex;
	justify-content: center;
	flex-direction: row;
	text-align: center;
	min-width: 100% !important;
	padding: 0;
  }
  .box-top-bar-right a {
	overflow: visible;
	text-indent: initial;
	width: initial;
	margin-right: 0;
	padding-right: 0;
  }
.text-96 {
	font-size: 50px !important;
	line-height: 60px !important;
}
.list-partners li a span {
	font-size: 30px;
	line-height: 42px;
  }
.box-content-detail-blog .box-detail-info p {
	padding: 0 20px !important;
}
.seapearl-blog-main-section.blog-single {
	padding-top: 20px;
}
.box-content-recommended {
	padding: 80px 0;
}
}

.sidebar-main ul {
	padding-left: 0;
	margin: 0;
}
/*--------------------------------------------------------------
21. Dark Style
----------------------------------------------------------------*/
.cs_dark .cs_section_heading.cs_style_1 .cs_section_subtitle {
	color: var(--accent);
  }
  .cs_dark .cs_site_header.cs_style_1,
  .cs_dark .cs_slider_arrows.cs_style_4 .cs_left_arrow,   .cs_dark .cs_slider_arrows.cs_style_4 .cs_right_arrow {
	background-color: var(--gray);
  }
  .cs_dark .cs_primary_bg,
  .cs_dark .cs_white_bg,
  .cs_dark .cs_bottom_footer_wrap,
  .cs_dark  .cs_iconbox.cs_style_2 .cs_iconbox_icon{
	background-color: #121212 !important;
  }
  .cs_dark .cs_ternary_bg,.cs_dark .datepick .datepick-month table td .mphb-date-cell,
  .cs_dark .datepick .datepick-cmd-next, .cs_dark .datepick .datepick-cmd-prev
  {
	background-color: #3b3b3b;
  }
  .cs_dark .cs_btn.cs_style_1.cs_color_1{
	background-color: var(--gray);
  }
  .cs_dark .cs_custom_pointer_wrap .cs_mouse_point.cs_style_2,
  .cs_dark .datepick,.cs_dark .cs_hotel_search.style-5 .mphb_sc_search-form,
  .cs_dark .cs_newsletter.cs_style_1.cs_color_3 .cs_accent_bg{
	background-color: var(--web-wash);
  }
  
  .cs_dark .cs_btn.cs_style_1.cs_color_1:hover {
	background-color: #fff;
	color: var(--gray);
  }
  .cs_dark .cs_google_map.cs_style_1 iframe {
	-webkit-filter: grayscale(100%) invert(95%) contrast(140%);
			filter: grayscale(100%) invert(95%) contrast(140%);
  }
  .cs_dark .cs_review_box.cs_style_1 {
	-webkit-box-shadow: 0px 10px 25px 8px rgba(241, 241, 241, 0.04);
			box-shadow: 0px 10px 25px 8px rgba(241, 241, 241, 0.04);
  }
  .cs_dark .cs_gallery_item.cs_style_3 .cs_gallery_item_hover {
	background-color: rgba(27, 27, 27, 0.95);
  }
  .cs_dark .cs_bottom_footer {
	border-top: 1px solid #2f2f2f;
  }
  .cs_dark .cs_list.cs_style_3 li img,
  .cs_dark .cs_iconbox.cs_style_4 .cs_iconbox_icon img,
  .cs_dark .cs_author_card .cs_author_meta img {
	-webkit-filter: brightness(0) invert(1);
			filter: brightness(0) invert(1);
  }
  .cs_dark .cs_about_feature_list_1 li,
  .cs_dark .cs_list.cs_style_2 li,
  .cs_dark .cs_card.cs_style_7,
  .cs_dark .cs_card.cs_style_1.cs_color_1,
  .cs_dark .cs_hotel_search.style-5 .cs_form_item,
  .cs_dark .wp-block-tag-cloud a,
  .cs_dark input,  .cs_dark  textarea, .cs_dark select,
  .cs_dark .cs_post_share, .cs_dark .sidebar-main .widget,
  .cs_dark .wp-block-search .wp-block-search__input{
	border-color: var(--border);
  }
  .cs_dark .cs_form.cs_style_4.cs_type_6 .cs_form_item,.cs_dark .cs_hotel_search.style-5 .cs_form_item {
	background-image: url('data:image/svg+xml;utf8,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.00002 5C4.88377 5 4.76741 4.95927 4.67866 4.87792L0.13321 0.711272C-0.0444033 0.54846 -0.0444033 0.284816 0.13321 0.122109C0.310823 -0.0405988 0.598436 -0.0407029 0.775936 0.122109L5.00002 3.99417L9.22411 0.122109C9.40172 -0.0407029 9.68933 -0.0407029 9.86683 0.122109C10.0443 0.28492 10.0444 0.548565 9.86683 0.711272L5.32138 4.87792C5.23263 4.95927 5.11627 5 5.00002 5Z" fill="white"/></svg>');
  }/*# sourceMappingURL=style.css.map */
  
  .cs_dark .cs_grey_bg {
	background-color: var(--gray) !important;
  }
  .cs_dark .cs_gescout_show.cs_site_header.cs_style_2 {
	background-color: var(--gray);
	}

	.cs_dark .elementor-widget-text-editor{
		color: var(--secondary);
	}
.cs_dark_logo,.cs_dark .cs_white_logo{
	display: none;
}
.cs_dark .cs_dark_logo{
	display: block;
}
/*====================================
	Others CSS
======================================*/
