/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
:root {
	--cnvs-themecolor: #005bac;
	--cnvs-themecolor-rgb: 0, 91, 172;
	--cnvs-primary-font: 'Poppins', sans-serif;
	--cnvs-secondary-font: 'Poppins', serif;
	--cnvs-header-height:80px;
}
#header-wrap #logo img {
  height: auto;
}
.menu-item.current > .menu-link {
	color: var(--bs-warning) !important;
}
.dark {
	--cnvs-header-sticky-bg:  var(--cnvs-themecolor);
}
#header {
	--cnvs-header-border-color: var(--bs-warning);
}

.menu-item:hover > .menu-link {
	transform:  translateX(2px);
	color: var(--bs-warning) !important;
}
#logo img{
	max-height: 48px;
}

.service-feature  .grid-inner .more-link {
	margin-top: 10px;
}
.indexbanner .swiper-pagination{
    width: auto !important;
    -webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
left: auto;
    right: 20px;
    top: auto;
    bottom: 50px !important;
}
.indexbanner .slider-caption h2, .indexbanner .slider-caption .h2{
	font-size: 2.8rem;
	line-height: 3.5rem;
}
.indexbanner .slider-caption p{
	line-height: 1.7rem;
}
/**
 * kim-carousel
 */
.kim-carousel-1{ margin: 10px auto;}
.kim-carousel-1 .owl-carousel .owl-nav [class*=owl-] {

    opacity: inherit;
    display: block !important;
    color: #000;
    background-color: none;
    border: none;
}


.block-card-9 .grid-inner .btn-hover {
	opacity: 0;
	display: block;
	transition: opacity .3s ease, transform .3s .1s ease;
	margin-top: 15px;
	position: absolute;
	transform: translateY(0);
}
.block-card-9 .grid-inner:hover .btn-hover {
	opacity: 1;
	transform: translateY(-5px);
}

.block-card-9 .grid-inner .grid-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
}

.block-card-9 .grid-inner:hover .grid-image {
	-webkit-animation: kenburns 20s ease-out both;
	animation: kenburns 20s ease-out both;
}

.block-card-9 .grid-inner .grid-icon,
.block-card-9 .grid-inner .grid-content {
	transition: transform .3s ease;
}

.block-card-9 .grid-inner:hover .grid-content { transform: translateY(-45px); }
.block-card-9 .grid-inner:hover .grid-icon { transform: translateY(-5px); }

@-webkit-keyframes kenburns {
  0% {
	-webkit-transform: scale(1) translate(0, 0);
			transform: scale(1) translate(0, 0);
	-webkit-transform-origin: 84% 84%;
			transform-origin: 84% 84%;
  }
  100% {
	-webkit-transform: scale(1.25) translate(20px, 15px);
			transform: scale(1.25) translate(20px, 15px);
	-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
  }
}
@keyframes kenburns {
  0% {
	-webkit-transform: scale(1) translate(0, 0);
			transform: scale(1) translate(0, 0);
	-webkit-transform-origin: 84% 84%;
			transform-origin: 84% 84%;
  }
  100% {
	-webkit-transform: scale(1.25) translate(20px, 15px);
			transform: scale(1.25) translate(20px, 15px);
	-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
  }
}

/**
 * Recipe Categories
 */

.recipe-categories {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.recipe-category {
	position: relative;
	overflow: hidden;
	flex: 0 0 calc(100% - 20px);
	max-width: calc(100% - 20px);
	margin: 10px;
	height: 80px;
	background-size: cover;
	background-position: center center;
	border-radius: 250px;
	transition: all 0.5s cubic-bezier(.02, .01, .5, 1);
}

.recipe-category::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(0,0,0,0.2);
}

.recipe-category-inner {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 10px;
	z-index: 2;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}


.recipe-category-icon {
	width: 40px;
	height: 40px;
	margin: 0;
	display: flex;
	justify-content: center;
	text-align: center;
	border-radius: 100%;
	background-color: #FFF;
	padding: 8px;
	margin-right: 10px;
	color: #000;
	transition: transform .5s ease-out;
}

.recipe-category:hover .recipe-category-icon {
	transform: rotate(360deg);
}

.recipe-category-info {
	color: #FFF;
	font-size: 18px;
	text-align: center;
}

/* Play Icon
-----------------------------------------------------------------*/
.play-video i {
	position: relative;
	padding-left: 6px;
	width: 60px;
	height: 60px;
	line-height: 61px;
	border-radius: 50%;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.85);
	text-align: center;
	font-size: 24px;
	color: #111;
	transition: all .3s ease;
	box-shadow: 0 0 1px 15px rgba(255,255,255,.04);
	-webkit-backface-visibility: hidden;
}

.play-video:hover i {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.feature-box .fbox-icon {
	background-color: transparent;
	background-image: url('images/featured-img/2.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	color: var(--cnvs-themecolor, #0F66DD);
	background-size: 70px 70px;
	width: 80px;
	height: 80px;
}

.feature-box .fbox-icon i {
	background: transparent;
	color: var(--cnvs-themecolor, #0F66DD);
	line-height: 80px;
}
.map-title {
	position: absolute;
	min-width: 70%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: -70px;
}

.map-title .iconlist li:not(:first-child) { margin-top: 8px; }
.map-title .iconlist li img {
	position: relative;
	margin-top: -2px;
	width: 16px;
	margin-right: 15px;
}

.map-title .iconlist a {
	font-size: 13px;
	color: #888;
}
.counter-section {
	position: relative;
	border-top: 1px dashed #E5E5E5;
	padding-top: 40px;
	margin-top: 0px;
}

.counter-dots {
	position: absolute;
	display: block;
	height: 16px;
	width: 16px;
	top: -40px;
	left: 50%;
	margin-left: -10px;
	margin-top: -9px;
	background-color: var(--cnvs-themecolor, #0F66DD);
	border: 4px solid #FFF;
	border-radius: 50%;
	-webkit-box-shadow: -1px 0 10px -1px rgba(0,0,0,.2);
	box-shadow: -1px 0 10px -1px rgba(0,0,0,.2);
}

.device-xs .counter-dots { display: none; }
.device-xs .counter-section {
	border-top: 0;
	margin-top: 120px;
}

.counter + h5 { opacity: .5; }
.section-map .map-image { opacity: .2; }
.section-map{position: relative;
}
.svg-themecolor {
    fill: var(--cnvs-themecolor, #0F66DD);
}

.toggle {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #EEE;
}

.toggle-header {
	align-items: center;
}

.toggle-header .toggle-open {
	display: block !important;
	font-size: 20px;
	line-height: 1;
	height: 20px;
	transform: rotate(45deg);
	transition: transform .3s ease;
}

.toggle-closed { display: none !important; }

.toggle-active .toggle-open {
	display: block !important;
	transform: rotate(90deg);
	color: var(--cnvs-themecolor, #0F66DD);
}
.widget-nav .nav { flex-direction: row; }

.widget-nav .nav .nav-item .nav-link {
	padding: 5px 10px;
	color: #444;
	line-height: 1.3;
	font-weight: 500;
	transition: all .2s ease;
}

.dark .widget-nav .nav .nav-item .nav-link { color: #DDD; }

.widget-nav .nav .nav-item.current-menu-item .nav-link,
.widget-nav .nav .nav-item:hover .nav-link {
	border-left-color: var(--cnvs-themecolor);
	color: var(--cnvs-themecolor);
}
.widget-search input, .widget-search .btn {
    border-color: #DDD;
}

.content-body img{ max-width: 100%;}
.gallery .me-des h4{
	margin-bottom: 0;
}
section.page-title{
	background-size: auto 100%; 
	background-repeat: no-repeat; 
	background-position: center bottom;
}
.bg-houzz, .h-bg-houzz:hover{
	background-color:var(--cnvs-color-line);
}
.sidebar-widgets-wrap .nav .menu-item{
	border-bottom: 1px solid #f0f0f0;
}
.service-feature {
	position: relative;
	z-index: 4;
  display: none;
}

@media (min-width: 768px) {

	.recipe-category {
		flex: 0 0 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}

}
@media (min-width: 992px) {
	section.page-title{
		background-size: 100% auto; 
		background-repeat: no-repeat; 
		background-position: center bottom;
	}
	.p-faq .toggle-bg .toggle-header {
		background-color: #F2F6FA;
		padding: 1rem 1.5rem;
		align-items: center;
	}
	.widget-nav .nav { flex-direction: column; }

	.widget-nav .nav .nav-item .nav-link {
		padding: 5px 0 5px 15px;
		border-left: 1px solid #DDD;
		line-height: 1.8;
		font-size: 18px;
	}

	.dark .widget-nav .nav .nav-item .nav-link,
	.heading-block h2 {
		font-size: 42px;
		letter-spacing: -1px;
	}
	
	.service-feature {
		position: relative;
		transform: translateY(-150px);
		z-index: 4;
    margin-bottom: -150px !important;
	}

	.service-feature  .grid-inner .more-link {
		opacity: 0;
		visibility: hidden;
		transition: all .3s ease;
		margin-top: 0;
	}

	.service-feature .grid-inner:hover .more-link {
		opacity: 1;
		visibility: visible;
		transform: translateY(4px);
		will-change: transform;
	}

	.service-feature .grid-inner .f-b-desc {
		transform: translateY(10px);
		transition: transform .3s ease;
		will-change: transform;
	}

	.service-feature .grid-inner:hover .f-b-desc {
		transform: translateY(-4px);
	}
	.recipe-category {
		flex: 0 0 60px;
		max-width: 60px;
		height: 300px;
		margin: 15px;
		background-size: auto 105%;
		background-position: center;
		border-radius: 30px;
	}

	.recipe-category:hover {
		flex: 0 0 250px;
		max-width: 250px;
		background-size: auto 100%;
		border-radius: 10px;
	}

	.recipe-category-inner {
		width: auto;
		height: auto;
		left: 0;
		top: auto;
		bottom: 0;
		writing-mode: vertical-rl;
		text-orientation: mixed;
		transform: rotate(180deg);
	}

	.recipe-category:hover .recipe-category-inner {
		writing-mode: horizontal-tb;
		transform: rotate(0);
	}

	.recipe-category:not(:hover) .recipe-category-icon {
		width: 40px;
		height: 40px;
		margin-right: 0;
		margin-bottom: 10px;
		transform: rotate(180deg);
	}

	.recipe-category::after {
		background: -webkit-linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8)) 100%;
		background: -o-linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8)) 100%;
		background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8)) 100%;
	}

}

.recipe-items .card img,
.rotating {
	transform: rotate(0deg);
	transition: transform 1.5s linear;
}

.recipe-items .card:hover img,
.rotating:hover {
	transform: rotate(360deg);
	transition: transform 20s linear;
}

.recipe-items .row  {
	border-top: 1px solid #EEE;
	margin-top: -1px;
	margin-bottom: -1px;
}

.recipe-items .row [class^=col-] {
	border-right: 1px solid #EEE;
	border-bottom: 1px solid #EEE;
}

.recipe-items .card {
	border: 0;
	background: transparent;
	border-radius: 0;
	padding: 20px 10px;
}

.recipe-items .card-author {
	font-size: 12px;
	font-weight: 400;
	color: #AAA;
	margin-bottom: 0;
}

.recipe-items .card-title {
	font-size: 18px;
	line-height: 1.3;
}
.recipe-items .card-author a {
	color: #999;
	text-transform: uppercase;
	margin-left: 2px;
	font-weight: 600;
}

.recipe-items .card-title a { color: #222; }

.recipe-items .card-date {
	margin-top: 15px;
	color: #555;
	margin-bottom: 0;
	font-weight: 400;
}

.recipe-items .card-date i { margin-right: 6px; }
.p-faq .toggle {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}
.pstyle ul{
	list-style: none;
	margin-bottom: 30px;
}
.pstyle ul li{
	padding-bottom: 13px;
    margin: 13px 0;
    border-bottom: 1px solid rgba(221,221,221,1);
	font-size: 14px;
	padding-left: 5px;
}
.pstyle h2, .content-body h2{
	background: var(--bs-gray-200);
    padding: 10px 15px;
}
.pstyle li em{
	color:var(--bs-gray-700); 
	padding: 10px;
    display: block;
}
/* add new */
@media (max-width: 767.98px) { 

	.recipe-category{
		max-width: 49%;
		margin: 0.5%;
		height: 200px;
		border-radius: 0;
		}
		.footerlogo{
			width: 280px;
			padding-bottom: 10px;	
		}
 }

 @media (max-width: 991.98px) { 

		.recipe-category{
			max-width: 49%;
			margin: 0.5%;
			height: 280px;
			border-radius: 0;
			}
	
	#header-wrap{
    padding: 15px;
  }
  }

@media (max-width: 1199.98px) { 

 }

@media (max-width: 1399.98px) { 
	
 }